/* ========================================
   HERO INTEGRADO
   ======================================== */

.hero-integrado {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=2000&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 26, 58, 0.95), rgba(22, 58, 99, 0.9));
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-badge-regional {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: rgba(212, 168, 87, 0.2);
    border: 2px solid rgba(212, 168, 87, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero-title-dual {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 40px;
}

.title-main {
    display: block;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.title-sub {
    display: block;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--dourado-premium);
    margin-top: 15px;
}

.hero-eventos-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.evento-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.evento-badge.fcc {
    border-color: rgba(22, 58, 99, 0.5);
}

.evento-badge.feirao {
    border-color: rgba(212, 168, 87, 0.5);
}

.evento-badge i {
    font-size: 2.5rem;
}

.evento-badge.fcc i {
    color: #5B9BD5;
}

.evento-badge.feirao i {
    color: var(--dourado-premium);
}

.evento-badge strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 900;
}

.evento-badge span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
}

.plus-symbol {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--dourado-premium);
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-info-boxes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.info-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.info-box i {
    font-size: 1.8rem;
    color: var(--dourado-premium);
}

.info-box strong {
    display: block;
    font-size: 1.1rem;
}

.info-box span {
    display: block;
    font-size: 0.85rem;
    opacity: 0.8;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 45px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-hero-primary {
    background: var(--dourado-premium);
    color: var(--azul-profundo);
}

.btn-hero-primary:hover {
    background: var(--dourado-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 168, 87, 0.4);
}

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

.btn-hero-secondary:hover {
    background: white;
    color: var(--azul-profundo);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-integrado {
        min-height: 90vh;
    }
    
    .hero-eventos-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .plus-symbol {
        transform: rotate(90deg);
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
}
