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

.hero-section {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, var(--azul-profissional) 0%, var(--azul-escuro) 100%);
    position: relative;
    padding-top: 120px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(46, 204, 113, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: var(--spacing-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero Content */
.hero-content {
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
    color: var(--branco);
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.hero-title .highlight {
    color: var(--verde-primario);
    display: block;
    margin-top: var(--spacing-sm);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 20px);
    color: var(--cinza-claro);
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
}

.hero-description {
    color: var(--cinza-medio);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
}

.hero-description strong {
    color: var(--branco);
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

/* Hero Badges */
.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--cinza-claro);
    font-size: 13px;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--verde-primario);
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--verde-primario);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    animation: fadeIn 1s ease 0.5s backwards;
}

.overlay-badge {
    text-align: center;
    color: var(--branco);
}

.overlay-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

.overlay-text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: var(--spacing-xs);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--cinza-claro);
    font-size: 13px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 55% 45%;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: clamp(36px, 4.5vw, 56px);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-content {
        order: 1;
        text-align: center;
    }
    
    .hero-image {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-ctas .btn {
        flex: 1;
        min-width: 200px;
    }
    
    .hero-badges {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-image-overlay {
        bottom: -15px;
        right: -15px;
        padding: var(--spacing-md);
    }
    
    .overlay-number {
        font-size: 36px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
    }
    
    .hero-ctas .btn {
        width: 100%;
    }
}
