/* ============================================
   CSS Variables (Design System)
   ============================================ */
:root {
    /* Colors - Paleta Roxo Original */
    --color-primary: #667eea;
    --color-primary-dark: #764ba2;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-primary: #1a202c;
    --color-text-secondary: #2d3748;
    --color-text-muted: #718096;
    --color-text-light: #4a5568;
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f7fafc;
    --color-bg-tertiary: #edf2f7;
    --color-border: #e2e8f0;
    
    /* Chat colors */
    --color-chat-user: #e3f2fd;
    --color-chat-jesus: #c8a882;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 12px;
    --spacing-md: 20px;
    --spacing-lg: 30px;
    --spacing-xl: 40px;
    --spacing-2xl: 60px;
    --spacing-3xl: 100px;
    
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-size-xs: 14px;
    --font-size-sm: 16px;
    --font-size-md: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 22px;
    --font-size-2xl: 24px;
    --font-size-3xl: 32px;
    --font-size-4xl: 42px;
    --font-size-5xl: 56px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: #333;
    background: var(--color-white);
    overflow-x: hidden;
}

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

/* ============================================
   Accessibility
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: var(--spacing-md);
    background: var(--color-primary);
    color: var(--color-white);
    padding: var(--spacing-sm) var(--spacing-md);
    text-decoration: none;
    z-index: 9999;
    border-radius: 8px;
    font-weight: 600;
}

.skip-link:focus {
    top: var(--spacing-md);
    outline: 3px solid var(--color-primary-dark);
    outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* ============================================
   Layout
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    padding: 0 var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    color: var(--color-text-primary);
    font-weight: 700;
    font-size: 20px;
}

.logo-icon {
    font-size: 24px;
    color: var(--color-primary);
}

.logo-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nav-links {
    display: none;
    align-items: center;
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

/* Menu Mobile Aberto */
@media (max-width: 767px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        padding: 20px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        animation: slideDown 0.3s ease;
    }
    
    .nav-links.active .nav-link,
    .nav-links.active .btn-nav {
        width: 100%;
        text-align: center;
        padding: 15px;
    }
}

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

.nav-link {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: var(--font-size-xs);
    transition: color var(--transition-fast);
}

.nav-link:hover {
    color: var(--color-primary);
}

.btn-nav {
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    color: white !important;
}

/* Mobile Actions Container */
.mobile-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

@media (min-width: 768px) {
    .mobile-actions {
        display: none;
    }
}

/* Botão CONVERSAR Mobile */
.btn-mobile-cta {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Hamburger Menu (3 tracinhos) */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.hamburger {
    width: 100%;
    height: 3px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-white);
    color: var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--color-white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.btn-secondary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-large {
    padding: 20px 50px;
    font-size: var(--font-size-md);
    border-radius: 16px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%),
                url('images/hero-bg.jpg') center/cover no-repeat;
    color: white;
    padding: 120px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 70px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 56px;
    }
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 20px;
    }
}

.hero-cta {
    margin-bottom: 40px;
}

.hero-note {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.check-icon {
    color: #10B981;
    font-weight: 700;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    max-width: 700px;
    margin: 40px auto 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    transition: all var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    opacity: 0.9;
}

/* ============================================
   Section Title
   ============================================ */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 60px;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 42px;
    }
}

/* ============================================
   Trust Section
   ============================================ */
.trust-section {
    padding: 40px 0;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
}

.trust-content {
    text-align: center;
}

.trust-text {
    color: var(--color-text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
}

.badge-icon {
    font-size: 20px;
}

/* ============================================
   Features Section - Com Carrossel Mobile
   ============================================ */
.features {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
}

.features-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

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

@media (max-width: 767px) {
    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 20px;
        padding: 0 20px 20px;
        margin: 0 -20px;
    }
    
    .features-grid::-webkit-scrollbar {
        height: 8px;
    }
    
    .features-grid::-webkit-scrollbar-track {
        background: var(--color-bg-tertiary);
        border-radius: 10px;
    }
    
    .features-grid::-webkit-scrollbar-thumb {
        background: var(--color-primary);
        border-radius: 10px;
    }
}

.feature-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
}

@media (max-width: 767px) {
    .feature-card {
        min-width: 280px;
        scroll-snap-align: center;
    }
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

/* ============================================
   Testimonials Section - Estilo Original
   ============================================ */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

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

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--color-bg-secondary);
    padding: 35px;
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
}

.testimonial-info {
    flex: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 4px;
    font-size: 14px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--color-text-muted);
}

.testimonial-title {
    font-size: 18px;
    font-weight: 600;
    color: #c8a882;
    margin-bottom: 12px;
    margin-top: 0;
}

