.pagina-reproduccion {
    width: 100%;
    padding: 2rem;
    box-sizing: border-box;
    margin-top: 6rem;
    overflow-x: hidden;
}

/* =========================================================
   HERO — FLUIDO + IMAGEN PEGADA A LA DERECHA
   ========================================================= */

.reproduccion-hero-contenedor {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0 auto 3rem;
}

/* El hero debe ignorar el padding lateral del contenedor */
.pagina-reproduccion .reproduccion-hero-contenedor {
    margin-left: -2rem;
    margin-right: -2rem;
}

.reproduccion-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

/* Texto hero */
.reproduccion-hero-texto {
    padding-left: 1.5rem;
}

.reproduccion-hero-texto h1 {
    font-size: 2.4rem;
    color: #0a3d62;
    margin-bottom: 1rem;
}

.reproduccion-hero-texto p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* =========================================================
   CONTENEDOR DE LA IMAGEN DEL HERO
   ========================================================= */

.reproduccion-hero-imagen {
    position: relative;   /* NECESARIO para que el overlay quede dentro */
    width: 55%;
}

/* Imagen del hero */
.reproduccion-hero-imagen img {
    width: 100%;
    border-radius: 1.6rem;
    object-fit: cover;
    display: block;    
}

/* =========================================================
   OVERLAY DENTRO DE LA IMAGEN HERO
   ========================================================= */

.reproduccion-hero-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    padding: 1.2rem 1.6rem;
    border-radius: 1rem;
    backdrop-filter: blur(4px);
}

.reproduccion-hero-overlay p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    color: #0a3d62;
    font-weight: 500;
}

/* =========================================================
   INTRO
   ========================================================= */

.reproduccion-intro {
    max-width: 800px;
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

/* =========================================================
   BLOQUES
   ========================================================= */

.reproduccion-bloque {
    margin-bottom: 3rem;
}

.reproduccion-bloque h2 {
    font-size: 1.8rem;
    color: #0a3d62;
    margin-bottom: 1.5rem;
}

/* =========================================================
   GRID 4
   ========================================================= */

.reproduccion-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    min-width: 0;
}

.reproduccion-grid-4 .item {
    background: #f7f9fc;
    padding: 1.4rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.reproduccion-grid-4 .item img {
    max-width: 2rem;
    height: auto;
}

/* =========================================================
   PASOS
   ========================================================= */

.reproduccion-pasos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    min-width: 0;
}

.paso {
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.paso img {
    max-width: 2rem;
    margin-bottom: 0.8rem;
}

.paso h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* =========================================================
   GRID 3 (si se usa)
   ========================================================= */

.reproduccion-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    min-width: 0;
}

.servicio {
    background: #f7f9fc;
    padding: 1.4rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

.servicio img {
    max-width: 2rem;
}

/* =========================================================
   LISTA
   ========================================================= */

.reproduccion-lista {
    list-style: none;
    padding: 0;
}

.reproduccion-lista li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #e5e5e5;
}

/* =========================================================
   COMPROMISO
   ========================================================= */

.reproduccion-compromiso {
    background: #eef5ff;
    padding: 2rem;
    border-radius: 1.6rem;
    margin-bottom: 3rem;
    text-align: center;
}

.reproduccion-compromiso img {
    max-width: 3rem;
    margin-bottom: 1rem;
}

/* =========================================================
   DISPONIBILIDAD
   ========================================================= */

.reproduccion-disponibilidad {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    flex-wrap: wrap;
    text-align: center;
}

.reproduccion-disponibilidad img {
    max-width: 2rem;
}

/* =========================================================
   CTA FINAL
   ========================================================= */

.reproduccion-cta-final {
    text-align: center;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 768px) {
	
	.pagina-reproduccion .reproduccion-hero-contenedor {
        margin-left: 0;
        margin-right: 0;
    }
	
	.reproduccion-hero-texto {
    padding-left: 0;
	}

    .pagina-reproduccion {
        padding: 1rem;
    }    


    /* HERO EN COLUMNA Y CENTRADO REAL */
    .reproduccion-hero {
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: flex-start;
    }

    .reproduccion-hero-imagen {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .reproduccion-hero-imagen img {
        width: 100%;
        max-width: 100%;
        display: block;
    }

    .reproduccion-hero-overlay {
        bottom: 0.6rem;
        left: 0.6rem;
        right: 0.6rem;
        padding: 0.8rem 1rem;
        border-radius: 0.8rem;
        background: rgba(255, 255, 255, 0.65);
    }
    
    .reproduccion-hero-overlay p {
        font-size: 0.95rem;
        line-height: 1.35;
    }

    .reproduccion-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .reproduccion-pasos {
        grid-template-columns: repeat(2, 1fr);
    }

    .reproduccion-grid-3 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {

    .reproduccion-grid-4 {
        grid-template-columns: 1fr;
    }

    .reproduccion-pasos {
        grid-template-columns: 1fr;
    }
}
