/* HABILITA ROLAGEM SUAVE */
html {
    scroll-behavior: smooth;
}
/* RESET E TIPOGRAFIA POPPINS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #1C3B5E;       /* Azul Marinho - Textos fortes e Botão CTA */
    --color-primary-dark: #0b2c59;
    --color-topbar-dark: #0b2c59;
    --color-secondary: #00C853;     /* Verde Vibrante - Destaque Secundário (Checks) */
    --color-topbar-blur-bg: rgba(216, 223, 234, 0.8); /* Fundo cinza-azulado semi-transparente para blur */
    --color-light-bg: #F8F8F8;      /* Fundo das seções/cards */
    --color-text: #333333;          /* Cor do texto geral */
    --color-shadow: rgba(0, 0, 0, 0.08); /* Sombra suave */
    --topbar-height: 100px;
    --color-hero-text: #f0f0f0;
    --color-showcase-bg: #E1EAF6;
    --color-icon-circle: #D4AF37;   /* Dourado mais rico e clássico */
    --color-benefit-text: #555;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light-bg);
}

.has-fixed-header {
    padding-top: var(--topbar-height); 
}

/* UTILS - LAYOUT */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

.section {
    padding: 100px 0;
    text-align: center;
}

.section h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--color-primary);
}

/* BOTÕES CTA (Geral) */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    margin-top: 20px;
    border-radius: 50px; 
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--color-shadow);
}

.primary-cta {
    background-color: var(--color-icon-circle);
    color: #FFFFFF; 
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.35); 
}

.primary-cta:hover {
    background-color: #B89B2E; 
    transform: translateY(-2px); 
}

.secondary-cta {
    background-color: var(--color-primary);
    color: var(--color-light-bg);
}

.secondary-cta:hover {
    background-color: #142c46;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.button-icon {
    width: 26px;
    height: 26px;
}

/* ######################### 1. HEADER FIXO (TOPBAR) - VERSÃO CORRIGIDA ######################### */
.main-header {
    background: var(--color-topbar-blur-bg); 
    position: relative;
    padding: 0;
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
}

.main-header.fixed-topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    height: var(--topbar-height);
    position: relative; /* Adicione esta linha */
}

.header-top-row {
    display: flex;          /* Coloca a logo e o slogan lado a lado novamente */
    align-items: center;    /* Alinha os dois verticalmente no centro */
    flex-grow: 1;           /* Faz o grupo ocupar o espaço disponível, empurrando o botão para a direita */
}

.logo-area {
    display: flex;
    align-items: center;
}

.header-logo-img {
    width: 180px; 
    height: auto;
}

.header-slogan {
    position: absolute;       /* Tira o elemento do fluxo normal */
    left: 50%;                /* Move o início do elemento para o centro da tela */
    top: 50%;                 /* Move o topo do elemento para o meio da altura */
    transform: translate(-50%, -50%); /* Puxa o elemento para trás em 50% da sua própria largura e altura */
    white-space: nowrap;      /* Garante que o texto não quebre a linha em telas médias */
}

.slogan-small {
    font-size: 1.3em; 
    color: var(--color-primary); 
    font-weight: 600;
}

.header-cta {
    background-color: var(--color-icon-circle);
    color: var(--color-light-bg);
    padding: 10px 25px;
    border-radius: 6px; 
    box-shadow: none;
    margin-top: 0; 
    font-weight: 600;
    white-space: nowrap;
}

.header-cta:hover {
    background-color: #B89B2E;
    transform: none;
}

/* ######################### 2. HERO SECTION - VERSÃO FINAL CORRIGIDA ######################### */
.hero-section {
    background: linear-gradient(135deg, #0b2c59 0%, #1A4E83 100%); 
    color: var(--color-hero-text); 
    padding: 130px 0;
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    text-align: justify;
    max-width: 1400px;
}

.hero-text-content {
    flex: 1;
    max-width: 850px;
    text-align: center; /* <--- ADICIONE ESTA LINHA */
}

.hero-section h1 {
    font-size: 3.8em;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1); 
}

.hero-slogan {
    font-size: 0.7em; /* Deixa o slogan menor (70% do tamanho do h1) */
    font-weight: 400; /* Deixa a fonte mais leve (regular) */
    line-height: 1.2; /* Ajusta o espaçamento entre as linhas do slogan */
}
.hero-section p {
    font-size: 1.3em; 
    line-height: 1.6;
    max-width: 700px;
    margin-left: 0;
    margin-right: 0;
    color: #e0e0e0;
}

