:root {
    --blue: #001a7f;
    --blue-soft: #0c2a9e;
    --blue-deep: #000818;
    --orange: #ff9100;
    --bg: radial-gradient(circle at top, #020617 0, #020617 35%, #000000 100%);
    --text: #f9fafb;
    --muted: #9ca3af;
    --border: #1f2937;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.75);
    --shadow-light: 0 12px 32px rgba(0, 0, 0, 0.4);
    --max-width: 1180px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Open Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

.page {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 24px 16px 72px;
    text-align: center;
}

/* HEADER */

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 10px;
    /* se quiser levemente arredondada */
}


.logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--blue), var(--orange));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: 22px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.logo-text span:first-child {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #e5e7eb;
}

.logo-text span:last-child {
    font-size: 12px;
    color: var(--muted);
}

.nav {
    display: flex;
    gap: 18px;
    font-size: 13px;
    color: var(--muted);
}

.nav a {
    position: relative;
    padding-bottom: 3px;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.18s ease-out;
}

.nav a:hover::after {
    width: 100%;
}

/* BOTÕES */

.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.18s ease-out;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--orange), #ffb347);
    color: #111827;
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(249, 250, 251, 0.7);
    color: #e5e7eb;
}

.btn-outline:hover {
    background: rgba(249, 250, 251, 0.06);
}

/* HERO */

.hero {
    margin-top: 10px;
    padding: 32px 26px 30px;
    border-radius: 26px;
    background: radial-gradient(circle at top left, #1d4ed8 0, #001a7f 40%, #000818 100%);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: center;
    text-align: left;
}

.hero-left {
    text-align: left;
}

.hero-right {
    background: rgba(15, 23, 42, 0.75);
    border-radius: 20px;
    border: 1px solid rgba(156, 163, 175, 0.4);
    padding: 18px 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(191, 219, 254, 0.6);
    font-size: 12px;
    margin-bottom: 12px;
}

.hero-kicker span.tag {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    color: var(--orange);
}

.hero h1 {
    font-size: clamp(28px, 3.6vw, 36px);
    line-height: 1.2;
    margin-bottom: 12px;
    color: #f9fafb;
}

.hero h1 .highlight {
    color: var(--orange);
}

.hero-subtitle {
    font-size: 15px;
    color: #e5e7eb;
    margin-bottom: 18px;
    line-height: 1.7;
    max-width: 560px;
}

.hero-subtitle strong {
    color: #fbbf24;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 10px;
}

.hero-note {
    font-size: 13px;
    color: #cbd5f5;
    max-width: 560px;
    margin-top: 6px;
}

.hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    margin-top: 16px;
}

.metric-pill {
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #e5e7eb;
}

.metric-pill strong {
    font-weight: 700;
    color: #fff;
}

/* MINI HEADERS */

.mini-header {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #bfdbfe;
    margin-bottom: 6px;
}

/* LISTAS */

.list-hero {
    list-style: none;
    font-size: 13px;
    color: #e5e7eb;
    display: grid;
    gap: 6px;
}

.list-hero li {
    display: flex;
    gap: 6px;
}

.list-hero li::before {
    content: "•";
    color: var(--orange);
    font-weight: 700;
    margin-top: 1px;
}

/* IMAGE PLACEHOLDER */

.image-placeholder {
    border-radius: 14px;
    border: 1px dashed rgba(156, 163, 175, 0.6);
    background: rgba(15, 23, 42, 0.6);
    color: var(--muted);
    padding: 18px 10px;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-image {
    min-height: 190px;
    height: auto;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    margin-top: 10px;
}

.wide-img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px auto;
}

/* Container das imagens */
.inside-platform {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas no desktop */
    gap: 12px;
    justify-items: center;
    align-items: center;
    margin: 14px 0 10px;
}

/* Box de cada imagem */
.inside-image {
    width: 100%;
    max-width: 220px;
    /* controla o tamanho no desktop */
    min-height: auto;
}

/* Imagem real */
.inside-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

/* 📱 Responsivo para mobile */
@media (max-width: 768px) {
    .inside-platform {
        grid-template-columns: repeat(2, 1fr);
        /* 2 por linha no tablet */
    }
}

@media (max-width: 480px) {
    .inside-platform {
        grid-template-columns: 1fr;
        /* 1 por linha no celular */
    }

    .inside-image {
        max-width: 280px;
    }
}


.guarantee-image {
    max-width: 260px;
    /* aumenta o tamanho */
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.guarantee-box {
    display: flex;
    justify-content: center;
    /* centraliza na horizontal */
    align-items: center;
    /* centraliza na vertical */
    padding: 20px 0;
}


/* SEÇÕES BASE */

section {
    margin-top: 56px;
}

.section-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
    margin-bottom: 8px;
}

.section-title {
    font-size: 26px;
    font-weight: 800;
    color: #f9fafb;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    max-width: 780px;
    margin: 0 auto 18px auto;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 18px;
}

.card {
    background: rgba(15, 23, 42, 0.88);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-light);
    padding: 18px 18px 16px;
    text-align: left;
}

.badge {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 10px;
    background: rgba(15, 23, 42, 0.9);
}

/* LISTAS GENÉRICAS */

.list-bullet,
.list-check {
    list-style: none;
    display: grid;
    gap: 8px;
    font-size: 14px;
    color: var(--muted);
}

.list-bullet li,
.list-check li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.list-bullet li::before {
    content: "•";
    color: var(--orange);
    font-weight: 700;
    margin-top: 1px;
}

.list-check li::before {
    content: "✔";
    color: #22c55e;
    font-weight: 700;
    margin-top: 1px;
}

/* MÉTODO */

