/* ================================================================
   BookVideoPlay — Novo Layout Clean | novo-site.css
   Baseado na estrutura visual de energiadohomem.com.br
   ================================================================ */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    --white: #ffffff;
    --off-white: #F1F5F8;
    --dark: #1a1a2e;
    --text: #2d2d3a;
    --text-light: #5a5a6e;
    --text-muted: #8a8a9a;
    --accent: #20c997;
    --accent-dark: #27AE60;
    --cta-bg: #111111;
    --cta-hover: #222222;
    --red: #E74C3C;
    --gold: #F39C12;
    --blue: #3498DB;
    --border: rgba(0, 0, 0, 0.08);
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --container: 960px;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--white);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ---------- Container ---------- */
.container {
    width: min(var(--container), 100% - 2rem);
    margin-inline: auto;
}

/* ---------- Section Base ---------- */
.section {
    padding: 80px 0;
}

.section--gray {
    background: var(--off-white);
}

.section--dark {
    background: var(--dark);
    color: var(--white);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 16px;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

.section--dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    text-align: center;
    color: var(--text-light);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.section--dark .section-subtitle {
    color: rgba(255, 255, 255, 0.75);
}

.accent-text {
    color: var(--accent);
}

/* ================================================================
   TOP BAR (mesmo design do footer)
   ================================================================ */
.top-bar {
    background: var(--dark);
    padding: 16px 0;
    text-align: center;
}

.top-bar-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.top-bar-logo img {
    height: 36px;
    width: auto;
    filter: brightness(10);
}

.top-bar-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
    background: var(--white);
    padding: 32px 0 56px;
    text-align: center;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.social-avatars {
    display: flex;
}

.social-avatars .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--white);
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.social-avatars .avatar:first-child {
    margin-left: 0;
}

.social-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-light);
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 20px;
    text-transform: uppercase;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Espaço para vídeo */
.hero-video-wrap {
    max-width: 700px;
    margin: 0 auto 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.hero-video-wrap video,
.hero-video-wrap iframe {
    display: block;
    width: 100%;
    height: auto;
    border: none;
    object-fit: contain;
}

/* Botão de som (mute/unmute) */
.video-sound-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, border-color 0.3s;
    z-index: 10;
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.08);
    border-color: rgba(255, 255, 255, 0.5);
}

