/* ==========================================
   Kit Matemática Sem Choro — CSS Stylesheet
   Design: Warm, Premium, Clean & Modern
   Colors: Beige, Soft Blue, Mint Green, Yellow, Dark Brown
   ========================================== */

@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('assets/fonts/inter-latin-300-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Lexend';
    font-style: normal;
    font-weight: 400 800;
    font-display: swap;
    src: url('assets/fonts/lexend-latin-400-800.woff2') format('woff2');
}

/* Variables */
:root {
    --bg-cream: #FAF6EE;
    --bg-cream-dark: #F5EFE6;
    --bg-white: #FFFFFF;
    
    /* Text Colors */
    --color-dark-brown: #3C2F2F;
    --color-muted-brown: #6D5E5E;
    
    /* Accents & Pastel Blocks */
    --color-soft-blue: #E2ECFC;
    --color-soft-blue-dark: #4A90E2;
    --color-mint-green: #E1F7E7;
    --color-mint-green-dark: #2ECC71;
    --color-soft-yellow: #FFF9E6;
    --color-soft-yellow-dark: #F1C40F;
    
    /* CTA button */
    --color-cta-orange: #FF7A45;
    --color-cta-orange-hover: #E85B23;
    
    /* Fonts */
    --font-title: 'Lexend', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout Elements */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --border-color: #EAE2D5;
    
    --shadow-soft: 0 8px 30px rgba(60, 47, 47, 0.04);
    --shadow-hover: 0 16px 40px rgba(60, 47, 47, 0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Consentimento opcional para cookies de marketing */
.cookie-consent {
    position: fixed;
    right: 18px;
    bottom: 18px;
    left: 18px;
    z-index: 10020;
    color: var(--color-dark-brown);
}

.cookie-consent__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(100%, 920px);
    margin: 0 auto;
    padding: 18px 20px;
    border: 1px solid rgba(90, 69, 58, 0.16);
    border-radius: 18px;
    background: rgba(255, 252, 246, 0.98);
    box-shadow: 0 18px 55px rgba(60, 47, 47, 0.22);
    backdrop-filter: blur(12px);
}

.cookie-consent__text {
    max-width: 610px;
}

.cookie-consent__text strong {
    display: block;
    margin-bottom: 5px;
    font-family: var(--font-title);
    font-size: 1rem;
}

.cookie-consent__text p {
    margin: 0;
    color: var(--color-muted-brown);
    font-size: 0.82rem;
    line-height: 1.55;
}

.cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
}

.cookie-consent__button {
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: var(--font-title);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
}

.cookie-consent__button--primary {
    color: #fff;
    background: var(--color-cta-orange);
}

.cookie-consent__button--secondary {
    color: var(--color-dark-brown);
    border-color: rgba(90, 69, 58, 0.22);
    background: transparent;
}

.cookie-consent__button:hover {
    transform: translateY(-1px);
}

.cookie-consent__button:focus-visible,
.footer-cookie-settings:focus-visible {
    outline: 3px solid var(--color-soft-blue-dark);
    outline-offset: 3px;
}

.footer-cookie-settings {
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 680px) {
    .cookie-consent {
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
    }

    .cookie-consent__content {
        display: block;
        padding: 16px;
        border-radius: 15px;
    }

    .cookie-consent__actions {
        margin-top: 14px;
    }

    .cookie-consent__button {
        flex: 1 1 0;
        padding-inline: 10px;
    }
}

.heart-outline {
    font-size: 1.25em;
    line-height: 1;
}

.facebook-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.15em;
    height: 1.15em;
    border-radius: 50%;
    color: #fff;
    background: #1877f2;
    font-family: Arial, sans-serif;
    font-size: 0.9em;
    font-weight: 700;
    line-height: 1;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-cream);
    color: var(--color-dark-brown);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-dark-brown);
    line-height: 1.25;
}

p {
    color: var(--color-muted-brown);
}

/* Common Section Layout */
section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 36px auto;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 1.1rem;
}

/* 1. Barra superior de oferta */
.top-promo-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--color-dark-brown);
    color: var(--bg-cream);
    text-align: center;
    padding: 10px 16px;
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.red-promo-bar {
    background-color: #D9383A !important;
    font-weight: 700;
}

.red-promo-bar p,
.red-promo-bar span {
    color: #ffffff !important;
}

.top-seal-bar {
    background-color: var(--bg-cream-dark);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-muted-brown);
}

.top-seal-bar p {
    color: var(--color-muted-brown);
    margin: 0;
}

.top-seal-bar i {
    color: #24B25B;
    margin-right: 5px;
}

/* CTA Button Styles */
.btn-cta {
    display: inline-block;
    background-color: var(--color-cta-orange);
    color: var(--bg-white);
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 700;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(255, 122, 69, 0.3);
    transition: var(--transition);
    text-align: center;
    cursor: pointer;
}

.btn-cta:hover {
    background-color: var(--color-cta-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 122, 69, 0.4);
}

.btn-cta:active {
    transform: translateY(0);
}

.btn-cta:focus-visible,
.faq-question:focus-visible,
.btn-floating-cta:focus-visible,
.footer-links a:focus-visible,
.carousel-container:focus-visible {
    outline: 3px solid var(--color-soft-blue-dark);
    outline-offset: 4px;
}

.btn-large {
    font-size: 1.3rem;
    padding: 20px 48px;
    width: 100%;
    max-width: 500px;
}

/* 2. Hero principal */
.hero-section {
    padding: 60px 0 80px 0;
    background-color: var(--bg-cream);
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(226, 236, 252, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(225, 247, 231, 0.6) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(255, 249, 230, 0.5) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: start;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--color-mint-green);
    color: #248A46;
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 2.8rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    font-weight: 800;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 24px;
    line-height: 1.6;
    color: var(--color-muted-brown);
}

.hero-details {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-clarity {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark-brown);
}

.hero-clarity i {
    color: var(--color-mint-green-dark);
}

.hero-positioning {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-muted-brown);
}

.hero-positioning i {
    color: var(--color-soft-blue-dark);
}

.hero-price-tag {
    margin-bottom: 24px;
    background-color: var(--color-soft-yellow);
    padding: 10px 18px;
    border-radius: var(--border-radius-md);
    border: 1.5px solid #F1C40F;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.hero-price-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted-brown);
}

.hero-price-value-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-price-value {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-dark-brown);
    line-height: 1;
}

.hero-price-badge {
    background-color: var(--color-cta-orange);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.btn-hero-main {
    align-self: flex-start;
    font-size: 1.25rem;
    padding: 18px 40px;
}

.cta-caption {
    font-size: 0.85rem;
    margin-top: 12px;
    color: var(--color-muted-brown);
    font-weight: 500;
}

.hero-bullets {
    list-style: none;
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark-brown);
}

.hero-bullets li i {
    color: var(--color-mint-green-dark);
}

.hero-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 52px; /* Alinha o topo do mockup com a Headline */
}

.hero-mockup {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(60, 47, 47, 0.15));
    border-radius: var(--border-radius-md);
}

.floating-badge {
    position: absolute;
    padding: 10px 18px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 10px 25px rgba(60, 47, 47, 0.1);
    z-index: 10;
}

.badge-discount {
    top: 5%;
    left: -5%;
    background-color: var(--color-soft-yellow);
    color: #B88E10;
    border: 1.5px solid #F1C40F;
    transform: rotate(-5deg);
}

.badge-access {
    bottom: 10%;
    right: -5%;
    background-color: var(--color-mint-green);
    color: #248A46;
    border: 1.5px solid #2ECC71;
    transform: rotate(5deg);
}

/* Faixa curta de prova/clareza */
.proof-bar-section {
    background-color: var(--bg-cream-dark);
    padding: 24px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.proof-block {
    display: flex;
    gap: 16px;
    align-items: center;
}

.proof-icon-small {
    width: 48px;
    height: 48px;
    background-color: var(--color-soft-blue);
    color: var(--color-soft-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.proof-block:nth-child(2) .proof-icon-small {
    background-color: var(--color-soft-yellow);
    color: #B88E10;
}

.proof-block:nth-child(3) .proof-icon-small {
    background-color: var(--color-mint-green);
    color: #248A46;
}

.proof-text-wrapper h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.proof-text-wrapper p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--color-muted-brown);
}

/* 3. Seção de identificação da dor */
.pain-section {
    background-color: var(--bg-cream-dark);
}

/* Pain Intro Box (Antes/Depois) */
.pain-intro-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto 56px auto;
    text-align: center;
}

