/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Principais - Místico */
    --primary-purple: #6b46c1;
    --deep-purple: #4c1d95;
    --light-purple: #9333ea;
    --gold: #fbbf24;
    --light-gold: #fcd34d;
    --white: #ffffff;
    --off-white: #f9fafb;
    --dark-bg: #1f1638;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    
    /* Gradientes */
    --gradient-purple: linear-gradient(135deg, #6b46c1 0%, #9333ea 100%);
    --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #fcd34d 100%);
    --gradient-hero: linear-gradient(135deg, #1f1638 0%, #4c1d95 100%);
    
    /* Sombras */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 30px rgba(251, 191, 36, 0.3);
    
    /* Tipografia */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    background: var(--gradient-hero);
    color: var(--white);
    padding: 80px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Estrelas de Fundo */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 33% 80%, white, transparent);
    background-size: 200% 200%;
    animation: twinkle 8s ease-in-out infinite;
    opacity: 0.5;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    background: var(--gradient-gold);
    color: var(--deep-purple);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-glow);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.main-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.impact-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-xl);
}

.impact-headline {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.impact-copy {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.impact-copy:last-child {
    margin-bottom: 0;
}

.emphasis {
    color: var(--gold);
    font-weight: 600;
}

.highlight-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* ===================================
   BENEFITS SECTION
   =================================== */
.benefits {
    margin: 40px 0;
}

.benefits-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin-bottom: 25px;
    color: var(--gold);
}

.benefits-list {
    list-style: none;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.benefits-list i {
    color: var(--gold);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefits-list span {
    font-size: 1.125rem;
    font-weight: 500;
}

/* ===================================
   LEAD FORM
   =================================== */
.form-container {
    max-width: 600px;
    margin: 50px auto 0;
}

.lead-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-xl);
    border: 3px solid var(--gold);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--deep-purple);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--deep-purple);
    margin-bottom: 10px;
    font-size: 1rem;
}

.form-group label i {
    color: var(--primary-purple);
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    font-size: 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 3px rgba(107, 70, 193, 0.1);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    min-height: 20px;
}

.cta-button {
    width: 100%;
    background: var(--gradient-purple);
    color: var(--white);
    border: none;
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-button i {
    font-size: 1.25rem;
    animation: bounce-horizontal 1s ease-in-out infinite;
}

@keyframes bounce-horizontal {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.privacy-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.privacy-note i {
    color: var(--primary-purple);
}

.success-message {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    border: 3px solid #10b981;
}

.success-message i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 20px;
    display: block;
}

.success-message h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--deep-purple);
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.125rem;
    color: var(--text-dark);
}

/* ===================================
   SOCIAL PROOF SECTION
   =================================== */
.social-proof {
    background: var(--off-white);
    padding: 80px 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    color: var(--deep-purple);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stars-rating {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 1.25rem;
}

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

.testimonial-author {
    font-weight: 600;
    color: var(--primary-purple);
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 80px 20px;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--gradient-gold);
    color: var(--deep-purple);
    padding: 20px 40px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-glow);
}

.cta-button-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.5);
}

.cta-button-secondary i {
    animation: bounce-vertical 1s ease-in-out infinite;
}

@keyframes bounce-vertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 40px 20px;
    text-align: center;
}

.footer p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.125rem;
    }
    
    .impact-headline {
        font-size: 1.5rem;
    }
    
    .impact-box {
        padding: 30px 20px;
    }
    
    .lead-form {
        padding: 30px 20px;
    }
    
    .form-header h3 {
        font-size: 1.5rem;
    }
    
    .benefits-list span {
        font-size: 1rem;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 18px 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 15px;
    }
    
    .main-title {
        font-size: 1.75rem;
    }
    
    .impact-copy {
        font-size: 1rem;
    }
    
    .benefits-list li {
        padding: 12px;
    }
    
    .cta-button span {
        font-size: 0.875rem;
    }
}