.method-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.method-item {
    background: linear-gradient(145deg, #020617, #020617 55%, #001a7f 100%);
    color: #e5e7eb;
    border-radius: var(--radius-sm);
    padding: 14px 14px 12px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    text-align: left;
}

.method-item h3 {
    font-size: 14px;
    margin-bottom: 4px;
    color: #f9fafb;
}

.method-item h3 span {
    color: var(--orange);
    font-weight: 700;
    font-size: 14px;
}

.method-item p {
    font-size: 13px;
    color: #e5e7eb;
    line-height: 1.6;
}

/* BENEFÍCIOS / BÔNUS */

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas */
    gap: 20px;
    max-width: 1000px;
    /* opcional: controla largura total */
    margin: 0 auto;
    /* centraliza */
}

.benefit-item {
    height: 100%;
    /* mantém altura alinhada */
}


.benefit-item h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #f9fafb;
}

.benefit-item p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
}

.tag-label {
    font-size: 11px;
    color: var(--orange);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 4px;
    display: inline-block;
}

/* VSL */

.vsl-section .video-wrapper {
    margin: 16px auto 0 auto;
    max-width: 820px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(148, 163, 184, 0.5);
    box-shadow: var(--shadow-soft);
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 16 / 9;
    display: block;
}

/* CTA SEÇÃO */

.section-cta,
.method-cta {
    margin-top: 18px;
}

/* GARANTIA */

.guarantee-section {
    margin-top: 48px;
}

.guarantee-card {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: 18px;
    align-items: center;
    background: linear-gradient(145deg, #022c22, #052e16);
    border-radius: 22px;
    border: 1px solid #16a34a;
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-soft);
    text-align: left;
}

.guarantee-card .section-title {
    color: #bbf7d0;
}

.guarantee-card .section-subtitle {
    color: #e5ffe9;
    max-width: none;
}

/* NARRATIVA ÉTICA */

.ethic-box {
    background: rgba(15, 23, 42, 0.88);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 18px 18px 16px;
    box-shadow: var(--shadow-light);
    font-size: 14px;
    color: var(--muted);
    line-height: 1.8;
    text-align: left;
}

.ethic-box strong {
    color: #e5e7eb;
}

/* PROVA SOCIAL */

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin-top: 12px;
}

.testimonial {
    background: rgba(15, 23, 42, 0.88);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 14px 14px 12px;
    box-shadow: var(--shadow-light);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    text-align: left;
}

.testimonial strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #f9fafb;
}

/* PLANOS */

.pricing-section {
    margin-top: 54px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.plan-card {
    background: rgba(15, 23, 42, 0.9);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 18px 16px 16px;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

.plan-card.recommended {
    border-color: var(--orange);
    box-shadow: var(--shadow-soft);
    position: relative;
    transform: translateY(-4px);
}

.plan-ribbon {
    position: absolute;
    top: 12px;
    right: -34px;
    background: var(--orange);
    color: #111827;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 36px;
    transform: rotate(18deg);
    text-transform: uppercase;
}

.plan-title {
    font-size: 16px;
    font-weight: 700;
    color: #f9fafb;
}

.plan-price {
    font-size: 26px;
    font-weight: 800;
    color: #f9fafb;
}

.plan-price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
}

.plan-note {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
}

.plan-list {
    list-style: none;
    font-size: 13px;
    color: var(--muted);
    display: grid;
    gap: 6px;
    margin: 4px 0 10px;
}

.plan-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.plan-list li span.icon {
    font-size: 13px;
    margin-top: 1px;
}

.plan-list li span.icon.ok {
    color: #22c55e;
}

.plan-list li span.icon.no {
    color: #ef4444;
}

.plan-cta {
    margin-top: auto;
    margin-bottom: 4px;
}

.full-btn {
    width: 100%;
    justify-content: center;
}

.plan-label {
    font-size: 12px;
    color: var(--muted);
}

/* FAQ */

.faq {
    margin-top: 24px;
    display: grid;
    gap: 10px;
}

.faq-item {
    background: rgba(15, 23, 42, 0.88);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    padding: 10px 12px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
    text-align: left;
}

.faq-q {
    font-size: 13px;
    font-weight: 600;
    color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-a {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    display: none;
    line-height: 1.7;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-toggle {
    font-size: 18px;
    color: var(--muted);
    margin-left: 8px;
}

/* FOOTER */

.footer {
    margin-top: 40px;
    text-align: center;
}

.footer-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 10px;
}

.footer-logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* O “badge” de fundo */
.footer-logo-placeholder {
    border-radius: 999px;
    border: 1px dashed rgba(148, 163, 184, 0.7);
    padding: 8px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* A imagem em si */
.footer-logo-image {
    max-height: 40px;
    width: 40px;
    /* força formato quadrado */
    height: 40px;
    object-fit: cover;
    border-radius: 50%;
    /* deixa circular */
    display: block;
}



.footer-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 8px;
}

.footer-disclaimer {
    font-size: 11px;
    color: var(--muted);
    margin-top: 10px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.footer-links {
    margin-top: 8px;
    font-size: 12px;
    color: var(--muted);
    display: flex;
    justify-content: center;
    gap: 6px;
}

.footer-links a {
    color: #9ca3af;
}

.footer-links a:hover {
    color: #e5e7eb;
}

/* ANIMAÇÃO FADE-IN */

.fade-in {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVO */

@media (max-width: 960px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
        text-align: left;
    }

    .hero-right {
        order: -1;
    }

    .grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .guarantee-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .plan-card.recommended {
        transform: none;
    }
}

@media (max-width: 780px) {
    .header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav {
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero {
        padding: 24px 18px 22px;
    }

    .method-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 540px) {
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .method-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .wide-image {
        min-height: 140px;
        height: auto;
    }
}

/* Fundo escuro do zoom */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Imagem ampliada */
#lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    animation: zoomIn 0.25s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.85);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}