/* =========================================
   VARIABLES & THEME SETTINGS
   ========================================= */
:root {
    /* Colors */
    --color-primary: #440A92; /* Roxo Profundo */
    --color-primary-light: #5d1abf;
    --color-primary-dark: #2a055d;
    --color-primary-darker: #150232;
    
    --color-cta: #20B25D; /* Verde vibrante */
    --color-cta-hover: #19944c;
    
    --color-pink-light: #FFD1E8;
    --color-lilas-light: #E1C3FA;
    --color-yellow-light: #FFF1C5;
    --color-green-light: #D5F6E3;
    --color-blue-light: #CDEEFE;
    --color-purple-light: #E2CDF9;
    
    --color-text: #333333;
    --color-text-muted: #666666;
    --color-bg-light: #fdfdfd;

    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px -3px rgba(68, 10, 146, 0.08); /* Colored shadow */
    --shadow-lg: 0 20px 25px -5px rgba(68, 10, 146, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(68, 10, 146, 0.25);
    
    /* Font */
    --font-main: 'Outfit', sans-serif;
}

/* =========================================
   RESETS & GLOBAL
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    text-align: center;
}

/* Typography Utility Classes */
.text-center { text-align: center; }
.mt-3 { margin-top: 1.5rem; }

/* Colors Utility Classes */
.bg-white { background-color: #ffffff; }
.bg-pink-light { background-color: var(--color-pink-light); }
.bg-lilas-light { background-color: var(--color-lilas-light); }
.bg-yellow-light { background-color: var(--color-yellow-light); }
.bg-green-light { background-color: var(--color-green-light); }
.bg-blue-light { background-color: var(--color-blue-light); }
.bg-purple-light { background-color: var(--color-purple-light); }
.bg-purple-dark { background-color: var(--color-primary); }
.bg-purple-darker { background-color: var(--color-primary-darker); }
.text-white { color: #ffffff; }

/* Border Radius / Shadows */
.radius-md { border-radius: var(--radius-md); }
.radius-lg { border-radius: var(--radius-lg); }
.radius-xl { border-radius: var(--radius-xl); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* =========================================
   BUTTONS & CTAs
   ========================================= */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-cta);
    color: white;
    box-shadow: 0 8px 20px rgba(32, 178, 93, 0.4);
}

.btn-primary:hover {
    background-color: var(--color-cta-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(32, 178, 93, 0.5);
}

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

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(32, 178, 93, 0.7); }
    70% { transform: scale(1.03); box-shadow: 0 0 0 15px rgba(32, 178, 93, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(32, 178, 93, 0); }
}

/* =========================================
   BACKGROUNDS & DECORATIONS
   ========================================= */
.pattern-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
    opacity: 0.15;
    pointer-events: none;
}

.pattern-dots {
    background-image: radial-gradient(var(--color-pink-light) 6px, transparent 6px), 
                      radial-gradient(var(--color-yellow-light) 6px, transparent 6px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
}

.pattern-hero {
    background: rgb(68, 10, 146);
    opacity: 1;
    --hero-pattern-offset: 0px;
}

.pattern-hero::before {
    content: "";
    position: absolute;
    inset: -22% 0;
    background-image: url('../img/patternHero.avif');
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: 0.16;
    transform: translate3d(0, var(--hero-pattern-offset), 0);
    will-change: transform;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    z-index: 1;
    opacity: 0.5;
}

.blob-purple {
    background-color: var(--color-primary-light);
    width: 300px; height: 300px;
    top: 10%; left: 10%;
}

.blob-pink {
    background-color: var(--color-pink-light);
    width: 400px; height: 400px;
    top: -100px; left: 50%;
    transform: translateX(-50%);
}

.blob-lilas {
    background-color: var(--color-lilas-light);
    width: 350px; height: 350px;
}

.blob-top-right {
    top: -50px; right: -100px;
}

/* =========================================
   SECTIONS GLOBAL
   ========================================= */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.section-title span {
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto 60px;
    line-height: normal;
}

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero {
    background-color: var(--color-primary);
    color: white;
    position: relative;
    padding: 120px 0 160px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    /* gap: 120px; */
}

.hero-content {
    flex: 1;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
}

.hero .badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
}

.hero h1 span {
    color: var(--color-yellow-light);
}

.hero p {
    font-size: 1.2rem;
    /* margin-bottom: 40px; */
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.logo {
    width: 220px;
    position: relative;
    
}

.safe-checkout {
    font-size: 0.9rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.transition-wave {
    position: absolute;
    bottom: -2px; /* Fix gap */
    left: 0;
    width: 100%;
    z-index: 20;
}

/* CSS Mockups (Alternatives to failed Image Generation) */
.mockup-3d {
    position: relative;
    width: 100%;
    /* height: 500px; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-tablet {
    width: 260px;
    height: 380px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: absolute;
    z-index: 3;
    padding: 12px;
    transform: rotate(-5deg);
    border: 4px solid #eaeaea;
}

.mockup-tablet .screen-content {
    background: linear-gradient(135deg, var(--color-pink-light), var(--color-lilas-light));
    width: 100%;
    height: 100%;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.mockup-tablet .screen-content::after {
    content: "📘 E-book \A Inteligência Emocional \A para Crianças";
    white-space: pre-wrap;
    position: absolute;
    top: 20%; left: 10%; right: 10%;
    font-weight: 800; font-size: 1.4rem; color: var(--color-primary);
    text-align: center;
}

.mockup-cards {
    position: absolute;
    z-index: 2;
    top: 50px; right: 0;
}

.card-item {
    width: 140px; height: 200px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    position: absolute;
}

.card-1 {
    background: var(--color-yellow-light);
    transform: rotate(15deg) translate(20px, 0);
    z-index: 2;
}

.card-2 {
    background: var(--color-green-light);
    transform: rotate(25deg) translate(40px, 20px);
    z-index: 1;
}

.floating-icons {
    position: absolute;
    width: 100%; height: 100%;
    z-index: 4;
    pointer-events: none;
}

.icon-heart, .icon-star {
    font-size: 2.5rem;
    position: absolute;
    animation: float 4s ease-in-out infinite alternate;
}

.icon-heart { top: 20%; left: 5%; }
.icon-star { bottom: 20%; right: 10%; animation-delay: 1s; }

@keyframes float {
    from { transform: translateY(0px) rotate(0deg); }
    to { transform: translateY(-20px) rotate(10deg); }
}

/* =========================================
   2. O QUE VOCÊ VAI RECEBER (Benefícios/Cards)
   ========================================= */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.feature-card {
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.card-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

/* =========================================
   3. BENEFÍCIOS
   ========================================= */
.benefits {
    color: #ffffff;
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    --section-pattern-offset: 0px;
}

.benefits::before {
    content: '';
    position: absolute;
    inset: -24% 0;
    background-image: url('../img/pattern1.jpg');
    background-repeat: repeat;
    background-position: center;
    background-size: 520px;
    filter: grayscale(1) contrast(1.05) brightness(0.65);
    opacity: 0.22;
    transform: translate3d(0, var(--section-pattern-offset), 0);
    will-change: transform;
    z-index: 0;
}

.benefits::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(68, 10, 146, 0.55);
    z-index: 1;
}

.benefits-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefits-content {
    max-width: 820px;
    text-align: center;
}

.benefits-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.08;
    color: #ffffff;
}

.benefits-content h2 span { color: var(--color-primary); }

.benefits-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    max-width: 720px;
}

.benefits-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 18px;
}

.benefits-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
}

