/* ===================================================================
   HERO SECTION - ULTRA MODERN & PREMIUM DESIGN
   =================================================================== */

.hero-section.hero-background {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
    overflow: hidden;
    /* Deep navy gradient fallback + grid pattern */
    background: radial-gradient(circle at 20% 30%, #1e3a8a 0%, #0b1329 100%);
}

/* Subtle dot matrix pattern overlay for premium look */
.hero-section.hero-background::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
    pointer-events: none;
}

/* Modern glassmorphism / gradient overlay */
.hero-section.hero-background .hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.6) 0%, rgba(30, 64, 175, 0.3) 100%);
    z-index: 2;
}

.hero-section.hero-background .container {
    position: relative;
    z-index: 3;
}

.hero-section.hero-background .hero-content-centered {
    max-width: 860px;
    margin: 0 auto;
    padding: 0;
}

.hero-section.hero-background .hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.15;
    letter-spacing: -1px;
}

/* Gradient accent for highlight span */
.hero-section.hero-background .hero-title span {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    font-weight: 900;
}

.hero-section.hero-background .hero-subtitle {
    font-family: var(--font-secondary);
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(241, 245, 249, 0.9);
    margin: 0 auto 40px;
    max-width: 720px;
    line-height: 1.75;
    font-weight: 400;
    text-shadow: none;
}

/* Modern Buttons with smooth animations and shadows */
.hero-section.hero-background .hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-section.hero-background .hero-buttons .btn {
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: var(--font-primary);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-width: 2px;
}

.hero-section.hero-background .hero-buttons .btn-primary {
    background: linear-gradient(135deg, #0ea5e9 0%, #1e40af 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.4) !important;
}

.hero-section.hero-background .hero-buttons .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.6) !important;
    background: linear-gradient(135deg, #38bdf8 0%, #2563eb 100%) !important;
}

.hero-section.hero-background .hero-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.8) !important;
    color: #ffffff !important;
    background-color: transparent !important;
}

.hero-section.hero-background .hero-buttons .btn-outline-light:hover {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    color: var(--bs-primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25) !important;
}

/* ===================================================================
   RESPONSIVIDADE
   =================================================================== */

@media (max-width: 991.98px) {
    .hero-section.hero-background {
        min-height: 500px;
        padding: 90px 0;
    }
}

@media (max-width: 767.98px) {
    .hero-section.hero-background {
        min-height: 440px;
        padding: 70px 0;
    }
    .hero-section.hero-background .hero-buttons .btn {
        padding: 12px 28px;
        width: 100%;
        max-width: 280px;
    }
}
