
    /* Contenedor padre */
    .pmu-hero-banner { 
        width: 100%; 
        height: 100vh; 
        position: relative; 
        overflow: hidden; 
    }
    
    /* Imagen fija (Fondo Fijo) */
    .pmu-hero-banner .banner-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        justify-content: center; /* Centrado horizontal */
        align-items: center;     /* Centrado vertical */
        z-index: 1;
    }

    /* Contenido centrado */
    .pmu-hero-banner .banner-content { 
        z-index: 2; 
        padding: 40px; 
        text-align: center;      /* Texto centrado */
        width: 100%;
        max-width: 800px;        /* Limite para que el texto no se estire demasiado */
    }

    /* Estilos de Tipografía */
    .pmu-hero-banner .pmu-title, 
    .pmu-hero-banner .pmu-subtitle {
        color: white;
        text-shadow: 2px 4px 12px rgba(0,0,0,0.8);
        margin: 10px 0;
        font-family: 'Playfair Display', serif;
    }
    
    .pmu-hero-banner .pmu-title { font-size: 3.5rem; font-weight: 700; line-height: 1.1; }
    .pmu-hero-banner .pmu-subtitle { font-size: 1.5rem; font-family: 'Poppins', sans-serif; font-weight: 300; }

    /* Ajuste responsivo */
    @media (max-width: 768px) { 
        .pmu-hero-banner .desktop-only { display: none !important; } 
    }
    @media (min-width: 769px) { 
        .pmu-hero-banner .mobile-only { display: none !important; } 
        .pmu-hero-banner .pmu-title { font-size: 5rem; }
    }
