/* ===== RESET E CONFIGURAÇÕES GERAIS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    width: 100%;
    background-color: #ffffff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== SEÇÃO 1: HERO ===== */
.hero-section {
    background-color: #145ABB;
    min-height: 100vh;
    position: relative;
}

/* Header - APENAS DESKTOP */
@media (min-width: 768px) {
    .hero-section .container {
        padding-top: 100px;
        padding-bottom: 40px;
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0;
        margin: 0;
        position: absolute;
        top: 30px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        max-width: 1200px;
        padding: 0 20px;
        z-index: 100;
    }
    
    .logo-img {
        height: 70px;
        width: auto;
    }
    
    .nav-menu {
        display: flex;
        gap: 40px;
    }
    
    .nav-link {
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 18px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    /* Hero Content - APENAS DESKTOP */
    .hero-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        flex: 1;
        padding-top: 40px;
    }
    
    .hero-text {
        flex: 1;
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 64px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 15px;
        color: white;
    }
    
    .hero-subtitle {
        font-size: 32px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 25px;
        color: #79D2FF;
    }
    
    .hero-tagline {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 40px;
        color: white;
    }
    
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .headline-image {
        max-width: 100%;
        height: auto;
        max-height: 500px;
    }
}

/* ===== VERSÃO MOBILE ===== */
@media (max-width: 767px) {
    .hero-section {
        padding: 20px 0;
    }
    
    .header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
        margin-bottom: 40px;
        position: relative;
    }
    
    .logo-img {
        height: 60px;
        width: auto;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background-color: #145ABB;
        flex-direction: column;
        width: 200px;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        z-index: 100;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        color: white;
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .menu-toggle {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 24px;
        cursor: pointer;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 10px;
        color: white;
    }
    
    .hero-subtitle {
        font-size: 36px;
        font-weight: 600;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #79D2FF;
    }
    
    .hero-tagline {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 30px;
        color: white;
    }
    
    .hero-image {
        order: -1;
    }
    
    .headline-image {
        max-width: 100%;
        height: auto;
        max-height: 300px;
    }
}

/* ===== BOTÃO ===== */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(180deg, #2F82DA 0%, #0B2F70 100%);
    color: white;
    border: 1.22px solid #65CCFF;
    border-radius: 50px;
    padding: 20px 50px;
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.cta-button i {
    font-size: 20px;
}

/* Responsividade do botão */
@media (max-width: 767px) {
    .cta-button {
        padding: 15px 35px;
        font-size: 18px;
    }
    
    .cta-button i {
        font-size: 16px;
    }
}

/* Telas muito grandes */
@media (min-width: 1400px) {
    .hero-title {
        font-size: 72px;
    }
    
    .hero-subtitle {
        font-size: 36px;
    }
    
    .logo-img {
        height: 80px;
    }
}

/* ===== SEÇÃO 2: BENEFÍCIOS ===== */
.benefits-section {
    background-color: #145ABB;
    min-height: 100vh;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-title {
    color: white;
    font-size: clamp(28px, 4vw, 54px);
    font-weight: 700;
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 70px);
    line-height: 1.2;
}

.content-wrapper {
    width: 100%;
}

/* Desktop: Lado a lado */
@media (min-width: 768px) {
    .content-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: clamp(30px, 4vw, 50px);
    }
    
    .left-column, .right-column {
        width: 48%;
    }
    
    .left-column {
        display: flex;
        justify-content: flex-start;
    }
    
    .right-column {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: clamp(25px, 3vw, 35px);
    }
}

