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

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@300;400;500;600;700&display=swap');

: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;
    --radius-xl: 20px;
    --radius-lg: 12px;
    --spacing-lg: 2rem;
    --spacing-md: 1rem;
    --spacing-sm: 0.5rem;
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-purple: 0 20px 40px rgba(124,58,237,0.15);
    --transition-base: 0.3s ease;
    --font-size-xl: 1.2rem;
    --font-size-base: 1rem;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', sans-serif;
}

/* ============================================================================
   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;
    font-family: 'DM Sans', sans-serif;
}

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

.nav-link.active { color: var(--primary-purple) !important; }

.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.2rem;
    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);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
}

.btn-hero:hover {
    background: transparent;
    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 h3, .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 1rem;
}

/* ============================================================================
   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.2rem;
    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;
    font-family: 'DM Sans', sans-serif;
}

.btn-cta:hover {
    background: transparent;
    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);
    outline: none;
}

/* ============================================================================
   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
   ============================================================================ */

.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);
}

/* ============================================================================
   FOUNDER CARD
   ============================================================================ */

.founder-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123,97,255,0.15);
    border-color: var(--primary-purple);
}

.founder-image {
    width: 120px; height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-purple);
    object-fit: cover;
    display: block;
}

.founder-name {
    color: var(--primary-purple);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    
}

.founder-title {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.founder-description {
    color: #555;
    line-height: 1.6;
    text-align: justify;
}

/* ============================================================================
   PROGRAMA ADO
   ============================================================================ */

.programa-hero, .sobre-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.highlight-box {
    background: var(--bg-purple-custom);
    border-radius: 15px;
    padding: 2rem;
    border-left: 5px solid var(--primary-purple);
    margin: 2rem 0;
}

.highlight-box h4 { color: var(--primary-purple); margin-bottom: 1rem; }

.feature-list { list-style: none; padding: 0; }

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-purple);
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* programa-ado process steps override */
.programa-ado-step {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
    margin-bottom: 2rem;
    text-align: center;
}

.programa-ado-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(123,97,255,0.15);
    border-color: var(--primary-purple);
}

/* ============================================================================
   CONTATO
   ============================================================================ */

.contato-hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.contato-form-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

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

.btn-submit {
    background: var(--primary-purple);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
}

.btn-submit:hover {
    background: var(--primary-purple-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(124,58,237,0.3);
}

.contact-info-card {
    background: var(--bg-purple-custom);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
}

/* ============================================================================
   WHATSAPP FLOAT
   ============================================================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37,211,102,0.5);
}

/* ============================================================================
   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; }
}
