.fondo {
  position: relative;
  width: 100%;
  height: 600px;
}

.fondo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}


.texto-fondo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: var(--color-blanco);
  text-align: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);

  background-color: rgba(2, 84, 137, 0.6);
  width: 60%;
  height: 50%;
  border-radius: 25px;

  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.texto-fondo h1 {
  font-size: clamp(1rem, 5vw, 1.5rem);
}

.home-contenido {
  padding: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;

}

.titulo{
   font-weight: bold;
   text-align: center;
}

.descripcion {
  width: 70%;
  text-align: justify;
}

@media (max-width: 600px) {
  .descripcion {
    width: 85%;
  }
}