.hero-mascot {
    flex: 0 1 clamp(300px, 28vw, 440px);
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mascot-image {
    width: 100%;
    height: auto;
    animation: floatAnimation 4s ease-in-out infinite;
    cursor: pointer; 
    transition: transform 0.3s ease; 
}

.mascot-image:hover {
    transform: scale(1.05); 
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-section .primary-cta {
    background-color: var(--color-topbar-dark); 
    padding: 18px 45px;
    border-radius: 6px;
    font-size: 1.1em;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    margin-top: 30px;
    white-space: nowrap;
}

.hero-section .primary-cta:hover {
    background-color: #0b1e2e;
}

/* ######################### 3. IMAGE SHOWCASE (CAROUSEL) ######################### */
.image-showcase-section {
    background-color: var(--color-showcase-bg); 
    padding: 100px 0;
}

.image-showcase-section h2 {
    color: var(--color-primary); 
}

.carousel-container {
    width: min(100%, 480px);
    margin: 0 auto;
    position: relative;
    overflow: hidden; 
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    aspect-ratio: 1 / 1;
}

@supports not (aspect-ratio: 1 / 1) {
    .carousel-container {
        height: 0;
        padding-bottom: 100%;
    }
}

.carousel-track {
    display: flex; 
    transition: transform 0.5s ease-in-out; 
    width: 100%;
    height: 100%;
    position: absolute; 
    top: 0;
    left: 0;
}

.carousel-slide {
    min-width: 100%; 
    flex-shrink: 0;
    display: flex; 
    justify-content: center;
    align-items: center;
    height: 100%; 
}

.carousel-slide img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6); 
    color: white;
    border: none;
    padding: 18px 12px; 
    cursor: pointer;
    z-index: 10;
    font-size: 1.8em; 
    line-height: 1;
    transition: background 0.3s, transform 0.3s;
    opacity: 0.8; 
}

.carousel-control:hover {
    background: rgba(0, 0, 0, 0.9); 
    opacity: 1;
    transform: translateY(-50%) scale(1.05); 
}

.carousel-control.prev {
    left: 0;
    border-radius: 0 8px 8px 0; 
}

.carousel-control.next {
    right: 0;
    border-radius: 8px 0 0 8px; 
}

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 5px 10px; 
    background-color: rgba(0, 0, 0, 0.2); 
    border-radius: 15px;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.6); 
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.dot.active-dot {
    background-color: var(--color-icon-circle); /* Trocado para dourado */
    border: 2px solid white;
    transform: scale(1.2); 
}

/* ######################### 4. FEATURES (FUNCIONALIDADES) ######################### */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 30px 50px; 
}

.feature-card {
    background: none; 
    padding: 30px 0;
    text-align: center; 
}

.feature-card h3 {
    font-size: 1.25em; 
    margin-bottom: 10px;
    margin-top: 15px; 
    font-weight: 700;
    color: var(--color-primary); 
}

.feature-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #666;
    max-width: 350px;
    margin: 0 auto;
}

.feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 70px; 
    height: 70px;
    border-radius: 50%;
    margin-bottom: 10px;
    font-size: 2.2em; 
    color: white; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.icon-yellow {
    background-color: var(--color-icon-circle); 
}

.icon-dark {
    background-color: var(--color-primary); 
}

/* ######################### 5. BENEFITS (Por que usar) ######################### */
.benefits-section {
    background-color: var(--color-showcase-bg); 
    padding-bottom: 120px; 
}

.benefit-list {
    list-style: none;
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
}

.benefit-list li {
    background-color: #ffffff;
    padding: 30px; 
    border-radius: 16px; 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); 
    text-align: left; 
    min-height: 200px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 1.5em; 
    color: var(--color-icon-circle);
    margin-bottom: 15px; 
    display: block;
}

.benefit-list li p {
    font-size: 1em; 
    line-height: 1.6;
    color: var(--color-benefit-text);
    margin: 0;
    font-weight: 500;
    text-align: left;
}

.benefit-list li p strong {
    color: var(--color-primary); 
    font-weight: 700;
}

/* ######################### 6. PRICING (PLANOS) ######################### */
.pricing-section {
    background-color: var(--color-showcase-bg);
    padding-bottom: 120px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px; 
}

