/* Base Styles */
:root {
    /* Cores para o tema dark */
    --primary-color: #0658F6;
    --primary-dark: #0546c9;
    --secondary-color: #10b981;
    --dark-color: #0f172a;
    --darker-color: #020617;
    --light-color: #1e293b;
    --text-color: #e2e8f0;
    --text-muted: #94a3b8;
    --gray-color: #64748b;
    --gray-light: #334155;
    --danger-color: #ef4444;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--darker-color);
    overflow-x: hidden;
    padding-top: 80px;
}

body.menu-open {
    overflow: hidden;
}

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

section {
    padding: 80px 0;
    scroll-margin-top: 80px;
    position: relative;
}

/* Ajuste específico para cada seção */
#hero {
    padding-top: 100px;
}

#problem,
#solutions,
#benefits,
#process,
#cases,
#faq,
#contact {
    padding-top: 120px;
    scroll-margin-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #fff;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.highlight {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0;
}

/* Responsividade Base */
@media (max-width: 992px) {
    body {
        padding-top: 70px;
    }
    
    section {
        padding: 60px 0;
        scroll-margin-top: 70px;
    }
    
    #problem,
    #solutions,
    #benefits,
    #process,
    #cases,
    #faq,
    #contact {
        padding-top: 100px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    section {
        padding: 50px 0;
        scroll-margin-top: 60px;
    }
    
    #problem,
    #solutions,
    #benefits,
    #process,
    #cases,
    #faq,
    #contact {
        padding-top: 80px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 50px;
    }
    
    section {
        padding: 40px 0;
        scroll-margin-top: 50px;
    }
    
    #problem,
    #solutions,
    #benefits,
    #process,
    #cases,
    #faq,
    #contact {
        padding-top: 70px;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
}

/* Estilo da Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    background-color: rgba(15, 19, 37, 0.95);
}

::-webkit-scrollbar-track {
    background-color: rgba(15, 19, 37, 0.95);
    border-radius: 8px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
    border-radius: 8px;
    border: 3px solid rgba(15, 19, 37, 0.95);
    transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0052cc 0%, var(--primary-color) 100%);
}

/* Firefox Scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) rgba(15, 19, 37, 0.95);
} 