/* ==========================================================================
   FESTA FÁCIL PRO - DESIGN SYSTEM & STYLES
   ========================================================================== */

/* 1. Global Reset & Variables */
:root {
    --primary-hue: 330; /* Pink */
    --primary: hsl(var(--primary-hue), 90%, 62%);
    --primary-hover: hsl(var(--primary-hue), 92%, 52%);
    --primary-light: hsl(var(--primary-hue), 100%, 97%);
    --primary-glow: hsla(var(--primary-hue), 90%, 62%, 0.3);
    
    --secondary-hue: 200; /* Cute Soft Blue */
    --secondary: hsl(var(--secondary-hue), 90%, 55%);
    --secondary-light: hsl(var(--secondary-hue), 100%, 97%);
    
    --accent-gold: hsl(45, 95%, 55%);
    --accent-gold-glow: hsla(45, 95%, 55%, 0.4);
    
    --success: hsl(145, 80%, 45%);
    --warning: hsl(35, 90%, 55%);
    --danger: hsl(0, 85%, 60%);
    
    --bg-main: hsl(var(--primary-hue), 50%, 98%);
    --card-bg: #ffffff;
    --text-dark: hsl(var(--primary-hue), 30%, 15%);
    --text-muted: hsl(var(--primary-hue), 15%, 45%);
    --border-color: hsl(var(--primary-hue), 30%, 92%);
    
    --font-title: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --shadow-sm: 0 4px 12px rgba(255, 105, 180, 0.04);
    --shadow-md: 0 10px 25px rgba(255, 105, 180, 0.08);
    --shadow-lg: 0 20px 40px rgba(255, 105, 180, 0.12);
    
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Decor Circles */
.decor-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.5;
    pointer-events: none;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -50px;
    left: -50px;
    animation: floatAnim 15s infinite alternate ease-in-out;
}

.circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
    bottom: 20%;
    right: -100px;
    animation: floatAnim 20s infinite alternate-reverse ease-in-out;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    opacity: 0.2;
}

@keyframes floatAnim {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(30px, 40px) scale(1.1); }
}

/* ==========================================================================
   2. Shared & Global Components
   ========================================================================== */

#app-container {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 15px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

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

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: var(--primary-light);
    color: var(--primary);
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 105, 180, 0.1);
}

.warning-badge {
    background-color: hsl(35, 100%, 95%);
    color: var(--warning);
}

.success-badge {
    background-color: hsl(145, 100%, 95%);
    color: var(--success);
}

.premium-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8c00 100%);
    color: #fff;
    box-shadow: 0 4px 12px var(--accent-gold-glow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 28px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    width: 100%;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, hsl(var(--primary-hue), 95%, 55%) 100%);
    color: #fff;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px hsla(var(--primary-hue), 90%, 62%, 0.45);
}

.btn-primary:active {
    transform: translateY(1px);
}

.btn-large {
    font-size: 1.25rem;
    padding: 20px 32px;
    border-radius: var(--radius-lg);
}

.btn-checkout {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(46, 204, 113, 0.4);
    font-size: 1.2rem;
}

.btn-checkout:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(46, 204, 113, 0.55);
}

.btn-checkout:active {
    transform: translateY(1px);
}

/* Pulsing Button Animation */
.btn-pulse {
    animation: pulseButton 2s infinite ease-in-out;
}

@keyframes pulseButton {
    0% { transform: scale(1); }
    50% { transform: scale(1.025); }
    100% { transform: scale(1); }
}

/* Arrow Icon */
.arrow-icon {
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.btn:hover .arrow-icon {
    transform: translateX(4px);
}

/* Custom Ripple Effect */
.ripple-btn {
    position: relative;
    overflow: hidden;
}

.ripple-effect {
    position: absolute;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple 0.6s linear;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}


/* ==========================================================================
   3. Quiz CSS Layout
   ========================================================================== */

#quiz-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Header & Progress Bar */
.quiz-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 15px;
    position: sticky;
    top: 0;
    background: hsla(var(--primary-hue), 50%, 98%, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--border-color);
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-emoji {
    font-size: 1.6rem;
}

.logo-text {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--text-dark);
}

.logo-pro {
    color: var(--primary);
    background-color: var(--primary-light);
    padding: 2px 6px;
    border-radius: 6px;
    font-size: 0.9rem;
}

.progress-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.progress-bar-bg {
    flex: 1;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

#progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 10px;
    transition: width var(--transition-normal);
}

#progress-text {
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 80px;
    text-align: right;
}

/* Quiz Steps Container */
.steps-container {
    flex: 1;
    position: relative;
}

.quiz-step {
    display: none;
    width: 100%;
    animation: slideUpFade var(--transition-normal) forwards;
}

