/* ============================================
   Omar Educación Financiera - Landing Page
   Premium Mexican Investment Community
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Deep Navy & Gold */
    --primary-dark: #0a1628;
    --primary-navy: #0f2744;
    --primary-blue: #1a3a5c;
    --accent-gold: #d4a853;
    --accent-gold-light: #e8c675;
    --accent-gold-dark: #b8923f;
    
    /* Secondary Colors */
    --success-green: #22c55e;
    --danger-red: #ef4444;
    --neutral-100: #f8fafc;
    --neutral-200: #e2e8f0;
    --neutral-300: #cbd5e1;
    --neutral-400: #94a3b8;
    --neutral-500: #64748b;
    --neutral-600: #475569;
    --neutral-700: #334155;
    --neutral-800: #1e293b;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Instrument Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 30px rgba(212, 168, 83, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--primary-dark);
    color: var(--neutral-200);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   Stock Ticker
   ============================================ */
.stock-ticker {
    background: linear-gradient(90deg, var(--primary-navy) 0%, var(--primary-blue) 50%, var(--primary-navy) 100%);
    border-bottom: 1px solid rgba(212, 168, 83, 0.2);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-wrap {
    display: flex;
    width: 100%;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    gap: 50px;
    white-space: nowrap;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.ticker-item.positive {
    color: var(--success-green);
}

.ticker-item.negative {
    color: var(--danger-red);
}

.ticker-item i {
    font-size: 10px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bgc.png);
    
    z-index: 0;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.05));
    border: 1px solid rgba(212, 168, 83, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    margin-bottom: 24px;
}

.hero-badge i {
    font-size: 16px;
}

.hero-title {
    margin-bottom: 24px;
}

.title-accent {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    color: var(--accent-gold);
    letter-spacing: 3px;
    line-height: 1;
    text-shadow: 0 0 40px rgba(212, 168, 83, 0.3);
}

.title-main {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--neutral-100);
    letter-spacing: 2px;
    line-height: 1.2;
    margin-top: 8px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--neutral-300);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-subtitle strong {
    color: var(--accent-gold);
    font-weight: 700;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding: 24px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.stat-label {
    font-size: 12px;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(212, 168, 83, 0.5), transparent);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    width: 100%;
    max-width: 380px;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold), var(--accent-gold-light), var(--accent-gold));
}

.card-header {
    margin-bottom: 24px;
}

.card-badge {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-profile {
    text-align: center;
    margin-bottom: 24px;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
}

.profile-avatar i {
    font-size: 48px;
    color: var(--primary-dark);
}

.card-profile h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--neutral-100);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.card-profile p {
    font-size: 14px;
    color: var(--neutral-400);
    margin-bottom: 4px;
}

.card-credentials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(212, 168, 83, 0.08);
    border-radius: 12px;
    border-left: 3px solid var(--accent-gold);
}

.credential i {
    color: var(--accent-gold);
    font-size: 16px;
    width: 20px;
}

.credential span {
    font-size: 14px;
    color: var(--neutral-200);
}

/* Hero Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator i {
    font-size: 24px;
    color: var(--accent-gold);
    opacity: 0.6;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* ============================================
   CTA Button
   ============================================ */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-dark));
    color: var(--primary-dark);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-gold);
    text-decoration: none;
}

.cta-button i {
    font-size: 20px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(212, 168, 83, 0.4);
}

.cta-button:active {
    transform: translateY(-1px);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.cta-button.large {
    font-size: 18px;
    padding: 20px 48px;
}

.cta-button.large i {
    font-size: 24px;
}

/* ============================================
   Sections
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-label.center {
    display: flex;
    justify-content: center;
}

.section-label i {
    font-size: 14px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--neutral-100);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: var(--neutral-400);
}

/* ============================================
   Content Blocks (Left-Right Layout)
   ============================================ */
.content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.content-block.reverse {
    direction: rtl;
}

.content-block.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--neutral-100);
    letter-spacing: 1px;
    margin-bottom: 24px;
    line-height: 1.2;
}

