.seccion-despedida {
  /* ocupar todo el ancho disponible hasta el max-width y centrar en pantalla */
  width: 100%;
  max-width: 600px;
  margin: 0 auto; /* centrar horizontalmente el bloque cuando haya espacio */
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centrar verticalmente */
  align-items: center; /* centrar horizontalmente los items internos */
  padding: 16px 16px 32px;
  margin-top: 0; /* eliminar espacio superior */
}
.despedida-titulo {
  text-align: center;
  font-family: "RougeScript-Regular", cursive;
  font-size: 2.4rem;
  color: var(--color-text);
  font-weight: 100;
}
.despedida-parrafo {
  text-align: center;
  font-family: "quicksand-light", sans-serif;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 24px;
}
.despedida-parrafo2 {
  font-family: "quicksand-light", sans-serif;
  text-align: center;
  font-size: 1.5rem;
  color: var(--color-text);
  margin-bottom: 24px;
}
.foto-despedida {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 16px;
  object-fit: contain;
}
.fotos-animadas {
  opacity: 0.5;
  scale: 0.8;
}
@media (max-width: 600px) {
  .foto-despedida {
    width: 100vw;
    max-width: 100vw;
    margin-top: 5%;
  }
  .despedida-titulo {
    font-size: 2.4em;
    margin-top: 5%;
  }
  .despedida-parrafo {
    font-family: "RougeScript-Regular", cursive;

    font-size: 2em;
    margin-bottom: 5px;
    font-weight: 100;
  }
  .despedida-parrafo2 {
    font-family: "quicksand-light", sans-serif;
    font-size: 1.3em;
    padding: 0px 5%;
    text-transform: none;
    font-weight: bold;
  }
}
