/* ========================================
   O Manual Secreto dos Homens - Landing Page
   Glassmorphism Design System
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --color-bg-dark: #0a0612;
    --color-bg-gradient-1: #1a0a2e;
    --color-bg-gradient-2: #16213e;
    --color-primary: #e91e8c;
    --color-primary-light: #ff6eb4;
    --color-secondary: #9c27b0;
    --color-accent: #ffd700;
    --color-text: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-text-subtle: rgba(255, 255, 255, 0.5);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-blur: blur(20px);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'DM Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.6s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--color-bg-dark);
    background: linear-gradient(135deg, var(--color-bg-dark) 0%, var(--color-bg-gradient-1) 50%, var(--color-bg-gradient-2) 100%);
    background-attachment: fixed;
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Particles Background */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary-light);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Glass Morphism */
.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--glass-shadow);
}

/* Typography */
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    text-align: center;
}

.highlight {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-primary-light);
    margin-bottom: 16px;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 10px 40px rgba(233, 30, 140, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(233, 30, 140, 0.5);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.large {
    padding: 24px 48px;
    font-size: 1.125rem;
}

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

@keyframes pulse {
    0%, 100% { box-shadow: 0 10px 40px rgba(233, 30, 140, 0.4); }
    50% { box-shadow: 0 10px 60px rgba(233, 30, 140, 0.6); }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px 80px;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(233, 30, 140, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.course-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 56px 28px;
    margin-bottom: 32px;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.08) 0%, rgba(156, 39, 176, 0.08) 100%);
    border: 1px solid rgba(233, 30, 140, 0.2);
}

.course-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.course-card .label {
    margin-bottom: 8px;
}

.course-card .section-title {
    margin-bottom: 0;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
}


.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.badge.social-proof {
    margin-top: 24px;
    margin-bottom: 24px;
}

.pricing-card .badge.social-proof {
    margin-top: 32px;
    margin-bottom: 32px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 32px;
    color: var(--color-text-muted);
}

.hero h1 .highlight {
    display: block;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text);
    margin-top: 8px;
}

/* Video Container */
.video-container {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 32px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio for desktop */
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.video-placeholder:hover .play-button svg circle {
    fill: rgba(233, 30, 140, 1);
}

.video-placeholder:hover .play-button {
    transform: scale(1.1);
}

.play-button {
    transition: transform var(--transition-medium);
    filter: drop-shadow(0 10px 30px rgba(233, 30, 140, 0.5));
}

.play-button svg circle {
    transition: fill var(--transition-medium);
}

.video-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Mobile: 4:5 Aspect Ratio */
@media (max-width: 768px) {
    .video-wrapper {
        padding-top: 125%; /* 4:5 Aspect Ratio */
        border-radius: 16px;
    }
    
    .video-wrapper iframe,
    .video-wrapper video {
        border-radius: 16px;
    }
    
    .play-button svg {
        width: 60px;
        height: 60px;
    }
    
    .video-text {
        font-size: 0.875rem;
    }
}

.hero .subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.feature svg {
    color: var(--color-primary-light);
}

.hero-visual {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    display: none;
}

@media (min-width: 1200px) {
    .hero-visual {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
}

.glass-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    font-weight: 600;
}

.card-icon {
    font-size: 1.5rem;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

.floating.delay-1 {
    animation-delay: 0.5s;
}

.floating.delay-2 {
    animation-delay: 1s;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    animation: slideUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1.0s; }
.delay-6 { animation-delay: 1.2s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

/* ========================================
   PAIN SECTION
   ======================================== */
.pain-section {
    padding: var(--section-padding);
    position: relative;
}

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

.pain-card {
    padding: 32px;
    text-align: center;
    transition: transform var(--transition-medium);
}

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

.pain-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.pain-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
}

.pain-card strong {
    color: var(--color-primary-light);
}

.transition-text {
    max-width: 600px;
    margin: 0 auto;
    padding: 32px;
    text-align: center;
    font-size: 1.25rem;
}

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

/* ========================================
   EPIPHANY SECTION
   ======================================== */
.epiphany-section {
    padding: var(--section-padding);
    position: relative;
}

.epiphany-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 30, 140, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.epiphany-card {
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition-medium);
}

.epiphany-card:hover {
    transform: translateY(-8px);
}

.epiphany-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.epiphany-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-text);
}

.epiphany-card p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    line-height: 1.6;
}

