/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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;
}





.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 */
.header {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: white;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 114px;
    z-index: 9999;

    /* Adicionamos uma transição para a sombra aparecer suavemente */
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}


/* Esta classe será adicionada via JavaScript quando fizeres scroll */
.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    /* Opcional: podes até diminuir um pouco o padding para o header "encolher" ao rolar */
    padding: 15px 114px;
}

.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: -160px;
    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: 850px;
    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: absolute;
    left: 114px;
    top: 279px;
    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: absolute;
    right: 0;
    top: 109px;
    width: 952px;
    height: 706px;
    z-index: 999;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 999;
}

/* 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;
}

/* 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: 160px 60px 60px;
        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 */
        touch-action: pan-y;
        /* 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;
        touch-action: pan-y;
    }

    .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;
}