.plan-card {
    background-color: #FFFFFF;
    padding: 30px 10px; 
    border-radius: 12px;
    border: 2px solid #EAEAEA; 
    transition: all 0.3s;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.plan-card.premium {
    border-color: var(--color-icon-circle); 
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.plan-card h3 {
    font-size: 1.5em; 
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--color-primary);
}

.plan-card .price {
    font-size: 2.0em;
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
    color: var(--color-icon-circle);
    line-height: 1; 
}

.pricing-custom-text {
    font-size: 1.4em; 
    padding-top: 10px; 
    line-height: 1.2;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    padding: 0 5px;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px dashed #E0E0E0;
    font-size: 0.95em;
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.check-icon {
    font-size: 1.1em;
    color: var(--color-icon-circle);
    margin-right: 10px;
}

.plan-button {
    width: 100%;
    padding: 12px 0;
    border-radius: 6px;
    margin-top: auto;
    text-transform: uppercase;
    font-weight: 700;
}
/* ######################### 6B. SEÇÃO ECOSSISTEMA (LOGO CAROUSEL) - CORRIGIDO ######################### */

#ecossistema {
    background-color: #FFFFFF;
    padding: 80px 0;
}

.logo-carousel-container {
    max-width: 880px; /* Largura máxima do carrossel */
    margin: 0 auto;
    position: relative;
    overflow: hidden; /* Esconde o que estiver fora do contêiner */
    padding: 0 40px; /* Espaço para as setas, que ficarão sobrepostas */
    box-sizing: border-box;
}

.logo-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    align-items: center;
    justify-content: flex-start;
    width: fit-content;
    white-space: nowrap; /* Garante que os itens não quebrem a linha */
}

.logo-track img {
    flex-shrink: 0;
    flex-grow: 0;
    width: 200px;
    height: 60px; /* Altura fixa para todos */
    object-fit: contain; /* Garante que o logo caiba sem distorcer */
    padding: 0 20px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

.logo-track img:hover {
    transform: scale(1.05); /* Efeito sutil de zoom no hover */
}

/* Estilo das setas */
.logo-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.4); /* Fundo mais escuro */
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    z-index: 10;
    font-size: 1.8em;
    transition: background 0.3s;
    border-radius: 50%;
    outline: none;
}

.logo-control:hover {
    background: rgba(0, 0, 0, 0.7);
}

.logo-control.prev {
    left: 8px;
}

.logo-control.next {
    right: 8px;
}

/* ######################### RESPONSIVIDADE (ECOSSISTEMA) ######################### */
@media (max-width: 768px) {
    
    .logo-carousel-container {
        padding: 0 16px; /* Menos padding lateral no mobile */
        max-width: 100%;
    }

    .logo-track {
        padding: 0;
        gap: 16px;
    }

    .logo-track img {
        height: 48px;
        padding: 0;
    }
    
    .logo-control {
        width: 40px;
        height: 40px;
        font-size: 1.4em;
        top: 45%;
    }
}

@media (max-width: 480px) {
    .logo-track {
        padding: 0;
        gap: 12px;
    }

    .logo-track img {
        height: 44px;
        padding: 0;
    }

    .logo-control {
        width: 36px;
        height: 36px;
        font-size: 1.2em;
    }
}

/* ######################### 7. FAQ (Acordeão) ######################### */
.faq {
    background-color: #FFFFFF;
    padding-bottom: 100px;
}

.faq-item {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    margin-bottom: 12px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04); 
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 15px 25px;
    font-size: 1.05em;
    font-weight: 500; 
    color: var(--color-primary); 
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.4em;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease-in-out;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 25px; 
    border-top: 1px solid #F0F0F0; 
}

.faq-answer p {
    padding: 10px 0 15px 0;
    color: #666; 
    font-size: 0.95em;
    line-height: 1.6;
}

/* ######################### 7B. ESTILOS DAS ABAS DO FAQ ######################### */
.faq-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    border-bottom: 2px solid #E0E0E0;
    flex-wrap: wrap; /* Permite que as abas quebrem a linha em telas pequenas */
    gap: 10px;
}

.faq-tab-button {
    background: none;
    border: none;
    padding: 12px 25px;
    font-size: 1.1em;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px; /* Alinha com a borda principal */
}

.faq-tab-button:hover {
    color: #555;
}