.content-text p {
    font-size: 17px;
    color: var(--neutral-300);
    margin-bottom: 20px;
}

.content-text p strong {
    color: var(--accent-gold);
}

/* Image Frames */
.image-frame {
    position: relative;
    background: linear-gradient(145deg, rgba(212, 168, 83, 0.1), rgba(212, 168, 83, 0.02));
    border: 1px solid rgba(212, 168, 83, 0.2);
    border-radius: 24px;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-frame.dark {
    background: linear-gradient(145deg, rgba(26, 58, 92, 0.4), rgba(26, 58, 92, 0.1));
    border-color: rgba(255, 255, 255, 0.1);
}

.image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.image-placeholder i {
    font-size: 80px;
    color: var(--accent-gold);
    opacity: 0.8;
}

.image-placeholder span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neutral-300);
    letter-spacing: 2px;
}

.floating-badge {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    animation: float 3s ease-in-out infinite;
}

.floating-badge i {
    font-size: 24px;
    color: var(--primary-dark);
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.top-left {
    top: -20px;
    left: -20px;
    animation-delay: 0.5s;
}

.floating-badge.bottom-left {
    bottom: -20px;
    left: -20px;
    animation-delay: 1s;
}

.floating-badge.bottom-right {
    bottom: -20px;
    right: -20px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Feature List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--success-green);
    font-size: 18px;
}

.feature-item span {
    font-size: 16px;
    color: var(--neutral-200);
}

/* Quote Block */
.quote-block {
    background: linear-gradient(145deg, rgba(212, 168, 83, 0.1), transparent);
    border-left: 4px solid var(--accent-gold);
    padding: 24px 30px;
    margin: 24px 0;
    border-radius: 0 16px 16px 0;
    position: relative;
}

.quote-block i {
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 20px;
    color: var(--accent-gold);
    opacity: 0.5;
}

.quote-block p {
    font-style: italic;
    font-size: 18px;
    color: var(--neutral-200);
    margin-bottom: 12px;
    padding-left: 20px;
}

.quote-block cite {
    font-size: 14px;
    color: var(--accent-gold);
    font-style: normal;
    font-weight: 600;
    padding-left: 20px;
}

/* ============================================
   About Section
   ============================================ */
.about-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

/* ============================================
   Philosophy Section
   ============================================ */
.philosophy-section {
    background: var(--primary-navy);
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-section {
    background: linear-gradient(180deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.2), rgba(212, 168, 83, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon {
    background: var(--accent-gold);
}

.benefit-icon i {
    font-size: 32px;
    color: var(--accent-gold);
    transition: all var(--transition-normal);
}

.benefit-card:hover .benefit-icon i {
    color: var(--primary-dark);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--neutral-100);
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.benefit-card p {
    font-size: 15px;
    color: var(--neutral-400);
    line-height: 1.6;
}

/* ============================================
   Results Section
   ============================================ */
.results-section {
    background: var(--primary-dark);
}

.results-chart {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-header span:first-child {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--neutral-100);
    letter-spacing: 1px;
}

.chart-legend {
    display: flex;
    gap: 20px;
}

.legend-omar, .legend-sp500 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--neutral-400);
}

.legend-omar i {
    color: var(--accent-gold);
    font-size: 8px;
}

.legend-sp500 i {
    color: var(--neutral-500);
    font-size: 8px;
}

.chart-bars {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 250px;
    padding-top: 20px;
}

.chart-bar-group {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    position: relative;
    padding-bottom: 30px;
}

.bar {
    width: 40px;
    border-radius: 8px 8px 0 0;
    transition: height 1s ease;
}

.bar.omar {
    background: linear-gradient(180deg, var(--accent-gold), var(--accent-gold-dark));
    box-shadow: 0 0 20px rgba(212, 168, 83, 0.3);
}

.bar.sp500 {
    background: var(--neutral-600);
}

.bar-label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
    color: var(--neutral-400);
    font-weight: 600;
}