.video-sound-btn svg {
    width: 22px;
    height: 22px;
    color: #fff;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Animação pulse no botão de som ao carregar */
.video-sound-btn.pulse-sound {
    animation: pulse-sound-ring 2s ease-in-out 3;
}

@keyframes pulse-sound-ring {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

.video-placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ================================================================
   HERO - LEARN GRID
   ================================================================ */
.hero-learn-wrap {
    max-width: 860px;
    margin: 0 auto 48px;
    text-align: center;
}

.hero-learn-badge {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.hero-learn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
    text-align: left;
}

.learn-item {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero-learn-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================================
   BLOCO DE PREÇO / CTA (repetido)
   ================================================================ */
.price-block {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

.price-apenas {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: lowercase;
    letter-spacing: 0.04em;
    margin-bottom: 2px;
}

.section--gray .price-block {
    border-color: transparent;
}

.price-installment {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-installment-value {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.price-avista {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.btn-cta {
    display: inline-block;
    width: 100%;
    padding: 18px 32px;
    background: var(--cta-bg);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.btn-cta:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-cta {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(17, 17, 17, 0.3);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(17, 17, 17, 0);
    }
}

.btn-cta.pulse {
    animation: pulse-cta 2.4s ease-in-out infinite;
}

.price-secure {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.price-secure svg,
.price-secure .lock-icon {
    width: 14px;
    height: 14px;
}

.price-guarantee-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark);
    margin-top: 10px;
}

.price-aviso {
    font-size: 0.78rem;
    color: var(--red);
    font-weight: 600;
    margin-top: 12px;
    line-height: 1.5;
}

.bandeiras {
    display: block;
    margin: 20px auto 0;
    width: 240px;
}


/* ================================================================
   URGENCY BOX (Oferta Relâmpago — apenas no primeiro preço)
   ================================================================ */
.urgency-box {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    text-align: center;
}

/* Header */
.urgency-header {
    background: var(--dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.urgency-header-icon {
    font-size: 1.5rem;
}

/* Warning badge */
.urgency-warning {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 20px auto 8px;
    background: rgba(243, 156, 18, 0.1);
    border: 1px solid rgba(243, 156, 18, 0.25);
    color: var(--dark);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
}

.urgency-warning-icon {
    font-size: 1rem;
}

/* Pricing area */
.urgency-pricing {
    padding: 16px 24px 20px;
}

.urgency-old-price {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 4px;
}

.line-through {
    text-decoration: line-through;
    color: var(--red);
    font-weight: 700;
}

.urgency-new-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.2rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 12px;
}

.urgency-price-big {
    font-size: 4.5rem;
    letter-spacing: -2px;
}

.urgency-payment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(32, 201, 151, 0.08);
    border: 1px solid rgba(32, 201, 151, 0.2);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 50px;
}

.urgency-payment-icon {
    font-size: 1rem;
}

/* Viewers counter */
.urgency-viewers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 24px;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
}

.urgency-viewers strong {
    color: var(--accent);
    font-size: 1.1rem;
}

.urgency-eye-icon {
    font-size: 1.2rem;
}

/* Countdown */
.urgency-countdown-wrap {
    margin: 16px 24px;
    padding: 16px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.urgency-countdown-label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.urgency-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.countdown-digit {
    width: 52px;
    height: 64px;
    background: var(--off-white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.countdown-sep {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    padding: 0 2px;
}

/* CTA urgency */
.btn-cta-urgency {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: calc(100% - 48px);
    margin: 20px 24px 16px;
    padding: 20px 32px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, filter 0.3s;
    text-decoration: none;
}

.btn-cta-urgency:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(32, 201, 151, 0.35);
    filter: brightness(1.08);
}

.btn-cta-arrow {
    font-size: 1.3rem;
    font-weight: 900;
}

@keyframes pulse-urgency {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(32, 201, 151, 0.35);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(32, 201, 151, 0);
    }
}

.btn-cta-urgency.pulse {
    animation: pulse-urgency 2.4s ease-in-out infinite;
}

/* Secure badge */
.urgency-secure {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0 24px 20px;
}

/* Responsive urgency */
@media (max-width: 480px) {
    .urgency-header {
        font-size: 1.1rem;
        padding: 14px 16px;
    }

    .urgency-price-big {
        font-size: 3.5rem;
    }

    .countdown-digit {
        width: 42px;
        height: 54px;
        font-size: 1.7rem;
    }

    .btn-cta-urgency {
        font-size: 0.92rem;
        padding: 16px 20px;
    }
}

/* ================================================================
   URGENCY BOX — EXPIRED STATE
   ================================================================ */
.urgency-header--expired {
    background: var(--red);
}

.expired-body {
    padding: 32px 24px;
}

.expired-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.expired-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.expired-desc {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 24px;
}

.expired-price {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
}

.expired-avista {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.expired-divider {
    width: 80%;
    height: 1px;
    background: var(--border);
    margin: 24px auto;
}

.expired-second-chance-text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.expired-second-chance-text strong {
    color: var(--gold);
}

.btn-second-chance {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--gold), #e67e22);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s, filter 0.3s;
    animation: pulse-second-chance 2.4s ease-in-out infinite;
}

.btn-second-chance:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.4);
    filter: brightness(1.08);
}

@keyframes pulse-second-chance {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(243, 156, 18, 0.35);
    }

    50% {
        box-shadow: 0 0 0 14px rgba(243, 156, 18, 0);
    }
}

/* ================================================================
   TRUST / SELOS (Garantia, Acesso, Segurança)
   ================================================================ */
.trust-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.trust-hex {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 180px;
}

.trust-hex-icon {
    width: 72px;
    height: 72px;
    background: var(--off-white);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.trust-hex:hover .trust-hex-icon {
    transform: scale(1.08);
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.2);
}

.trust-hex-title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--dark);
    margin-bottom: 4px;
}

.trust-hex-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ================================================================
   DISPOSITIVOS
   ================================================================ */
.devices-section {
    text-align: center;
}

.devices-image-wrap {
    max-width: 600px;
    margin: 0 auto 24px;
    /* Placeholder para imagem de dispositivos */
    background: var(--off-white);
    border-radius: var(--radius-lg);
    aspect-ratio: 16/8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.devices-placeholder {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ================================================================
   MÓDULOS / CONTEÚDO
   ================================================================ */
.modules-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.module-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 24px;
    border-bottom: 1px solid var(--border);
    transition: background 0.3s;
}

.module-item:hover {
    background: rgba(46, 204, 113, 0.04);
}

.module-item:last-child {
    border-bottom: none;
}

.module-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
}

.module-content h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.module-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ================================================================
   DESBLOQUEAR / UNLOCK (VídeoBook, Mapa Mental, Tecnologia)
   ================================================================ */
.unlock-section {
    background: var(--white);
}

.unlock-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.unlock-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 28px 32px;
    text-align: center;
    transition: transform 0.35s cubic-bezier(.25, .8, .25, 1), box-shadow 0.35s cubic-bezier(.25, .8, .25, 1), border-color 0.35s;
    overflow: hidden;
}