.faq-tab-button.active-tab {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.faq-content-panel {
    display: none; /* Esconde todos os painéis por padrão */
}

.faq-content-panel.active-panel {
    display: block; /* Exibe apenas o painel ativo */
}

/* Ajuste mobile para as abas */
@media (max-width: 768px) {

    .faq-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px; /* Espaço entre os botões */
    border-bottom: none; /* Remove a linha de baixo do container */
    margin-bottom: 30px;
    }

    .faq-tab-button {
    font-size: 0.95em;
    padding: 12px 10px; /* Ajusta o padding */
    text-align: center; /* Garante centralização */
    margin-bottom: 0; /* Remove a margem que alinhava com a borda */
    border-radius: 6px; /* Arredonda as bordas */
    border-bottom: 3px solid transparent; /* Mantém a lógica da borda */
    }
    
    .faq-tab-button.active-tab {
    background-color: var(--color-showcase-bg); /* Destaca o fundo */
    border-bottom-color: var(--color-primary); /* Mantém a linha ativa */
    }
}
/* ######################### 8. DICAS LEGAIS (CAROUSEL) ######################### */
#dicas {
    background-color: var(--color-showcase-bg);
}

.tips-carousel-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #FFFFFF;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.tips-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.tips-carousel-slide {
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 40px 80px;
}

.tip-content {
    text-align: left;
    color: var(--color-text);
    width: 100%;
}

.tip-content h3 {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.tip-content p {
    font-size: 1.1em;
    line-height: 1.7;
}

.tips-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: white;
    border: none;
    padding: 18px 12px;
    cursor: pointer;
    z-index: 10;
    font-size: 1.8em;
    transition: background 0.3s;
}

.tips-carousel-control:hover {
    background: rgba(0, 0, 0, 0.7);
}

.tips-carousel-control.prev {
    left: 0;
    border-radius: 0 8px 8px 0;
}

.tips-carousel-control.next {
    right: 0;
    border-radius: 8px 0 0 8px;
}

.tips-carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    padding: 5px 10px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

.tips-dot {
    height: 12px;
    width: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tips-dot.active-tips-dot {
    background-color: var(--color-icon-circle);
}

/* ######################### 9. FINAL CALL ######################### */
.final-call-section {
    background: linear-gradient(100deg, #18304c 0%, #1c3b5e 50%, #6c7f93 100%);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.final-call-section h2 {
    font-size: 2.8em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.final-call-section p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

.final-call-button {
    background-color: var(--color-primary);
    color: #FFFFFF;
    border: 1px solid #4a6a8a;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
}

.final-call-button:hover {
    background-color: #142c46;
    border-color: #6a8aaf;
}

/* ######################### 10. DEPOIMENTOS ######################### */
.testimonials-section {
    background-color: var(--color-primary-dark);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #FFFFFF;
}

.testimonial-carousel-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    box-sizing: border-box;
    padding: 50px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slide blockquote {
    font-style: italic;
    font-size: 1.4em;
    line-height: 1.5;
    margin: 0 0 20px 0;
    border: none;
    padding: 0;
}

.testimonial-slide cite {
    font-style: normal;
    font-weight: 600;
    color: #a7c0e0;
}

.testimonial-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.testimonial-control:hover {
    background: rgba(255, 255, 255, 0.2);
}

.testimonial-control.prev { left: 15px; }
.testimonial-control.next { right: 15px; }

/* ######################### 11. RODAPÉ ######################### */
.footer {
    background-color: var(--color-primary-dark);
    color: #FFFFFF;
}

.footer-highlight {
    padding: 60px 0;
    text-align: center;
}

.footer-title-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-icon-emoji {
    font-size: 3em;
    line-height: 1;
}

.footer-highlight h3 {
    font-size: 2.5em;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
}

.footer-highlight p {
    color: #FFFFFF;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.footer-links-grid {
    display: flex;
    justify-content: flex-start;
    gap: 100px;
    padding: 50px 0;
    text-align: left;
    color: #a7c0e0;
}

.footer-column h4 {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2em;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-lgpd-link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, transform 0.3s;
}

.footer-social-link:hover {
    background-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.footer-social-icon {
    width: 22px;
    height: 22px;
}

.footer-contact {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex: 1 1 0;
    width: 100%;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-guardian {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    width: clamp(200px, 26vw, 320px);
    padding-right: clamp(0px, 4vw, 60px);
}

.footer-guardian-image {
    width: 100%;
    height: auto;
    animation: floatAnimation 4s ease-in-out infinite;
}

.footer-column a, .footer-column p {
    color: #a7c0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #FFFFFF;
}

.footer-column p {
    margin-bottom: 12px;
}

.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-separator {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    max-width: 800px;
}

.footer-bottom p {
    color: #8a9bb3;
    font-size: 0.9em;
    margin: 5px 0;
    line-height: 1.5;
}

/* ######################### 12. SEÇÃO CANAIS DO CONSUMIDOR ######################### */
#canais-consumidor {
    background-color: var(--color-showcase-bg); /* Fundo azul claro, igual à seção "Benefícios" */
}

/* Criei essa classe para o subtítulo */
.section-subtitle {
    max-width: 600px; 
    margin: -30px auto 50px auto; 
    font-size: 1.1em; 
    color: #555;
    line-height: 1.5;
}

.canais-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    text-align: left;
}

.canal-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.canal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.canal-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.canal-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.8em;
}

.canal-card h3 {
    color: var(--color-primary);
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.canal-subtitle {
    font-size: 1em;
    font-weight: 600;
    color: #555;
    margin: 5px 0 0 0;
}

.canal-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0; /* Aumentei a margem inferior para dar espaço para o botão */
}

.canal-card li {
    color: #666;
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95em;
    line-height: 1.5;
}

.canal-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-icon-circle); /* Ponto dourado */
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1;
}