.benefits-list p {
    margin: 0;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.65;
    font-weight: 500;
}

.icon-check {
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    width: 34px; height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 6px;
}

.benefits-list h4 {
    font-size: 1.2rem;
    color: var(--color-primary-dark);
    margin-bottom: 4px;
}

.abstract-illustration {
    position: relative;
    width: 100%;
    height: 400px;
}

.abstract-circle {
    border-radius: 50%;
    position: absolute;
}

.abstract-circle-1 {
    width: 300px; height: 300px;
    background: linear-gradient(135deg, var(--color-lilas-light), var(--color-pink-light));
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: inset 0 0 50px rgba(255,255,255,0.5);
}

.abstract-circle-2 {
    width: 150px; height: 150px;
    background: var(--color-yellow-light);
    top: 10%; right: 10%;
}

.illustration-text {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-md);
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    z-index: 10;
}

/* =========================================
   4. COMO FUNCIONA
   ========================================= */
.steps-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 48px;
}

.step-card {
    flex: 1;
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px; left: -10px;
    background: var(--color-primary);
    color: white;
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem;
}

.step-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.step-arrow {
    font-size: 2rem;
    color: var(--color-primary-light);
    opacity: 0.5;
    display: inline-flex;
}

/* =========================================
   5. PARA QUEM É
   ========================================= */
