:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #60a5fa;
    --dark: #0f172a;
    --dark-card: #1e293b;
    --gray: #94a3b8;
    --gray-light: #e2e8f0;
    --gray-border: #334155;
    --white: #ffffff;
    --accent: #10b981; /* Green for profit/recurrence */
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-light);
    background-color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(to right, var(--primary-light), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-accent {
    background: linear-gradient(to right, var(--accent), #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-light);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 9999px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Outfit', sans-serif;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px -5px rgba(59, 130, 246, 0.6);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    width: 100%;
    max-width: 400px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Hero Section */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(15, 23, 42, 0) 60%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
}

.hero-image {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
    border: 1px solid var(--glass-border);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
    pointer-events: none;
}

/* Sections General */
.section {
    padding: 8rem 0;
    position: relative;
}

.section-alt {
    background-color: rgba(30, 41, 59, 0.3);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-header h2 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--gray);
}

/* Dor/Oportunidade - Grid */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.pain-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pain-card:hover {
    border-color: rgba(239, 68, 68, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px -10px rgba(239, 68, 68, 0.1);
}

.pain-icon {
    font-size: 2.5rem;
    color: #ef4444;
    margin-bottom: 1.5rem;
}

.pain-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.opportunity-banner {
    margin-top: 5rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(15, 23, 42, 0));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 1.5rem;
    padding: 3rem;
    text-align: center;
}

.opportunity-banner h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
}

/* A Solução */
.solution-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 2rem;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.solution-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    width: 100%;
    margin-top: 4rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.feature-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.solution-highlight {
    font-size: 1.75rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

/* Simulação */
.simulation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.sim-image {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(16, 185, 129, 0.2);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.sim-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sim-step {
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--accent);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.sim-step:hover {
    transform: translateX(10px);
    background: rgba(30, 41, 59, 0.9);
}

.sim-step .clients {
    font-size: 1.125rem;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sim-step .revenue {
    font-size: 2rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    color: var(--accent);
}

/* Para Quem É */
.target-audience {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.target-badge {
    padding: 1rem 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--white);
    transition: all 0.3s ease;
}

.target-badge:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Oferta / Pricing */
.pricing-card {
    background: var(--dark-card);
    border: 1px solid var(--primary);
    border-radius: 2rem;
    padding: 5rem 4rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: 'EXCLUSIVO';
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 4rem;
    transform: rotate(45deg);
    font-weight: 800;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
}

.pricing-card h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.pricing-list {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.pricing-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
}

.pricing-list li i {
    color: var(--accent);
}

/* Escassez */
.scarcity-box {
    text-align: center;
    margin-top: 4rem;
}

.scarcity-items {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.scarcity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #f59e0b; /* Amber */
    font-weight: 600;
    font-size: 1.125rem;
    background: rgba(245, 158, 11, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
}

/* Social Proof Grid */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.proof-stat {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    border-radius: 1.5rem;
    border: 1px solid var(--glass-border);
}

.proof-stat h4 {
    font-size: 3rem;
    color: var(--primary-light);
    margin-bottom: 0.5rem;
}

.proof-stat p {
    font-size: 1.125rem;
    color: var(--gray);
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--gray);
}

/* Utility Classes replacing inline styles */
.logo-wrapper { display: flex; align-items: baseline; gap: 0; }
.logo-text { color: var(--white); font-weight: 700; text-transform: lowercase; font-size: 1.75rem; }
.logo-highlight { color: var(--primary-light); }
.logo-subtitle { font-size: 0.8rem; font-weight: 500; letter-spacing: 0.05em; margin-left: 0.5rem; color: var(--gray-light); }
.footer-logo-wrapper { justify-content: center; margin-bottom: 1.5rem; display: flex; align-items: baseline; gap: 0; }
.footer-logo-text { color: var(--gray-light); }
.btn-nav { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-cta { background: white; color: var(--primary-dark); font-size: 1.25rem; padding: 1.25rem 4rem; display: inline-flex; }
.opp-text { font-size: 1.25rem; opacity: 0.9; }
.solution-title { font-size: 3.5rem; margin-bottom: 1.5rem; }
.solution-desc { font-size: 1.25rem; color: var(--gray); max-width: 800px; margin: 0 auto; }
.sim-badge { background: rgba(16, 185, 129, 0.1); color: var(--accent); border-color: rgba(16, 185, 129, 0.2); }
.sim-title { font-size: 3rem; margin-bottom: 1.5rem; }
.sim-desc { font-size: 1.25rem; color: var(--gray); margin-bottom: 3rem; }
.sim-step-highlight { border-left-color: #34d399; background: rgba(16, 185, 129, 0.1); }
.highlight-text { color: #34d399 !important; }
.pricing-subtext { margin-top: 1.5rem; color: var(--gray); font-size: 0.875rem; }
.scarcity-title { font-size: 2rem; }
.section-cta { background: var(--gradient); padding: 6rem 0; }
.cta-title { font-size: 3.5rem; margin-bottom: 2rem; color: white; }
.cta-desc { font-size: 1.5rem; margin-bottom: 3rem; color: rgba(255,255,255,0.9); }

/* Responsive */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3rem;
    }
    
    .simulation {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    .navbar .container {
        flex-direction: column;
        gap: 0.75rem;
    }
    .navbar .logo {
        font-size: 1.25rem;
    }
    .navbar .btn {
        padding: 0.5rem 1.25rem !important;
        font-size: 0.875rem !important;
    }
    
    .hero {
        padding: 9rem 0 4rem;
    }
    
    .hero-content, .simulation {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        margin: 0 auto 2rem;
        font-size: 1.125rem;
    }
    
    .btn-large {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }
    
    .section {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
    
    .logo-text { font-size: 1.5rem; }
    .solution-title, .cta-title { font-size: 2.5rem; }
    .sim-title { font-size: 2.25rem; }
    .solution-desc, .sim-desc, .cta-desc, .opp-text { font-size: 1.125rem; }
    .btn-cta { padding: 1rem 2rem; width: 100%; justify-content: center; text-align: center; font-size: 1.125rem; }
    .section-cta { padding: 4rem 0; }
    .scarcity-title { font-size: 1.5rem; }
    
    .solution-box, .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .solution-box h2 {
        font-size: 2.25rem !important;
    }
    
    .sim-step {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .proof-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .scarcity-items {
        flex-direction: column;
        gap: 1rem;
    }

    .pricing-card h3 {
        font-size: 2rem;
    }
    .pricing-list li {
        font-size: 1rem;
        align-items: flex-start;
    }
    .pricing-list li i {
        margin-top: 0.25rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .logo-text { font-size: 1.25rem; }
    .solution-title, .cta-title { font-size: 2rem; }
    .sim-title { font-size: 1.75rem; }
    .btn-cta { font-size: 1rem; padding: 0.875rem 1.5rem; }
    .solution-desc, .sim-desc, .cta-desc, .opp-text { font-size: 1rem; }
    
    .solution-box h2 {
        font-size: 2rem !important;
    }

    .pricing-card::before {
        font-size: 0.75rem;
        padding: 0.25rem 2rem;
        right: -2.5rem;
        top: 1.5rem;
    }
    
    .opportunity-banner {
        padding: 2rem 1.5rem;
    }
    
    .opportunity-banner h3 {
        font-size: 1.5rem;
    }
    
    .opportunity-banner p {
        font-size: 1.125rem !important;
    }
}
