.section {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.div-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2vh;
  width: 45%;
}

.titulo,
.subtitulo {
  text-align: center;
  background: rgb(207, 15, 15);
  color: white;
  width: 100%;
}

.imagen {
  margin: 2vh 2vh;
  max-width: 100%;
  height: auto;
}

.parrafo-texto {
  font-size: 1.5rem;
  text-align: justify;
}

.bold {
  font-weight: bold;
}



/* Pantallas de escritorio estándar (1920x1080) */
@media screen and (min-width: 1280px) and (max-width: 1920px) {
  .div-container {
    width: 40%;
  }

  .parrafo-texto {
    font-size: 1.4rem;
  }
}

/* Escritorio menor (1024x768) */
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .div-container {
    width: 80%;
  }

  .parrafo-texto {
    font-size: 1.3rem;
  }
}

/* Tablets (768px a 1023px) */
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .section {
    flex-direction: column;
    align-items: center;
  }

  .div-container {
    width: 90%;
  }

  .parrafo-texto {
    font-size: 1.2rem;
  }
}

/* Celulares (320px a 767px) */
@media screen and (min-width: 320px) and (max-width: 767px) {
  .section {
    flex-direction: column;
    align-items: center;
  }

  .div-container {
    width: 95%;
    margin: 1vh 0;
  }

  /*04/09/25 - Aguste de imagen porque quedaba grande por fuera de su div.*/
  .imagen img{
    width: 100%;
    height: auto;
  }

  .parrafo-texto {
    font-size: 1rem;
  }

  .titulo,
  .subtitulo {
    font-size: 1.2rem;
    padding: 0.5rem;
  }
}
