/* =========================================
   Custom CSS - Astra Theme
   Fondo responsive
   ========================================= */
/* En tu custom.css */
.hero-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    background-color: #000000;
    
    /* Overlay oscuro para mejor legibilidad */
    background-blend-mode: multiply;
}

/* O usando pseudo-elemento para overlay */
.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.contenido-hero {
    position: relative;
    z-index: 2;
}