.pain-box-title {
    font-size: 2rem;
    color: var(--color-dark-brown);
    margin-bottom: 30px;
    line-height: 1.35;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pain-box-image-wrapper {
    width: 100%;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(60, 47, 47, 0.08);
}

.pain-box-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .pain-intro-box {
        padding: 24px;
        border-radius: var(--border-radius-md);
        margin-bottom: 40px;
    }
    
    .pain-box-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

/* Cards Header Transition */
.cards-header {
    text-align: center;
    max-width: 800px;
    margin: 60px auto 40px auto;
}

.cards-header h2 {
    font-size: 1.8rem;
    color: var(--color-dark-brown);
    line-height: 1.4;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cards-header {
        margin: 40px auto 24px auto;
    }
    .cards-header h2 {
        font-size: 1.4rem;
    }
}

.pain-icon.icon-calm {
    color: var(--color-mint-green-dark);
}
.pain-icon.icon-warm {
    color: #E25252;
}
.pain-icon.icon-clear {
    color: var(--color-soft-blue-dark);
}
.pain-icon.icon-happy {
    color: var(--color-soft-yellow-dark);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.pain-card {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.pain-icon {
    font-size: 2.2rem;
    color: var(--color-muted-brown);
    margin-bottom: 20px;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.pain-card p {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 4. Seção da virada */
.turn-section {
    background-color: var(--bg-cream);
    border-bottom: 1px solid var(--border-color);
}

.flow-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 40px auto 0 auto;
    flex-wrap: wrap;
    gap: 16px;
}

.flow-step {
    background-color: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    text-align: center;
    flex: 1;
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.flow-number {
    width: 36px;
    height: 36px;
    background-color: var(--color-soft-blue);
    color: var(--color-soft-blue-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
}

.flow-step p {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark-brown);
}

.flow-arrow {
    font-size: 1.2rem;
    color: var(--color-muted-brown);
}

/* 5. Seção “O Desafio dos 15 Minutos” */
.challenge-section {
    background-color: var(--bg-cream-dark);
}

.challenge-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.challenge-block {
    display: flex;
    gap: 24px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.challenge-block:hover {
    box-shadow: var(--shadow-hover);
    transform: translateX(5px);
}

.challenge-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.blue-icon {
    background-color: var(--color-soft-blue);
    color: var(--color-soft-blue-dark);
}

.yellow-icon {
    background-color: var(--color-soft-yellow);
    color: #B88E10;
}

.green-icon {
    background-color: var(--color-mint-green);
    color: #248A46;
}

.challenge-info h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.challenge-info p {
    font-size: 0.95rem;
}

/* 6. Seção “O que vem dentro” */
.contents-section {
    background-color: var(--bg-cream);
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.content-card {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(60, 47, 47, 0.05);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(60, 47, 47, 0.1);
}

.content-card:hover .card-icon-header {
    transform: scale(1.1) rotate(5deg);
}

.card-icon-header {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.card-icon-header.blue {
    background-color: #EBF3FF;
    color: #3B82F6;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.card-icon-header.green {
    background-color: #EBFDF2;
    color: #10B981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.card-icon-header.yellow {
    background-color: #FEF9E7;
    color: #F59E0B;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.1);
}

.card-icon-header.orange {
    background-color: #FFEAE2;
    color: var(--color-cta-orange);
    box-shadow: 0 4px 12px rgba(255, 122, 69, 0.15);
}

.content-card h3 {
    font-size: 1.25rem;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.content-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-muted-brown);
}

.contents-cta {
    text-align: center;
    margin-top: 20px;
}

/* Mockup principal da seção de Conteúdo */
.contents-mockup-main {
    max-width: 960px;
    margin: 0 auto 50px auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(60, 47, 47, 0.08);
    border: 1px solid rgba(60, 47, 47, 0.05);
    transition: var(--transition);
}

.contents-mockup-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(60, 47, 47, 0.12);
}

.contents-mockup-main-img {
    width: 100%;
    height: auto;
    display: block;
}

/* 6b. Área visual do Mockup do Kit */
.mockup-display-section {
    background-color: var(--bg-cream);
    padding: 40px 0 50px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.mockup-intro-text {
    font-family: var(--font-title);
    font-weight: 500;
    font-size: 1.25rem;
    color: var(--color-dark-brown);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 28px auto; /* Espaçamento entre frase e carrossel de 20px a 32px */
    padding: 0 20px;
    line-height: 1.5;
    letter-spacing: -0.01em;
}

/* Configuração do Carrossel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 10px 0 20px 0;
    touch-action: pan-y;
    user-select: none;
    -webkit-user-select: none;
}

.carousel-track {
    display: flex;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 280px; /* Largura fixa de cada celular */
    margin: 0 15px; /* Espaço entre os slides */
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    opacity: 0.4;
    transform: scale(0.9);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 5;
}

.carousel-mockup-img {
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
    display: block;
    border-radius: 22px;
}

/* Smartphone Mockup CSS */
.smartphone-mockup {
    width: 250px;
    height: 460px;
    background-color: #1A1A1A;
    border-radius: 38px;
    border: 9px solid #2B2B2B;
    box-shadow: 0 20px 45px rgba(60, 47, 47, 0.16);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    pointer-events: none; /* Prevenir clique interno durante arrasto */
}

.smartphone-speaker {
    width: 50px;
    height: 6px;
    background-color: #444444;
    border-radius: 3px;
    position: absolute;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.smartphone-screen {
    flex: 1;
    background-color: #FCFAF6; /* Fundo creme premium mais limpo */
    display: flex;
    flex-direction: column;
    padding: 22px 14px 14px 14px; /* O topo deixa espaço para o alto-falante */
    overflow: hidden;
    position: relative;
    user-select: none;
}

/* Status Bar Simulado */
.app-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.6rem;
    color: #6D5E5E;
    padding: 2px 4px 6px 4px;
    border-bottom: 1px solid rgba(60, 47, 47, 0.05);
    margin-bottom: 4px;
}

.status-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.status-icons i {
    font-size: 0.55rem;
}

/* Navigation Bar Simulado */
.app-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 2px 8px 2px;
    margin-bottom: 8px;
}

.app-nav span {
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-dark-brown);
}

.app-nav i {
    font-size: 0.7rem;
    color: var(--color-muted-brown);
}

/* Telas do App (Design e Estilos) */
.app-screen-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

/* Cards Premium com Alto Contraste */
.app-ui-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 10px 12px;
    border: 1.5px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(60, 47, 47, 0.04);
    display: flex;
    flex-direction: column;
    gap: 4px;
    text-align: left;
    transition: var(--transition);
}

.app-ui-card-header {
    display: flex;
    align-items: center;
    gap: 6px;
}

.app-ui-card-header h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 0;
}

.app-ui-card-header i {
    font-size: 0.85rem;
}

.app-ui-card-desc {
    font-size: 0.65rem;
    color: var(--color-muted-brown);
    line-height: 1.3;
}

/* Cores de Destaques Temáticos */
.blue-theme {
    border-left: 4px solid #2E7DED;
}
.blue-theme .app-ui-card-header i {
    color: #2E7DED;
}

.green-theme {
    border-left: 4px solid #24B25B;
}
.green-theme .app-ui-card-header i {
    color: #24B25B;
}

.orange-theme {
    border-left: 4px solid #FF6E4A;
}
.orange-theme .app-ui-card-header i {
    color: #FF6E4A;
}

.yellow-theme {
    border-left: 4px solid #F5B014;
}
.yellow-theme .app-ui-card-header i {
    color: #F5B014;
}

/* Passos do Roteiro (Slide 1) */
.app-ui-step {
    display: flex;
    gap: 8px;
    background-color: #ffffff;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    align-items: center;
    text-align: left;
}

.step-num-badge {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-num-badge.blue {
    background-color: #E2ECFC;
    color: #2E7DED;
}

.step-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.step-content h5 {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-dark-brown);
}

.step-content p {
    font-size: 0.6rem;
    line-height: 1.3;
    color: var(--color-muted-brown);
}

/* Botões de Ação na Tela */
.app-ui-btn {
    color: #ffffff;
    border-radius: 20px;
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 700;
    text-align: center;
    padding: 8px 12px;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.app-ui-btn.blue {
    background-color: #2E7DED;
    box-shadow: 0 4px 10px rgba(46, 125, 237, 0.2);
}

/* Cronômetro (Slide 2) */
.app-ui-timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.app-ui-timer-circle {
    position: relative;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timer-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.timer-circle-bg {
    fill: none;
    stroke: #F3EFE6;
    stroke-width: 6;
}

.timer-circle-fg {
    fill: none;
    stroke: #24B25B;
    stroke-width: 6;
    stroke-dasharray: 283;
    stroke-dashoffset: 70; /* Progresso simulado */
    stroke-linecap: round;
}

.timer-time {
    position: absolute;
    font-family: var(--font-title);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--color-dark-brown);
}

.timer-status {
    font-size: 0.6rem;
    font-weight: 700;
    color: #24B25B;
    display: flex;
    align-items: center;
    gap: 4px;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #24B25B;
    border-radius: 50%;
}

.pulse {
    animation: timer-pulse 1.5s infinite;
}

@keyframes timer-pulse {
    0% { transform: scale(0.95); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.app-ui-tip {
    display: flex;
    gap: 6px;
    background-color: #FFF9E6;
    padding: 8px 10px;
    border-radius: 6px;
    border-left: 3px solid #F5B014;
    text-align: left;
}

.app-ui-tip i {
    font-size: 0.7rem;
    margin-top: 2px;
}

.app-ui-tip p {
    font-size: 0.58rem;
    line-height: 1.35;
    color: var(--color-muted-brown);
}

/* Emergência (Slide 3) */
.app-ui-emergency-alert {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(255, 110, 74, 0.05);
}

.alert-banner {
    background-color: #FFEAE2;
    color: #FF6E4A;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.72rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.emergency-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.emergency-checklist li {
    font-size: 0.58rem;
    line-height: 1.35;
    color: var(--color-dark-brown);
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.emergency-checklist li i {
    color: #FF6E4A;
    font-size: 0.65rem;
    margin-top: 2px;
}

/* Desafios Práticos (Slide 4) */
.app-ui-math-game {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(245, 176, 20, 0.05);
    text-align: center;
}

.game-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.game-badge {
    background-color: #FFF9E6;
    color: #E6AD12;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
}

.game-points {
    color: #24B25B;
    font-size: 0.58rem;
    font-weight: 700;
}

.game-question {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    margin: 2px 0;
}

.game-visual {
    background-color: #FCFAF6;
    padding: 8px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.emoji-item {
    font-size: 1rem;
    letter-spacing: 2px;
}

.game-math-text {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 800;
    color: #F5B014;
}

.game-options {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 2px;
}

.option-btn {
    flex: 1;
    border: 1px solid var(--border-color);
    background-color: #ffffff;
    border-radius: 6px;
    padding: 5px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-dark-brown);
    cursor: pointer;
}

.option-btn.selected {
    background-color: #F5B014;
    border-color: #F5B014;
    color: #ffffff;
    box-shadow: 0 2px 6px rgba(245, 176, 20, 0.2);
}

/* Progresso (Slide 5) */
.app-ui-progress-display {
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(46, 125, 237, 0.05);
    text-align: center;
}

.progress-title {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--color-muted-brown);
    text-transform: uppercase;
    margin-bottom: 2px;
}

.progress-stars-container {
    display: flex;
    justify-content: space-between;
    padding: 4px;
    background-color: #FCFAF6;
    border-radius: 6px;
}

.progress-star-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    flex: 1;
}

.progress-star-item i {
    font-size: 0.85rem;
    color: #D1C7BD;
}

.progress-star-item.active i {
    color: #F5B014;
}

.progress-star-item span {
    font-size: 0.5rem;
    color: var(--color-muted-brown);
    font-weight: 500;
}

.progress-award-card {
    background-color: #E1F7E7;
    border: 1.5px solid #24B25B;
    border-radius: 6px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: left;
}

.progress-award-card i {
    font-size: 1.1rem;
    color: #24B25B;
}

.progress-award-card h6 {
    font-size: 0.68rem;
    font-weight: 700;
    color: #1F7C3F;
    margin: 0;
}

.progress-award-card p {
    font-size: 0.55rem;
    color: #1F7C3F;
    line-height: 1.2;
    margin: 0;
}

/* 7. Seção de depoimentos / Prova Social */
.social-proof-section {
    background-color: var(--color-dark-brown);
}

.social-proof-section h2 {
    color: var(--bg-cream);
    text-transform: uppercase;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 800;
}

.white-text h2 {
    color: #ffffff !important;
}

.proof-platforms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.platform-column {
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Instagram Styles */
.instagram-comments {
    background-color: #121212;
    border: 1px solid #262626;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.instagram-comments .platform-header {
    border-bottom: 1px solid #262626;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    color: #ffffff;
}

.instagram-comments .platform-close {
    color: #a8a8a8;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.instagram-comments .platform-close:hover {
    color: #ffffff;
}

.instagram-comments .comments-list {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.instagram-comments .comment-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.instagram-comments .comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #363636;
}

.instagram-comments .comment-content {
    flex: 1;
    font-size: 0.88rem;
    line-height: 1.45;
}

.instagram-comments .comment-username {
    font-weight: 700;
    color: #ffffff;
    margin-right: 6px;
}

.instagram-comments .comment-text {
    color: #f5f5f5;
}

.instagram-comments .comment-meta {
    display: flex;
    gap: 16px;
    color: #a8a8a8;
    font-size: 0.75rem;
    margin-top: 8px;
    font-weight: 600;
}

.instagram-comments .meta-action {
    cursor: pointer;
    transition: var(--transition);
}

.instagram-comments .meta-action:hover {
    color: #ffffff;
}

.instagram-comments .comment-like {
    color: #a8a8a8;
    cursor: pointer;
    font-size: 1rem;
    padding-top: 4px;
    transition: color 0.2s;
}

.instagram-comments .comment-like:hover {
    color: #FF3040;
}

/* Facebook Styles */
.facebook-comments {
    background-color: #ffffff;
    border: 1px solid #e5e5e5;
    color: #1c1e21;
    font-family: SFProText-Regular, Helvetica, Arial, sans-serif;
}

.facebook-comments .platform-header {
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #1877f2; /* FB Blue */
}

.facebook-comments .platform-more {
    color: #606770;
    font-size: 1.2rem;
    cursor: pointer;
}

.facebook-comments .comments-list {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.facebook-comments .comment-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.facebook-comments .comment-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid #e5e5e5;
}

.facebook-comments .comment-content-wrapper {
    flex: 1;
}

.facebook-comments .comment-bubble {
    background-color: #f0f2f5;
    border-radius: 18px;
    padding: 12px 18px;
    font-size: 0.88rem;
    line-height: 1.45;
    display: inline-block;
    max-width: 100%;
}

.facebook-comments .comment-name {
    font-weight: 700;
    color: #050505;
    margin-bottom: 3px;
}

.facebook-comments .comment-text {
    color: #050505;
}

.facebook-comments .comment-meta {
    display: flex;
    gap: 16px;
    color: #606770;
    font-size: 0.78rem;
    margin-top: 6px;
    padding-left: 12px;
    font-weight: 700;
}

.facebook-comments .meta-action {
    cursor: pointer;
    transition: var(--transition);
}

.facebook-comments .meta-action:hover {
    text-decoration: underline;
    color: #1877f2;
}

@media (max-width: 900px) {
    .proof-platforms-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* 8. Seção de diferenciação */
.diff-section {
    background-color: var(--bg-cream);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.diff-card {
    background-color: var(--bg-white);
    padding: 32px 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.diff-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.diff-icon {
    font-size: 2rem;
    color: var(--color-cta-orange);
    margin-bottom: 20px;
}

.diff-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.diff-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 9 & 10. Seções de Público (Para quem / Não é para quem) */
.audience-section {
    background-color: var(--bg-cream-dark);
    padding: 50px 0;
}

.audience-section.is-for {
    background-color: var(--bg-cream);
}

.audience-box {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.audience-box h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    text-align: center;
}

.audience-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.audience-list li {
    display: flex;
    gap: 12px;
    font-size: 1.05rem;
    align-items: flex-start;
    line-height: 1.4;
}

.audience-list i {
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.is-for .audience-list i {
    color: var(--color-mint-green-dark);
}

.is-not .audience-list i {
    color: #E74C3C;
}

/* 11. Seção de bônus */
.bonus-section {
    background-color: var(--bg-cream-dark);
    padding: 60px 0;
}

.bonus-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFEAE2;
    color: var(--color-cta-orange);
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.bonus-card-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

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

.bonus-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    background-color: #FDF9F2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.bonus-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
    box-shadow: 0 10px 25px rgba(60, 47, 47, 0.08);
    border-radius: 4px;
    transition: var(--transition);
}

.bonus-card-item:hover .bonus-img {
    transform: scale(1.03);
}

.bonus-text-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bonus-label {
    align-self: flex-start;
    background-color: var(--color-soft-yellow);
    color: #B88E10;
    border: 1px solid #F1C40F;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
}

.bonus-text-content h3 {
    font-size: 1.35rem;
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--color-dark-brown);
    margin-bottom: 12px;
    line-height: 1.3;
}

.bonus-text-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-muted-brown);
    margin-bottom: 24px;
    flex: 1;
}

.bonus-highlight-bar {
    background-color: var(--bg-cream-dark);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    text-align: center;
    margin-top: auto;
}

.bonus-highlight-bar span {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--color-dark-brown);
    letter-spacing: -0.01em;
}

@media (max-width: 768px) {
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .bonus-text-content {
        padding: 24px;
    }
}

/* 12. Seção de oferta */
.offer-section {
    background-color: var(--bg-cream);
}

.offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: #FFEAE2;
    color: var(--color-cta-orange);
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.pricing-box {
    background-color: var(--bg-white);
    max-width: 620px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-hover);
    padding: 55px 40px 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.pricing-box:hover {
    border-color: rgba(255, 122, 69, 0.3);
    box-shadow: 0 20px 50px rgba(60, 47, 47, 0.1);
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background-color: var(--color-cta-orange);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--color-cta-orange);
    color: var(--bg-white);
    font-family: var(--font-title);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(255, 122, 69, 0.25);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    z-index: 10;
}

.pricing-header h3 {
    font-size: 2rem;
    margin-bottom: 6px;
}

.pricing-sub {
    font-size: 1.05rem;
    color: var(--color-muted-brown);
    margin-bottom: 24px;
    font-weight: 500;
}

.pricing-value-summary {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}

.original-value {
    font-size: 1.05rem;
    color: var(--color-muted-brown);
    font-weight: 500;
}

.original-value del {
    color: #D9383A;
    font-weight: 600;
}

.pricing-price {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.price-cash {
    font-family: var(--font-title);
    font-size: 3rem;
    font-weight: 900;
    color: var(--color-dark-brown);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.price-suffix {
    font-size: 0.9rem;
    color: var(--color-muted-brown);
    font-weight: 600;
    margin-bottom: 4px;
}

.price-or {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted-brown);
    font-weight: 700;
}

.price-installments {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-cta-orange);
    line-height: 1.2;
}

.pricing-divider {
    font-family: var(--font-title);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-dark-brown);
    margin: 24px 0 20px 0;
    padding-top: 20px;
    border-top: 1px dashed var(--border-color);
}

.pricing-list {
    list-style: none;
    text-align: left;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-list li {
    display: flex;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--color-dark-brown);
    line-height: 1.4;
}

.pricing-list i {
    color: var(--color-mint-green-dark);
    margin-top: 3px;
    flex-shrink: 0;
}

.bonus-highlight-text {
    color: #D9383A;
    font-weight: 700;
}

.pricing-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 36px;
}

.btn-pricing-cta {
    width: 100%;
    max-width: 500px;
    font-size: 1.3rem !important;
    padding: 18px 36px !important;
}

.pricing-caption {
    font-size: 0.9rem;
    margin-top: 14px;
    color: var(--color-muted-brown);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.pricing-caption i {
    color: #24B25B;
}

.pricing-footer-seals {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.seal-item {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-muted-brown);
    display: flex;
    align-items: center;
    gap: 6px;
}

.seal-item i {
    color: var(--color-soft-blue-dark);
}

/* 13. Garantia */
.guarantee-section {
    background-color: var(--bg-cream-dark);
}

.guarantee-image-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(60, 47, 47, 0.06);
    border: 1px solid rgba(60, 47, 47, 0.05);
    transition: var(--transition);
}

.guarantee-image-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(60, 47, 47, 0.1);
}

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

