/* ==================================================
   HERO BANNER - ESTILOS COMPLETOS
   ================================================== */

/* Wrapper principal del hero */
.modern-hero-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 50px;
    border-radius: 0 !important;
}

/* Contenido del hero (texto y botón) */
.modern-hero-content {
    position: relative;
    z-index: 10 !important;
    width: 100%;
    padding: 0 20px;
}

/* Título principal */
.modern-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

/* Subtítulo */
.modern-hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive - Tablets */
@media (max-width: 991px) {
    .modern-hero-wrapper {
        height: 500px;
    }

    .modern-hero-content h1 {
        font-size: 2.5rem;
    }

    .modern-hero-content p {
        font-size: 1.1rem;
    }
}

/* Responsive - Móviles */
@media (max-width: 767px) {
    .modern-hero-wrapper {
        height: 400px;
    }

    .modern-hero-content h1 {
        font-size: 1.8rem;
    }

    .modern-hero-content p {
        font-size: 1rem;
    }
}