.results-highlight {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.highlight-text {
    font-size: 14px;
    color: var(--neutral-400);
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    transition: all var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 83, 0.3);
}

.testimonial-header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent-gold);
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--neutral-100);
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 13px;
    color: var(--neutral-500);
}

.testimonial-stars {
    margin-top: 6px;
}

.testimonial-stars i {
    color: var(--accent-gold);
    font-size: 12px;
}

.testimonial-card p {
    font-size: 15px;
    color: var(--neutral-300);
    line-height: 1.7;
    font-style: italic;
}

/* ============================================
   YouTube Section
   ============================================ */
.youtube-section {
    background: var(--primary-navy);
}

.youtube-preview {
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.1), rgba(255, 0, 0, 0.02));
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 24px;
    overflow: hidden;
}

.youtube-thumbnail {
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #1a1a2e, #0f0f1a);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.youtube-thumbnail i {
    font-size: 80px;
    color: #ff0000;
}

.youtube-thumbnail span {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--neutral-100);
    letter-spacing: 1px;
}

.youtube-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.3);
}

.yt-stat {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--neutral-300);
    font-size: 14px;
}

.yt-stat i {
    color: #ff0000;
}

.channel-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
}

.channel-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    color: var(--neutral-300);
}

.channel-feature i {
    color: var(--success-green);
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(180deg, var(--primary-navy) 0%, var(--primary-dark) 50%);
    text-align: center;
    padding: 120px 0;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--neutral-100);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: var(--neutral-300);
    margin-bottom: 30px;
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.cta-benefits span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--neutral-300);
}

.cta-benefits i {
    color: var(--success-green);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--primary-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 120px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--neutral-500);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-400);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: var(--neutral-500);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-disclaimer i {
    color: var(--accent-gold);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--neutral-600);
}

/* ============================================
   Fixed CTA Button
   ============================================ */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 24px;
    background: linear-gradient(180deg, transparent, rgba(10, 22, 40, 0.95) 30%);
    display: flex;
    justify-content: center;
}

.fixed-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 16px;
    animation: pulse-glow 2s infinite;
}

.fixed-button .whatsapp-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 4px 30px rgba(212, 168, 83, 0.4);
    }
    50% {
        box-shadow: 0 4px 50px rgba(212, 168, 83, 0.6);
    }
}

/* ============================================
   Animations
   ============================================ */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.animate-scale {
    opacity: 0;
    transform: scale(0.9);
    animation: scaleIn 0.6s ease forwards;
}