/* 14. FAQ Accordion */
.faq-section {
    background-color: var(--bg-cream);
}

.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-dark-brown);
    transition: var(--transition);
}

.faq-question i {
    font-size: 1rem;
    color: var(--color-muted-brown);
    transition: var(--transition);
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--color-cta-orange);
}

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

.faq-answer p {
    padding: 0 24px 24px 24px;
    font-size: 0.98rem;
    line-height: 1.6;
}

/* 15. CTA Final */
.final-cta-section {
    background-color: var(--bg-cream-dark);
}

.final-box {
    background-color: var(--bg-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    text-align: center;
}

.final-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.final-box p {
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.final-cta-wrapper {
    display: flex;
    justify-content: center;
}

/* Footer Section */
.footer-section {
    background-color: var(--color-dark-brown);
    color: var(--bg-cream);
    padding: 40px 0;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-copy {
    font-size: 0.85rem;
    color: #9C8B8B;
    max-width: 600px;
    line-height: 1.4;
}

.footer-links {
    display: flex;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-links a {
    color: #9C8B8B;
    text-decoration: none;
    transition: var(--transition);
}

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

/* Seção Material Portátil */
.portable-section {
    background-color: var(--bg-cream-dark);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.portable-box {
    background-color: var(--bg-white);
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.portable-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-dark-brown);
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.portable-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted-brown);
    font-weight: 500;
    max-width: 600px;
    line-height: 1.5;
}

.whatsapp-highlight {
    color: #24B25B; /* Verde WhatsApp */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.email-highlight {
    color: var(--color-cta-orange); /* Laranja E-mail */
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Avatar stack and social proof */
.avatar-social-proof {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin: 10px 0;
}

.avatar-stack {
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.avatar-stack .avatar-img:first-child {
    margin-left: 0;
}

.avatar-text {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-dark-brown);
    color: var(--bg-cream);
    border: 3px solid var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.portable-clients-title {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-dark-brown);
    letter-spacing: -0.01em;
    margin-bottom: 0;
}

.portable-cta {
    margin-top: 10px;
}

/* ==========================================
   Responsive Styles (Mobile-First approach)
   ========================================== */

@media (max-width: 900px) {
    section {
        padding: 40px 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-mockup-wrapper {
        margin-top: 0;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 24px;
    }

    .btn-hero-main {
        align-self: center;
        width: 100%;
    }

    .hero-price-tag {
        align-self: center;
    }

    .hero-bullets {
        align-items: flex-start;
        display: inline-flex;
        margin: 24px auto 0 auto;
    }

    .proof-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .mockup-display-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .mockup-intro-text {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    
    .flow-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 8px 0;
        align-self: center;
    }
}

@media (max-width: 600px) {
    .portable-box {
        padding: 30px 20px;
        gap: 20px;
    }
    
    .portable-title {
        font-size: 1.4rem;
    }
    
    .portable-clients-title {
        font-size: 1.15rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .btn-cta {
        width: 100%;
        font-size: 1.05rem;
        padding: 14px 24px;
    }
    
    .btn-large {
        font-size: 1.1rem;
        padding: 16px 28px;
    }
    
    .emotional-box, .audience-box, .bonus-wrapper, .pricing-box, .guarantee-wrapper, .final-box {
        padding: 30px 20px;
    }
    
    .emotional-box h2 {
        font-size: 1.6rem;
    }
    
    .emotional-box p {
        font-size: 1rem;
    }
    
    .highlight-quote p {
        font-size: 1rem;
    }
    
    .price-cash {
        font-size: 2.2rem;
    }
    
    .faq-question {
        padding: 18px 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 0.9rem;
    }
    
    .top-promo-bar {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .floating-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .badge-discount {
        left: 0;
    }

    .badge-access {
        right: 0;
    }
}

/* Botão Flutuante de Compra (CTA) */
.btn-floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background-color: var(--color-cta-orange);
    color: var(--bg-white) !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(255, 122, 69, 0.4);
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
}

.btn-floating-cta.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.btn-floating-cta:hover {
    background-color: var(--color-cta-orange-hover);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 30px rgba(255, 122, 69, 0.5);
}

.btn-floating-cta:active {
    transform: translateY(-1px) scale(1.01);
}

/* Responsivo para celulares menores */
@media (max-width: 600px) {
    .btn-floating-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 24px;
        font-size: 0.95rem;
    }
}

/* Notificação Flutuante de Prova Social */
.purchase-notification {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 998;
    background-color: #FFF8EE;
    border: 1px solid #E8DCC8;
    border-radius: 14px;
    padding: 10px 12px;
    width: 260px;
    max-width: 260px;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    box-shadow: 0 8px 22px rgba(60, 47, 47, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 400ms ease, transform 400ms ease, visibility 400ms;
    pointer-events: auto;
}

.purchase-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.notification-accent-line {
    width: 3px;
    background-color: #6BBF7B;
    border-radius: 999px;
    align-self: stretch;
    flex-shrink: 0;
}

.notification-icon-box {
    width: 34px;
    height: 34px;
    background-color: #6BBF7B;
    border-radius: 50%;
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.88rem; /* Check interno proporcional */
    box-shadow: 0 6px 14px rgba(107, 191, 123, 0.25);
    flex-shrink: 0;
}

.notification-body {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-grow: 1;
    padding-right: 12px; /* Evita que o texto sobreponha o 'X' */
}

.notification-name {
    font-family: var(--font-title);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.15;
    color: #3C2F2F;
}

.notification-city {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
    color: #7A6B61;
    margin-top: 1px;
}

.notification-action {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.25;
    color: #3C2F2F;
    margin-top: 3px;
}

.notification-product {
    color: #2F6FD6;
    font-weight: 700;
}

.notification-time {
    font-family: var(--font-body);
    font-size: 10.5px;
    font-weight: 500;
    line-height: 1.2;
    color: #9A8F84;
    margin-top: 3px;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
    background: transparent;
    border: none;
    color: #9A8F84;
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.notification-close:hover {
    color: #3C2F2F;
}

.notification-close:focus-visible {
    outline: 2px solid var(--color-soft-blue-dark);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* Responsividade Mobile */
@media (max-width: 600px) {
    .purchase-notification {
        left: 12px;
        bottom: 82px;
        width: calc(100vw - 24px);
        max-width: 280px;
        padding: 10px 12px;
    }

    .notification-icon-box {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
}

/* ==========================================
   Responsive refinements — tablet e mobile
   ========================================== */

img,
svg {
    max-width: 100%;
}

.hero-content,
.hero-mockup-wrapper,
.proof-block,
.challenge-info,
.comment-content,
.comment-content-wrapper,
.bonus-card-item,
.content-card,
.diff-card {
    min-width: 0;
}

@media (max-width: 900px) {
    .container {
        padding-inline: 20px;
    }

    section {
        padding-block: 48px;
    }

    .hero-section {
        padding: 48px 0 56px;
    }

    .hero-container {
        max-width: 720px;
        gap: 36px;
    }

    .hero-content {
        max-width: 680px;
        margin-inline: auto;
    }

    .hero-title {
        font-size: clamp(2rem, 5.5vw, 2.55rem);
        text-wrap: balance;
    }

    .hero-subtitle {
        max-width: 620px;
    }

    .hero-mockup-wrapper {
        width: min(100%, 520px);
        margin-inline: auto;
    }

    .proof-grid {
        max-width: 680px;
        margin-inline: auto;
        gap: 12px;
    }

    .proof-block {
        padding: 16px;
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius-md);
    }

    .pain-grid,
    .contents-grid,
    .diff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .proof-platforms-grid,
    .bonus-grid {
        max-width: 680px;
    }

    .pricing-box,
    .final-box,
    .portable-box,
    .audience-box {
        width: 100%;
    }
}

@media (max-width: 640px) {
    html {
        scroll-padding-top: 52px;
    }

    body {
        font-size: 15px;
    }

    .container {
        padding-inline: 16px;
    }

    section {
        padding-block: 36px;
    }

    .top-promo-bar {
        padding: 8px 10px;
        font-size: 0.72rem;
        line-height: 1.35;
        letter-spacing: 0.01em;
    }

    .top-seal-bar {
        padding: 5px 8px;
        font-size: 0.72rem;
    }

    .hero-section {
        padding: 34px 0 42px;
    }

    .hero-container {
        gap: 28px;
    }

    .hero-badge {
        margin-bottom: 14px;
        padding: 6px 12px;
        font-size: 0.72rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8.2vw, 2.1rem);
        line-height: 1.16;
        margin-bottom: 14px;
        letter-spacing: -0.025em;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.55;
        margin-bottom: 20px;
    }

    .hero-details {
        width: 100%;
        gap: 8px;
        margin-bottom: 20px;
        text-align: left;
    }

    .hero-clarity,
    .hero-positioning {
        padding: 10px 12px;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.65);
        line-height: 1.4;
    }

    .hero-clarity {
        font-size: 0.92rem;
    }

    .hero-positioning {
        font-size: 0.85rem;
    }

    .btn-cta,
    .btn-large,
    .btn-pricing-cta {
        width: 100%;
        max-width: none;
        padding: 15px 18px !important;
        font-size: 1rem !important;
        line-height: 1.3;
    }

    .cta-caption {
        text-align: center;
        line-height: 1.4;
    }

    .hero-mockup-wrapper {
        width: calc(100% - 20px);
    }

    .mockup-img {
        border-radius: 12px;
    }

    .floating-badge {
        padding: 6px 10px;
        font-size: 0.68rem;
        white-space: nowrap;
    }

    .badge-discount {
        top: 3%;
        left: -8px;
    }

    .badge-access {
        right: -8px;
        bottom: 6%;
    }

    .proof-bar-section {
        padding-block: 20px;
    }

    .proof-block {
        gap: 12px;
        padding: 14px;
        text-align: left;
    }

    .proof-icon-small {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }

    .proof-text-wrapper h3 {
        font-size: 1rem;
    }

    .mockup-display-section {
        padding: 28px 0 32px;
    }

    .mockup-intro-text {
        padding-inline: 8px;
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .carousel-container {
        width: calc(100% + 32px);
        margin-left: -16px;
        padding: 6px 0 14px;
    }

    .carousel-slide {
        flex-basis: min(74vw, 250px);
        margin-inline: 8px;
    }

    .carousel-mockup-img {
        max-width: 235px;
    }

    .pain-intro-box {
        padding: 16px;
        margin-bottom: 24px;
        border-radius: 14px;
    }

    .pain-box-title {
        font-size: 1.28rem;
        line-height: 1.3;
        margin-bottom: 16px;
    }

    .pain-grid,
    .contents-grid,
    .diff-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .pain-card,
    .content-card,
    .diff-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .pain-icon,
    .diff-icon {
        margin-bottom: 12px;
    }

    .pain-card h3,
    .content-card h3,
    .diff-card h3 {
        font-size: 1.08rem;
    }

    .challenge-list {
        gap: 12px;
    }

    .challenge-block {
        gap: 14px;
        padding: 16px;
        align-items: flex-start;
        border-radius: 14px;
    }

    .challenge-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .challenge-info h3 {
        font-size: 1.05rem;
        margin-bottom: 4px;
    }

    .contents-mockup-main {
        margin-bottom: 24px;
        border-radius: 14px;
    }

    .contents-grid {
        margin-bottom: 28px;
    }

    .card-icon-header {
        width: 46px;
        height: 46px;
        margin-bottom: 16px;
    }

    .section-header {
        margin-bottom: 24px;
    }

    .section-header h2,
    .social-proof-section h2 {
        font-size: 1.45rem;
        line-height: 1.25;
        letter-spacing: -0.015em;
        text-wrap: balance;
    }

    .section-header p {
        font-size: 0.98rem;
    }

    .platform-column {
        border-radius: 14px;
    }

    .instagram-comments .platform-header,
    .facebook-comments .platform-header {
        padding: 14px 16px;
    }

    .instagram-comments .comments-list,
    .facebook-comments .comments-list {
        padding: 16px 14px;
        gap: 20px;
    }

    .instagram-comments .comment-item,
    .facebook-comments .comment-item {
        gap: 10px;
    }

    .instagram-comments .comment-avatar,
    .facebook-comments .comment-avatar {
        width: 34px;
        height: 34px;
    }

    .instagram-comments .comment-content,
    .facebook-comments .comment-bubble {
        font-size: 0.82rem;
        overflow-wrap: anywhere;
    }

    .instagram-comments .comment-meta,
    .facebook-comments .comment-meta {
        gap: 10px;
        flex-wrap: wrap;
    }

    .bonus-section {
        padding-block: 36px;
    }

    .bonus-image-wrapper {
        aspect-ratio: auto;
        min-height: 0;
        padding: 16px;
    }

    .bonus-img {
        width: 100%;
        max-height: none;
    }

    .bonus-text-content {
        padding: 20px 18px;
    }

    .bonus-text-content h3 {
        font-size: 1.18rem;
    }

    .pricing-box {
        padding: 20px 16px 24px;
        border-radius: 16px;
    }

    .pricing-badge {
        position: static;
        display: inline-flex;
        margin: 0 auto 18px;
        padding: 5px 12px;
    }

    .pricing-header h3 {
        font-size: 1.55rem;
    }

    .pricing-sub,
    .original-value {
        font-size: 0.92rem;
    }

    .price-cash {
        font-size: 2.35rem;
    }

    .price-installments {
        font-size: 1.5rem;
    }

    .pricing-list {
        gap: 10px;
    }

    .pricing-list li {
        gap: 9px;
        font-size: 0.93rem;
    }

    .pricing-action {
        margin-top: 26px;
    }

    .pricing-caption {
        align-items: flex-start;
        font-size: 0.78rem;
        line-height: 1.4;
    }

    .pricing-footer-seals {
        gap: 10px 14px;
        margin-top: 22px;
        padding-top: 16px;
    }

    .seal-item {
        font-size: 0.76rem;
    }

    .guarantee-image-wrapper {
        border-radius: 14px;
    }

    .faq-list {
        gap: 10px;
    }

    .faq-question {
        gap: 12px;
        padding: 17px 16px;
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .faq-question i {
        flex-shrink: 0;
    }

    .faq-answer p {
        padding: 0 16px 17px;
        font-size: 0.88rem;
    }

    .portable-section,
    .audience-section {
        padding-block: 36px;
    }

    .portable-box,
    .audience-box,
    .final-box {
        padding: 26px 18px;
        border-radius: 16px;
    }

    .portable-title,
    .audience-box h2,
    .final-box h2 {
        font-size: 1.4rem;
    }

    .portable-subtitle,
    .final-box p {
        font-size: 0.98rem;
    }

    .avatar-img,
    .avatar-text {
        width: 42px;
        height: 42px;
    }

    .footer-section {
        padding: 32px 0 88px;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        row-gap: 6px;
    }

    .btn-floating-cta {
        right: 16px;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: calc(100% - 32px);
        min-height: 48px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .purchase-notification {
        left: 12px;
        bottom: calc(76px + env(safe-area-inset-bottom));
        width: calc(100% - 24px);
        max-width: 340px;
    }
}

/* ==========================================
   Briefing LP KMSC — mobile-first 2026-08-26
   ========================================== */
.hero-briefing {
    padding: clamp(34px, 6vw, 70px) 0 clamp(40px, 7vw, 76px);
    background:
        radial-gradient(circle at 90% 18%, rgba(255, 196, 169, 0.22), transparent 30%),
        linear-gradient(180deg, #fff9ef 0%, var(--bg-cream) 100%);
}

.hero-briefing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 920px;
    text-align: center;
}

.hero-briefing .hero-content {
    max-width: 850px;
}

.hero-briefing .hero-title {
    margin: 0 auto;
    font-size: clamp(2rem, 5.6vw, 3.8rem);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.hero-briefing .hero-subtitle {
    max-width: 760px;
    margin: 22px auto 0;
    font-size: clamp(1rem, 2.2vw, 1.3rem);
    line-height: 1.55;
}

.hero-product {
    width: min(100%, 660px);
    margin: 26px auto 20px;
}

.hero-product img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 22px;
    filter: drop-shadow(0 20px 34px rgba(60, 47, 47, 0.14));
}

.hero-briefing .hero-cta-wrapper {
    width: min(100%, 620px);
}

.hero-briefing .btn-hero-main {
    width: 100%;
    min-height: 60px;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.whatsapp-proof-section {
    overflow: hidden;
    padding-bottom: 54px;
}

.whatsapp-proof-section .section-header p {
    color: rgba(255,255,255,.82);
}

.whatsapp-carousel {
    width: 100%;
    overflow: hidden;
    touch-action: pan-y;
    outline: none;
}

.whatsapp-track {
    display: flex;
    align-items: center;
    will-change: transform;
}

.whatsapp-slide {
    flex: 0 0 min(78vw, 340px);
    margin: 0 10px;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(20, 15, 12, .28);
}

.whatsapp-slide img {
    display: block;
    width: 100%;
    height: auto;
}

.whatsapp-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}

.whatsapp-dots button,
.whatsapp-dots span {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255,255,255,.38);
    transition: width .25s ease, background .25s ease;
    cursor: pointer;
}

.whatsapp-dots button.active,
.whatsapp-dots span.active {
    width: 24px;
    background: #fff;
}

.pain-briefing {
    padding-bottom: clamp(50px, 8vw, 92px);
}

.diff-briefing .diff-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.diff-briefing .diff-card {
    padding: 22px 18px;
    text-align: left;
}

.diff-symbol {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    margin-bottom: 14px;
    padding: 0 8px;
    border-radius: 12px;
    color: #fff;
    background: var(--color-cta-orange);
    font-family: var(--font-title);
    font-size: .86rem;
    font-weight: 800;
}

.bonus-briefing .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
}

.bonus-briefing .bonus-card-item {
    height: 100%;
}

.bonus-briefing .bonus-image-wrapper {
    aspect-ratio: 1 / 1;
}

.bonus-lifetime {
    margin-top: 18px;
    color: var(--color-muted-brown);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
}

.bonus-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
}

.bonus-price del {
    color: var(--color-muted-brown);
    font-size: .82rem;
}

.bonus-price strong {
    padding: 7px 10px;
    border-radius: 999px;
    color: #176b3a;
    background: var(--color-mint-green);
    font-size: .78rem;
}

.purchase-notification {
    max-width: 280px;
}

@media (max-width: 640px) {
    .top-promo-bar p {
        font-size: .7rem;
    }

    .hero-briefing {
        padding-top: 28px;
    }

    .hero-briefing .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
    }

    .hero-briefing .hero-subtitle {
        margin-top: 16px;
        font-size: .98rem;
    }

    .hero-product {
        width: calc(100% + 10px);
        margin-top: 20px;
    }

    .hero-product img {
        border-radius: 16px;
    }

    .hero-briefing .btn-hero-main {
        min-height: 56px;
        padding-inline: 18px;
    }

    .hero-briefing .cta-caption {
        font-size: .69rem;
    }

    .whatsapp-slide {
        flex-basis: min(79vw, 315px);
        margin-inline: 7px;
        border-radius: 17px;
    }

    .diff-briefing .diff-grid {
        gap: 10px;
    }

    .diff-briefing .diff-card {
        min-height: 210px;
        padding: 16px 12px;
        border-radius: 15px;
    }

    .diff-briefing .diff-card h3 {
        font-size: .9rem;
        line-height: 1.25;
    }

    .diff-briefing .diff-card p {
        font-size: .72rem;
        line-height: 1.45;
    }

    .diff-symbol {
        min-width: 32px;
        height: 32px;
        margin-bottom: 10px;
        border-radius: 10px;
        font-size: .72rem;
    }

    .bonus-briefing .bonus-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .bonus-briefing .bonus-card-item {
        display: grid;
        grid-template-columns: 42% 58%;
        align-items: center;
    }

    .bonus-briefing .bonus-image-wrapper {
        height: 100%;
        min-height: 250px;
        border: 0;
        border-right: 1px solid var(--border-color);
    }

    .bonus-briefing .bonus-text-content {
        padding: 18px 14px;
    }

    .bonus-briefing .bonus-text-content h3 {
        font-size: 1rem;
    }

    .bonus-briefing .bonus-text-content > p:not(.bonus-lifetime) {
        font-size: .72rem;
        line-height: 1.45;
    }

    .bonus-price {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .purchase-notification {
        left: 10px;
        bottom: calc(68px + env(safe-area-inset-bottom));
        width: min(230px, calc(100vw - 86px));
        padding: 9px 10px;
        border-radius: 12px;
    }

    .purchase-notification .notification-title,
    .purchase-notification strong {
        font-size: .7rem;
    }

    .purchase-notification p,
    .purchase-notification span {
        font-size: .62rem;
    }
}

/* ==========================================
   Checkouts incorporados e CTA flutuante
   ========================================== */

.embedded-checkout-main {
    min-height: calc(100vh - 115px);
    padding: 38px 0 56px;
}

.embedded-checkout-shell {
    max-width: 980px;
}

.embedded-checkout-heading {
    max-width: 720px;
    margin: 0 auto 24px;
    text-align: center;
}

.embedded-checkout-heading .checkout-back {
    display: table;
    margin: 0 auto 20px;
}

.embedded-checkout-heading h1 {
    margin: 12px 0 8px;
    font-size: clamp(1.9rem, 5vw, 2.7rem);
}

.embedded-checkout-heading > p {
    color: var(--color-muted-brown);
    font-size: 0.94rem;
}

.checkout-promo-topbar {
    background: var(--color-cta-orange-hover);
}

.payment-embed {
    width: 100%;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 22px;
    background: var(--bg-white);
    box-shadow: 0 22px 58px rgba(60, 47, 47, 0.13);
}

.payment-embed-promo {
    border-color: rgba(255, 122, 69, 0.5);
    box-shadow: 0 22px 58px rgba(255, 122, 69, 0.16);
}

.payment-embed-basic {
    border-color: #ddd4c9;
}

.payment-embed iframe {
    display: block;
    width: 100%;
    height: 930px;
    border: 0;
    background: var(--bg-white);
}

.payment-fallback {
    margin-top: 16px;
    color: var(--color-muted-brown);
    font-size: 0.76rem;
    text-align: center;
}

.payment-fallback a {
    color: var(--color-soft-blue-dark);
    font-weight: 700;
}

/* Mantém o CTA compacto no canto, inclusive no mobile. */
.btn-floating-cta {
    right: 24px;
    bottom: max(20px, env(safe-area-inset-bottom));
    left: auto;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 14px 26px;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .embedded-checkout-main {
        padding: 26px 0 38px;
    }

    .embedded-checkout-shell {
        width: calc(100% - 20px);
    }

    .embedded-checkout-heading {
        margin-bottom: 18px;
        padding-inline: 8px;
    }

    .embedded-checkout-heading h1 {
        font-size: 1.72rem;
    }

    .embedded-checkout-heading > p {
        font-size: 0.84rem;
    }

    .payment-embed {
        border-radius: 14px;
    }

    .payment-embed iframe {
        height: 1000px;
    }

    .btn-floating-cta {
        right: 16px;
        bottom: max(14px, env(safe-area-inset-bottom));
        width: auto;
        min-height: 46px;
        padding: 12px 20px;
        font-size: 0.86rem;
    }

    .purchase-notification {
        bottom: calc(72px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 360px) {
    .btn-floating-cta {
        right: 12px;
        padding-inline: 17px;
        font-size: 0.8rem;
    }
}

/* ==========================================
   Checkout e página de obrigado
   ========================================== */

.checkout-body,
.thank-you-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 10% 10%, rgba(226, 236, 252, 0.75), transparent 32%),
        radial-gradient(circle at 90% 90%, rgba(225, 247, 231, 0.72), transparent 34%),
        var(--bg-cream);
}

.checkout-topbar {
    padding: 10px 16px;
    background: var(--color-dark-brown);
    text-align: center;
}

.checkout-topbar p {
    color: var(--bg-white);
    font-family: var(--font-title);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.checkout-main {
    min-height: calc(100vh - 130px);
    padding: 48px 0 64px;
}

.checkout-shell {
    max-width: 1050px;
}

.checkout-back {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--color-soft-blue-dark);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
}

.checkout-back:hover {
    text-decoration: underline;
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
    gap: 34px;
    align-items: start;
}

.checkout-summary,
.checkout-payment-card {
    border: 1px solid var(--border-color);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
}

.checkout-summary {
    padding: 34px;
}

.checkout-plan-label,
.checkout-step {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    background: #ffeae2;
    color: var(--color-cta-orange);
    font-family: var(--font-title);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.checkout-basic-label {
    background: var(--bg-cream-dark);
    color: #756a63;
}

.checkout-summary h1 {
    margin: 13px 0 8px;
    font-size: 2.15rem;
}

.checkout-subtitle {
    color: var(--color-muted-brown);
    font-size: 0.96rem;
}

.checkout-product-image {
    margin: 24px 0;
    overflow: hidden;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    background: var(--bg-cream-dark);
}

.checkout-product-image img {
    width: 100%;
}

.checkout-benefits {
    display: grid;
    gap: 10px;
    list-style: none;
}

.checkout-benefits li {
    color: var(--color-dark-brown);
    font-size: 0.88rem;
    font-weight: 600;
}

.checkout-payment-card {
    position: sticky;
    top: 24px;
    padding: 34px 30px;
    border-color: rgba(255, 122, 69, 0.35);
    box-shadow: 0 20px 52px rgba(60, 47, 47, 0.11);
    text-align: center;
}

.checkout-basic-card {
    border-color: var(--border-color);
}

.checkout-payment-card h2 {
    margin: 14px 0 8px;
    font-size: 1.65rem;
}

.checkout-payment-card > p {
    color: var(--color-muted-brown);
    font-size: 0.86rem;
}

.checkout-price {
    display: flex;
    flex-direction: column;
    margin: 26px 0 20px;
}

.checkout-price span {
    color: var(--color-muted-brown);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
}

.checkout-price strong {
    color: var(--color-dark-brown);
    font-family: var(--font-title);
    font-size: 2.6rem;
    line-height: 1.15;
}

.hotmart-widget-wrap {
    display: flex;
    justify-content: center;
    min-height: 54px;
}

.hotmart-widget-wrap .hotmart__button-checkout,
.hotmart-widget-wrap .hotmart-fb {
    display: inline-flex !important;
    max-width: 100%;
}

.hotmart-widget-wrap img {
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.checkout-security {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 12px;
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
    color: var(--color-muted-brown);
    font-size: 0.68rem;
    font-weight: 700;
}

.checkout-help {
    margin-top: 20px;
    font-size: 0.72rem !important;
}

.checkout-help a {
    color: var(--color-soft-blue-dark);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.checkout-footer {
    padding: 24px 0;
    background: var(--color-dark-brown);
    color: #b8aaaa;
}

.checkout-footer .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.checkout-footer p {
    color: var(--bg-cream);
    font-family: var(--font-title);
    font-size: 0.82rem;
    font-weight: 700;
}

.checkout-footer nav {
    display: flex;
    gap: 16px;
}

.checkout-footer a {
    color: #b8aaaa;
    font-size: 0.72rem;
    text-decoration: none;
}

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

.thank-you-main {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 40px 20px;
}

.thank-you-card {
    width: min(680px, 100%);
    padding: 52px 54px;
    border: 1px solid var(--border-color);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 24px 70px rgba(60, 47, 47, 0.13);
    text-align: center;
}

.thank-you-icon {
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--color-mint-green);
    color: #22864a;
    font-family: var(--font-title);
    font-size: 2.1rem;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(46, 204, 113, 0.18);
}

.thank-you-kicker {
    color: #258c4d;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.thank-you-card h1 {
    margin: 12px 0 12px;
    font-size: 2.15rem;
}

.thank-you-lead {
    color: var(--color-muted-brown);
    font-size: 1rem;
}

.thank-you-steps {
    display: grid;
    gap: 13px;
    margin: 30px 0;
    text-align: left;
}

.thank-you-steps > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background: var(--bg-cream);
}

.thank-you-steps > div > span {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--color-soft-blue);
    color: var(--color-soft-blue-dark);
    font-family: var(--font-title);
    font-weight: 800;
}

.thank-you-steps p {
    color: var(--color-muted-brown);
    font-size: 0.84rem;
    line-height: 1.5;
}

.thank-you-steps strong {
    display: block;
    margin-bottom: 2px;
    color: var(--color-dark-brown);
}

.thank-you-support {
    margin-bottom: 26px;
    padding: 18px;
    border-radius: 12px;
    background: #fff8f4;
    color: var(--color-muted-brown);
    font-size: 0.82rem;
}

.thank-you-support strong {
    color: var(--color-dark-brown);
}

.thank-you-support a {
    color: var(--color-cta-orange-hover);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.thank-you-button {
    width: 100%;
}

@media (max-width: 820px) {
    .checkout-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin-inline: auto;
    }

    .checkout-payment-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .checkout-main {
        padding: 28px 0 42px;
    }

    .checkout-summary,
    .checkout-payment-card {
        padding: 24px 18px;
        border-radius: 18px;
    }

    .checkout-summary h1 {
        font-size: 1.72rem;
    }

    .checkout-payment-card h2 {
        font-size: 1.4rem;
    }

    .checkout-price strong {
        font-size: 2.25rem;
    }

    .checkout-footer .container {
        flex-direction: column;
        text-align: center;
    }

    .thank-you-main {
        padding: 20px 12px;
    }

    .thank-you-card {
        padding: 36px 18px;
        border-radius: 20px;
    }

    .thank-you-card h1 {
        font-size: 1.62rem;
    }

    .thank-you-lead {
        font-size: 0.92rem;
    }
}

/* ==========================================
   Páginas legais
   ========================================== */

.legal-body {
    background: var(--bg-cream);
}

.legal-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--border-color);
    background: rgba(250, 246, 238, 0.96);
    backdrop-filter: blur(10px);
}

.legal-topbar-inner {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.legal-brand {
    color: var(--color-dark-brown);
    font-family: var(--font-title);
    font-weight: 800;
    text-decoration: none;
}

.legal-back {
    color: var(--color-soft-blue-dark);
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
}

.legal-brand:hover,
.legal-back:hover {
    text-decoration: underline;
}

.legal-main {
    padding: 64px 0 80px;
}

.legal-document {
    max-width: 850px;
    padding: 54px 64px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    background: var(--bg-white);
    box-shadow: var(--shadow-soft);
}

.legal-header {
    margin-bottom: 38px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.legal-kicker {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-cta-orange);
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-header h1 {
    margin-bottom: 8px;
    font-size: clamp(2rem, 5vw, 3rem);
}

.legal-header p {
    color: var(--color-muted-brown);
    font-size: 0.86rem;
}

.legal-document > p,
.legal-document section > p,
.legal-document li {
    color: var(--color-muted-brown);
    font-size: 0.97rem;
    line-height: 1.75;
}

.legal-document > p + p {
    margin-top: 16px;
}

.legal-document section {
    padding: 0;
    margin-top: 38px;
}

.legal-document h2 {
    margin-bottom: 14px;
    font-size: 1.3rem;
    letter-spacing: -0.01em;
}

.legal-document ul,
.legal-document ol {
    display: grid;
    gap: 10px;
    margin: 16px 0 0 22px;
}

.legal-document strong {
    color: var(--color-dark-brown);
}

.legal-contact {
    padding: 24px !important;
    border: 1px solid #f1d8ce;
    border-radius: var(--border-radius-md);
    background: #fff8f4;
}

.legal-contact a {
    color: var(--color-cta-orange-hover);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.legal-footer {
    margin-top: 0;
}

.footer-links a[aria-current="page"] {
    color: var(--bg-cream);
    text-decoration: underline;
    text-underline-offset: 4px;
}

@media (max-width: 640px) {
    .legal-topbar-inner {
        min-height: 58px;
        gap: 12px;
    }

    .legal-brand {
        font-size: 0.8rem;
    }

    .legal-back {
        max-width: 125px;
        font-size: 0.7rem;
        line-height: 1.25;
        text-align: right;
    }

    .legal-main {
        padding: 28px 0 44px;
    }

    .legal-document {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .legal-header {
        margin-bottom: 28px;
        padding-bottom: 22px;
    }

    .legal-header h1 {
        font-size: 1.8rem;
    }

    .legal-document section {
        margin-top: 30px;
    }

    .legal-document h2 {
        font-size: 1.12rem;
    }

    .legal-document > p,
    .legal-document section > p,
    .legal-document li {
        font-size: 0.9rem;
        line-height: 1.68;
    }

    .legal-contact {
        padding: 18px !important;
    }

    .legal-footer {
        padding-bottom: 32px;
    }
}

@media (max-width: 360px) {
    .container {
        padding-inline: 14px;
    }

    .hero-title {
        font-size: 1.65rem;
    }

    .carousel-container {
        width: calc(100% + 28px);
        margin-left: -14px;
    }

    .carousel-slide {
        flex-basis: 230px;
    }

    .instagram-comments .comment-like {
        display: none;
    }
}

@media (hover: none) {
    .pain-card:hover,
    .content-card:hover,
    .diff-card:hover,
    .bonus-card-item:hover,
    .pricing-box:hover,
    .guarantee-image-wrapper:hover,
    .contents-mockup-main:hover {
        transform: none;
    }
}

/* ==========================================
   Reestruturação de oferta v4
   ========================================== */

.basic-preview-section {
    margin-top: 72px;
    padding-top: 56px;
    border-top: 1px solid var(--border-color);
}

.plan-preview {
    background: var(--bg-white);
}

.plan-preview-premium {
    border: 2px solid rgba(255, 122, 69, 0.22);
}

.plan-preview-basic {
    max-width: 820px;
    margin-bottom: 0;
}

.plans-comparison {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 28px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 34px 28px 30px;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.plan-card::before {
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.plan-card-basic {
    margin-top: 24px;
    border-color: #d8d0c4;
    box-shadow: 0 12px 32px rgba(60, 47, 47, 0.07);
}

.plan-card-basic::before {
    background: #8b8178;
}

.plan-card-premium {
    border-color: rgba(255, 122, 69, 0.55);
    box-shadow: 0 18px 48px rgba(255, 122, 69, 0.16);
}

.plan-card-image {
    margin: 0 0 24px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    background: var(--bg-cream-dark);
}

.plan-card-image img {
    width: 100%;
    height: auto;
}

.plan-label {
    display: inline-block;
    margin-bottom: 6px;
    color: var(--color-cta-orange);
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.plan-card-basic .plan-label {
    color: #766b63;
}

.plan-card .pricing-header h3 {
    font-size: 1.75rem;
}

.plan-card .pricing-sub {
    min-height: 48px;
    margin-bottom: 14px;
}

.plan-card .pricing-price {
    margin: 10px 0 20px;
}

.plan-card .price-cash {
    font-size: 2.6rem;
}

.plan-card .pricing-divider {
    margin-top: 12px;
}

.plan-features {
    max-width: none;
    margin-bottom: 24px;
    gap: 9px;
}

.plan-features li {
    font-size: 0.9rem;
    line-height: 1.35;
}

.plan-features .not-included {
    color: #9a8f8f;
    opacity: 0.72;
}

.plan-features .not-included i {
    color: #c86c6c;
}

.plan-features .premium-bonus {
    color: var(--color-dark-brown);
    font-weight: 700;
}

.plan-features .premium-bonus i {
    color: var(--color-cta-orange);
}

.plan-summary {
    min-height: 66px;
    margin: auto 0 22px;
    padding: 13px 14px;
    border-radius: 10px;
    background: var(--bg-cream-dark);
    color: var(--color-muted-brown);
    font-family: var(--font-title);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.45;
}

.plan-card-premium .plan-summary {
    background: #fff1eb;
    color: #8f4327;
}

.btn-basic-plan {
    width: 100%;
    border: 2px solid #8b8178;
    background: transparent;
    color: #665d56;
    box-shadow: none;
}

.btn-basic-plan:hover {
    border-color: var(--color-dark-brown);
    background: var(--color-dark-brown);
    color: var(--bg-white);
    box-shadow: 0 8px 20px rgba(60, 47, 47, 0.18);
}

.plan-card .btn-pricing-cta {
    margin-top: auto;
}

.plans-security {
    margin-top: 24px;
}

body.upsell-open {
    overflow: hidden;
}

.upsell-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.upsell-modal.open {
    opacity: 1;
    visibility: visible;
}

.upsell-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(45, 33, 33, 0.72);
    backdrop-filter: blur(5px);
}

.upsell-dialog {
    position: relative;
    width: min(520px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    padding: 38px 34px 30px;
    border: 2px solid rgba(255, 122, 69, 0.55);
    border-radius: 24px;
    background: var(--bg-white);
    box-shadow: 0 28px 80px rgba(45, 33, 33, 0.35);
    text-align: center;
    transform: translateY(14px) scale(0.98);
    transition: transform 0.25s ease;
}

.upsell-modal.open .upsell-dialog {
    transform: none;
}

.upsell-close {
    position: absolute;
    top: 13px;
    right: 13px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    background: var(--bg-cream);
    color: var(--color-muted-brown);
    cursor: pointer;
}

.upsell-badge {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ffeae2;
    color: var(--color-cta-orange);
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.upsell-dialog h2 {
    margin: 16px 0 10px;
    font-size: 1.9rem;
    text-transform: uppercase;
}

.upsell-dialog > p {
    font-size: 0.93rem;
}

.upsell-benefits {
    display: grid;
    gap: 7px;
    max-width: 370px;
    margin: 20px auto;
    list-style: none;
    text-align: left;
    color: var(--color-dark-brown);
    font-size: 0.84rem;
    font-weight: 600;
}

.upsell-benefits i {
    margin-right: 7px;
    color: var(--color-mint-green-dark);
}

.upsell-price {
    display: flex;
    flex-direction: column;
    margin: 18px 0;
}

.upsell-price del {
    color: #a09292;
    font-size: 0.82rem;
}

.upsell-price span {
    color: var(--color-muted-brown);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.upsell-price strong {
    color: var(--color-dark-brown);
    font-family: var(--font-title);
    font-size: 2.75rem;
    line-height: 1.1;
}

.upsell-price small {
    color: var(--color-cta-orange);
    font-weight: 800;
}

.upsell-primary {
    width: 100%;
    font-size: 0.96rem;
}

.upsell-basic-link {
    display: inline-block;
    margin-top: 17px;
    color: #8f8383;
    font-size: 0.76rem;
}

.upsell-basic-link:hover {
    color: var(--color-dark-brown);
}

/* Profundidade e enquadramento do carrossel de prints */
.carousel-container::before,
.carousel-container::after {
    content: '';
    position: absolute;
    z-index: 8;
    top: 0;
    bottom: 0;
    width: clamp(18px, 5vw, 62px);
    pointer-events: none;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-cream), transparent);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-cream), transparent);
}

.carousel-slide {
    position: relative;
    z-index: 1;
    opacity: 0.12;
    transform: scale(0.78);
    filter: saturate(0.72);
    visibility: hidden;
}

.carousel-slide.carousel-far {
    z-index: 1;
    opacity: 0;
    transform: scale(0.78);
    visibility: hidden;
}

.carousel-slide.carousel-near {
    z-index: 3;
    opacity: 0.48;
    transform: scale(0.9);
    visibility: visible;
}

.carousel-slide.active {
    z-index: 5;
    opacity: 1;
    transform: scale(1.06);
    filter: none;
    visibility: visible;
}

.carousel-slide.active .carousel-mockup-img {
    box-shadow: 0 18px 42px rgba(60, 47, 47, 0.2);
}

.carousel-mockup-img {
    overflow: hidden;
    border: 1px solid rgba(60, 47, 47, 0.08);
}

.upsell-close:focus-visible,
.btn-basic-plan:focus-visible,
.upsell-basic-link:focus-visible {
    outline: 3px solid var(--color-soft-blue-dark);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .plans-comparison {
        grid-template-columns: 1fr;
        max-width: 660px;
        gap: 34px;
    }

    .plan-card-basic {
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .basic-preview-section {
        margin-top: 48px;
        padding-top: 38px;
    }

    .plan-preview {
        margin-bottom: 24px;
    }

    .plan-card,
    .plan-card-premium {
        padding: 24px 16px 20px;
    }

    .plan-card .pricing-sub,
    .plan-summary {
        min-height: 0;
    }

    .plan-card .price-cash {
        font-size: 2.25rem;
    }

    .plan-features li {
        font-size: 0.84rem;
    }

    .upsell-modal {
        padding: 12px;
    }

    .upsell-dialog {
        max-height: calc(100vh - 24px);
        padding: 34px 18px 24px;
        border-radius: 18px;
    }

    .upsell-dialog h2 {
        font-size: 1.48rem;
    }

    .upsell-price strong {
        font-size: 2.3rem;
    }

    .carousel-slide {
        flex-basis: min(72vw, 250px);
    }

    .carousel-slide.active {
        transform: scale(1.03);
    }

    .carousel-mockup-img {
        max-width: 230px;
        border-radius: 18px;
    }
}

/* Ajustes finais do briefing — mantidos ao fim da cascata */
.hero-section.hero-briefing {
    padding: clamp(34px, 6vw, 70px) 0 clamp(40px, 7vw, 76px);
}

.hero-briefing .hero-briefing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 920px;
    text-align: center;
}

.hero-briefing .hero-content {
    max-width: 850px;
}

.hero-briefing .hero-product {
    width: min(100%, 660px);
    margin: 26px auto 20px;
}

.hero-briefing .hero-product img {
    display: block;
    width: 100%;
    height: auto;
}

.diff-briefing .diff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bonus-briefing .bonus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 640px) {
    .hero-section.hero-briefing {
        padding-top: 28px;
    }

    .hero-briefing .hero-title {
        font-size: clamp(1.85rem, 8vw, 2.35rem);
    }

    .hero-briefing .hero-product {
        width: calc(100% + 10px);
        margin-top: 20px;
    }

    .diff-briefing .diff-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .bonus-briefing .bonus-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .purchase-notification {
        left: 10px;
        bottom: calc(68px + env(safe-area-inset-bottom));
        width: min(230px, calc(100vw - 86px));
        max-width: 230px;
        padding: 8px 9px;
        border-radius: 12px;
    }

    .purchase-notification .notification-icon-box {
        width: 30px;
        height: 30px;
        font-size: .75rem;
    }

    .purchase-notification .notification-name {
        font-size: .68rem;
    }

    .purchase-notification .notification-city,
    .purchase-notification .notification-action,
    .purchase-notification .notification-time {
        font-size: .58rem;
        line-height: 1.3;
    }
}

/* Refinamento mobile — revisão 2026-08-27 */
@media (max-width: 640px) {
    .top-promo-bar {
        min-height: 30px;
        padding: 7px 8px;
    }

    .hero-section.hero-briefing {
        padding: 22px 0 28px;
    }

    .hero-briefing .hero-title {
        max-width: 350px;
        font-size: clamp(1.55rem, 6.8vw, 1.82rem);
        line-height: 1.08;
        letter-spacing: -0.025em;
    }

    .hero-briefing .hero-subtitle {
        max-width: 350px;
        margin-top: 12px;
        font-size: .86rem;
        line-height: 1.45;
    }

    .hero-briefing .hero-product {
        width: min(80vw, 320px);
        margin: 12px auto 10px;
    }

    .hero-briefing .hero-product img {
        border-radius: 13px;
    }

    .hero-briefing .hero-cta-wrapper {
        width: min(100%, 350px);
    }

    .hero-briefing .btn-hero-main {
        min-height: 48px;
        padding: 12px 16px;
        font-size: .9rem;
    }

    .hero-briefing .cta-caption {
        margin-top: 7px;
        font-size: .62rem;
        line-height: 1.35;
    }

    .whatsapp-proof-section {
        padding: 34px 0 38px;
    }

    .whatsapp-proof-section .section-header {
        margin-bottom: 22px;
    }

    .whatsapp-proof-section .section-eyebrow {
        margin-bottom: 6px;
    }

    .whatsapp-proof-section .section-header h2 {
        margin-bottom: 0;
    }

    .whatsapp-dots {
        margin-top: 16px;
    }

    .mockup-display-section,
    .pain-section.pain-briefing,
    .portable-section,
    .challenge-section,
    .diff-section,
    .bonus-section,
    .offer-section,
    .guarantee-section,
    .faq-section,
    .final-cta-section {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .mockup-display-section .mockup-intro-text,
    .section-header {
        margin-bottom: 28px;
    }

    .pain-briefing .pain-box-title {
        margin-bottom: 22px;
    }

    .portable-box {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .bonus-briefing .bonus-grid {
        gap: 18px;
    }

    .bonus-briefing .bonus-card-item {
        grid-template-columns: 55% 45%;
    }

    .bonus-briefing .bonus-image-wrapper {
        min-height: 310px;
        padding: 5px;
    }

    .bonus-briefing .bonus-img {
        width: 100%;
        max-width: none;
        max-height: 300px;
        object-fit: contain;
    }

    .bonus-briefing .bonus-text-content {
        padding: 16px 11px;
    }

    .bonus-briefing .bonus-text-content h3 {
        font-size: .92rem;
        line-height: 1.25;
    }

    .bonus-briefing .bonus-text-content > p:not(.bonus-lifetime) {
        font-size: .67rem;
    }

    .bonus-lifetime {
        margin-top: 12px;
        font-size: .62rem;
    }

    .bonus-price strong {
        padding: 6px 8px;
        font-size: .66rem;
    }

    .plans-comparison {
        gap: 26px;
    }
}

@media (max-width: 380px) {
    .hero-briefing .hero-title {
        font-size: 1.48rem;
    }

    .hero-briefing .hero-product {
        width: min(74vw, 280px);
    }

    .bonus-briefing .bonus-card-item {
        grid-template-columns: 52% 48%;
    }
}

.carousel-container,
.whatsapp-carousel,
.carousel-slide,
.whatsapp-slide,
.carousel-slide img,
.whatsapp-slide img,
.whatsapp-dots {
    -webkit-user-select: none;
    user-select: none;
}

.carousel-slide,
.whatsapp-slide,
.carousel-slide img,
.whatsapp-slide img,
.whatsapp-dots {
    pointer-events: none;
}
