.section_actividades { 
        display: grid;
        place-items: center;
        margin: auto auto;
            /* background-color:#4A4A4A; */
    }
    .sp-carousel-actividades {
        display: flex;
        gap: 15px;
        margin: auto auto;
        /* position: relative; */
        overflow-x: hidden;
        width: 100% !important;
        margin-top:10px;
    }
    .texto_ultimas_actividades  { 
        color:#858585;
        font-weight: 200;
    }
    .texto_ultimas_actividades span {
        color: #003752; 
    } 
    .texto_ultimas_actividades p { 
        color:#858585;
        font-size:20px;
    }
    .mes_actividades{ 
    color :#003752;
    font-weight: 300;
    font-size: 38px;
    text-transform: uppercase;
    text-align:center;
    padding:20px;
}
    .Slider_actividades{
        padding: 1rem;
        /* height: auto; */
        transition: opacity 0.5s ease-in-out;
        flex: 0 0 100%;
        display: flex;
        justify-content: center;  /* 🔥 centra horizontal */
        align-items: center;
    }
    .sp-carousel-actividades{
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        width: 100%;
        gap: 15px;
        margin: auto auto;
        /* position: relative; */
        overflow-x: hidden;
        margin-top:10px;
    }

    .sp-carousel-actividades  .imagen_actividades{
        display:flex;
        justify-content :center;
        align-items:center;
        margin:0 auto;
    }

    .imagen_actividades {
        width: 40%;       /* o 50% / 60% según lo quieras */
        height: auto;     /* 🔥 clave */
        display: block;
        margin: 0 auto;   /* centra */
    }

    .carousel_botones_actividades { 
        display: flex;
        justify-content :center;
        align-items: center;
        margin-bottom:10px;
    }
    .radio_button_actividades{
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background-color: #fff;
        margin: 0 5px;
        cursor: pointer;
    }
    .radio_button_actividades.active {
        background-color: #000;
    }
    .radio_button_actividades:hover {
        background-color: #aaa;
    }
    .texto_ultimas_actividades {
        margin-top:150px;
     
        /* padding: 0 10px; */
    }

/* Para tablet: desde 751px hasta 1024px */
@media screen and (max-width: 1024px) and (min-width: 751px) {
    .sp-carousel-actividades .imagen_actividades {
        width: 100%;  /* Imagenes más grandes en tablet */
        margin: 0 auto;
        display: block;
    }
    .section_actividades {
        padding: 10px;
        margin-top: 0;
    }
}

/* Para celular: hasta 750px */
@media screen and (max-width: 750px) {
    .sp-carousel-actividades .imagen_actividades {
        width: 100%;  /* Imagen ocupa todo el ancho */
        height: auto;
        margin: 0 auto;
        display: block;
        top: -40px;
    }
    .section_actividades {
        margin-top: -30px;
        padding: 5px;
    }
    .texto_ultimas_actividades {
        margin-top:120px;
        text-align: center;
        font-size: 1.8em;
        /* padding: 0 10px; */
    }

}