/* ============================================================================
   ALÉM DO OFF - CUSTOM STYLES
   ============================================================================ */

:root {
    --primary-purple: #7C3AED;
    --primary-purple-light: #A855F7;
    --primary-purple-dark: #5B21B6;
    --bg-light-custom: #F8FAFC;
    --bg-purple-custom: #F3F4FF;
    --text-gray: #64748B;
    --text-dark: #1E293B;
	--text-white: #FFFFFF;
}

/* ============================================================================
   RESET & BASE
   ============================================================================ */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand .logo-navbar {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover .logo-navbar {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple) !important;
    background-color: rgba(124, 58, 237, 0.08);
    transform: translateY(-1px);
}

.nav-link:active,
.nav-link.active {
    color: var(--primary-purple) !important;
    background-color: rgba(124, 58, 237, 0.12);
}

/* Efeito underline no hover */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-section {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,800 1000,1000"/></svg>');
    background-size: cover;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    font-weight: 300;
}

.btn-hero {
    background: white;
    color: var(--primary-purple);
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-hero:hover {
    background: var(--primary-purple);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ============================================================================
   CARDS & STATS
   ============================================================================ */

.stats-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(124, 58, 237, 0.08);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-purple);
    border-color: var(--primary-purple-light);
}

.stats-card .icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--bg-purple-custom) 0%, rgba(124, 58, 237, 0.1) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--primary-purple);
    transition: all var(--transition-base);
}

.stats-card:hover .icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary-purple-light) 0%, var(--primary-purple) 100%);
    color: white;
}

.stats-card h4 {
    color: var(--text-dark);
    font-weight: 700;
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.stats-card p {
    color: var(--text-gray);
    margin: 0;
    font-size: var(--font-size-base);
    line-height: 1.6;
    flex-grow: 1;
}

/* ============================================================================
   SECTION STYLES
   ============================================================================ */

.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================================
   PROBLEM SECTION
   ============================================================================ */

.problem-section {
    background: var(--bg-light-custom);
}

.problem-quote {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.problem-description {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================================================
   PROCESS STEPS
   ============================================================================ */

.process-step {
    text-align: center;
    margin-bottom: 3rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-purple);
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */

.cta-section {
    background: var(--primary-purple);
    color: white;
    text-align: center;
}

.btn-cta {
    background: white;
    color: var(--primary-purple);
    border: 2px solid white;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin: 0 10px 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--primary-purple);
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ============================================================================
   NEWSLETTER
   ============================================================================ */

.newsletter-form {
    background: var(--bg-purple-custom);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
}

.form-control-custom {
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 12px 15px;
    background: white;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: var(--primary-purple);
    box-shadow: 0 0 0 0.2rem rgba(124, 58, 237, 0.1);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
}
.footer h6 {
    color: var(--primary-purple-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ============================================================================
   TIMELINE (para página sobre)
   ============================================================================ */

.timeline-item {
    border-left: 3px solid var(--primary-purple);
    padding-left: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--primary-purple);
}

/* ============================================================================
   RESPONSIVE
   ============================================================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .problem-quote {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .btn-hero,
    .btn-cta {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 5px;
    }
}