.animate-float {
    animation: floatAnimation 6s ease-in-out infinite;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 0;
        margin-bottom: 40px;
    }
    
    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .content-block,
    .content-block.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .content-text {
        text-align: center;
    }
    
    .feature-list {
        align-items: center;
    }
    
    .quote-block {
        text-align: left;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-highlight {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Hero Mobile Optimization */
    .hero {
        min-height: auto;
        padding: 60px 0 80px;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 12px;
        margin-bottom: 16px;
    }
    
    .hero-badge i {
        font-size: 14px;
    }
    
    .title-accent {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }
    
    .title-main {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-cta {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .hero-visual {
        margin-bottom: 30px;
    }
    
    .hero-card {
        max-width: 320px;
        padding: 24px 20px;
    }
    
    .card-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .profile-avatar {
        width: 90px;
        height: 90px;
        margin-bottom: 16px;
    }
    
    .card-profile h3 {
        font-size: 1.5rem;
    }
    
    .card-profile p {
        font-size: 13px;
    }
    
    .credential {
        padding: 10px 12px;
    }
    
    .credential span {
        font-size: 13px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    /* Sections Mobile */
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .section-label {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
    
    /* Content Blocks Mobile */
    .content-block {
        gap: 30px;
    }
    
    .content-text h2 {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .content-text p {
        font-size: 15px;
        margin-bottom: 16px;
    }
    
    .image-frame {
        aspect-ratio: 4/3;
        border-radius: 16px;
    }
    
    .feature-list {
        gap: 12px;
    }
    
    .feature-item {
        text-align: left;
    }
    
    .feature-item span {
        font-size: 14px;
    }
    
    .quote-block {
        padding: 16px 20px;
        margin: 16px 0;
    }
    
    .quote-block p {
        font-size: 15px;
        padding-left: 16px;
    }
    
    .quote-block cite {
        font-size: 13px;
        padding-left: 16px;
    }
    
    .cta-button.secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Benefits Mobile */
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card {
        padding: 24px 20px;
    }
    
    .benefit-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 16px;
    }
    
    .benefit-icon i {
        font-size: 26px;
    }
    
    .benefit-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .benefit-card p {
        font-size: 14px;
    }
    
    /* Results Mobile */
    .results-chart {
        padding: 16px;
        border-radius: 16px;
    }
    
    .results-chart img {
        border-radius: 12px;
    }
    
    .results-highlight {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .highlight-item {
        text-align: center;
    }
    
    .highlight-number {
        font-size: 1.6rem;
    }
    
    .highlight-text {
        font-size: 13px;
    }
    
    /* Testimonials Mobile */
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-header {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    
    .testimonial-info h4 {
        font-size: 14px;
    }
    
    .testimonial-info span {
        font-size: 12px;
    }
    
    .testimonial-stars i {
        font-size: 11px;
    }
    
    .testimonial-card p {
        font-size: 14px;
        line-height: 1.6;
    }
    
    /* YouTube Mobile */
    .youtube-preview {
        border-radius: 16px;
    }
    
    .youtube-stats {
        gap: 24px;
        padding: 16px;
    }
    
    .yt-stat {
        font-size: 13px;
    }
    
    .channel-features {
        justify-content: center;
        gap: 10px;
    }
    
    .channel-feature {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    /* CTA Section Mobile */
    .cta-section {
        padding: 80px 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 15px;
        margin-bottom: 20px;
    }
    
    .cta-benefits {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
    }
    
    .cta-benefits span {
        font-size: 14px;
        justify-content: center;
    }
    
    .cta-button.large {
        font-size: 15px;
        padding: 16px 32px;
        width: 100%;
    }
    
    .cta-button.large i {
        font-size: 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 100px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
    
    .footer-brand h3 {
        font-size: 1.3rem;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-disclaimer {
        padding: 16px;
    }
    
    .footer-disclaimer p {
        font-size: 12px;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    /* Fixed CTA Mobile */
    .fixed-cta {
        padding: 12px 16px;
    }
    
    .fixed-button {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        max-width: 320px;
    }
    
    .fixed-button .whatsapp-icon {
        width: 20px;
        height: 20px;
    }
    
    .chart-bars {
        height: 180px;
    }
    
    .bar {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    /* Hero Extra Small */
    .hero {
        padding: 40px 0 70px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 12px;
    }
    
    .title-accent {
        font-size: 2.2rem;
    }
    
    .title-main {
        font-size: 1.3rem;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-stats {
        padding: 16px;
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .hero-card {
        max-width: 280px;
        padding: 20px 16px;
    }
    
    .profile-avatar {
        width: 70px;
        height: 70px;
    }
    
    .card-profile h3 {
        font-size: 1.3rem;
    }
    
    .credential {
        padding: 8px 10px;
    }
    
    .credential i {
        font-size: 14px;
    }
    
    .credential span {
        font-size: 12px;
    }
    
    .floating-badge {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .floating-badge i {
        font-size: 16px;
    }
    
    .ticker-item {
        font-size: 12px;
        gap: 6px;
    }
    
    /* Sections Extra Small */
    :root {
        --section-padding: 50px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .content-text h2 {
        font-size: 1.5rem;
    }
    
    .content-text p {
        font-size: 14px;
    }
    
    .benefit-card {
        padding: 20px 16px;
    }
    
    .benefit-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonial-card {
        padding: 16px;
    }
    
    .testimonial-avatar {
        width: 44px;
        height: 44px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    /* Fixed CTA Extra Small */
    .fixed-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

