/* =========================
   ACTIVIDADES
========================= */

.hero { 
    position: relative; 
    padding: 100px 20px; 
    background: linear-gradient( 
        to bottom, 
        rgba(138, 185, 144, 0.95) ); 
    }

.hero p{
    color: rgb(7, 6, 6);
    font-size: 20px;
}

.actividad {
    max-width: 1100px;
    margin: 60px auto;
    padding: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 30px;
}

/* TÍTULO CENTRADO ARRIBA */
.actividad-texto h3 {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 26px;
    margin-bottom: 10px;
}

/* TEXTO ABAJO IZQUIERDA */
.actividad-texto p {
    background: rgba(255, 255, 255, 0.966);
    padding: 25px;
    border-radius: 12px;
    line-height: 1.6;
    color: rgb(0, 0, 0);
    font-size: 20px;
}

/* IMAGEN ABAJO DERECHA */
.actividad-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.actividad-img img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .actividad {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        text-align: center;
    }

    .actividad-texto p {
        margin-bottom: 20px;
    }
}