.epiphany-card p:last-child {
    margin-bottom: 0;
}

.epiphany-highlight {
    color: var(--color-primary-light) !important;
    font-weight: 500;
}

.epiphany-main {
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.1) 0%, rgba(156, 39, 176, 0.1) 100%) !important;
    border-color: var(--color-primary) !important;
}

.epiphany-revelation {
    font-family: var(--font-display);
    font-size: 1.25rem !important;
    color: var(--color-text) !important;
    font-weight: 600;
    line-height: 1.4;
}

@media (max-width: 968px) {
    .epiphany-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .epiphany-card {
        padding: 32px 24px;
    }
}

/* ========================================
   MECHANISM SECTION
   ======================================== */
.mechanism-section {
    padding: var(--section-padding);
}

.mechanism-header {
    text-align: center;
    margin-bottom: 64px;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.type-card {
    padding: 40px;
    text-align: center;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: 24px 24px 0 0;
}

.type-card.instinct::before {
    background: linear-gradient(90deg, #ff6b6b, #ffd93d);
}

.type-card.emotion::before {
    background: linear-gradient(90deg, #e91e8c, #9c27b0);
}

.type-card.mind::before {
    background: linear-gradient(90deg, #00d4ff, #7b68ee);
}

.type-card:hover {
    transform: translateY(-10px);
}

.type-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.type-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.type-card p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.type-examples {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.type-examples span {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.mechanism-footer {
    text-align: center;
    font-size: 1.25rem;
    color: var(--color-text-muted);
}

.mechanism-footer strong {
    color: var(--color-accent);
}

/* ========================================
   OFFER SECTION
   ======================================== */
.offer-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, transparent 0%, rgba(233, 30, 140, 0.05) 50%, transparent 100%);
}

.offer-header {
    text-align: center;
    margin-bottom: 64px;
}

.offer-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.module-card {
    padding: 32px;
    position: relative;
    transition: all var(--transition-medium);
}

.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.module-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.module-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.module-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.module-meta {
    display: flex;
    gap: 16px;
}

.module-meta span {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

/* Mentor Card */
.mentor-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(233, 30, 140, 0.1) 100%) !important;
    border-color: rgba(0, 212, 255, 0.3) !important;
}

.mentor-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(135deg, #00d4ff 0%, var(--color-primary) 100%);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.mentor-pulse {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.mentor-card h3 {
    color: #00d4ff;
}

.mentor-card strong {
    color: #00d4ff;
}

/* ========================================
   BONUS SECTION
   ======================================== */
.bonus-section {
    padding: var(--section-padding);
}

.bonus-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

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

.bonus-card {
    padding: 32px;
    text-align: center;
    position: relative;
    transition: all var(--transition-medium);
}

.bonus-card:hover {
    transform: translateY(-5px);
}

.bonus-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--color-accent) 0%, #ff9500 100%);
    color: #000;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.bonus-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.bonus-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.bonus-value {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
}

.bonus-value span {
    text-decoration: line-through;
    color: var(--color-primary-light);
}

/* Bonus Highlight Card */
.bonus-highlight {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(233, 30, 140, 0.1) 100%) !important;
    border: 2px solid rgba(0, 212, 255, 0.3) !important;
    position: relative;
}

.bonus-highlight::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
}

.bonus-highlight .bonus-badge {
    background: linear-gradient(135deg, #00d4ff 0%, var(--color-primary) 100%);
}

.bonus-highlight h3 {
    color: #00d4ff;
}

/* ========================================
   AI CHAT SECTION
   ======================================== */
.ai-chat-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.ai-chat-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(233, 30, 140, 0.05) 0%, rgba(156, 39, 176, 0.08) 50%, rgba(0, 212, 255, 0.05) 100%);
    pointer-events: none;
}

.ai-chat-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.ai-chat-content {
    padding-right: 24px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(233, 30, 140, 0.1) 100%);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #00d4ff;
    margin-bottom: 24px;
}

.ai-pulse {
    width: 10px;
    height: 10px;
    background: #00d4ff;
    border-radius: 50%;
    animation: ai-pulse 2s infinite;
}

@keyframes ai-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    50% { opacity: 0.8; box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
}

.ai-chat-content .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.ai-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.ai-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(8px);
}

.ai-feature-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.ai-feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ai-feature-text strong {
    font-size: 1rem;
    color: var(--color-text);
}