.canal-button {
    display: block; 
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    margin-top: auto; /* Isso empurra o botão para o final do card */
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    color: #FFFFFF;
    transition: filter 0.3s;
}

.canal-button:hover {
    filter: brightness(110%);
}

/* Cores para os Canais do Consumidor */
.canal-icon.icon-blue,
.canal-button.button-blue {
    background-color: var(--color-primary); /* Azul do sistema */
}

.canal-icon.icon-golden,
.canal-button.button-golden {
    background-color: var(--color-icon-circle); /* Dourado do sistema */
}

.canal-button.button-blue:hover {
    background-color: var(--color-primary-dark);
}

.canal-button.button-golden:hover {
    background-color: #B89B2E; /* Um dourado ligeiramente mais escuro para hover, como já tem no seu CSS */
}

/* Override para bullets dos cards azuis */
.canal-card.card-blue li::before {
    color: var(--color-primary); /* Ponto azul */
}

/* ######################### BOTÃO FLUTUANTE DO WHATSAPP ######################### */
.whatsapp-float-button {
    position: fixed;
    bottom: 25px;   
    right: 25px;    
    z-index: 1000;  
    background-color: var(--color-icon-circle);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float-button:hover {
    transform: scale(1.1);
    background-color: #B89B2E;
}

.whatsapp-float-button img {
    width: 40px;
    height: 40px;
}

/* ######################### BALÃO DE DIÁLOGO DO MASCOTE ######################### */
.mascot-container {
    position: relative;
    width: clamp(280px, 28vw, 430px);
    padding-right: clamp(40px, 6vw, 120px);
    margin: 0;
}

.speech-bubble {
    position: absolute;
    top: clamp(10%, 4vw, 24%);
    right: clamp(-48px, -4vw, -16px);
    background-color: #FFFFFF;
    color: var(--color-primary);
    padding: clamp(12px, 1.6vw, 16px) clamp(16px, 2.1vw, 20px);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    width: clamp(140px, 14vw, 190px);
    font-size: clamp(0.78rem, 1vw, 0.92rem);
    line-height: 1.45;
    font-weight: 500;
    text-align: left;
    text-align: start;
    word-break: normal;
    white-space: normal;
    opacity: 0;
    animation: fadeInUpBubble 0.5s ease-out 2s forwards;
}

.speech-bubble::after {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #FFFFFF;
}

@keyframes fadeInUpBubble {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ######################### RESPONSIVIDADE ######################### */
@media (max-width: 1100px) {
    .benefit-list, .pricing-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .has-fixed-header {
        padding-top: 130px; 
    }

    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 2em;
    }

    /* HERO SECTION Mobile */
    .hero-section {
        padding-top: 60px; /* Reduzido */
        padding-bottom: 60px; /* Reduzido */
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px; /* Espaço entre texto e mascote */
    }

    .hero-text-content {
        margin-bottom: 0; /* Removido para usar o gap */
        order: 1; /* Garante que o texto venha primeiro */
    }
    
    .hero-section h1 {
        font-size: 2.5em; 
    }

    .hero-section p {
        font-size: 1.1em; 
        margin: 0 auto 30px auto; /* Centraliza parágrafo */
    }
    
    /* ===== INÍCIO DA ATUALIZAÇÃO DO MASCOTE MOBILE (FLEXÍVEL) ===== */
    .hero-mascot {
        width: 100%;
        max-width: none;
        order: 2;
        align-items: center;
    }

    .mascot-container {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            
            /* --- CORREÇÃO --- */
            width: 100%; 
            max-width: 400px; /* Ajuste a largura máxima conforme necessário */
            padding-right: 0; /* REMOVIDO o padding que causava o bug */
            margin: 0 auto;
            gap: 12px; /* Adiciona um espaço entre o mascote e o balão */
            /* --- FIM DA CORREÇÃO --- */
        }

        .mascot-container > a {
            flex-shrink: 0; /* Impede que o link do mascote encolha */
            width: auto; 
        }

        .mascot-image {
            /* --- CORREÇÃO --- */
            width: clamp(150px, 42vw, 190px); /* Controla o tamanho do mascote */
            height: auto;
        }

        .speech-bubble {
            /* --- CORREÇÃO --- */
            position: relative; /* Torna-se parte do layout flex */
            right: auto;      /* Reseta o posicionamento absoluto */
            top: auto;        /* Reseta o posicionamento absoluto */
            transform: translateY(-20px);  /* Reseta o posicionamento absoluto */
            
            max-width: 170px; /* Largura máxima do balão */
            width: 100%;      /* Deixa ele ser flexível */
            font-size: 0.85em;
            padding: 12px 16px;
            opacity: 1;
            animation: none;
            text-align: left; /* Garante alinhamento */
            /* --- FIM DA CORREÇÃO --- */
        }

    .speech-bubble::after {
        display: block;
        left: -12px;                 
        right: auto;                
        transform: translateY(-50%); 
        top: 50%;                   
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-right: 8px solid #FFFFFF;
        border-left: 0; 
    }
/* ===== FIM DA ATUALIZAÇÃO DO MASCOTE MOBILE (FLEXÍVEL) ===== */

    /* HEADER Mobile */
.header-content {
    padding: 15px 20px;
    flex-direction: column; 
    height: 130px;
    gap: 15px; 
    justify-content: center;
    align-items: center; 
}

.header-top-row {
    display: flex;
    justify-content: center; 
    align-items: center;
    width: 100%;
    gap: 90px; 
}

.logo-area, .header-slogan {
    flex-basis: auto; 
    padding: 0;       
    text-align: center; 
}

.logo-area {
    justify-content: center;
}

.header-slogan {
    flex-basis: auto;
    padding: 0;
    text-align: center;
    position: static;      
    transform: none;       
    white-space: normal;   
}

.header-logo-img {
    width: 150px;
}

.slogan-small {
    font-size: 1em; 
}

.slogan-break {
    display: block; 
}

.header-cta {
    flex-basis: auto;
    margin-top: 0;
    padding: 7px 20px;   
    font-size: 0.85em;   
    width: 100%;
    max-width: 180px;    
    text-align: center;
}

    /* Outros Ajustes Mobile */

    .hero-section .primary-cta {
        white-space: normal;
        max-width: 320px;    
        width: 90%;          
        padding: 15px 20px;  
        font-size: 1em;
        line-height: 1.4;
        text-align: center;
        box-sizing: border-box; 
        margin: 10px auto 0 auto;
}


    .title-break {
    display: block;
    }

    .benefit-list, .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-list li {
        min-height: auto;
    }
    
    .carousel-container {
        padding-bottom: 100%; 
    }

    .carousel-control {
        padding: 10px 8px; 
        font-size: 1.2em;
    }

    .carousel-indicators {
        bottom: 10px; 
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 40px 20px;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 40px;
    }

    
    /* === Seção do Consumidor mobile === */

    .canais-grid {
        grid-template-columns: 1fr;
    }

    .section-subtitle {
        font-size: 1em;
        margin: -20px auto 40px auto;
    }

    .canal-card h3 {
        font-size: 1.3em;
    }
}
