/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Previne que o cabeçalho mobile tape o conteúdo das secções */
@media (max-width: 1024px) {
    html {
        scroll-behavior: auto;
        /* Ajusta/* Ajusta este valor para a altura da tua barra mobile (normalmente entre 80px a 100px) */
        scroll-padding-top: 100px; 
    }
}

html,
body {
    font-family: 'Inter', sans-serif;
    background: white;
    color: #000;
    line-height: 1.5;
    overflow-x: clip;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: auto;
    scrollbar-width: thin; 
    scrollbar-color: #01d7a4 #f9f9f9; 
    }
    
    /* 2. Chrome, Edge, Safari e Opera */
    
    /* Largura da barra */
    ::-webkit-scrollbar {
        width: 10px; 
    }
    
    /* REMOVE AS SETAS (Cima e Baixo) */
    ::-webkit-scrollbar-button {
        display: none; 
    }
    
    /* O fundo da barra (Track) - Totalmente Retangular */
    ::-webkit-scrollbar-track {
        background: #f9f9f9; 
        border-radius: 0; /* Tiramos os cantos arredondados */
    }
    
    /* A parte que arrastas (Thumb) - Bloco sólido retangular */
    ::-webkit-scrollbar-thumb {
        background: #01d7a4; 
        border-radius: 0; /* Tiramos os cantos arredondados */
    }
    
    /* Efeito ao passar o rato (Hover) */
    ::-webkit-scrollbar-thumb:hover {
        background: #00be91; 
    }





.landing-page {
    width: 100%;
    min-height: 100vh;
    background: white;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    margin: 0;
}

p {
    margin: 0;
}

.semi-bold {
    font-weight: 600;
}

.medium {
    font-weight: 500;
}

.italic {
    font-style: italic;
}

/* Header */
/* Header */
/* --- MODIFICADO: .header principal --- */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    /* Novo: obriga os elementos a empilharem-se (top e nav) */
    padding: 20px 114px;
    z-index: 9999;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 114px;
}

/* --- NOVO: A primeira linha do header --- */
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

/* --- NOVO: A área do menu --- */
/* Atualiza o teu .header-nav para incluir transições suaves */
.header-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-left:-5%;

    /* --- NOVAS REGRAS PARA A ANIMAÇÃO --- */
    max-height: 50px;
    /* Altura máxima suficiente para o menu */
    opacity: 1;
    overflow: hidden;
    /* Esconde o conteúdo quando a altura for 0 */
    transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
}

/* Nova classe que o JS vai adicionar ao fazer scroll para baixo */
.header-nav.hide {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
    /* Remove o espaçamento para o header encolher perfeitamente */
}

.header-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px;
    /* Espaço entre cada link do menu */
}

.header-nav li a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #00234a;
    /* Cor do teu botão secundário/ícones */
    transition: color 0.3s ease;
}

.header-nav li a:hover {
    color: #01d7a4;
    /* Verde da tua marca quando passas o rato */
}


.logo img {
    width: 240px;
    height: 56px;
    object-fit: contain;
}

/* O SEGREDO ESTÁ AQUI: Remova o position absolute */
.social-media {
    display: flex;
    gap: 12px;
    /* Se quiser ajustar a altura fina, use margin-top ou align-self */
}