.ai-feature-text span {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Chat Demo */
.ai-chat-demo {
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(20, 10, 35, 0.9) 0%, rgba(30, 15, 50, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 212, 255, 0.1);
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.chat-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00d4ff 0%, #e91e8c 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.chat-info {
    display: flex;
    flex-direction: column;
}

.chat-info strong {
    font-size: 1rem;
    color: var(--color-text);
}

.online-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #00ff88;
}

.online-dot {
    width: 8px;
    height: 8px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.chat-messages {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 320px;
}

.chat-message {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.chat-message.user {
    align-self: flex-end;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-bottom-right-radius: 6px;
}

.chat-message.ai {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom-left-radius: 6px;
    color: var(--color-text-muted);
}

.chat-message.ai strong {
    color: #00d4ff;
}

.chat-message p {
    margin: 0;
}

.chat-typing {
    align-self: flex-start;
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    border-bottom-left-radius: 6px;
}

.chat-typing span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: typing 1.4s infinite ease-in-out;
}

.chat-typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.5; }
    30% { transform: translateY(-6px); opacity: 1; }
}

.chat-input {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    outline: none;
}

.chat-input input::placeholder {
    color: var(--color-text-subtle);
}

.chat-input button {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #00d4ff 0%, var(--color-primary) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.chat-input button:hover {
    transform: scale(1.05);
}

/* AI CTA */
.ai-cta-container {
    text-align: center;
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-cta-text {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.ai-cta-text strong {
    color: #00d4ff;
}

/* Responsive AI Chat */
@media (max-width: 968px) {
    .ai-chat-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ai-chat-content {
        padding-right: 0;
        text-align: center;
    }
    
    .ai-chat-content .section-title {
        text-align: center;
    }
    
    .ai-features {
        text-align: left;
    }
    
    .ai-badge {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .chat-messages {
        min-height: 280px;
    }
    
    .chat-message {
        max-width: 90%;
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .ai-feature {
        padding: 16px;
    }
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */
.testimonials-section {
    padding: var(--section-padding);
}

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

.testimonial-card {
    padding: 32px;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.stars {
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-card strong {
    color: var(--color-text);
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-section {
    padding: var(--section-padding);
}

.pricing-comparison {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
}

.comparison-item {
    text-align: center;
}

.comparison-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    margin-bottom: 8px;
}

.comparison-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    padding: 48px;
    text-align: center;
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 20px;
}

.price-old {
    font-size: 1.125rem;
    color: var(--color-text-subtle);
    margin-bottom: 8px;
}

.price-old span {
    text-decoration: line-through;
}

.price-current {
    margin-bottom: 8px;
}

.price-installment {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.price-value {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-accent);
}

.price-value small {
    font-size: 2rem;
}

.price-cash {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
    margin-top: 32px;
    padding: 24px;
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
}

.guarantee-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.guarantee-text strong {
    display: block;
    color: #00ff88;
    margin-bottom: 8px;
}

.guarantee-text p {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    padding: var(--section-padding);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    font-weight: 600;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform var(--transition-medium);
}

.faq-item.active .faq-question svg {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 24px;
    color: var(--color-text-muted);
}

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.final-cta-section {
    padding: var(--section-padding);
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 64px 48px;
    text-align: center;
}

.final-cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 16px;
}

.final-cta-content p {
    color: var(--color-text-muted);
    margin-bottom: 32px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    background: rgba(255, 215, 0, 0.1);
    padding: 16px 24px;
    border-radius: 16px;
    min-width: 80px;
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--color-text-subtle);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2.5rem;
    color: var(--color-text-subtle);
    align-self: flex-start;
    padding-top: 16px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: 48px 24px;
    text-align: center;
    border-top: 1px solid var(--glass-border);
}

.footer p {
    font-size: 0.875rem;
    color: var(--color-text-subtle);
    margin-bottom: 16px;
}

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

.footer-links a {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.copyright {
    font-size: 0.75rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 64px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 24px 16px 60px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
    }
    
    .epiphany-text {
        padding: 32px 24px;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .type-card {
        padding: 32px 24px;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .countdown-value {
        font-size: 1.75rem;
        padding: 12px 16px;
        min-width: 60px;
    }
    
    .final-cta-content {
        padding: 48px 24px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-button.large {
        padding: 20px 32px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .countdown {
        gap: 8px;
    }
    
    .countdown-separator {
        font-size: 1.75rem;
    }
}