/* Mobile: Coluna */
@media (max-width: 767px) {
    .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .left-column, .right-column {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .right-column {
        gap: 30px;
    }
}

.main-image, .svg-image {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.main-image {
    max-width: 550px;
}

.svg-image {
    max-width: 500px;
}

/* Ajustes mobile para imagens */
@media (max-width: 767px) {
    .main-image {
        max-width: 400px;
    }
    
    .svg-image {
        max-width: 350px;
    }
}

/* ===== SEÇÃO 3: NÃO PAGUE INTEIRA ===== */
.secao3 {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conteudo-secao3 {
    width: 100%;
}

.texto-esquerda h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: bold;
    line-height: 1.2;
    color: #000000;
}

.destaque-vermelho {
    color: #FF0000;
    font-weight: 800;
}

.img-mico {
    width: 100%;
    max-width: 550px;
    height: auto;
    display: block;
}

/* Desktop: Lado a lado */
@media (min-width: 768px) {
    .conteudo-secao3 {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: clamp(40px, 5vw, 60px);
    }
    
    .texto-esquerda, .imagem-direita {
        width: 48%;
    }
    
    .texto-esquerda {
        text-align: left;
    }
    
    .imagem-direita {
        display: flex;
        justify-content: flex-end;
    }
}

/* Mobile: Coluna */
@media (max-width: 767px) {
    .conteudo-secao3 {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    
    .texto-esquerda {
        width: 100%;
        text-align: center;
        order: 2;
    }
    
    .imagem-direita {
        width: 100%;
        display: flex;
        justify-content: center;
        order: 1;
    }
    
    .img-mico {
        max-width: 400px;
    }
}

/* ===== SEÇÃO 4: DIREITO POR LEI ===== */
.secao4 {
    width: 100%;
    min-height: 100vh;
    background-color: #145ABB;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.titulo-principal {
    text-align: center;
    margin-bottom: clamp(40px, 6vw, 70px);
}

.titulo-grande {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 15px;
}

.titulo-grande .destaque {
    color: #FFD700;
    font-weight: 800;
}

.subtitulo {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: clamp(30px, 4vw, 40px);
    flex-wrap: wrap;
}

.card {
    border-radius: 20px;
    padding: clamp(25px, 3vw, 40px) clamp(20px, 2.5vw, 30px);
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
    min-height: auto;
}

.card-branco {
    background: #ffffff;
    border: 7.34px solid #4B82FF;
}

.card-azul {
    background: #1A47AE;
    border: 7.34px solid #1B6FE4;
}

.card-header {
    width: 100%;
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid;
}

.card-branco .card-header {
    border-bottom-color: #4B82FF;
}

.card-azul .card-header {
    border-bottom-color: #1B6FE4;
}

.card-titulo {
    font-size: clamp(18px, 2.2vw, 24px);
    font-weight: 700;
    line-height: 1.3;
}

.card-branco .card-titulo {
    color: #145ABB;
}

.card-azul .card-titulo {
    color: #ffffff;
}

.card-imagem {
    width: 100%;
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.img-card {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 10px;
}

.card-lista {
    width: 100%;
    margin-bottom: 30px;
}

.item-lista {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 12px;
}

.item-lista i {
    font-size: clamp(18px, 2vw, 20px);
    margin-top: 3px;
    flex-shrink: 0;
}

.card-branco .item-lista i {
    color: #4B82FF;
}

.card-azul .item-lista i {
    color: #65CCFF;
}

.item-lista span {
    font-size: clamp(14px, 1.6vw, 16px);
    font-weight: 500;
    line-height: 1.4;
}

.card-branco .item-lista span {
    color: #333333;
}

.card-azul .item-lista span {
    color: #ffffff;
}

.botao-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #2F82DA 0%, #0B2F70 100%);
    color: white;
    border: 2px solid #65CCFF;
    border-radius: 107px 2px 107px 2px;
    padding: clamp(15px, 2.5vw, 20px) clamp(30px, 4vw, 50px);
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    text-align: center;
    margin-top: auto;
}

.botao-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

/* ===== SEÇÃO 5: CARROSSEL ===== */
.secao5 {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrossel-container {
    width: 100%;
    position: relative;
}

.carrossel-track {
    display: flex;
    animation: carrossel 30s linear infinite;
    gap: 30px;
}

@keyframes carrossel {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.carrossel-track img {
    flex: 0 0 auto;
    width: 300px;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Pausa no hover */
.carrossel-container:hover .carrossel-track {
    animation-play-state: paused;
}

/* ===== CORREÇÃO PARA MOBILE ===== */
@media (max-width: 767px) {
    .secao5 {
        padding: 40px 15px;
        min-height: 80vh;
    }
    
    .carrossel-container {
        overflow: visible;
    }
    
    .carrossel-track img {
        width: 250px;
        height: 350px;
    }
    
    .carrossel-track {
        gap: 20px;
        animation-duration: 20s;
        width: max-content;
    }
    
    @keyframes carrossel-mobile {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-250px * 4 - 20px * 3)); }
    }
    
    .carrossel-track {
        animation-name: carrossel-mobile;
    }
}

/* Mobile muito pequeno */
@media (max-width: 480px) {
    .carrossel-track img {
        width: 220px;
        height: 320px;
    }
    
    .carrossel-track {
        gap: 15px;
        animation-duration: 18s;
    }
    
    @keyframes carrossel-mobile-small {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-220px * 4 - 15px * 3)); }
    }
    
    .carrossel-track {
        animation-name: carrossel-mobile-small;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .carrossel-track img {
        width: 280px;
        height: 380px;
    }
    
    .carrossel-track {
        gap: 25px;
        animation-duration: 25s;
    }
}

/* Desktop Grande */
@media (min-width: 1200px) {
    .carrossel-track img {
        width: 350px;
        height: 450px;
    }
    
    .carrossel-track {
        gap: 40px;
    }
}

/* ===== SEÇÃO 6: 4 PASSOS SIMPLES ===== */
.secao6 {
    background-color: #145ABB;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    width: 100%;
}

.titulo-secao6 {
    color: white;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid dos passos - DESKTOP: 2x2 */
.passos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.passo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border: 2px solid rgba(121, 210, 255, 0.3);
    padding: 40px 30px;
    min-height: 350px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.passo-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(121, 210, 255, 0.5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.passo-icone {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.passo-img {
    max-height: 80px;
    max-width: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.passo-texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.passo-titulo {
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.passo-descricao {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
}

/* MOBILE: 1 coluna */
@media (max-width: 767px) {
    .secao6 {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .titulo-secao6 {
        margin-bottom: 40px;
        font-size: 28px;
        padding: 0 15px;
    }
    
    .passos-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
        gap: 30px;
        padding: 0 15px;
    }
    
    .passo-item {
        min-height: 280px;
        padding: 30px 20px;
    }
    
    .passo-icone {
        height: 70px;
        margin-bottom: 20px;
    }
    
    .passo-img {
        max-height: 70px;
        max-width: 70px;
    }
    
    .passo-titulo {
        font-size: 20px;
    }
    
    .passo-descricao {
        font-size: 15px;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .passos-grid {
        gap: 35px;
    }
    
    .passo-item {
        min-height: 320px;
        padding: 35px 25px;
    }
    
    .passo-icone {
        height: 85px;
    }
    
    .passo-img {
        max-height: 85px;
        max-width: 85px;
    }
}

/* DESKTOP GRANDE */
@media (min-width: 1025px) {
    .passos-grid {
        gap: 50px;
    }
    
    .passo-item {
        min-height: 350px;
        padding: 45px 35px;
    }
    
    .passo-icone {
        height: 90px;
    }
    
    .passo-img {
        max-height: 90px;
        max-width: 90px;
    }
}

/* ===== SEÇÃO 7: TÁ DE BOBEIRA? ===== */
.secao7 {
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.secao7 .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.conteudo-secao7 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.texto-esquerda-secao7 {
    flex: 0 0 50%;
    max-width: 50%;
}

.titulo-secao7 {
    color: #000000;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.destaque-amarelo {
    color: #145ABB;
    font-weight: 800;
    display: block;
    margin: 10px 0;
}

.subtitulo-secao7 {
    font-size: 28px;
    font-weight: 600;
    color: #000000;
    line-height: 1.3;
    margin-top: 15px;
    display: block;
}

.destaque-lei {
    color: #145ABB;
    font-weight: 800;
    text-transform: uppercase;
}

.imagem-direita-secao7 {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    justify-content: center;
}

.img-secao7 {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* MOBILE */
@media (max-width: 767px) {
    .secao7 {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .conteudo-secao7 {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }
    
    .texto-esquerda-secao7,
    .imagem-direita-secao7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .titulo-secao7 {
        font-size: 26px;
    }
    
    .subtitulo-secao7 {
        font-size: 20px;
    }
    
    .img-secao7 {
        max-width: 350px;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .conteudo-secao7 {
        gap: 30px;
    }
    
    .titulo-secao7 {
        font-size: 36px;
    }
    
    .subtitulo-secao7 {
        font-size: 24px;
    }
    
    .img-secao7 {
        max-width: 450px;
    }
}

/* DESKTOP GRANDE */
@media (min-width: 1025px) {
    .conteudo-secao7 {
        gap: 60px;
    }
    
    .titulo-secao7 {
        font-size: 42px;
    }
    
    .img-secao7 {
        max-width: 550px;
    }
}

/* ===== SEÇÃO 8: FAQ - PERGUNTAS FREQUENTES ===== */
.secao8 {
    background-color: #FFFFFF;
    padding: 80px 20px;
    width: 100%;
}

.titulo-secao8 {
    color: #000000;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.3;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Container do FAQ */
.faq-container {
    max-width: 1000px;
    margin: 0 auto 60px;
}

/* Item do FAQ */
.faq-item {
    border-bottom: 2px solid #145ABB;
    margin-bottom: 20px;
    overflow: hidden;
}

/* Pergunta (botão) */
.faq-pergunta {
    width: 100%;
    padding: 25px 20px;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    color: #000000;
}

.faq-pergunta:hover {
    background-color: rgba(20, 90, 187, 0.05);
}

.faq-pergunta-texto {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    flex: 1;
    text-align: left;
}

.faq-pergunta i {
    font-size: 20px;
    color: #145ABB;
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-pergunta i {
    transform: rotate(180deg);
}

/* Resposta */
.faq-resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-resposta {
    max-height: 1000px;
    padding: 20px 20px 30px;
}

.faq-resposta p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.faq-resposta p:last-child {
    margin-bottom: 0;
}

/* Colunas para o primeiro FAQ */
.faq-colunas {
    display: flex;
    gap: 40px;
    margin-top: 10px;
}

.faq-coluna {
    flex: 1;
}

.faq-categoria {
    color: #145ABB;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-categoria::before {
    content: "✓";
    color: #145ABB;
    font-weight: bold;
}

.faq-coluna p {
    color: #333333;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 25px;
}

/* Contatos */
.contatos-container {
    background: linear-gradient(135deg, #145ABB 0%, #0B2F70 100%);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contatos-titulo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contatos-lista {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contato-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.contato-cargo {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.contato-link {
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.contato-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* MOBILE */
@media (max-width: 767px) {
    .secao8 {
        padding: 60px 15px;
    }
    
    .titulo-secao8 {
        font-size: 24px;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .faq-pergunta {
        padding: 20px 15px;
    }
    
    .faq-pergunta-texto {
        font-size: 18px;
    }
    
    .faq-colunas {
        flex-direction: column;
        gap: 20px;
    }
    
    .faq-coluna {
        width: 100%;
    }
    
    .faq-categoria {
        font-size: 18px;
    }
    
    .faq-resposta p {
        font-size: 15px;
    }
    
    .contatos-container {
        padding: 30px 20px;
    }
    
    .contatos-titulo {
        font-size: 20px;
    }
    
    .contatos-lista {
        flex-direction: column;
        gap: 20px;
    }
    
    .contato-link {
        font-size: 18px;
        padding: 8px 16px;
    }
}

/* ===== SEÇÃO 9: RODAPÉ ===== */
.rodape {
    background-color: #145ABB;
    padding: 60px 0 30px;
    width: 100%;
    margin: 0;
    position: relative;
}

.rodape .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contatos */
.rodape-contatos {
    text-align: center;
    margin-bottom: 50px;
}

.rodape-titulo {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.rodape-lista-contatos {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.rodape-contato {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rodape-cargo {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
}

.rodape-link {
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-block;
}

.rodape-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Formas de Pagamento */
.rodape-pagamento {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.rodape-selos {
    margin-top: 20px;
}

.rodape-imagem {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Informações Legais */
.rodape-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.rodape-copyright {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.rodape-endereco {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.5;
}

/* MOBILE */
@media (max-width: 767px) {
    .rodape {
        padding: 40px 0 20px;
    }
    
    .rodape-titulo {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .rodape-lista-contatos {
        flex-direction: column;
        gap: 25px;
    }
    
    .rodape-link {
        font-size: 18px;
        padding: 10px 20px;
    }
    
    .rodape-imagem {
        max-width: 300px;
    }
    
    .rodape-copyright {
        font-size: 14px;
    }
    
    .rodape-endereco {
        font-size: 13px;
    }
    
    .rodape-contatos,
    .rodape-pagamento {
        margin-bottom: 40px;
    }
}

/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
    .rodape-titulo {
        font-size: 22px;
    }
    
    .rodape-link {
        font-size: 20px;
    }
    
    .rodape-imagem {
        max-width: 350px;
    }
}

/* DESKTOP GRANDE */
@media (min-width: 1025px) {
    .rodape {
        padding: 70px 0 40px;
    }
    
    .rodape-titulo {
        font-size: 26px;
    }
    
    .rodape-link {
        font-size: 24px;
    }
    
    .rodape-imagem {
        max-width: 450px;
    }
}

/* CORREÇÃO PARA BACKGROUND DO RODAPÉ NAS LATERAIS */
@media (min-width: 1200px) {
    .rodape {
        position: relative;
    }
    
    .rodape::before {
        content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100vw;
        height: 100%;
        background-color: #145ABB;
        z-index: -1;
    }
}
/* ===== PÁGINA QUEM SOMOS ===== */

/* Header modificado para Quem Somos */
.quem-somos-header {
    min-height: 40vh;
    background-color: #145ABB;
    padding-top: 40px;
}

.quem-somos-hero-content {
    justify-content: center;
    text-align: center;
    padding: 40px 0;
}

.quem-somos-hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 20px;
}

.quem-somos-title {
    font-size: clamp(36px, 5vw, 54px);
    margin-bottom: 0;
    color: white;
    text-align: center;
}

/* Conteúdo Quem Somos */
.conteudo-quem-somos {
    background-color: #FFFFFF;
    padding: 40px 20px 80px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: -20px; /* Faz o conteúdo subir para ficar próximo do título */
}

.conteudo-texto-quem-somos {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.texto-quem-somos {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 40px 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #145ABB;
}

.paragrafo-quem-somos {
    color: #333333;
    font-size: clamp(18px, 2vw, 20px);
    line-height: 1.7;
    margin-bottom: 25px;
    font-weight: 500;
}

.paragrafo-quem-somos:last-child {
    margin-bottom: 0;
}

.destaque-final {
    color: #145ABB;
    font-weight: 700;
    font-size: clamp(20px, 2.2vw, 22px);
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid rgba(20, 90, 187, 0.2);
}

/* MOBILE - Quem Somos */
@media (max-width: 767px) {
    .quem-somos-header {
        min-height: 30vh;
        padding-top: 30px;
    }
    
    .quem-somos-hero-content {
        padding: 30px 0 20px;
    }
    
    .quem-somos-title {
        font-size: 32px;
        padding-bottom: 10px;
    }
    
    .conteudo-quem-somos {
        padding: 20px 15px 60px;
        margin-top: -30px; /* Ajuste para mobile */
    }
    
    .texto-quem-somos {
        padding: 30px 25px;
        border-top: 3px solid #145ABB;
        box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    }
    
    .paragrafo-quem-somos {
        font-size: 17px;
        margin-bottom: 20px;
    }
    
    .destaque-final {
        font-size: 18px;
        margin-top: 25px;
        padding-top: 20px;
    }
}

/* TABLET - Quem Somos */
@media (min-width: 768px) and (max-width: 1024px) {
    .quem-somos-header {
        min-height: 35vh;
    }
    
    .quem-somos-title {
        font-size: 44px;
    }
    
    .conteudo-quem-somos {
        padding: 30px 30px 70px;
        margin-top: -25px;
    }
    
    .texto-quem-somos {
        padding: 35px 40px;
    }
    
    .paragrafo-quem-somos {
        font-size: 19px;
    }
    
    .destaque-final {
        font-size: 21px;
    }
}

/* DESKTOP GRANDE - Quem Somos */
@media (min-width: 1025px) {
    .quem-somos-header {
        min-height: 40vh;
    }
    
    .quem-somos-title {
        font-size: 52px;
    }
    
    .conteudo-quem-somos {
        padding: 40px 20px 80px;
        margin-top: -30px;
    }
    
    .texto-quem-somos {
        padding: 45px 60px;
    }
    
    .paragrafo-quem-somos {
        font-size: 20px;
    }
    
    .destaque-final {
        font-size: 22px;
    }
}
/* ===== BOTÃO WHATSAPP FIXO ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
    color: white;
    border-radius: 50%;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    border: 2px solid white;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    background: linear-gradient(180deg, #25D366 0%, #0D6D5F 100%);
}

/* Animação de pulso */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* MOBILE: Botão menor e posição ajustada */
@media (max-width: 767px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
    
    @keyframes pulse-whatsapp {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }
}

/* TABLET: Ajustes */
@media (min-width: 768px) and (max-width: 1024px) {
    .whatsapp-float {
        bottom: 25px;
        right: 25px;
    }
}

/* Para evitar conflito com o rodapé no mobile */
@media (max-width: 767px) {
    .rodape {
        padding-bottom: 80px; /* Espaço extra para o botão do WhatsApp */
    }
}