.for-who {
    background-color: var(--color-primary-dark);
    color: white;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.for-who .pattern-bg {
    opacity: 1;
    z-index: 0;
}

.for-who > h2,
.for-who .for-who-container {
    position: relative;
    z-index: 2;
}

.for-who-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pattern-waves {
    background: rgb(68, 10, 146);
    --section-pattern-offset: 0px;
}

.pattern-waves::before {
    content: "";
    position: absolute;
    inset: -24% 0;
    background-image: url('../img/pattern2.webp');
    background-size: inherit;
    background-position: center;
    filter: grayscale(1);
    opacity: 0.12;
    transform: translate3d(0, var(--section-pattern-offset), 0);
    will-change: transform;
}

.for-who-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    width: 100%;
    max-width: 1040px;
}

.for-who-image,
.for-who-text {
    flex: 1;
}

.for-who h2 {
    font-size: 2.8rem; font-weight: 800; margin-bottom: 40px;
}

.for-who h2 span { color: var(--color-pink-light); }

.for-who-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.for-who-text p {
    font-size: 1.18rem;
    margin: 0;
    font-weight: 400;
}

.highlight-pink {
    color: var(--color-pink-light);
}

.highlight-underline {
    text-decoration: underline;
}

.highlight-yellow {
    color: #ffec19;
}

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

.clean-list li {
    font-size: 1.2rem;
    padding: 12px 16px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-pink-light);
}

.image-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.image-wrapper-img {
    min-width: 560px;
    height: 350px;
}

.photo-placeholder-icon {
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
}

/* =========================================
   6. CONTEÚDO DO PRODUTO (Bônus)
   ========================================= */
.product-content {
    background: linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
}

.bonus-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    margin-top: 48px;
}

