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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 50%, var(--primary-blue) 100%);
    padding: 100px 0 60px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(61, 107, 163, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    width: 100%;
}

.hero-text {
    order: 2;
}

.hero-diagram-wrapper {
    order: 1;
}

.hero-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background-color: rgba(201, 169, 97, 0.2);
    border: 1px solid var(--accent-gold);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--light-gray);
    line-height: 1.7;
    margin-bottom: var(--space-3xl);
    max-width: 800px;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 102, 204, 0.15);
    border: 1px solid rgba(0, 102, 204, 0.3);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: #0066cc;
}

/* Hero Description */
.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 700px;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-ctas .btn-primary {
    background: #0066cc;
    color: white;
    border: 2px solid #0066cc;
}

.hero-ctas .btn-primary:hover {
    background: #0052a3;
    border-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.4);
}

.hero-ctas .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.hero-ctas .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

/* Highlight */
.highlight {
    background: linear-gradient(135deg, #0066cc, #00ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--light-gray);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Responsivo - Tablets */
@media (max-width: 1024px) {
    .hero {
        min-height: auto;
        padding: 90px 0 50px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        order: 1;
        text-align: center;
    }
    
    .hero-diagram-wrapper {
        order: 2;
    }
    
    .hero-title {
        font-size: var(--text-5xl);
    }
    
    .hero-description {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-diagram {
        min-height: 350px;
    }
}

/* Responsivo - Smartphones */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-title {
        font-size: var(--text-3xl);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-ctas a {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .hero-diagram {
        min-height: 300px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Responsivo - Smartphones Pequenos */
@media (max-width: 480px) {
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .hero-description {
        font-size: 0.875rem;
    }
    
    .hero-diagram {
        min-height: 250px;
    }
}