.testimonial-text {
    font-size: 16px;
    color: var(--color-text-light);
    margin-bottom: 15px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-text p {
    margin: 0;
}

.testimonial-stars {
    font-size: 20px;
    margin-bottom: 0;
}

/* ============================================
   Chat Examples Section (Nova)
   ============================================ */
.chat-examples {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
}

.chat-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chat-message {
    margin-bottom: 24px;
    animation: fadeInUp 0.5s ease;
}

.chat-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.chat-bubble {
    padding: 16px 20px;
    border-radius: 16px;
    line-height: 1.6;
    font-size: 15px;
    max-width: 85%;
}

.chat-message.user .chat-bubble {
    background: var(--color-chat-user);
    color: var(--color-text-secondary);
    margin-left: 0;
    border-bottom-left-radius: 4px;
}

.chat-message.jesus .chat-bubble {
    background: var(--color-chat-jesus);
    color: var(--color-text-primary);
    margin-left: auto;
    margin-right: 0;
    border-bottom-right-radius: 4px;
}

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

/* ============================================
   Disclaimer Section (Nova)
   ============================================ */
.disclaimer {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.disclaimer-subtitle {
    text-align: center;
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

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

@media (max-width: 768px) {
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }
}

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

.disclaimer-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
}

.disclaimer-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--color-text-secondary);
}

.disclaimer-item p {
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 15px;
}

.disclaimer-alert {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    border: 2px solid #667eea;
    border-radius: 16px;
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-alert-icon {
    display: none;
}

.disclaimer-alert-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.disclaimer-alert-content h4::before {
    content: '💡';
    font-size: 24px;
}

.disclaimer-alert-content p {
    color: var(--color-text-secondary);
    line-height: 1.7;
    font-size: 15px;
}

.disclaimer-alert-content strong {
    font-weight: 700;
    color: var(--color-text-primary);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.how-it-works .section-title {
    color: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

.step-card {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-card p {
    font-size: var(--font-size-sm);
    opacity: 0.9;
    line-height: 1.6;
}

/* ============================================
   CTA Section
   ============================================ */
.cta {
    padding: var(--spacing-3xl) 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.cta-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 42px;
    }
}

.cta-subtitle {
    font-size: var(--font-size-md);
    color: var(--color-text-muted);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
    color: var(--color-text-muted);
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    padding: var(--spacing-3xl) 0;
    background: var(--color-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-base);
    background: var(--color-white);
}

.faq-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--color-bg-secondary);
    transition: all var(--transition-base);
    border: none;
    text-align: left;
}

.faq-question:hover {
    background: var(--color-bg-tertiary);
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text-secondary);
    margin: 0;
    padding-right: 16px;
}

@media (max-width: 768px) {
    .faq-question h3 {
        font-size: 15px;
    }
}

.faq-toggle {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 300;
    transition: all var(--transition-base);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: #EC4899;
}

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    font-size: 15px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #0f1419 !important;
    background-color: #0f1419 !important;
    color: #9CA3AF !important;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-main {
        grid-template-columns: 2fr 1fr;
    }
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.6;
    font-size: 15px;
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
}

.footer-column h4 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #9CA3AF;
    text-decoration: none;
    transition: color var(--transition-fast);
    font-size: 14px;
}

.footer-links a:hover {
    color: #ffffff !important;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-copyright {
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-verse {
    font-style: italic;
    color: #6B7280;
    font-size: 13px;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 80px 16px 60px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 16px 35px;
        font-size: 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .features,
    .testimonials,
    .how-it-works,
    .cta,
    .faq,
    .chat-examples,
    .disclaimer {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .chat-container {
        padding: 24px;
    }
    
    .disclaimer-alert {
        flex-direction: column;
        padding: 24px;
    }
}

/* ============================================
   Reduced Motion
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============================================
   Print Styles
   ============================================ */
@media print {
    .navbar,
    .hero,
    .cta,
    .btn {
        display: none;
    }
}


/* ============================================
   Popup Instagram
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right

/* ============================================
   Popup Instagram
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    max-width: 450px;
    width: 90%;
    text-align: center;
    position: relative;
    animation: slideUp 0.4s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    padding: 0;
    width: 32px;
    height: 32px;
}

.popup-close:hover {
    color: #333;
}

.popup-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.popup-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-text-primary);
}

.popup-text {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

.popup-btn {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f09433 0%, #e1306c 50%, #bc1888 100%);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 12px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(240, 148, 51, 0.4);
}

.popup-skip {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.popup-skip:hover {
    color: var(--color-text-primary);
}

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

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