.quiz-step.active {
    display: block;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step Cards */
.step-card {
    background-color: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-card h2 {
    font-size: 1.45rem;
    font-weight: 800;
    text-align: left;
}

.step-subtitle {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: -8px;
}

.step-media {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 5px;
    border: 1px solid var(--border-color);
}

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

.portrait-media {
    max-width: 130px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.step-img-portrait {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

/* Welcome Grid (Step 1) */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 10px 0;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    border: 1px dashed hsla(var(--primary-hue), 90%, 62%, 0.2);
    transition: transform var(--transition-fast);
}

.benefit-item:hover {
    transform: translateX(5px);
}

.benefit-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.benefit-info h3 {
    font-size: 1.05rem;
    margin-bottom: 2px;
}

.benefit-info p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Authority Stats (Step 2) */
.step-text p {
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.brand-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 15px 0;
}

.stat-box {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 12px 8px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.stat-val {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Option Cards (Step 3-7) */
.options-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-card {
    background-color: var(--card-bg);
    border: 2px solid var(--border-color);
    padding: 18px 16px;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-fast);
    width: 100%;
    text-align: left;
    outline: none;
}

.option-card:hover {
    border-color: var(--primary);
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.option-card:active {
    transform: scale(0.98);
}

.option-emoji {
    font-size: 1.4rem;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.option-card:hover .option-emoji {
    transform: scale(1.2) rotate(5deg);
}

.option-text {
    flex: 1;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.option-indicator {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border-color);
    position: relative;
    transition: all var(--transition-fast);
}

.option-card.selected {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.option-card.selected .option-indicator {
    border-color: var(--primary);
    background-color: var(--primary);
}

.option-card.selected .option-indicator::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Features list (Step 8) */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-card-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    padding: 16px;
    border-radius: var(--radius-md);
}

.f-icon {
    font-size: 1.6rem;
}

.f-content {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.f-content strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 2px;
}

/* Scanning Screen (Step 9A) */
.loader-card {
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 50px 24px;
}

.scanner-container {
    position: relative;
    margin-bottom: 20px;
}

.scanner-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--primary-light);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px var(--primary-glow);
}

.scanner-brain {
    font-size: 3rem;
    animation: pulseBrain 1.5s infinite alternate ease-in-out;
}

@keyframes pulseBrain {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    top: 0;
    left: 0;
    box-shadow: 0 0 8px var(--primary);
    animation: scanAnim 2s infinite linear;
}

@keyframes scanAnim {
    0% { top: 0%; }
    50% { top: 100%; }
    100% { top: 0%; }
}

.scan-status-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    min-height: 45px;
}

.bar-progress-container {
    width: 100%;
    height: 10px;
    background-color: var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 10px;
}

.bar-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    transition: width 0.1s linear;
}

#scan-pct {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
}

/* Diagnostic Chart Results (Step 9B) */
.chart-container {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px;
    margin: 10px 0;
}

.svg-chart {
    width: 100%;
    height: auto;
    display: block;
}

.chart-axis-lbl {
    font-size: 10px;
    fill: var(--text-muted);
    font-family: var(--font-body);
}

.chart-lbl {
    font-size: 11px;
    font-weight: 700;
    fill: var(--text-dark);
    font-family: var(--font-title);
}

.chart-sub-lbl {
    font-size: 9px;
    font-weight: 600;
    text-anchor: middle;
    font-family: var(--font-body);
}

.chart-val-text {
    font-size: 11px;
    font-weight: 800;
    text-anchor: middle;
    font-family: var(--font-title);
}

.red-text { fill: #cc0000; }
.gray-text { fill: #666666; }
.blue-text { fill: #0066cc; }
.pink-text { fill: var(--primary); }

.val-hoje-stress { fill: #cc0000; }
.val-hoje-conf { fill: #666666; }
.val-app-stress { fill: #0066cc; }
.val-app-conf { fill: var(--primary); }

.chart-bar {
    transform-origin: bottom;
    transition: height 1s ease-out;
}

.diagnostic-copy p {
    font-size: 1.05rem;
    margin-bottom: 12px;
}

/* Modules Overview (Step 10) */
.modules-overview {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    position: relative;
}

.module-num {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.module-icon {
    font-size: 2rem;
    line-height: 1;
}

.module-info h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.module-info p {
    font-size: 0.88rem;
    line-height: 1.4;
}

.bonus-card {
    border: 2px solid var(--accent-gold);
    background: linear-gradient(135deg, hsl(45, 100%, 97%) 0%, #fff 100%);
    box-shadow: 0 4px 15px var(--accent-gold-glow);
}

.bonus-badge {
    position: absolute;
    top: 8px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8c00 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 800;
}


/* ==========================================================================
   4. Sales Page (Step 11) CSS Layout
   ========================================================================== */

#sales-page {
    animation: slideUpFade var(--transition-slow) forwards;
    padding-bottom: 100px; /* Spacer for fixed mobile bottom cta */
}

/* Sales Hero Headline */
.sales-hero {
    text-align: center;
    padding: 20px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.sales-hero h1 {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1.2;
}

.sales-hero .subheadline {
    font-size: 1.05rem;
    line-height: 1.5;
    margin-top: 10px;
}

/* VSL Video Section */
.vsl-section {
    margin: 20px 0;
}

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

.vsl-player-card {
    background-color: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
    width: 100%;
    max-width: 320px; /* Vertical format constraint */
    margin: 0 auto;
    box-shadow: var(--shadow-lg), 0 0 25px var(--primary-glow);
    border: 3px solid var(--primary);
    position: relative;
}

.video-responsive {
    position: relative;
    padding-bottom: 177.78%; /* 9:16 Vertical Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.vsl-caption {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-light);
    padding: 8px 16px;
    border-radius: 50px;
}

.caption-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
    animation: dotPulse 1.2s infinite alternate ease-in-out;
}

@keyframes dotPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.3); opacity: 1; }
}

.vsl-caption p {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

/* Inline Checkout Callout */
.inline-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 20px 0 35px 0;
}

.secure-checkout-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
}

/* Benefits Detailed Section */
.benefits-detail-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.section-title-wrapper {
    text-align: center;
}

.section-tag {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
}

.section-title-wrapper h2 {
    font-size: 1.6rem;
    margin-top: 5px;
}

.benefits-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.benefit-detail-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: var(--radius-md);
    display: flex;
    gap: 16px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.benefit-detail-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.benefit-detail-card.active-preview {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    background-color: var(--primary-light);
}

.bcard-icon {
    font-size: 2.2rem;
    line-height: 1;
}

.bcard-body h3 {
    font-size: 1.15rem;
    margin-bottom: 4px;
}

.bcard-body p {
    font-size: 0.9rem;
    line-height: 1.45;
}

/* App Preview Visual Center */
.app-preview-container {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.phone-mockup-frame {
    width: 200px;
    height: 400px;
    background-color: #1a1a1a;
    border-radius: 36px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    border: 4px solid #333;
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: #fff;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity var(--transition-fast);
}

.preview-instructions {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Bonus Box Glowing Gradient Accent */
.bonus-section {
    margin: 40px 0;
}

.bonus-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 3px; /* border thickness */
    overflow: hidden;
}

.bonus-border-gradient {
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: conic-gradient(
        var(--accent-gold),
        var(--primary),
        var(--secondary),
        var(--accent-gold)
    );
    animation: rotateGradient 6s infinite linear;
    z-index: 0;
}

@keyframes rotateGradient {
    100% { transform: rotate(360deg); }
}

.bonus-inner-content {
    background-color: #fff;
    border-radius: calc(var(--radius-lg) - 3px);
    padding: 32px 24px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.bonus-badge-glow {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8c00 100%);
    color: #fff;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px var(--accent-gold-glow);
}

.bonus-inner-content h2 {
    font-size: 1.4rem;
}

.bonus-copy {
    font-size: 0.95rem;
    line-height: 1.5;
}

.bonus-pricing-bubble {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: hsl(45, 100%, 94%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px dashed var(--accent-gold);
    margin-top: 10px;
    animation: bounceBubble 2s infinite alternate ease-in-out;
}

@keyframes bounceBubble {
    0% { transform: translateY(0); }
    100% { transform: translateY(-6px); }
}

.bonus-old-price {
    font-size: 0.75rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.bonus-new-price {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.25rem;
    color: #ff8c00;
}

/* Social Proof Bar */
.social-proof-section {
    background-color: var(--primary-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    margin: 30px 0;
}

.star-rating {
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.social-proof-section h2 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.5;
}

.proof-author {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
    text-transform: uppercase;
}

/* Pricing / Checkout Card */
.pricing-section {
    margin: 40px 0;
}

.pricing-card {
    background-color: #fff;
    border: 2px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 35px 24px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: 'OFERTA EXCLUSIVA';
    position: absolute;
    top: 20px;
    right: -35px;
    background-color: var(--primary);
    color: white;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 0.65rem;
    padding: 4px 35px;
    transform: rotate(45deg);
}

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

.pricing-header p {
    font-size: 0.9rem;
    margin-top: 2px;
}

.price-box {
    background-color: var(--bg-main);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
}

.new-price-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--primary);
    margin: 5px 0;
}

.currency {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 4px;
}

.price-val {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 3.5rem;
    line-height: 1;
}

.cents {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 1.3rem;
    margin-top: 4px;
}

.period {
    font-size: 0.95rem;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 6px;
    margin-left: 2px;
}

.installments {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-dark);
}

.urgency-banner {
    background-color: hsl(0, 100%, 96%);
    border: 1px solid hsla(0, 85%, 60%, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

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

.urgency-text {
    font-size: 0.82rem;
    color: hsl(0, 70%, 25%);
    line-height: 1.4;
}

.scarcity-indicators {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.scarcity-bar-wrapper {
    width: 100%;
    height: 8px;
    background-color: var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.scarcity-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent-gold) 100%);
    border-radius: 10px;
    animation: barLoad 1.5s forwards ease-out;
}

@keyframes barLoad {
    from { width: 0%; }
}

.scarcity-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: right;
}

.scarcity-label strong {
    color: var(--primary);
}

.checkout-footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* FAQ and Guarantee Box */
.faq-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.guarantee-card {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: center;
}

.guarantee-badge {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #ff8c00 100%);
    color: #fff;
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.8rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--accent-gold-glow);
}

.guarantee-body h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.guarantee-body p {
    font-size: 0.85rem;
    line-height: 1.45;
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-accordion-wrapper h2 {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 8px;
}

.faq-item {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-trigger {
    background: none;
    border: none;
    width: 100%;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
    gap: 15px;
}

.faq-arrow {
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal) ease-out, padding var(--transition-normal);
    padding: 0 20px;
}

.faq-content p {
    font-size: 0.88rem;
    line-height: 1.5;
    padding-bottom: 16px;
    color: var(--text-muted);
}

/* FAQ Active state toggle */
.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-item.active .faq-content {
    max-height: 200px; /* Expands smoothly */
}

/* Footer styling */
.sales-footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 10px 120px 10px; /* High bottom padding due to sticky mobile cta */
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.15rem;
}

.footer-links {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 5px;
}

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

.copyright {
    font-size: 0.75rem;
}

/* Floating Sticky Footer Mobile bottom CTA */
#sticky-bottom-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-color);
    padding: 14px 20px;
    z-index: 999;
    box-shadow: 0 -8px 24px rgba(255, 105, 180, 0.08);
    display: none; /* Controlled by JS / Media queries */
    justify-content: center;
}

#sticky-bottom-cta .btn {
    max-width: 500px;
}

/* ==========================================================================
   5. Responsive Settings (Mobile-First Defaults)
   ========================================================================== */

/* Active sticky mobile footer only on screens <= 768px once sales page is visible */
@media (max-width: 768px) {
    body.sales-active #sticky-bottom-cta {
        display: flex;
    }
}

@media (min-width: 769px) {
    #app-container {
        max-width: 900px;
        padding: 40px 20px;
    }
    
    .benefits-detail-section {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 30px;
        align-items: start;
    }
    
    .section-title-wrapper {
        grid-column: span 2;
        text-align: left;
    }
    
    .app-preview-container {
        position: sticky;
        top: 20px;
    }
    
    .phone-mockup-frame {
        width: 240px;
        height: 480px;
    }
    
    .vsl-player-card {
        border-radius: var(--radius-lg);
    }
    
    .pricing-card {
        padding: 40px;
    }
}

/* ==========================================================================
   New Persuasive Copy Styles
   ========================================================================== */

.urgency-top-banner {
    background-color: hsl(0, 100%, 97%);
    border: 2px dashed hsl(0, 85%, 60%);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin: 10px 0 25px 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.05);
}

.urgency-top-icon {
    font-size: 1.4rem;
    animation: pulseIcon 1s infinite alternate ease-in-out;
}

@keyframes pulseIcon {
    from { transform: scale(1); }
    to { transform: scale(1.2); }
}

.urgency-top-banner p {
    font-size: 0.92rem;
    color: hsl(0, 70%, 25%);
    margin: 0;
    line-height: 1.4;
}

.buffet-anchor {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 500;
}

.price-installments {
    font-family: var(--font-title);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--primary);
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.price-installments .price-val {
    font-size: 3.6rem;
    line-height: 0.9;
    font-weight: 900;
    margin: 0 2px;
}

.price-installments .cents {
    font-size: 1.3rem;
    margin-top: 4px;
    font-weight: 700;
}

.installments-sub {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 8px;
}

.guarantee-checkout-seal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-top: -6px;
    background-color: var(--primary-light);
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px dashed hsla(var(--primary-hue), 90%, 62%, 0.15);
}

.guarantee-checkout-seal .seal-icon {
    font-size: 1.1rem;
}

