/* ===== PORTADA APE - HERO LIMPIO SIN OVERLAY ===== */
/* Diseño profesional - Las caras se ven claramente */

/* ===== HERO PRINCIPAL ===== */
.hero-fabuloso {
    position: relative !important;
    padding: 120px 0 100px 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    min-height: 600px !important;
}

/* Imagen de fondo CLARA - Se ven las caras perfectamente */
.hero-fabuloso::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: url('../assets-main/images/banner/portada11.jpg') center/cover !important;
    opacity: 1 !important;
    filter: brightness(1.05) contrast(1.05) !important;
    z-index: 1 !important;
}

/* Degradado SOLO en los bordes - NO tapa el centro ni las caras */
.hero-fabuloso::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: linear-gradient(to bottom,
        rgba(0,0,0,0.2) 0%,
        transparent 20%,
        transparent 80%,
        rgba(0,0,0,0.3) 100%
    ) !important;
    z-index: 2 !important;
}

.hero-content {
    position: relative !important;
    z-index: 3 !important;
    color: white !important;
    text-align: center !important;
}

.hero-title {
    font-size: 3.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
    animation: fadeInUp 1s ease-out !important;
    line-height: 1.2 !important;
}

.hero-subtitle {
    font-size: 1.4rem !important;
    margin-bottom: 3rem !important;
    opacity: 0.95 !important;
    animation: fadeInUp 1s ease-out 0.3s both !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2) !important;
    font-weight: 400 !important;
}

/* ===== ESTADÍSTICAS MODERNAS CON GLASSMORPHISM ===== */
.hero-stats {
    display: flex !important;
    justify-content: center !important;
    gap: 2rem !important;
    margin: 3rem 0 !important;
    animation: fadeInUp 1s ease-out 0.6s both !important;
    flex-wrap: wrap !important;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    border-radius: 20px !important;
    padding: 2rem 2.5rem !important;
    text-align: center !important;
    color: white !important;
    min-width: 180px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05) !important;
    background: rgba(255, 255, 255, 0.22) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25) !important;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    display: block !important;
    margin-bottom: 0.5rem !important;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3) !important;
    line-height: 1 !important;
}

.stat-label {
    font-size: 0.95rem !important;
    opacity: 0.95 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-weight: 500 !important;
    display: block !important;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) and (max-width: 1199px) {
    .hero-fabuloso {
        padding: 100px 0 80px 0 !important;
        min-height: 550px !important;
    }

    .hero-title {
        font-size: 3rem !important;
    }

    .hero-subtitle {
        font-size: 1.3rem !important;
    }

    .stat-item {
        padding: 1.5rem 2rem !important;
        min-width: 160px !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 767px) {
    .hero-fabuloso {
        padding: 80px 0 60px 0 !important;
        min-height: auto !important;
    }

    .hero-title {
        font-size: 2.2rem !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
    }

    .hero-stats {
        flex-direction: column !important;
        gap: 1rem !important;
        margin: 2rem 0 !important;
    }

    .stat-item {
        width: 100% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }
}

/* ===== ANIMACIONES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ESPACIADO OPTIMIZADO ===== */
.rbt-section-gap {
    padding: 60px 0 !important;
}

@media (max-width: 768px) {
    .rbt-section-gap {
        padding: 40px 0 !important;
    }
}