.unlock-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    opacity: 0;
    transition: opacity 0.35s;
}

.unlock-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(32, 201, 151, 0.2);
}

.unlock-card:hover::before {
    opacity: 1;
}

.unlock-card-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    position: absolute;
    top: 12px;
    right: 16px;
    pointer-events: none;
    user-select: none;
}

.unlock-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: rgba(32, 201, 151, 0.08);
    border-radius: 12px;
    transition: background 0.3s, transform 0.3s;
}

.unlock-card:hover .unlock-card-icon {
    background: rgba(32, 201, 151, 0.14);
    transform: scale(1.08);
}

.unlock-card h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--dark);
    margin-bottom: 10px;
}

.unlock-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Highlight block */
.unlock-highlight {
    display: flex;
    gap: 0;
    max-width: 760px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.unlock-highlight-bar {
    flex-shrink: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

.unlock-highlight-content {
    display: flex;
    flex: 1;
}

.unlock-highlight-item {
    flex: 1;
    padding: 32px 28px;
}

.unlock-highlight-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.unlock-highlight-item p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.65;
}

.unlock-highlight-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
}

@media (max-width: 768px) {
    .unlock-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .unlock-highlight {
        flex-direction: column;
    }

    .unlock-highlight-bar {
        width: 100%;
        height: 4px;
    }

    .unlock-highlight-content {
        flex-direction: column;
    }

    .unlock-highlight-divider {
        width: 100%;
        height: 1px;
    }
}

/* ================================================================
   BÔNUS
   ================================================================ */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.bonus-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.bonus-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 0 0 8px 8px;
}

.bonus-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(46, 204, 113, 0.1);
    line-height: 1;
    margin-bottom: 8px;
}

.bonus-image-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.bonus-card h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.bonus-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ================================================================
   BENEFÍCIOS / RESULTADOS
   ================================================================ */
.benefits-wrap {
    display: flex;
    align-items: center;
    gap: 48px;
}

.benefits-image {
    flex: 1;
    max-width: 360px;
    /* Placeholder para imagem */
    background: var(--off-white);
    border-radius: var(--radius-lg);
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-image-placeholder {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: center;
}

.benefits-list {
    flex: 1;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.benefit-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(46, 204, 113, 0.12);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1px;
}

/* ================================================================
   GARANTIA
   ================================================================ */
.guarantee-wrap {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    box-shadow: var(--shadow-md);
}

.guarantee-seal {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.guarantee-days {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
}

.guarantee-label {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.guarantee-text h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
}

.guarantee-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================================
   SOBRE / ESPECIALISTA
   ================================================================ */
.about-wrap {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.about-photo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    background: var(--off-white);
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid var(--accent);
}

.about-photo-placeholder {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    text-align: center;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 8px;
}

.about-credentials {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 12px;
}

.about-credentials li {
    font-size: 0.82rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================================================================
   FAQ
   ================================================================ */
.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-arrow {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.3s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(10);
}

.footer-logo span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 12px;
}

.footer-copy {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-disclaimer {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.5;
}

/* ================================================================
   RESPONSIVO
   ================================================================ */
@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    /* Social Proof — empilha no mobile */
    .hero-social-proof {
        flex-direction: column;
        gap: 8px;
    }

    .social-text {
        font-size: 0.85rem;
        max-width: 280px;
        line-height: 1.4;
    }

    .benefits-wrap {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .benefits-image {
        max-width: 240px;
        margin: 0 auto;
    }

    .guarantee-wrap {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .about-wrap {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        margin: 0 auto;
    }

    .trust-row {
        gap: 20px;
    }

    .formats-grid {
        gap: 24px;
    }

    .price-block {
        padding: 28px 20px;
    }

    .price-installment-value {
        font-size: 2.6rem;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .bonus-grid {
        grid-template-columns: 1fr;
    }

    .trust-row {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        font-size: 0.9rem;
        padding: 16px 24px;
    }
}

/* ---------- Botão Voltar ao Topo ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--cta-bg);
    color: var(--white);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.back-to-top svg {
    transition: transform 0.3s ease;
}

.back-to-top:hover svg {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}