* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contenido {
    margin-top: 5px;
    padding: 20px;
}

.portada_actividades {
    background-image: url('../img/actividades.jpg');
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    width: 900px;
    height: 450px;
    margin: 0 auto;
}

.titulo_actividades {
    text-align: center;
    color: #003752;
    text-transform: uppercase;
    font-size: 30px;
    margin: 30px 0;
    font-weight: 200;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container_actividades {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.container_actividades h1 {
    margin: 60px 0;
    color: #003752;
    font-weight: 200;
    text-align: center;
}

.foto_actividades {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.Actividades {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 3em;
    margin: 20px 0;
    width: 100%;
    max-width: 1000px;
    flex-wrap: wrap;
}

.Actividades p {
    color: #858585;
    font-size: 16px;
    text-align: justify;
    max-width: 500px;
    padding: 10px;
}

.Titulo_actividades {
    color: #003752;
    font-weight: 200;
    font-size: 25px;
    text-align: center;
    margin: 20px 0;
}

.testimonial-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #F9F9FA;
    padding: 20px;
}

.titulo_testimonio {
    color: #003752;
    font-size: 30px;
    font-weight: 300;
    margin: 20px 0;
    text-align: center;
}

.descripcion_testimonial {
    text-align: justify;
    color: #858585;
    font-size: 16px;
    line-height: 2rem;
    font-style: italic;
    width: 900px;
    padding: 10px;
}

.fa-quote-left,
.fa-quote-actividad-right {
    color: #003752;
    font-size: 1rem;
    margin: 0 5px;
}

.frima_autor {
    text-align: right;
    color: #003752;
    font-weight: 300;
    width: 100%;
    max-width: 1000px;
    padding: 10px;
}

/* -------- MEDIA QUERIES (Responsive) -------- */

@media screen and (max-width: 1024px) {
    .Actividades {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .Actividades p {
        width: 90%;
        font-size: 15px;
    }

    .Titulo_actividades {
        font-size: 22px;
    }

    .descripcion_testimonial {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .portada_actividades{
        width: 100%;
        height: auto;
        aspect-ratio: 2/1; /* opcional para mantener proporción */
  
      }
    .titulo_actividades,
    .titulo_testimonio {
        font-size: 24px;
    }

    .Actividades {
        gap: 2rem;
        padding: 10px;
    }

    .Actividades p {
        font-size: 14px;
    }

    .descripcion_testimonial {
        font-size: 14px;
        line-height: 1.6rem;
        width: 100%;
    }

    .foto_actividades {
        width: 100%;
        height: auto;
    }
}

@media screen and (max-width: 480px) {
    .titulo_actividades,
    .Titulo_actividades,
    .titulo_testimonio {
        font-size: 20px;
    }

    .descripcion_testimonial {
        font-size: 13px;
    }

    .container_actividades h1 {
        font-size: 24px;
    }

    .frima_autor {
        font-size: 14px;
        text-align: center;
    }
}
