
.quehacer {
    position: relative;
    padding: 20px;
    background: #E0E1DD;
    padding-bottom: 50px;
    text-align: center;
}

.quehacer .t {
    display: inline-block;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.quehacer p {
    font-size: 18px;
    max-width: 700px;
}

.main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #E0E1DD;
}

/* Contenedor de la imagen */
.main .image-container {
    position: relative;
    width: 100%; /* Ajusta el ancho como desees */
    max-width: 50%; /* Máximo ancho de la imagen */
    max-height: 300px;
    overflow: hidden; /* Oculta el exceso de zoom */
    cursor: pointer;
}

/* Imagen base */
.image-container img {
    width: 100%;
    transition: transform 0.3s ease-in-out; /* Suaviza el zoom */
}

/* Efecto de zoom al pasar el mouse */
.image-container:hover img {
    transform: scale(1.1); /* Ajusta el nivel de zoom */
}

/* Texto sobre la imagen */
.image-container .image-text {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 1.5rem;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

/* Estilo para enlaces */
.image-container a {
    text-decoration: none;
    color: inherit;
}


.otros {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: #E0E1DD;
    padding: 50px 20%;
}

.otros .image-container {
    position: relative;
    width: 100%; /* Ajusta el ancho como desees */
    max-width: 250px; /* Máximo ancho de la imagen */
    overflow: hidden; /* Oculta el exceso de zoom */
    cursor: pointer;
    margin: 10px;
}