.social-icon {
    width: 30px;
    height: 30px;
    display: block;
    fill: #00234a;
    /* Adicione uma cor para os SVGs aparecerem se necessário */
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

.cta-button {
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    transition: all 0.3s ease;
}

.cta-button.primary {
    /* 1. Essencial para links respeitarem largura e altura */
    display: inline-flex;
    align-items: center;
    /* Centraliza verticalmente */
    justify-content: center;
    /* Centraliza horizontalmente */
    background: #01d7a4;
    color: white;
    border-radius: 8px;
    min-width: 267px;
    height: 60px;


}

a {

    text-decoration: none;
}

.cta-button.primary:hover {
    background: #00be91 !important;
    /* Um tom mais escuro */
    transform: translateY(-2px);
    /* Leve subida */
    box-shadow: 0 4px 12px rgba(1, 215, 164, 0.3);
}

.cta-button.secondary {
    display: inline-flex;
    align-items: center;
    /* Centraliza verticalmente */
    justify-content: center;
    /* Centraliza horizontalmente */
    background: #00234a;
    color: white;
    border-radius: 8px;
    padding: 18px 40px;
    height: 59px;
    min-width: 231px;
}

.cta-button.secondary:hover {
    background: #003768;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(2, 106, 242, 0.3);
}

.cta-button.outline {

    /* 1. Essencial para links respeitarem largura e altura */
    display: inline-flex;
    align-items: center;
    /* Centraliza verticalmente */
    justify-content: center;
    /* Centraliza horizontalmente */
    background: transparent;
    color: white;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 10px 40px;
    height: 60px;
    min-width: 231px;
}

.cta-button.outline:hover {
    background: rgba(1, 215, 164, 0.1);
    transform: translateY(-2px);
    /* Leve subida */
    box-shadow: 0 4px 12px rgba(1, 215, 164, 0.3);
}

/* Hero Section */
.hero {
    position: relative;
    top: 0;
    width: 95%;
    /* Dá uma pequena margem nas laterais em ecrãs médios */
    max-width: 1530px;
    /* O segredo: o conteúdo nunca passará desta largura */
    margin: 0 auto;
    /* Centra o bloco no ecrã */
    min-height: 500px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    /* Agora o "between" é dentro dos 1440px */
    padding: 0 20px;
    /* Segurança para não colarem às bordas em tablets */
}

.hero-content {
    position: relative;
    z-index: 2;
    position: absolute;
    left: 114px;
    top: 0;
    max-width: 552px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 56px;
    color: #00234a;
    margin-bottom: 24px;
}

.hero-title .highlight-green {
    color: #01d7a4;
    font-weight: 600;
    font-style: italic;
}

.hero-description {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    margin-bottom: 32px;
    max-width: 402px;
}

.hero-image {
    position: relative;
    right: auto;
    top: auto;
    width: 560px;
    height: auto;
    z-index: 1;
    align-self: center;
    flex-shrink: 0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

/* Stats Section */
.stats {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #00234a;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 235px;
    margin-top: -248px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 56px;
    color: #01d7a4;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    line-height: 22px;
    color: white;
}

/* Three Profiles Section */
.three-profiles {
    position: relative;
    width: 100%;
    max-width: 1530px;
    margin: 60px auto 0;
    padding: 0 114px;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 56px;
    color: #00234a;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    text-align: center;
    margin-bottom: 62px;
}

.section-subtitlet {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    text-align: center;
    margin-bottom: 0px;
}

.section-title-left {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 56px;
    color: #00234a;
    text-align: left;
    margin-bottom: 16px;
}

.section-subtitle-left {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    text-align: left;
    margin-bottom: 62px;
}



.section-subtitle-wide {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    text-align: center;
    margin-bottom: 72px;
    max-width: 782px;
    margin-left: auto;
    margin-right: auto;
}

.cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 100px;
}

.profile-card {
    background: white;
    border: 0.5px solid rgba(1, 215, 164, 0.5);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 48px 32px;
    min-height: 498px;
    position: relative;
}

.card-icon {
    width: 39px;
    height: 39px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.plan-icon {
    width: 39px;
    height: 39px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.card-icon.green {
    background: #01d7a4;
}

.card-icon.yellow {
    background: #d2bf21;
}

.card-icon.purple {
    background: #8c3bae;
}

.card-category {
    font-size: 12px;
    line-height: 16px;
    color: #00234a;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.card-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 28px;
    color: #00234a;
    margin-bottom: 48px;
}

.card-description {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

/* Bad Deal Section 
.bad-deal-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #00234a;
    padding: 116px 114px;
    display: flex;
    gap: 60px;
    margin-top: 100px;
}

.content-wrapper {
    display: flex;
    gap: 80px;
    width: 100%;
}
*/

/* Bad Deal Section */
.bad-deal-section {
    position: relative;
    width: 100%;
    background: #00234a;
    /* Reduzimos o padding lateral aqui para 0 */
    padding: 116px 0;
    margin-top: 60px;
    display: block;
    /* Mudamos de flex para block para o wrapper mandar */
}

.content-wrapper {
    display: flex;
    gap: 80px;
    width: 100%;
    /* DEFINIÇÃO DE CENTRAGEM */
    max-width: 1280px;
    /* Ou 1300px conforme preferires */
    margin: 0 auto;
    /* O segredo para centrar em ecrãs > 1500px */
    padding: 0 40px;
    /* Margem de segurança para ecrãs menores */
    box-sizing: border-box;
    align-items: center;
    /* Alinha o texto e o card verticalmente */
}

/* Ajuste para garantir que o texto não fique esmagado */
.text-content {
    flex: 1;
}

.report-preview {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    /* Alinha o card à direita do wrapper */
}

/* Responsivo para Mobile */
@media (max-width: 1024px) {
    .content-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .report-preview {
        justify-content: center;
    }
}

.text-content {
    flex: 1;
    max-width: 550px;
}

.section-title-white {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 46px;
    color: white;
    margin-bottom: 32px;
}

.description-white {
    font-size: 16px;
    line-height: 22px;
    color: white;
    margin-bottom: 24px;
}

.description-white-medium {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: white;
    margin-bottom: 92px;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-box {
    background: #0c3768;
    border: 0.5px solid rgba(1, 215, 164, 0.5);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    padding: 27px 32px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-family: 'Noto Serif Display', serif;
    font-size: 42px;
    line-height: 56px;
    color: #01d7a4;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: white;
    margin-bottom: 12px;
}

.step-description {
    font-size: 14px;
    line-height: 22px;
    color: white;
}

.report-preview {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.report-card {
    background: #0c3768;
    border: 0.5px solid rgba(1, 215, 164, 0.5);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 67px 40px;
    width: 484px;
    min-height: 589px;
}

.report-brand {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: white;
    margin-bottom: 85px;
    text-align: center;
}

.report-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 26px;
    color: white;
    margin-bottom: 24px;
}

.report-subtitle {
    font-size: 16px;
    line-height: 22px;
    color: white;
    margin-bottom: 24px;
}

.report-line {
    width: 100%;
    height: 1px;
    background: #01d7a4;
    margin-bottom: 28px;
}

.report-data {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
}

.data-label {
    font-size: 12px;
    line-height: 22px;
    color: white;
}

.data-value {
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
}

.data-value.green {
    color: #01d7a4;
}

.data-value.white {
    color: white;
}

.data-value.red {
    color: #da3d3d;
}

/* Four Steps Section */
.four-steps {
    position: relative;
    max-width: 1529px;
    margin: 60px auto 0;
    padding: 0 114px;
}

.steps-visual-container {
    display: flex;
    gap: 100px;
    margin-top: 72px;
    position: relative;
}

.steps-list {
    flex: 1;
    max-width: 550px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 48px;
}

.step-circle {
    width: 32px;
    height: 32px;
    border: 0.5px solid #01d7a4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Noto Serif Display', serif;
    font-size: 24px;
    line-height: 26px;
    color: #00234a;
}

.step-info {
    flex: 1;
}

.step-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    color: #00234a;
    margin-bottom: 8px;
}

.step-text {
    font-size: 16px;
    line-height: 22px;
    color: #000;
}

.phone-mockup {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to left, #00234a 50%, transparent 50%) !important;
    background-repeat: no-repeat !important;
    background-position: right center !important;
    background-size: 100% 90% !important;
    border-radius: 0px;
    min-height: 700px;
    margin-left: -200px;

}

@media (max-width: 1024px) {
    .phone-mockup {
        display: none !important;
    }

    .ebook-image {
        display: none !important;
    }


}

.rotated-phone {
    width: 100%;
    max-width: 850px;
    height: auto;
    margin-top: -100px;
}


.rotated-plan {

    width: 100%;
    max-width: 850px;
    height: auto;
}

/* Pricing Plans Section */
.pricing-plans {
    position: relative;
    width: 100%;
    max-width: 1530px;
    margin: 60px auto 0;
    padding: 0 114px;
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 62px;
}

.plan-card {

    border: 0.5px solid rgba(1, 215, 164, 0.5);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
    padding: 50px 30px 80px 30px;
    position: relative;
}


.plan-card.elementar {
    min-height: 563px;
    background: white;
}

.plan-card.basic {
    max-height: 500px;
    background: white;
}

.plan-card.elementar {
    min-height: 763px;
}

.plan-card.pro {
    max-height: 463px;
    background: #00234A;

}

.plan-card.pro h3,
.plan-card.pro p {
    color: #fff !important;
}


@media (max-width: 768px) {

    .plan-card.pro,
    .plan-card.basic {
        max-height: none;
        /* No mobile, o card tem de crescer com o texto */
        padding: 30px 20px 40px 20px;
    }
}

.preco-plan {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.plan-name {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 56px;
    color: #00234a;
    text-align: left;
    margin-bottom: 16px;
}

.plan-price {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 56px;
    color: #00234a;
    text-align: center;
    margin-bottom: 24px;
}

.plan-description {
    flex-grow: 1;
    font-size: 15px;
    line-height: 20px;
    color: #000;
    margin-bottom: 32px;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkmark {
    width: 27px;
    height: 27px;
    background: #a3f0df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #01d6a6;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-item span:last-child {
    font-size: 16px;
    line-height: 22px;
    color: #000;
    flex: 1;
}

.navy {
    color: #0c3768;
    font-weight: 600;
}

.plan-button {
    /* 1. Essencial para links respeitarem largura e altura */
    display: inline-flex;
    align-items: center;
    /* Centraliza verticalmente */
    justify-content: center;
    /* Centraliza horizontalmente */

    width: 168px;
    height: 61px;
    background: #01d7a4 !important;
    color: white;
    border: none;
    border-radius: 8px;

    /* 2. Melhor mover o text-decoration para cá */
    text-decoration: none;

    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}


.plan-button:hover {
    background: #00be91 !important;
    /* Um tom mais escuro */
    transform: translateY(-2px);
    /* Leve subida */
    box-shadow: 0 4px 12px rgba(1, 215, 164, 0.3);
}


.plan-button.secondary {
    margin-top: auto;
    /* Empurra o botão obrigatoriamente para o fim do card */
    align-self: flex-start;
    /* Mantém o botão à esquerda como na imagem */
    width: fit-content;
    background: transparent;
    border: 1px solid #01d7a4;
    color: #fff;
    width: 115px !important;
    height: 55px !important;
}

.plan-button.secondary:hover {
    background: rgba(1, 215, 164, 0.1);
}

/* Trust Section */
.trust-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 60px auto 0;
    padding: 10px 114px;
    min-height: 277px;
}

.logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    margin-top: 6px;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    width: 100%;
    max-width: 1530px;
    margin: 60px auto 0;
    padding: 0 114px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 96px;
}

.testimonial-card {
    background: #00234a;
    border: 1px solid rgba(1, 215, 164, 0.5);
    padding: 67px 32px;
    min-height: 357px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 18px;
    line-height: normal;
    color: white;
    margin-bottom: 32px;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: normal;
    color: #01d7a4;
    margin-bottom: 4px;
}

.testimonial-role {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 16px;
    line-height: normal;
    color: white;
}

/* Ebook Section */
.ebook-section {
    position: relative;
    width: 90%;
    max-width: 1530px;
    margin: 140px auto 0;
    background: #00234a;
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    height: 496px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 114px;
}

.ebook-content {
    max-width: 486px;
}

.ebook-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 32px;
    line-height: 36px;
    color: white;
    margin-bottom: 24px;
}

.ebook-description {
    font-size: 16px;
    line-height: 22px;
    color: white;
    margin-bottom: 32px;
    max-width: 417px;
}

.ebook-image {
    position: absolute;
    right: 0;
    bottom: -100px;
    width: 801px;
    height: 669px;
}

.ebook-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Press Section */
.press-section {
    position: relative;
    width: 90%;
    max-width: 1530px;
    margin: 60px 140px 0px 140px;
    padding: 0 114px;
}

.press-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 84px;
}

.press-item {
    display: flex;
    flex-direction: column;
}

.press-item img {
    width: 100%;
    height: 427px;
    object-fit: cover;
    margin-bottom: 16px;
}

.press-text {
    font-size: 18px;
    line-height: normal;
    color: #000;
    margin-bottom: 12px;
}

.press-source {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 12px;
    line-height: normal;
    color: #000;
}

/* Press Section — Mobile Fix */
@media (max-width: 1024px) {
  .press-section {
    width: auto !important;
    max-width: 100% !important;
    margin: 60px 20px 0 20px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }
  .press-images {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    margin-top: 32px !important;
  }
  .press-item img {
    height: 220px !important;
  }
}

/* FAQ Section */
.faq-section {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 60px auto 0;
    padding: 0 114px;
}

.faq-list {
    margin-top: 73px;
}

.faq-item {
    /* display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0; */
    border-top: 1px solid rgba(1, 215, 164, 0.5);
}

.faq-item:last-child {
    border-bottom: 1px solid rgba(1, 215, 164, 0.5);
}

.faq-question {
    font-size: 18px;
    line-height: normal;
    color: #000;
}

.faq-icon {
    font-family: 'Outfit', sans-serif;
    font-size: 25px;
    font-weight: bold;
    line-height: normal;
    color: #00234a;
}

/* Final CTA Section */
.final-cta {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 60px auto 0;
    background: linear-gradient(180deg, #00234a 50.076%, #01d7a4 100%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
    height: 423px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.final-cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 46px;
    color: white;
    margin-bottom: 24px;
}

.final-cta-title .highlight-italic {
    color: #01d7a4;
    font-style: italic;
}

.final-cta-description {
    font-size: 16px;
    line-height: 22px;
    color: white;
    max-width: 486px;
    margin-bottom: 32px;
}

.final-cta-buttons {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.final-cta-guarantee {
    font-size: 12px;
    line-height: 22px;
    color: white;
}

/* Footer */
.footer {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: #00234a;
    min-height: 357px;
    padding: 32px 124px;
}

.footer-content {
    display: flex;
    justify-content: space-between;

}

.footer-left {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 290px;
    margin-bottom: 32px;
}

.footer-logo img {
    width: 100%;
    margin-left: -34px;
    height: auto;
}

.footer-email {
    font-size: 16px;
    line-height: 100%;
    color: white;
    text-align: left;
    margin-bottom: 80px;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-social-icon {
    width: 29px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon svg {
    width: 100%;
    height: 100%;
    fill: #fff;
}

.footer-copyright {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: normal;
    color: white;
    max-width: 480px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 100%;
    color: white;
    margin-bottom: 46px;
}

.footer-link {
    font-size: 15px;
    font-weight: 500;
    line-height: 100%;
    color: white;
    margin-bottom: 25px;
}

.footer-policy {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 13px;
    line-height: normal;
    color: white;
    margin-top: 32px;
    margin-bottom: 8px;
}

.politicas {
    display: flex;
    flex-direction: row;
    gap: 15px;

}

/* Responsive Design */
@media (max-width: 1400px) {

    .header,
    .hero,
    .stats,
    .three-profiles,
    .bad-deal-section,
    .four-steps,
    .pricing-plans,
    .trust-section,
    .testimonials,
    .ebook-section,
    .press-section,
    .faq-section,
    .final-cta,
    .footer {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 1200px) {
    .header {
        padding: 0 60px;
    }

    .hero {
        flex-direction: column;
        padding: 20px 60px 40px;
        min-height: auto;
    }

    .hero-content {
        position: relative;
        left: 0;
        top: 0;
        max-width: 100%;
        margin-bottom: 60px;
    }

    .hero-image {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-width: 800px;
        margin: 0 auto;
    }

    .cards-container,
    .plans-container,
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .steps-visual-container {
        flex-direction: column;
    }

    .press-images {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 48px;
    }

    .footer-right {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 0 24px;
        flex-direction: column;
        gap: 20px;
        top: 24px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 42px;
    }

    .section-title {
        font-size: 32px;
        line-height: 42px;
    }

    .three-profiles,
    .bad-deal-section,
    .four-steps,
    .pricing-plans,
    .trust-section,
    .testimonials,
    .ebook-section,
    .press-section,
    .faq-section {
        padding: 0 24px;
    }



    .ebook-section {
        flex-direction: column;
        height: auto;
        padding: 60px 24px;
    }

    .ebook-image {
        position: relative;
        width: 100%;
        height: auto;
        margin-top: 40px;
    }

    .final-cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .logos-container {
        flex-direction: column;
        gap: 40px;
    }
}

/* No Desktop: Esconde as cópias e mantém tudo estático */
.mobile-copy {
    display: none !important;
}

.stats-track {
    display: flex;
    justify-content: center;
    /* Centra os 3 itens originais no desktop */
    gap: 235px;
}

@media (max-width: 768px) {
    .stats {
        overflow: hidden;
        padding: 40px 0;
    }

    .mobile-copy {
        display: block !important;
        /* Mostra as cópias apenas no mobile */
    }

    .stats-track {
        display: flex;
        width: max-content;
        gap: 60px;
        justify-content: flex-start;
        /* Alinha à esquerda para começar a correr */
        animation: marqueeStats 20s linear infinite;
        will-change: transform;
    }

    .stat-item {
        flex-shrink: 0;
        min-width: 200px;
    }

    @keyframes marqueeStats {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }

        /* Move exatamente metade do conteúdo total */
    }
}

@media (max-width: 480px) {

    .cta-button.primary,
    .cta-button.secondary {
        min-width: auto;
        width: 100%;
        padding: 16px 24px;
    }

    .hero-title {
        font-size: 28px;
        line-height: 36px;
    }

    .section-title {
        font-size: 28px;
        line-height: 36px;
    }

    .report-card {
        width: 100%;
        padding: 40px 24px;
    }
}



@media (max-width: 768px) {
    .testimonials-container {
        position: relative;
        overflow: hidden;
        /* Garante que nada saia fora no swipe */
        /* Permite scroll vertical da página, mas captura o horizontal */
    }

    .testimonial-card {
        display: none;
        width: 100%;
        animation: fadeIn 0.4s ease-in-out;
    }

    .testimonial-card.active {
        display: block;
    }

    .carousel-controls-mobile {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }

    .dots-container {
        display: flex;
        gap: 8px;
    }

    .dot {
        height: 10px;
        width: 10px;
        background-color: #D5D7DA;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dot.active {
        background-color: #01d7a4;
        width: 25px;
        border-radius: 10px;
    }
}

/* Desktop continua igual */
@media (min-width: 769px) {
    .carousel-controls-mobile {
        display: none;
    }

    .testimonials-container {
        display: flex;
        gap: 20px;
    }

    .testimonial-card {
        display: block !important;
        flex: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}



/* --- MOBILE (Abaixo de 768px) --- */
@media (max-width: 768px) {
    #profiles-swipe {
        position: relative;
        overflow: hidden;
    }

    .profile-card {
        display: none;
        /* Esconde todos */
        width: 100%;
        animation: fadeInProfile 0.4s ease-in-out;
    }

    .profile-card.active {
        display: block;
        /* Mostra apenas o ativo */
    }

    .profiles-controls-mobile {
        display: flex;
        justify-content: center;
        margin-top: 30px;
    }

    .dots-container-profiles {
        display: flex;
        gap: 8px;
    }

    .dot-profile {
        height: 10px;
        width: 10px;
        background-color: #D5D7DA;
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dot-profile.active {
        background-color: #01d7a4;
        width: 25px;
        border-radius: 10px;
    }
}

/* --- DESKTOP (Acima de 769px) --- */
@media (min-width: 769px) {
    .profiles-controls-mobile {
        display: none;
    }

    .cards-container {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        padding: 0 114px;
    }

    .profile-card {
        display: block !important;
        flex: 1;
    }
}

@keyframes fadeInProfile {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}


@media (max-width: 769px) {
    .bad-deal-section {
        padding: 15px 24px !important;

    }
}











@media (max-width: 768px) {
    #bad-deal-swipe {
        position: relative;
        overflow: hidden;
        display: block;
        /* No mobile não é flex para os slides ocuparem a largura toda */
    }

    .faq-section,
    .pricing-plans,
    .four-steps,
    .bad-deal-section,
    .three-profiles,
    .trust-section,
    .press-section {
        margin: 80px auto 0;
    }

    .section-title-white,
    .final-cta-title {
        font-size: 25px;
        line-height: 30px;
    }

    .description-white-medium {
        margin-bottom: 20px;
    }

    .cards-container {
        margin-bottom: 20px;
    }

    .text-content,
    .report-preview {
        display: none;
        /* Esconde ambos */
        width: 100%;
        animation: fadeInBadDeal 0.5s ease;
    }

    .text-content.active,
    .report-preview.active {
        display: block;
        /* Mostra apenas o ativo */
    }

    .bad-deal-controls-mobile {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

    .dots-container-bad-deal {
        display: flex;
        gap: 8px;
    }

    .bad-deal-section {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }


    .dot-bad-deal {
        height: 10px;
        width: 10px;
        background-color: rgba(255, 255, 255, 0.3);
        /* Dots brancos transparentes para fundo escuro */
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .dot-bad-deal.active {
        background-color: #01d7a4;
        width: 25px;
        border-radius: 10px;
    }
}

/* --- DESKTOP (Acima de 769px) --- */
@media (min-width: 769px) {
    .bad-deal-controls-mobile {
        display: none;
    }

    .text-content,
    .report-preview {
        display: block !important;
        flex: 1;
    }
}

@keyframes fadeInBadDeal {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {

    /* 1. Ajuste do Container Geral da Hero */
    .hero {
        display: flex;
        flex-direction: column;
        /* Empilha Texto em cima e Imagem em baixo */
        align-items: center;
        text-align: center;
        /* Centra o texto para ficar mais harmônico */
        padding: 40px 20px;
        /* Espaçamento interno lateral e superior */
        min-height: auto;
        /* Remove a altura mínima fixa para não sobrar buracos */
    }

    /* 2. Ajuste do Conteúdo de Texto */
    .hero-content {
        width: 100%;
        margin-bottom: 30px;
        /* Dá espaço entre o texto e a imagem */
    }

    .hero-title {
        font-size: 32px;
        /* Reduz um pouco o título para não quebrar muitas linhas */
        line-height: 1.2;
    }

    .hero-description {
        font-size: 16px;
        margin-top: 15px;
    }

    /* 3. Ajuste da Imagem (O que você pediu) */
    .hero-image {
        position: relative;
        width: 100%;
        max-height: 350px;
        /* Ocupa a largura disponível */
        max-width: 440px;
        /* Não deixa a imagem ficar gigante em tablets */
        margin: 0 auto;
        right: auto;
        top: auto;
        display: block;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        /* Importante: auto para não achatar a imagem */
        object-fit: contain;
        /* Adiciona um leve efeito para a imagem não parecer "colada" no fundo */
        filter: drop-shadow(0px 10px 20px rgba(0, 0, 0, 0.1));
    }

    /* Ajuste do botão para ocupar a largura quase toda no mobile */
    .hero .cta-button {
        width: 100%;
        max-width: 300px;
        margin: 20px auto 0;
    }
}


@media (max-width: 450px) {

    /* 3. Ajuste da Imagem */
    .hero-image {
        position: relative;
        width: 100%;
        max-height: 380px;
        /* Ocupa a largura disponível */
        max-width: 440px;
        /* Não deixa a imagem ficar gigante em tablets */
        margin: 0 auto;
        right: auto;
        top: auto;
        display: block;
    }
}

/* --- AJUSTES PARA MOBILE (Ecrãs até 768px) --- */
@media (max-width: 768px) {
    .footer {
        padding: 40px 24px;
        min-height: auto;
        gap: 10px;
    }

    .footer-content {
        flex-direction: column;
        /* Empilha as colunas */
        align-items: flex-start;
        /* Alinha tudo à esquerda */
        text-align: left;
        /* Texto alinhado à esquerda */
    }

    .footer-left {
        align-items: flex-start;
        /* Itens à esquerda */
        margin-bottom: 32px;
        width: 100%;
    }

    .footer-logo {
        width: 200px;
        margin-right: 0;
    }

    .footer-logo img {
        margin-left: 0;
        /* Remove o recuo negativo do desktop */
    }

    .footer-email {
        text-align: left;
        margin-bottom: 32px;
    }

    .footer-social {
        justify-content: flex-start;
        /* Ícones sociais à esquerda */
    }

    .footer-right {
        align-items: flex-start;
        /* Coluna da direita agora alinha à esquerda */
        width: 100%;
    }

    .footer-heading {
        margin-bottom: 24px;
        font-size: 20px;
        /* Ajuste leve para mobile */
    }

    /* Classe .copi ajustada para ser responsiva */
    .copi {
        display: flex;
        flex-direction: column;
        /* Em mobile, vira coluna para não apertar */
        width: 100%;
        max-width: 100%;
        align-items: flex-start;
        /* Alinha o copyright e as políticas à esquerda */
        justify-content: flex-start;
        gap: 20px;
    }

    .footer-copyright {
        text-align: left;
        max-width: 100%;
    }

    .politicas {
        justify-content: flex-start;
        /* Links à esquerda */
        flex-wrap: wrap;
        gap: 10px;
    }
}





/* Fundo escurecido atrás do popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* O Retângulo do Popup */
.popup-content {
    width: 30%;
    width: 700px;
    padding: 15px;
    text-align: center;
    font-family: sans-serif;
}

.popup-content h3 {
    margin-top: 0;
    margin-bottom: 90px;
    font-size: 25px;
    font-weight: 600;
    color: #fff;
}

/* Alinhamento das Bandeiras */
.flags-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 10px;
}

.flag-option {
    cursor: pointer;
    transition: transform 0.2s;
}

.flag-option:hover {
    transform: scale(1.1);
}

.flag-option img {
    width: 80px;
    /* Tamanho da bandeira */
    display: block;
    margin: 0 auto 5px;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.flag-option span {
    font-size: 16px;
    font-weight: bold;
    display: block;
    color: #fff;
}


/* ===== HERO LAYOUT FIXES ===== */

/* Desktop (>=1025px): layout original — texto esquerda, imagem direita, CTA abaixo do texto */
@media (min-width: 1025px) {
  .hero {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    flex-wrap: nowrap !important;
  }
  .hero-content {
    position: relative !important;
    z-index: 2 !important;
    flex: 0 0 auto;
    width: auto;
  }
  .hero-image {
    display: block !important;
    z-index: 1 !important;
  }
  .hero-cta-desktop { display: inline-flex !important; }
  .hero .hero-cta-mobile { display: none !important; visibility: hidden !important; position: absolute !important; width: 0 !important; height: 0 !important; overflow: hidden !important; }
}

/* Mobile (<=1024px): coluna — texto, imagem, botão */
@media (max-width: 1024px) {
  .hero {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-content {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .hero-image {
    order: 2;
    display: block !important;
    width: 100% !important;
    max-width: 440px;
    margin: 20px auto 0 !important;
  }
  .hero-cta-mobile {
    order: 3;
    display: inline-flex !important;
    margin: 24px auto 0 !important;
  }
  .hero-cta-desktop { display: none !important; visibility: hidden !important; position: absolute !important; width: 0 !important; height: 0 !important; overflow: hidden !important; pointer-events: none !important; }
}

@media (min-width: 1025px) {
  .hero-cta {
    display: inline-flex !important;
    margin-top: 32px;
  }
  .hero-image {
    display: block !important;
  }
}

/* hero-cta: mobile — aparece depois da imagem, centrado */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column !important;
    align-items: center !important;
  }
  .hero-content {
    order: 1;
    width: 100%;
    text-align: center;
  }
  .hero-image {
    order: 2;
    display: block !important;
    width: 100% !important;
    max-width: 440px;
    margin: 20px auto 0 !important;
  }
  .hero-cta {
    order: 3;
    margin: 24px auto 0 !important;
    display: inline-flex !important;
  }
}

/* === FIXES ValuNext 2026 === */
/* Mostrar imagem do ebook em mobile */
.ebook-image { display: block !important; }
@media (max-width: 768px) {
  .ebook-image { width: 100% !important; max-width: 420px; margin: 32px auto 0 !important; display: block !important; }
  .ebook-image img { width: 100% !important; height: auto !important; }
  .ebook-section { flex-direction: column !important; align-items: center !important; text-align: center; padding-bottom: 40px !important; }
}

/* stats sem margin negativo em todos os tamanhos agora que hero-image está no flow */
.stats { margin-top: 0 !important; }
@media (max-width: 1024px) { .stats { margin-top: 20px !important; } }

@media (max-width: 768px) {
  .hero-image { display: block !important; }
  .hero { padding-top: 90px !important; min-height: auto !important; }
}

html { scroll-padding-top: 80px !important; }
.header-mobile + * .hero, .hero { --hero-mobile-pt: 0px; }
@media (max-width: 1024px) { .hero { padding-top: 0 !important; } }


.bad-deal-section { opacity: 1 !important; transform: none !important; }
.rotated-phone { opacity: 1 !important; transform: none !important; }
.plan-card { transform: none !important; }
/* === HERO NEUROMARKETING UPDATE === */
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(1, 215, 164, 0.12);
    color: #085041;
    font-size: 12px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 20px;
    border: 0.5px solid rgba(1, 215, 164, 0.4);
    margin-bottom: 14px;
    display: inline-block;
}
.hero-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    margin-bottom: 16px;
    line-height: 1.4;
}
.cta-link-secondary {
    display: inline-block;
    margin-top: 12px;
    font-size: 14px;
    color: #00234A;
    text-decoration: none;
    opacity: 0.7;
}
.cta-link-secondary:hover { opacity: 1; text-decoration: underline; }
.hero-trust-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}
@media (max-width: 1024px) {
    .hero-subtitle { font-size: 17px; }
    .hero-trust-bar { justify-content: center; flex-wrap: wrap; }
    .cta-link-secondary { display: block; text-align: center; }
}
/* === NEUROMARKETING UPDATE === */

/* Hero — link "Ou comece grátis" */
.cta-link-free {
    display: inline-block;
    margin-top: 8px;
    font-size: 13px;
    color: #01D7A4;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.01em;
}
.cta-link-free:hover { text-decoration: underline; opacity: 0.85; }

/* Bad-deal CTA */
.bad-deal-cta {
    display: inline-block;
    margin-top: 24px;
    background: #01D7A4;
    color: #00234A;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.bad-deal-cta:hover { opacity: 0.88; }
.hidden-spacer { display: none; }

/* Pricing badges */
.plan-badge-wrap {
    text-align: center;
    margin-bottom: -12px;
    position: relative;
    z-index: 2;
}
.plan-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}
.plan-badge-free {
    background: #E1F5EE;
    color: #085041;
    border: 0.5px solid #5DCAA5;
}
.plan-badge-popular {
    background: #00234A;
    color: #01D7A4;
    border: 0.5px solid #01D7A4;
}

/* Elementar card — destaque visual */
.plan-card.elementar {
    border: 1.5px solid #01D7A4 !important;
    position: relative;
}

/* Testemunho destacado — primeiro item */
.testimonials .testimonial-item:first-child .testimonial-number {
    font-size: 28px;
    font-weight: 500;
    color: #01D7A4;
    margin-bottom: 8px;
}
/* FORCE HIDE hero-cta-desktop em mobile */
@media screen and (max-width: 1024px) {
  .hero .hero-cta-desktop,
  .hero-cta-desktop {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
    opacity: 0 !important;
  }
}
/* === CONVERSÃO UPDATE === */

/* Profile CTA — botão por persona */
.profile-cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 500;
    color: #01D7A4;
    text-decoration: none;
    border: 1px solid rgba(1,215,164,0.4);
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}
.profile-cta:hover {
    background: #01D7A4;
    color: #00234A;
}

/* FAQ final CTA */
.faq-final-cta {
    text-align: center;
    padding: 32px 20px 8px;
    border-top: 0.5px solid rgba(255,255,255,0.1);
    margin-top: 24px;
}
.faq-final-cta p {
    font-size: 15px;
    color: #444;
    margin-bottom: 16px;
}
.faq-section .faq-final-cta .bad-deal-cta {
    display: inline-block;
    background: #00234A;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
}
.faq-section .faq-final-cta .bad-deal-cta:hover { opacity: 0.88; }

/* Pro badge */
.plan-badge-wrap-pro { margin-bottom: -12px; text-align: center; position: relative; z-index: 2; }
.plan-badge-pro {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 14px;
    border-radius: 20px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 0.5px solid rgba(255,255,255,0.4);
    letter-spacing: 0.03em;
}

/* Mobile: profile-cta centrado */
@media (max-width: 768px) {
    .profile-cta { display: block; text-align: center; margin-top: 12px; }
    .faq-final-cta { padding: 24px 16px 8px; }
}
/* === PRICING 3 CARDS EM LINHA === */
@media (min-width: 1025px) {
  .plans-container {
    grid-template-columns: repeat(3, 1fr) !important;
    align-items: start !important;
  }
  /* Badge wrap do Pro alinhado com os outros */
  .plan-badge-wrap-pro {
    grid-column: auto;
  }
}

/* Final CTA social proof */
.final-cta-social {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    letter-spacing: 0.03em;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 11px;
}

/* Final CTA — Fix header sticky overlap mobile */
@media (max-width: 1024px) {
  section.final-cta {
    scroll-margin-top: 100px !important;
    padding-top: 32px !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-bottom: 48px !important;
    overflow: visible !important;
  }
  section.final-cta .final-cta-social {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: rgba(255,255,255,0.85) !important;
    font-size: 11px !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    letter-spacing: 0.05em !important;
  }
  section.final-cta .final-cta-title {
    text-align: center !important;
  }
  section.final-cta .final-cta-description {
    text-align: center !important;
    max-width: 100% !important;
  }
}
  section.final-cta .final-cta-social {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: rgba(255,255,255,0.85) !important;
    font-size: 11px !important;
    margin-bottom: 16px !important;
    text-align: center !important;
    letter-spacing: 0.05em !important;
  }
  section.final-cta .final-cta-title {
    text-align: center !important;
  }
  section.final-cta .final-cta-description {
    text-align: center !important;
    max-width: 100% !important;
  }
}

/* Final CTA social proof — garantir visível abaixo do header sticky em mobile */
@media (max-width: 1024px) {
  section.final-cta {
    margin-top: 0 !important;
  }
  section.final-cta .final-cta-social {
    padding-top: 8px !important;
  }
}

/* Final CTA social proof — wrapper fora da section escura */
.final-cta-social-wrap {
  background: #00234A;
  text-align: center;
  padding: 20px 24px 0;
  margin-top: 60px;
}
.final-cta-social-pre {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
  padding-bottom: 20px;
}
/* Social proof wrap — visível em ambos */
.final-cta-social-wrap { display: block !important; }
section.final-cta .final-cta-social { display: none !important; }

/* Desactivar scroll-behavior smooth em mobile — causa saltos */
@media (max-width: 1024px) {
  html {
    scroll-behavior: auto !important;
  }
}


/* Desactivar animações AOS em mobile — causam saltos de layout */
@media (max-width: 1024px) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }
  [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* OVERRIDE FINAL — Desactivar scroll smooth em mobile (causa saltos no touch) */
@media (max-width: 1024px) {
  html, html * {
    scroll-behavior: auto !important;
  }
}

/* CRITICAL FIX — Impedir sliders de capturar scroll vertical em mobile */
@media (max-width: 1024px) {
  .three-profiles,
  .cards-container,
  .testimonials-container,
  #swipe-container,
  .bad-deal-section,
  .testimonials {
  }
}

/* Remover transformações que causam layout shift durante scroll */
@media (max-width: 1024px) {
  .bad-deal-section *,
  .three-profiles *,
  .testimonials * {
    -webkit-transform: none !important;
    transform: none !important;
    transition-property: opacity !important;
  }
}