.bonus-card {
    border-radius: var(--radius-lg);
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bonus-image {
    width: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.bonus-card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.bonus-card h3 {
    font-size: 1.62rem;
    line-height: 1.4;
    color: var(--color-primary-dark);
    font-weight: 800;
}

.bonus-card h3 span {
    color: var(--color-text);
}

.bonus-card p {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    line-height: 1;
}

.bonus-price {
    margin-top: auto;
    padding-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bonus-old-price {
    color: red;
    text-decoration: line-through;
    font-weight: 700;
    font-size: 1.95rem;
    line-height: 1;
}

.bonus-free {
    color: var(--color-cta);
    font-weight: 800;
    font-size: 1.9rem;
}

.bonus-price-free-only {
    justify-content: flex-end;
}

.bonus-summary {
    text-align: center;
}

.bonus-summary h3 {
    font-size: 2rem;
    margin-top: .5rem;
}

.bonus-summary-list {
    display: grid;
    gap: 10px;
    margin-bottom: 28px;
}

.bonus-summary-list p {
    font-size: 1.05rem;
    font-weight: 600;
}

.bonus-summary-list p span {
    color: red;
    text-decoration: line-through;
}

.bonus-total-price {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    margin-bottom: 28px;
}

.bonus-total-old {
    font-size: 1.15rem;
    text-decoration: line-through;
    font-weight: 700;
    color: red;
    line-height: 0;
    margin-top: 2rem;
}

.bonus-total-free {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--color-cta);
}

.bonus-cta {
    min-width: min(100%, 420px);
}

/* =========================================
   7. OFERTA
   ========================================= */

.offer {
    background: #ffffff;
}

.offer-container {
    max-width: 1120px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-brand {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.offer-brand-logo {
    width: min(250px, 100%);
    display: block;
}

.offer-title {
    font-size: 3rem;
    line-height: 1.05;
    font-weight: 800;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 32px;
}

.offer-title span {
    color: var(--color-primary);
}

.offer-layout {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.85fr);
    gap: 28px;
    align-items: start;
}

.offer-product {
    display: flex;
    justify-content: center;
}

.offer-product-image {
    width: 100%;
    max-width: 640px;
    display: block;
}

.offer-side-card {
    width: 100%;
    background: var(--color-primary);
    padding: 24px 22px 18px;
    color: #ffffff;
}

.offer-includes-list {
    display: grid;
    gap: 6px;
    text-align: left;
}

.offer-includes-list p {
    font-size: 1.03rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.offer-pricing-block {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-align: center;
}

.offer-old-price {
    font-size: 2rem;
    color: #d33131;
    text-decoration: line-through;
    font-weight: 800;
    line-height: 1;
}

.offer-current-label {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

.offer-current-price {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #ffe62e;
}

.offer-installments {
    font-size: 0.98rem;
    font-weight: 700;
    color: #fff3fa;
}

.offer-cta-area {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.offer-action-button {
    min-width: min(100%, 430px);
    padding-inline: 38px;
}

.offer-seals {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.offer-seal-image {
    display: block;
    max-width: 100%;
    height: auto;
}

.offer-seal-bandeiras {
    width: min(240px, 100%);
}

.offer-seal-seguranca {
    width: min(300px, 100%);
}

.offer-guarantee-strip {
    width: 100%;
    margin-top: 26px;
    background: #d9d9d9;
    padding: 18px 24px;
    display: grid;
    grid-template-columns: minmax(180px, 240px) 1fr;
    gap: 24px;
    align-items: center;
}

.offer-guarantee-image {
    width: min(220px, 100%);
    display: block;
    margin: 0 auto;
}

.offer-guarantee-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.offer-guarantee-content h3 {
    font-size: 1.35rem;
    color: #3a3a3a;
    font-weight: 800;
}

.offer-guarantee-content p {
    font-size: 1.06rem;
    color: #505050;
    line-height: 1.45;
}

/* =========================================
   8. DEPOIMENTOS
   ========================================= */
.testimonials {
    position: relative;
    overflow: hidden;
    background: rgb(68, 10, 146);
    --section-pattern-offset: 0px;
}

.testimonials::before {
    content: "";
    position: absolute;
    inset: -24% 0;
    background-image: url('../img/pattern4.avif');
    background-size: contain;
    background-position: center;
    filter: grayscale(1);
    opacity: 0.18;
    transform: translate3d(0, var(--section-pattern-offset), 0);
    will-change: transform;
}

.testimonials .section-title,
.testimonials .section-subtitle,
.testimonials-rating {
    color: #ffffff;
}

.testimonials .section-title span {
    color: var(--color-pink-light);
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.testimonials-rating {
    font-size: 2rem;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.testimonials-prints-grid {
    align-items: start;
}

.testimonial-print-image {
    width: 100%;
    height: 100%;
    display: block;
    cursor: zoom-in;
}

.testimonial-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(21, 2, 50, 0.82);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 999;
}

.testimonial-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.testimonial-lightbox-inner {
    position: relative;
    max-width: min(92vw, 560px);
    max-height: 90vh;
}

.testimonial-lightbox-image {
    display: block;
    width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.testimonial-lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    color: var(--color-primary-dark);
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

body.lightbox-open {
    overflow: hidden;
}

/* =========================================
    9. SOBRE O CRIADOR
   ========================================= */
.about-creator {
    position: relative;
    overflow: hidden;
    background: rgb(68, 10, 146);
    --section-pattern-offset: 0px;
}

.about-creator::before {
    content: "";
    position: absolute;
    inset: -24% 0;
    background-image: url('../img/pattern3.webp');
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    opacity: 0.1;
    transform: translate3d(0, var(--section-pattern-offset), 0);
    will-change: transform;
}

.about-container {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.about-profile {
    max-width: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
}

.blob-mask {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin: 0 auto;
}

.creator-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-profile h2 { font-size: 2.3rem; font-weight: 800; line-height: normal; color: #ffffff;}
.about-profile h2 span { color: var(--color-pink-light); }

.about-info {
    max-width: 760px;
}

.about-info p { font-size: 1.1rem; margin-bottom: 16px; color: #ffffff; }

/* =========================================
   10. NA MIDIA
   ========================================= */
.media-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
}

.media-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.media-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.media-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* =========================================
   11. FAQ ACCORDION
   ========================================= */
.faq {
    position: relative;
    overflow: hidden;
    background: rgb(68, 10, 146);
    --section-pattern-offset: 0px;
}

.faq::before {
    content: "";
    position: absolute;
    inset: -24% 0;
    background-image: url('../img/pattern5.jpg');
    background-size: contain;
    background-position: center;
    filter: grayscale(1);
    opacity: 0.14;
    transform: translate3d(0, var(--section-pattern-offset), 0);
    will-change: transform;
}

.faq-container {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.faq .section-title {
    color: #ffffff;
}

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

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    text-align: left;
}

.faq-item h4 {
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary-dark);
}

.faq-item p {
    font-size: 1.02rem;
    line-height: 1.75;
    color: var(--color-text-muted);
}

/* =========================================
   FOOTER
   ========================================= */
.footer { padding: 28px 0; }

.footer-support {
    font-size: 1rem;
    font-weight: 600;
    opacity: 1;
}

.footer-support a {
    color: #ffffff;
    text-decoration: none;
}

/* =========================================
   ANIMATIONS
   ========================================= */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   MEDIA QUERIES (MOBILE FIRST COMPAT)
   ========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .hero-container, .benefits-container, .for-who-container, .about-container {
        grid-template-columns: 1fr;
        flex-direction: column;
        text-align: center;
    }

    .for-who-content {
        flex-direction: column;
        gap: 32px;
        max-width: 720px;
    }

    .about-container {
        gap: 30px;
    }

    .for-who h2 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .bonus-cta { padding: 16px 0px; }
    
    .hero-content { gap: 10px; }
    
    .benefits-list li {
        text-align: left;
    }
    
    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .step-card {
        padding-top: 22px;
    }

    .step-number {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-arrow {
        transform: rotate(90deg);
        line-height: 1;
    }

    .step-arrow.fade-in {
        transform: rotate(90deg) translateY(30px);
    }

    .step-arrow.fade-in.visible {
        transform: rotate(90deg) translateY(0);
    }
    
    .mockup-3d { justify-content: center; transform: scale(0.9); }
    .floating-icons { display: none; }

    .offer-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .offer-title {
        font-size: 2.5rem;
    }

    .offer-product-image {
        max-width: 560px;
    }

    .offer-side-card {
        max-width: 560px;
        justify-self: center;
    }

    .offer-guarantee-strip {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .media-video-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .clean-list li { text-align: left; }
    
    .blob-pink { display: none; }
}

@media (max-width: 576px) {
    .section { padding: 40px 0; }
    .hero { padding: 20px 0 100px; }
    .hero h1 { font-size: 2.2rem; }
    .section-title { font-size: 1.9rem; }
    .btn-large { padding: 16px 24px; font-size: 1.1rem; }

    .btn-materiais { padding: 16px 0; font-size: 1rem; width: 100%;}

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

    .step-arrow {
        font-size: 2.2rem;
    }

    .for-who-content {
        flex-direction: column;
        gap: 24px;
    }

    .image-wrapper-img {
        min-width: 100%;
        height: auto;
    }

    .benefits-content h2 { font-size: 2rem; }

    .offer-title {
        font-size: 2.1rem;
        margin-bottom: 22px;
    }

    .offer-side-card {
        padding: 20px 16px 16px;
    }

    .offer-includes-list p {
        font-size: 0.95rem;
    }

    .offer-current-price {
        font-size: 3.2rem;
    }

    .offer-installments {
        font-size: 0.88rem;
    }

    .offer-action-button {
        width: 100%;
        min-width: 0;
        padding-inline: 20px;
    }

    .offer-guarantee-strip {
        padding: 18px 16px;
        gap: 16px;
    }

    .offer-guarantee-image {
        width: min(180px, 100%);
    }

    .offer-guarantee-content h3 {
        font-size: 1.1rem;
    }

    .offer-guarantee-content p {
        font-size: 0.96rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 8px;
    }

    .bonus-card {
        padding: 14px;
    }

    /* .bonus-summary {
        padding: 28px 20px;
    } */

    .bonus-summary h3 {
        font-size: 1.7rem;
    }

    .bonus-total-free {
        font-size: 2rem;
    }

    .offer-seal-bandeiras,
    .offer-seal-seguranca {
        width: 100%;
    }
}
