/* Importar fuentes desde Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Alex+Brush&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Antic+Didone:wght@400;700&family=Poppins:wght@400;700&family=Playfair+Display:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Allura&family=Great+Vibes&family=Dancing+Script:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

/* Estilos generales */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Aplicar fuentes */
h2,
h3 {
  color: #5b5a33;
  font-weight: 400; /* Regular */
}

/* Estilo específico para h1 */
h1 {
  font-family: "Marcellus", serif;
  font-weight: 400;
  color: #4a6e44;
  font-size: 85px;
  letter-spacing: 0.05em;

  margin-bottom: 30px;
  line-height: 1.1;
  text-transform: uppercase;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;

  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25); /* <--- esta línea es clave */
}

h1.bold,
h2.bold,
h3.bold {
  font-weight: 700; /* Negrita */
}

p {
  font-family: "Poppins", sans-serif;
  font-weight: 400; /* Regular */
}

p.bold {
  font-weight: 700; /* Negrita */
}

/* Mantener las características del body */
body {
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  text-align: left;
  font-size: 14px;
  line-height: 17px;
  word-wrap: break-word;
}

/* CSS - Seccion Hero Optimizada */
.hero-section {
  position: relative;
  height: 50vh;
  min-height: 500px;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url("./imagenes/CIELO.png") no-repeat center center;
  background-size: cover;
  opacity: 1;
  z-index: -1;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
}

.menu-toggle {
  background: transparent;
  border: 1px solid white;
  color: white;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  opacity: 0.8;
}

.menu-icon {
  font-size: 24px;
}

.hero-content {
  z-index: 2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
}

.hero-content p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, 1.8vw, 23px);
  letter-spacing: 0.15em; /* Aumentado para mejor legibilidad */
  line-height: 1.6;
  color: #7d9b76;
  text-transform: uppercase;
  font-weight: 600; /* Aumentado de 400 a 600 */
  margin-top: 10px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
    padding: 0 15px;
  }

  .navbar {
    padding: 15px;
  }

  h1 {
    font-size: clamp(
      38px,
      8vw,
      65px
    ); /* Aumentado de 32px a 38px y de 7vw a 8vw */
    margin-bottom: 20px;
    letter-spacing: 0.04em;
  }

  .hero-content p {
    font-size: clamp(14px, 1.6vw, 18px);
  }
}

@media (max-width: 480px) {
  .hero-section {
    min-height: 400px;
    padding: 0 10px;
  }

  .navbar {
    padding: 10px;
  }

  h1 {
    font-size: clamp(
      34px,
      7vw,
      45px
    ); /* Aumentado de 28px a 34px y de 6vw a 7vw */
    margin-bottom: 15px;
    letter-spacing: 0.03em;
  }

  .hero-content p {
    font-size: clamp(12px, 1.4vw, 16px);
    letter-spacing: 0.03em;
  }

  .hero-content {
    padding: 10px;
  }
}

/* Breakpoint adicional para dispositivos muy pequeños */
@media (max-width: 320px) {
  h1 {
    font-size: clamp(
      30px,
      6vw,
      36px
    ); /* Aumentado de 24px a 30px y de 5vw a 6vw */
    letter-spacing: 0.02em;
  }

  .hero-content p {
    font-size: clamp(11px, 1.2vw, 14px);
  }
}
/*--------- Seccion 2 ---------*/

.welcome-section {
  padding: 0;
  margin-top: 0;
  background-image: url(./imagenes/fondo2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}

.content-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-top: 50px; /* Espacio para que la foto pueda salirse por arriba */
}

.photos-container {
  position: relative;
  margin-top: -100px; /* Desplaza todo el contenedor de fotos hacia arriba */
}

.main-photo {
  position: relative;
  z-index: 4;
  width: 518px;
  height: 809px;
  background-image: url(./imagenes/noscasamos1.png);
  background-size: cover;
  background-position: center;
  margin-top: -400px;
  left: -74px;
}

.polaroid-photo {
  position: absolute;
  left: 300px;
  bottom: -270px;
  padding: 15px;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 5;
}

.polaroid-photo img.block {
  background-image: url(./imagenes/CIELO.png);
  display: block;
  border: 0px;
  border-style: solid;
  transform-origin: left top;
  width: 408px;
  height: 555px;
}

.text-container {
  position: absolute;
  top: -150px;
  right: 0;
  width: 60%;
}

/* Nuevo estilo para la imagen del título */
.title-image {
  width: 100%;
  text-align: left;
}

.title-image img {
  width: 730px;
  height: 196px;
  max-width: none;
}

.message-container {
  position: absolute;
  top: 170px;
  right: 0;
  width: 40%;
  z-index: 21;
}

.message {
  margin-left: 50px;
  width: 514px;
  min-height: 388px;
  box-sizing: border-box;
}

.message p {
  font-size: 22px;
  line-height: 34px;
  margin-bottom: 20px;
  color: #e68395;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

/* Media queries adaptados para invertir el orden de los elementos */
@media screen and (max-width: 1200px) {
  .text-container {
    width: 45%;
  }

  .title-image img {
    width: 100%;
    max-width: 730px;
  }

  .message-container {
    width: 45%;
  }

  .message {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .content-container {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .photos-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    order: 3;
    margin-top: 0;
  }

  .text-container {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    text-align: center;
    order: 1;
    margin-bottom: 20px;
    margin-top: 50px;
  }

  .title-image {
    text-align: center;
  }

  .title-image img {
    width: 80%;
    max-width: 500px;
  }

  .message-container {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    order: 2;
    margin-bottom: 30px;
    padding: 0 15px; /* Añade padding horizontal */
    box-sizing: border-box;
  }

  .message {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    min-height: auto;
    padding: 0 10px;
  }

  .main-photo {
    width: 90%;
    max-width: 400px;
    height: 600px;
    left: 0;
    margin-top: 20px;
  }

  .polaroid-photo {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: -100px;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .main-photo {
    height: 500px;
  }

  .polaroid-photo img.block {
    width: 300px;
    height: 408px;
  }

  .title-image img {
    width: 90%;
    max-width: 400px;
  }

  .message p {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .polaroid-photo img.block {
    width: 250px;
    height: 340px;
  }

  .title-image img {
    width: 90%;
    max-width: 300px;
  }

  .message-container {
    padding: 0 10px;
  }

  .message {
    padding: 0;
  }

  .message p {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 15px;
    width: 100%; /* Asegura que use todo el ancho disponible */
    text-align: center;
  }
}

@media screen and (max-width: 360px) {
  .message p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 12px;
  }
}

/* SECCION 3 - EVENTOS */

.eventos-seccion {
  padding: 100px 0;
  background-image: url(./imagenes/fondo3.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #333;
  overflow: hidden;
}
.eventos-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center; /* Cambiado de space-between a center */
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px; /* Añadido un espacio entre las tarjetas */
}

/* Estilos base para las tarjetas de eventos */
.evento-card {
  width: 45%; /* Cambiado de 33% a 45% */
  padding: 0 20px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 30px;
}

/* Distribución horizontal con escalonamiento */

.evento-boda {
  padding-top: 0; /* Cambiado de 150px a 0 */
  text-align: center;
}

.evento-tornaboda {
  padding-top: 150px; /* Cambiado de 300px a 150px */
  text-align: right;
}

/* Estilos para las imágenes/iconos */

.evento-imagen {
  margin-bottom: 20px; /* Aumentado desde 15px */
  transition: transform 0.3s ease;
  text-align: center; /* Centrar la imagen dentro del contenedor */
  min-height: 230px; /* Altura mínima para mantener estructura */
  display: flex;
  align-items: center;
  justify-content: center;
}

.evento-imagen:hover {
  transform: scale(1.08); /* Un poco más de efecto al pasar mouse */
}

.evento-icono {
  width: 100%; /* Ocupa todo el ancho disponible */
  height: auto;
  min-width: 180px; /* Establece un tamaño mínimo */
  max-width: 280px; /* Aumentado desde antes */
  max-height: none; /* Eliminamos la restricción de altura máxima */
  object-fit: contain; /* La imagen mantiene su proporción */
}

/* Estilos para los títulos de imagen */
.evento-titulo-imagen {
  width: 344px;
  height: 175px;
  object-fit: cover;
  margin-bottom: 30px;
}

/* Estilos para los textos de información */
.evento-info {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.evento-nombre {
  font-family: "Marcellus", serif;
  font-weight: 600;
  font-size: 18px;
  color: #7d9b76;
  margin-bottom: 15px;
  letter-spacing: 2px;
  border-bottom: 2px solid rgb(230, 131, 149); /* Cambiado a rosa */
  padding-bottom: 10px;
  display: inline-block;
}

.evento-detalle {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.evento-detalle i {
  margin-right: 10px;
  color: rgb(230, 131, 149); /* Cambiado a rosa */
  font-size: 16px;
  min-width: 20px;
}

.evento-fecha {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  margin: 0;
}

.evento-hora,
.evento-lugar,
.evento-codigo,
.evento-contacto {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  font-weight: normal;
}

.evento-nota {
  margin: 0;
  font-style: italic;
  font-size: 14px;
}

.evento-detalle-titulo {
  display: flex;
  align-items: center;
  margin: 15px 0 10px;
}

.evento-subtitulo {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 0 10px;
  color: #555;
}

.evento-ceremonia,
.evento-recepcion {
  margin-top: 15px;
  padding-left: 10px;
  border-left: 2px solid rgb(230, 131, 149); /* Cambiado a rosa */
}

.evento-detalle-mensaje {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.evento-detalle-mensaje i {
  margin-right: 10px;
  color: rgb(230, 131, 149); /* Cambiado a rosa */
  font-size: 16px;
  min-width: 20px;
  margin-top: 3px;
}

.evento-mensaje {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* Estilo para el enlace del mapa */
.evento-mapa {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  padding: 8px 15px;
  background-color: rgb(230, 131, 149); /* Cambiado a rosa */
  color: white;
  text-decoration: none;
  font-size: 14px;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.evento-mapa i {
  margin-right: 5px;
}

.evento-mapa:hover {
  background-color: #7d9b76; /* Cambiado a verde en hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Media queries para responsividad */
@media screen and (max-width: 1200px) {
  .evento-icono {
    min-width: 160px;
    max-width: 250px;
  }

  .evento-imagen {
    min-height: 200px;
  }
  .evento-card {
    padding: 0 15px;
  }

  .evento-titulo-imagen {
    width: 300px;
    height: 152px;
  }
}

@media screen and (max-width: 992px) {
  .evento-icono {
    min-width: 150px;
    max-width: 220px;
  }

  .evento-imagen {
    min-height: 180px;
  }
  .evento-card {
    width: 45%;
  }

  .evento-boda {
    padding-top: 0;
  }

  .evento-tornaboda {
    padding-top: 120px; /* Mantén algo de escalonamiento */
    margin-top: 0; /* Elimina el margen adicional */
    width: 45%; /* Mantén el mismo ancho que .evento-boda */
    text-align: right;
  }

  .evento-titulo-imagen {
    width: 280px;
    height: 142px;
  }

  .evento-info {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .evento-imagen {
    min-height: 150px;
    margin-bottom: 15px;
  }

  .evento-icono {
    min-width: 130px;
    max-width: 200px; /* Aumentado desde 180px */
  }
  .eventos-container {
    flex-direction: column;
    align-items: center;
  }

  .evento-card {
    width: 85%;
    margin-bottom: 70px;
    padding-top: 0;
  }

  .evento-boda {
    padding-top: 0;
    margin-top: 70px;
  }

  .evento-tornaboda {
    margin-top: 70px;
  }

  .evento-imagen {
    text-align: center;
  }

  .evento-icono {
    max-width: 180px;
  }

  .evento-titulo-imagen {
    width: 250px;
    height: 127px;
  }

  .evento-info {
    text-align: left;
  }
}

@media screen and (max-width: 480px) {
  .evento-imagen {
    min-height: 130px;
  }

  .evento-icono {
    min-width: 120px;
    max-width: 180px; /* Aumentado desde 150px */
  }
  .evento-card {
    width: 95%;
    margin-bottom: 60px;
  }

  .evento-titulo-imagen {
    width: 220px;
    height: 112px;
  }

  .evento-nombre {
    font-size: 16px;
  }

  .evento-fecha {
    font-size: 15px;
  }

  .evento-hora,
  .evento-lugar,
  .evento-codigo,
  .evento-mensaje {
    font-size: 14px;
  }

  .evento-icono {
    max-width: 150px;
  }
}

/* Seccion Hospedaje */

.container {
  background-image: url(./imagenes/fondo3.jpeg);
  background-size: cover; /* Hace que la imagen cubra todo el contenedor */
  background-position: center center; /* Centra la imagen */
  background-repeat: no-repeat; /* Evita que la imagen se repita */
  background-attachment: fixed; /* Opcional: hace que el fondo quede fijo al hacer scroll */
  margin: 0 auto;
  padding: 40px 20px;
  min-height: 100vh; /* Asegura que el contenedor cubra toda la altura de la ventana */
}

.hospedaje {
  padding: 50px 0;
}

.hospedaje-title {
  margin-bottom: 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hospedaje-title img {
  max-width: 534px;
  width: 100%;
  height: auto;
}

.hospedaje-descripcion {
  max-width: 800px;
  margin: 0 0 50px 0;
  font-size: 21px;
  line-height: 1.6;
  color: #333;
  text-align: left;
  font-weight: 400;
}

/* Contenedor para hoteles - Modificado para mejor distribución */
.hoteles-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* Cambiado de space-between a center */
  align-items: stretch;
  margin-top: 30px;
  gap: 30px; /* Reducido de 60px a 30px */
  width: 100%;
  max-width: 1200px; /* Añadido para limitar el ancho máximo */
  margin-left: auto;
  margin-right: auto;
}

/* Estilos para cada hotel */
.hotel {
  flex: 0 0 calc(33.33% - 20px);
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 450px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hotel:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.hotel-nombre-vertical {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: left top;
  left: -30px;
  top: 215px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 21px;
  color: #7d9b76; /* Cambiado a verde */
  white-space: nowrap;
  font-weight: 300;
  z-index: 1;
}

.hotel-imagen-container {
  width: 100%;
  height: 330px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
/**/
/* Capa de degradado sobre las imágenes */
.hotel-imagen-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Imágenes específicas */
.hotel-wyndham {
  background-image: url("/imagenes/hotel1.jpg");
}

.hotel-sede {
  background-image: url("./imagenes/hotel2.jpg");
}

.hotel-sede2 {
  background-image: url("./imagenes/hotel3.jpg");
}

.hotel-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hotel-titulo {
  font-size: 20px;
  color: #7d9b76; /* Cambiado a verde */
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  border-bottom: 1px solid rgb(230, 131, 149); /* Cambiado a rosa */
  padding-bottom: 10px;
}

.hotel-codigo {
  font-size: 18px;
  color: #555;
  font-weight: 300;
}

.hotel-contacto {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hotel-contacto div,
.hotel-ubicacion div,
.hotel-fecha-limite {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
  font-weight: 300;
}

.hotel-contacto i,
.hotel-ubicacion i,
.hotel-fecha-limite i,
.hotel-contacto-adicional i {
  margin-right: 10px;
  color: rgb(230, 131, 149); /* Cambiado a rosa */
  font-size: 16px;
}

.hotel-ubicacion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-toggle {
  color: rgb(230, 131, 149); /* Cambiado a rosa */
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-weight: 400;
  margin-top: 5px;
  transition: color 0.3s ease;
}

.map-toggle:hover {
  color: #7d9b76; /* Cambiado a verde en hover */
  text-decoration: underline;
}

.map-toggle i {
  margin-left: 5px;
}

.hotel-map {
  width: 100%;
  margin: 10px 0;
  border-radius: 6px;
  overflow: hidden;
  display: none;
}

.hotel-fecha-limite {
  font-style: italic;
}

.hotel-contacto-adicional {
  font-size: 16px;
  color: #333;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed rgb(230, 131, 149); /* Cambiado a rosa */
}

.phone-link {
  color: rgb(230, 131, 149); /* Cambiado a rosa */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #7d9b76; /* Cambiado a verde en hover */
  text-decoration: underline;
}

.hotel-reserva {
  margin-top: 20px;
  text-align: center;
}

.btn-reservar {
  display: inline-block;
  padding: 10px 35px;
  border: 1px solid rgb(230, 131, 149); /* Cambiado a rosa */
  background-color: rgb(230, 131, 149); /* Cambiado a rosa */
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.3s;
  cursor: pointer;
  font-weight: 400;
  border-radius: 4px;
}

.btn-reservar:hover {
  background-color: #7d9b76; /* Cambiado a verde */
  border-color: #7d9b76; /* Cambiado a verde */
}

/* Añadir para los iconos y mejorar la presentación */
.hotel-contacto div,
.hotel-contacto-adicional div {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.hotel-contacto i,
.hotel-contacto-adicional i {
  margin-right: 10px;
  color: rgb(230, 131, 149); /* Cambiado a rosa */
}

.hotel-info-box {
  padding: 12px;
  border-radius: 6px;
  margin: 10px 0;
}

.hotel-info-box p {
  margin-bottom: 15px;
  line-height: 1.5;
}

.hotel-contacto-adicional {
  margin-top: 15px;
  padding-top: 10px;
  border-top: 1px dashed rgb(230, 131, 149); /* Cambiado a rosa */
}

/* Media Queries para Responsividad */
@media screen and (max-width: 1200px) {
  .hotel {
    flex: 0 0 calc(50% - 20px); /* Dos columnas en pantallas medianas-grandes */
  }
}

@media screen and (max-width: 1024px) {
  .hospedaje-title img {
    max-width: 450px;
  }

  .hoteles-container {
    gap: 25px;
  }

  .hotel-nombre-vertical {
    font-size: 18px;
    left: -25px;
    top: 180px;
  }
}

@media screen and (max-width: 768px) {
  .hoteles-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .hotel {
    max-width: 100%;
    width: 100%;
    flex: 0 0 100%;
  }

  .hospedaje-title {
    text-align: center;
  }

  .hospedaje-descripcion {
    margin: 0 auto 40px;
    text-align: center;
    font-size: 18px;
  }

  .hotel-nombre-vertical {
    left: -25px;
    top: 170px;
  }
}

@media screen and (max-width: 576px) {
  .hospedaje {
    padding: 30px 0;
  }

  .hospedaje-title img {
    max-width: 300px;
  }

  .hospedaje-descripcion {
    font-size: 16px;
    line-height: 1.5;
  }

  .hotel-nombre-vertical {
    position: relative;
    transform: none;
    left: 0;
    top: 0;
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    background-color: rgba(
      125,
      155,
      118,
      0.1
    ); /* Cambiado a verde con transparencia */
    padding: 8px;
    border-radius: 4px;
  }

  .hotel-imagen-container {
    height: 180px;
  }
}

@media screen and (max-width: 375px) {
  .container {
    padding: 20px 15px;
  }

  .hospedaje-title img {
    max-width: 250px;
  }

  .hotel-imagen-container {
    height: 150px;
  }
}

/* Seccion Regalos */

.mr-gift-registry-container {
  display: flex;
  width: 100%;
  min-height: 65vh;
  background-image: url(./imagenes/CIELO.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0;
  max-width: none;
}

.mr-gift-registry-info {
  width: 45%;
  padding: 3% 4% 3% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.mr-gift-registry-image {
  width: 55%;
  min-height: 100%;
  background-image: url("./imagenes/mdr.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mr-title-container {
  margin-bottom: 25px;
  max-width: 90%;
}

.mr-title-image {
  max-width: 100%;
  height: auto;
  display: block;
}

.mr-subtitle {
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 400;
  color: #000;
  text-align: left;
}

.mr-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 1.5;
  text-align: left;
  color: #000;
}

/* Mejoras en el estilo de la sección bancaria */
.mr-bank-section {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  align-items: center; /* Cambiado a center para mejor alineación */
  width: 100%;
  background-color: #f5f5f0; /* Fondo claro para destacar */
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.mr-bank-title {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 20px;
  height: auto;
  line-height: 1;
  color: #000;
}

.mr-bank-info {
  padding-left: 15px;
  border-left: 1px solid #ccc; /* Añadir línea separadora */
}

.mr-text {
  margin: 5px 0;
  font-size: 1.15rem;
  color: #000;
}

.mr-payment-section,
.mr-store-section {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  align-items: flex-start;
  width: 100%;
}

.mr-payment-title,
.mr-store-title {
  font-size: 0.9rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 20px;
  height: auto;
  line-height: 1;
  color: #000;
}

.mr-button {
  display: inline-block;
  margin-top: 5px;
  padding: 5px 0;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #000;
  transition: all 0.3s ease;
  font-size: 1.15rem;
}

.mr-button:hover {
  opacity: 0.7;
}

/* Responsive */

@media (max-width: 992px) {
  .mr-gift-registry-container {
    flex-direction: column; /* Cambiado de column-reverse a column */
  }

  .mr-gift-registry-info,
  .mr-gift-registry-image {
    width: 100%;
  }

  .mr-gift-registry-image {
    min-height: 500px; /* Altura fija para tablets */
    background-size: contain; /* Para asegurar que la imagen completa sea visible */
    background-position: top center;
    order: 2; /* Hacemos que la imagen aparezca después del texto */
  }

  .mr-gift-registry-info {
    order: 1; /* Hacemos que la información aparezca primero */
    padding: 5% 8%; /* Ajustamos el padding para mejor visualización */
  }
}

@media (max-width: 768px) {
  .mr-gift-registry-container {
    flex-direction: column; /* Cambiado de column-reverse a column */
  }

  .mr-gift-registry-info,
  .mr-gift-registry-image {
    width: 100%;
  }

  .mr-gift-registry-image {
    min-height: 450px; /* Aumentado para móviles */
    background-size: contain; /* Para mostrar la imagen completa */
    background-position: top center;
    order: 2; /* Hacemos que la imagen aparezca después del texto */
  }

  .mr-gift-registry-info {
    order: 1; /* Hacemos que la información aparezca primero */
    padding: 5% 8%; /* Ajustamos el padding para mejor visualización */
  }
}

/* Para dispositivos muy pequeños */
@media (max-width: 480px) {
  .mr-gift-registry-image {
    min-height: 400px; /* Ajustado para móviles muy pequeños */
    background-size: contain;
    background-position: top center;
  }

  .mr-subtitle {
    font-size: 1.2rem;
  }

  .mr-description {
    font-size: 1rem;
  }

  .mr-text {
    font-size: 1rem;
  }
}

/* Estilos refinados para la sección de gastronomía */

.wb-gastronomia-wrapper {
  background-image: url(./imagenes/gastronomia.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 40px 0 60px;
  width: 100%;
}

.wb-gastronomia-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: "Cormorant Garamond", "Playfair Display", serif;
  color: #333;
}

.wb-gastronomia-title {
  text-align: center;
  margin-bottom: 60px;
  background-image: url(./imagenes/gastronomia.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 300px;
  width: 100%;
}

.wb-gastronomia-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.wb-description-box {
  text-align: center;
  max-width: 650px;
  margin-bottom: 70px;
  padding: 0 20px;
}

.wb-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #e68395;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.wb-categories-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.wb-category-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.wb-image-container {
  width: 55%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08); /* Sombra ligeramente más suave */
  border-radius: 4px; /* Esquinas ligeramente más redondeadas */
  overflow: hidden;
  transition: all 0.5s ease;
  border: 1px solid rgba(192, 148, 112, 0.1); /* Borde casi imperceptible del color marrón de tu paleta */
}

.wb-category-image {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
  transition: all 0.8s ease;
  position: relative;
}

/* Filtro elegante con overlay */
.wb-category-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    125,
    155,
    118,
    0.08
  ); /* Verde muy sutil que combina con tu esquema de colores */
  transition: background-color 0.5s ease;
  z-index: 1;
}

/* Mejora del efecto hover para un aspecto más refinado */
.wb-category-image:hover::before {
  background-color: rgba(
    125,
    155,
    118,
    0.02
  ); /* El overlay se aclara al pasar el cursor */
}

.wb-category-image:hover {
  transform: scale(
    1.02
  ); /* Reducido de 1.05 para un efecto más sutil y elegante */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15); /* Sombra suave para dar profundidad */
}

.wb-breakfast-image {
  background-image: url("./imagenes/desayuno.jpeg");
}

.wb-meat-image {
  background-image: url("./imagenes/carne.jpeg");
}

.wb-typical-image {
  background-image: url("./imagenes/tipico.jpeg");
}

.wb-bars-image {
  background-image: url("./imagenes/bares.jpg");
}

.wb-category-content {
  width: 40%;
  text-align: center;
  padding: 20px 30px;
}

.wb-category-title {
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 30px;
  color: #7d9b76;
  margin-bottom: 35px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.wb-category-title:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 1px;
  background-color: #c09470;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.wb-restaurant-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.wb-restaurant-item {
  font-size: 1.4rem;
  color: #e68395;
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: 1px;
  transition: color 0.3s ease, transform 0.3s ease;
  padding: 5px 0;
}

.wb-restaurant-item:hover {
  color: #c09470;
  transform: translateY(-2px);
  font-weight: 500;
}

/* Estilos responsive mejorados */
@media (max-width: 900px) {
  .wb-category-row {
    flex-direction: column;
    gap: 30px;
  }

  /* Cambiamos el orden para que la imagen siempre esté arriba */
  .wb-image-container {
    width: 100%;
    max-width: 100%;
    order: 1; /* La imagen siempre va primero */
  }

  .wb-category-content {
    width: 100%;
    max-width: 100%;
    order: 2; /* El contenido siempre va después */
  }

  .wb-category-image {
    height: 320px;
  }

  .wb-category-image:hover {
    transform: scale(1.015); /* Efecto aún más sutil en pantallas medianas */
  }

  .wb-category-title {
    font-size: 1.6rem;
    margin-top: 10px;
  }

  .wb-restaurant-item {
    font-size: 1.2rem;
  }

  .wb-description {
    font-size: 1.15rem;
  }
}

@media (max-width: 600px) {
  .wb-gastronomia-section {
    padding: 30px 15px;
  }

  .wb-gastronomia-title {
    height: 180px;
    margin-bottom: 30px;
  }

  .wb-description-box {
    margin-bottom: 40px;
  }

  .wb-categories-container {
    gap: 50px;
  }

  .wb-category-title {
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
  }

  .wb-category-title:after {
    width: 50px;
    bottom: -10px;
  }

  .wb-restaurant-item {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .wb-category-image {
    height: 250px;
  }

  .wb-category-image:hover {
    transform: scale(1.01); /* Efecto mínimo en pantallas pequeñas */
  }
}

/* seccion registro */

.final-de-pagina {
  width: 100%;
  background-image: url(./imagenes/final2.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0 20px;
  /* Si necesitas espacio vertical para el contenido */
  min-height: 200px;
}

.final-de-pagina-container {
  display: flex;
  width: 100%;
  max-width: 1400px; /* Limitamos el ancho máximo para pantallas grandes */
  margin: 0 auto; /* Centramos el contenedor */
  gap: 40px; /* Espacio entre columnas */
}

/* Estilo para las columnas */
.maquillaje-column {
  width: 50%;
  background-color: transparent;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.rsvp-column {
  width: 50%;
  background-color: transparent;
}

/* Estilos para la sección de maquillaje */
.maquillaje {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  padding: 60px 0;
}

.maquillaje h2 {
  font-size: 50px;
  margin-bottom: 40px;
  font-weight: 300;
  color: #7d9b76;
  letter-spacing: 1px;
  text-align: left;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  margin-top: 60px;
}

.maquillaje ul {
  list-style-type: none;
  padding: 0;
}

.maquillaje li {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333333; /* Cambiado para mejor legibilidad */
  text-align: left;
  letter-spacing: 1px;
  text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.3); /* Mejora de legibilidad */
}

/* Mantener los estilos originales del RSVP con mejoras de legibilidad */
.wedding_rsvp_wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Playfair Display", serif;
}

.wedding_rsvp_wrapper {
  background-color: transparent;
  color: #333333; /* Cambiado para mejor legibilidad */
  line-height: 1.6;
  padding: 40px 0;
}

.wedding_rsvp_container {
  width: 100%; /* Ocupa todo el ancho disponible */
  padding: 60px 0; /* Ajustamos padding vertical sin afectar los lados */
}

.wedding_rsvp_title_container {
  text-align: center;
  margin-bottom: 50px;
}

.wedding_rsvp_title_image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(
    1px 1px 2px rgba(0, 0, 0, 0.2)
  ); /* Mejora la visibilidad del SVG */
}

.wedding_rsvp_flex_container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 60px;
}

.wedding_rsvp_info_column {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.1); /* Fondo muy sutil */
  padding: 20px;
  border-radius: 8px;
}

.wedding_rsvp_form_column {
  flex: 1;
  min-width: 300px;
  background-color: rgba(255, 255, 255, 0.15); /* Fondo sutil */
  padding: 20px; /* Añadir un poco de padding */
  border-radius: 8px; /* Esquinas redondeadas */
}

.wedding_rsvp_heading1 {
  font-size: 36px;
  margin-bottom: 25px;
  font-weight: 300;
  color: #7d9b76;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Añadimos ligero sombreado */
}

.wedding_rsvp_heading2 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 300;
  color: #7d9b76;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2); /* Añadimos ligero sombreado */
}

.wedding_rsvp_paragraph {
  margin-bottom: 20px;
  font-size: 18px;
  color: #333333;
  font-weight: 500;
  text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.5);
  line-height: 1.8;
}

.wedding_rsvp_highlight {
  color: #a05a3c; /* Versión más oscura del melocotón actual */
  font-weight: 600; /* Hacerlo un poco más grueso */
  font-style: italic;
}

.wedding_rsvp_form_group {
  margin-bottom: 25px;
}

.wedding_rsvp_label {
  display: block;
  margin-bottom: 10px;
  color: #333333; /* Color oscuro para etiquetas */
  font-weight: 500; /* Un poco más grueso */
  font-size: 18px; /* Ligeramente más grande */
  text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.3); /* Mejora de legibilidad */
  letter-spacing: 0.5px;
}

.wedding_rsvp_input,
.wedding_rsvp_select,
.wedding_rsvp_textarea {
  width: 100%;
  padding: 12px;
  background-color: rgba(255, 255, 255, 0.15); /* Fondo ligeramente visible */
  border: none;
  border-bottom: 1px solid rgba(122, 89, 71, 0.8); /* Borde más oscuro */
  border-radius: 0;
  color: #333333; /* Texto oscuro en campos */
  font-size: 16px;
  transition: border-color 0.3s;
}

.wedding_rsvp_input::placeholder,
.wedding_rsvp_textarea::placeholder {
  color: #666666; /* Color más oscuro para placeholder */
}

.wedding_rsvp_input:focus,
.wedding_rsvp_select:focus,
.wedding_rsvp_textarea:focus {
  outline: none;
  border-color: #7d9b76;
  background-color: rgba(
    255,
    255,
    255,
    0.25
  ); /* Un poco más visible al enfocar */
}

.wedding_rsvp_textarea {
  resize: vertical;
  min-height: 100px;
}

.wedding_rsvp_radio {
  margin-right: 10px;
}

.wedding_rsvp_radio_group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 8px;
}

.wedding_rsvp_radio_option {
  display: flex;
  align-items: center;
}

.wedding_rsvp_radio_option label {
  color: #333333; /* Texto oscuro para opciones */
  font-weight: 500; /* Un poco más grueso */
}

.wedding_rsvp_button {
  color: #ffffff; /* Texto blanco */
  background-color: rgba(
    122,
    89,
    71,
    0.9
  ); /* Fondo más oscuro y semi-transparente */
  border: 1px solid #7a5947; /* Borde más oscuro */
  padding: 12px 30px;
  font-size: 15px;
  border-radius: 0;
  cursor: pointer;
  font-weight: 600; /* Más grueso */
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 10px;
  transition: all 0.3s ease;
}

.wedding_rsvp_button:hover {
  background-color: #7d9b76; /* Verde al pasar el ratón */
  border-color: #7d9b76;
  color: #ffffff;
}

/* El footer se mantiene igual */
.footer-credit {
  background-color: #000;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

.footer-credit a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
}

.footer-credit p {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
  font-weight: 400;
  margin-bottom: 60px;
}

.footer-credit a:hover p {
  color: #e6e6e6;
}

/* Media queries para dispositivos móviles */
@media (max-width: 992px) {
  .final-de-pagina-container {
    flex-direction: column-reverse; /* Invertimos el orden: RSVP arriba, maquillaje abajo */
    gap: 0;
  }

  .maquillaje-column,
  .rsvp-column {
    width: 100%;
  }

  .maquillaje {
    padding: 40px 0 60px; /* Ajustamos el padding para esta vista */
  }

  .wedding_rsvp_container {
    padding: 40px 0; /* Reducimos el padding en móvil */
  }
}

@media (max-width: 768px) {
  .wedding_rsvp_flex_container {
    flex-direction: column;
    gap: 40px;
  }

  .wedding_rsvp_info_column,
  .wedding_rsvp_form_column {
    width: 100%;
  }

  .maquillaje h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 480px) {
  .footer-credit p {
    font-size: 14px;
    letter-spacing: 1.5px;
  }

  .maquillaje {
    padding: 30px 0 50px;
  }

  .maquillaje h2 {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .maquillaje li {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .wedding_rsvp_heading1 {
    font-size: 28px;
  }

  .wedding_rsvp_heading2 {
    font-size: 22px;
  }

  .wedding_rsvp_radio_group {
    flex-direction: column;
    gap: 15px;
  }
}

/* seccion de vestidos */

.invitacion_container {
  background-image: url(/imagenes/fondo3.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Cormorant Garamond", serif;
  margin: 0 auto;
  padding: 30px 20px; /* Reducido padding vertical */
  position: relative;
  min-height: 90vh; /* Reducido de 100vh a 90vh */
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.invitacion_dress_code_header {
  margin-bottom: 20px; /* Reducido de 30px a 20px */
  width: 100%;
  text-align: center;
}

.invitacion_titulo_container {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px; /* Reducido de 20px a 10px */
}

.invitacion_dress_code_titulo {
  font-family: "Great Vibes", cursive;
  font-size: 3.2rem; /* Aumentado de 2.8rem a 3.2rem */
  color: #7d9b76;
  margin-right: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.invitacion_dress_code_formal {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem; /* Aumentado de 2.8rem a 3.2rem */
  color: #7d9b76;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.invitacion_figures {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Cambiado de flex-start a center para mejor alineación */
  width: 100%;
  position: relative;
  margin: 10px 0 30px; /* Reducido de 20px 0 40px a 10px 0 30px */
}

.invitacion_columna_mujeres {
  text-align: left;
  width: 33%;
  padding: 15px; /* Reducido de 20px a 15px */
  display: flex;
  flex-direction: column;
}

.invitacion_columna_central {
  width: 34%;
  text-align: center;
  display: flex;
  justify-content: center;
}

.invitacion_columna_hombres {
  text-align: right;
  width: 33%;
  padding: 15px; /* Reducido de 20px a 15px */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.invitacion_titulo_seccion {
  color: #7d9b76;
  font-size: 2.8rem;
  font-weight: 400;
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  margin-top: 50px;
}

.invitacion_subtitulo {
  color: #e68395;
  font-size: 1.6rem; /* Aumentado de 1.3rem a 1.6rem */
  line-height: 1.3; /* Reducido de 1.4 a 1.3 */
  margin-bottom: 8px; /* Reducido de 10px a 8px */
  font-weight: 500;
}

.invitacion_nota {
  font-style: italic;
  font-size: 1.3rem; /* Aumentado de 1.1rem a 1.3rem */
  color: #e68395;
  margin-bottom: 8px; /* Reducido de 10px a 8px */
  opacity: 0.9;
}

.invitacion_pareja_img {
  height: 330px; /* Reducido de 350px a 330px */
  max-width: 100%;
  object-fit: contain;
}

/* Media queries mejorados */
@media (max-width: 900px) {
  .invitacion_titulo_seccion {
    font-size: 2.4rem; /* Aumentado de 2.1rem a 2.4rem */
  }

  .invitacion_dress_code_titulo,
  .invitacion_dress_code_formal {
    font-size: 2.8rem; /* Aumentado de 2.4rem a 2.8rem */
  }
}

@media (max-width: 768px) {
  .invitacion_container {
    padding: 25px 15px; /* Ajustado para pantallas medianas */
    min-height: auto; /* Eliminar altura mínima en pantallas más pequeñas */
  }

  .invitacion_figures {
    flex-direction: column;
    align-items: center;
    margin: 5px 0 20px; /* Reducido margen */
  }

  .invitacion_columna_mujeres,
  .invitacion_columna_central,
  .invitacion_columna_hombres {
    width: 100%;
    text-align: center;
    padding: 10px; /* Reducido de 15px a 10px */
    align-items: center;
  }

  .invitacion_columna_hombres {
    order: 3;
  }

  .invitacion_columna_central {
    order: 1;
    margin-bottom: 15px; /* Reducido de 20px a 15px */
  }

  .invitacion_columna_mujeres {
    order: 2;
  }

  .invitacion_pareja_img {
    height: 260px; /* Reducido de 280px a 260px para pantallas medianas */
  }

  .invitacion_dress_code_titulo,
  .invitacion_dress_code_formal {
    font-size: 2.6rem; /* Aumentado de 2.2rem a 2.6rem */
  }

  .invitacion_titulo_container {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .invitacion_subtitulo {
    font-size: 1.5rem; /* Aumentado */
  }

  .invitacion_nota {
    font-size: 1.2rem; /* Aumentado */
  }
}

@media (max-width: 480px) {
  .invitacion_container {
    padding: 15px 10px; /* Reducido para móviles */
  }

  .invitacion_dress_code_titulo,
  .invitacion_dress_code_formal {
    font-size: 2.3rem; /* Aumentado de 2rem a 2.3rem */
  }

  .invitacion_titulo_seccion {
    font-size: 2.1rem; /* Aumentado de 1.8rem a 2.1rem */
  }

  .invitacion_subtitulo {
    font-size: 1.4rem; /* Aumentado de 1.2rem a 1.4rem */
  }

  .invitacion_nota {
    font-size: 1.1rem; /* Aumentado de 1rem a 1.1rem */
  }

  .invitacion_pareja_img {
    height: 220px; /* Reducido para mejor visualización en móviles */
  }
}

/* Estilos adicionales para animaciones */

/* Animaciones personalizadas */
.reveal {
  position: relative;
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
}

.reveal.fade-bottom {
  transform: translateY(50px);
}

.reveal.fade-bottom.active {
  transform: translateY(0);
}

.reveal.fade-left {
  transform: translateX(-100px);
}

.reveal.fade-left.active {
  transform: translateX(0);
}

.reveal.fade-right {
  transform: translateX(100px);
}

.reveal.fade-right.active {
  transform: translateX(0);
}

/* Efectos hover para elementos interactivos */
.menu-toggle {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* Efecto de movimiento suave para todas las transiciones */
* {
  transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Ajustes para elementos animados */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Efecto para fotos al hacer hover */
.polaroid-photo {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.polaroid-photo:hover {
  transform: translateY(-10px) rotate(2deg);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.main-photo {
  transition: filter 0.5s ease, transform 0.5s ease;
}

.main-photo:hover {
  filter: brightness(1.05);
  transform: scale(1.02);
}

/* Estilo para el texto al aparecer */
@keyframes highlight {
  0% {
    color: inherit;
    text-shadow: none;
  }
  30% {
    color: #e68395;
    text-shadow: 0 0 8px rgba(230, 131, 149, 0.3);
  }
  100% {
    color: inherit;
    text-shadow: none;
  }
}

.message p.active {
  animation: highlight 2s ease forwards;
}

/* Efecto parallax para el fondo de la sección de bienvenida */
.welcome-section {
  background-attachment: fixed;
}

/* Efecto de desvanecimiento para transiciones entre secciones */
.fade-transition {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}

.fade-transition.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animación para el título principal */
@keyframes gentle-pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

h1:hover {
  animation: gentle-pulse 2s infinite;
}

/* Estilos adicionales para animaciones de la sección de eventos */

/* Animación de entrada para las tarjetas */
.evento-card {
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  transform: translateY(30px);
}

.evento-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Efectos de hover mejorados */
.evento-imagen {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.evento-imagen:hover {
  transform: scale(1.08) rotate(2deg);
}

.evento-icono {
  transition: transform 0.5s ease, filter 0.5s ease;
}

.evento-imagen:hover .evento-icono {
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.15));
}

/* Efectos de hover para info boxes */
.evento-info {
  transition: background-color 0.4s ease, box-shadow 0.4s ease,
    transform 0.4s ease;
}

.evento-card:hover .evento-info {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* Animación para destacar fechas y horas */
@keyframes highlight-text {
  0% {
    color: inherit;
  }
  30% {
    color: #e68395;
    font-weight: 600;
  }
  100% {
    color: inherit;
  }
}

.highlight-date,
.highlight-time {
  position: relative;
}

.evento-card:hover .highlight-date,
.evento-card:hover .highlight-time {
  animation: highlight-text 2s ease;
}

/* Efecto pulsante para botones de mapa */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(230, 131, 149, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(230, 131, 149, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(230, 131, 149, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Efecto para iconos en hover */
.evento-detalle i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.evento-detalle:hover i {
  transform: scale(1.2);
  color: #7d9b76;
}

/* Animación flotante para las tarjetas */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Efecto de escalonamiento mejorado en vista de escritorio */
@media screen and (min-width: 993px) {
  .evento-bienvenida.visible {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
  }

  .evento-boda.visible {
    animation: float 6s ease-in-out infinite;
    animation-delay: 1.5s;
  }

  .evento-tornaboda.visible {
    animation: float 6s ease-in-out infinite;
    animation-delay: 2.5s;
  }
}

/* Animación sutil para nombres de eventos */
.evento-nombre {
  position: relative;
  transition: color 0.3s ease;
}

.evento-nombre::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #e68395;
  transition: width 0.4s ease;
}

.evento-card:hover .evento-nombre::after {
  width: 100%;
}

/* Transición para sombras en hover */
.evento-card {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.evento-card:hover {
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Animación al hacer scroll */
[data-aos] {
  transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Estilo para mensajes en hover */
.evento-mensaje {
  transition: color 0.3s ease;
}

.evento-detalle-mensaje:hover .evento-mensaje {
  color: #7d9b76;
}

/* Efecto de rebote al cargar la página para los iconos */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

.evento-icono.animated {
  animation: bounce 2s ease;
}

/* Correción de media queries para animaciones en móvil */
@media screen and (max-width: 768px) {
  .evento-card {
    transform: translateY(20px);
  }

  .evento-card.visible {
    transform: translateY(0);
  }

  /* Desactivar algunas animaciones en móvil para mejor rendimiento */
  .pulse-animation {
    animation: none;
  }

  .evento-card:hover {
    transform: none;
    box-shadow: none;
  }

  .evento-card:hover .evento-info {
    transform: none;
  }
}

/* Animaciones y Efectos para la Página de Boda */

/* ===== ANIMACIONES GENERALES ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(50px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes glowEffect {
  0% {
    box-shadow: 0 0 5px rgba(125, 155, 118, 0.3);
  }
  50% {
    box-shadow: 0 0 15px rgba(125, 155, 118, 0.7);
  }
  100% {
    box-shadow: 0 0 5px rgba(125, 155, 118, 0.3);
  }
}

/* ===== CONFIGURACIÓN DE SCROLL REVEAL ===== */
/* Clase general para elementos que se revelarán al hacer scroll */
.reveal {
  opacity: 0;
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
}

.reveal-left {
  transform: translateX(-50px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal-left.active {
  transform: translateX(0);
  opacity: 1;
}

.reveal-right {
  transform: translateX(50px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal-right.active {
  transform: translateX(0);
  opacity: 1;
}

.reveal-up {
  transform: translateY(50px);
  opacity: 0;
  transition: all 1s ease;
}

.reveal-up.active {
  transform: translateY(0);
  opacity: 1;
}

/* ===== ESTILOS Y ANIMACIONES PARA LA SECCIÓN DRESS CODE ===== */

/* Animación para el título de Dress Code */
.invitacion_dress_code_header {
  animation: fadeIn 1.5s ease forwards;
}

.invitacion_dress_code_titulo {
  animation: fadeIn 1.8s ease forwards;
  transition: transform 0.5s ease;
}

.invitacion_dress_code_formal {
  animation: fadeIn 2s ease forwards;
  transition: transform 0.5s ease;
}

/* Efecto hover para los títulos */
.invitacion_dress_code_titulo:hover,
.invitacion_dress_code_formal:hover {
  transform: scale(1.05);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
}

/* Animaciones para las columnas */
.invitacion_columna_mujeres {
  animation: slideInLeft 1.2s ease 0.3s forwards;
  opacity: 0;
  transform: translateX(-50px);
}

.invitacion_columna_central {
  animation: fadeIn 1.5s ease 0.4s forwards;
  opacity: 0;
}

.invitacion_columna_hombres {
  animation: slideInRight 1.2s ease 0.3s forwards;
  opacity: 0;
  transform: translateX(50px);
}

/* Animación para la imagen de la pareja */
.invitacion_pareja_img {
  transition: transform 0.6s ease;
}

.invitacion_pareja_img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
}

/* Mejorando la animación de los círculos de colores */
.invitacion_color_circle {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.invitacion_color_circle:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* Animación para Lluvia de Sobres */
.invitacion_lluvia_sobres {
  animation: slideInUp 1s ease 0.7s forwards;
  opacity: 0;
  transform: translateY(50px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.invitacion_lluvia_sobres:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

/* Animando el icono del sobre */
.invitacion_sobre_icon {
  animation: floatAnimation 3s ease-in-out infinite;
  display: inline-block;
}

/* ===== ESTILOS Y ANIMACIONES PARA LA SECCIÓN HOSPEDAJE ===== */

/* Animación para el título de Hospedaje */
.hospedaje-title {
  animation: fadeIn 1.5s ease forwards;
}

.hospedaje-title img {
  transition: transform 0.6s ease;
}

.hospedaje-title img:hover {
  transform: scale(1.03);
}

/* Animaciones para los hoteles */
.hotel {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Modificación de la animación hover para los hoteles */
.hotel:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Animación para las imágenes de los hoteles */
.hotel-imagen-container {
  overflow: hidden;
  transition: transform 0.5s ease;
}

.hotel:hover .hotel-imagen-container {
  transform: scale(1.02);
}

/* Añadir un efecto de overlay con una transición suave */
.hotel-imagen-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.3)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hotel:hover .hotel-imagen-container::after {
  opacity: 1;
}

/* Animación para el nombre vertical del hotel */
.hotel-nombre-vertical {
  transition: color 0.3s ease, transform 0.3s ease;
}

.hotel:hover .hotel-nombre-vertical {
  color: #e68395; /* Cambia al color rosa al hacer hover */
  transform: rotate(-90deg) scale(1.05);
}

/* Animación para el botón de reserva */
.btn-reservar {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.btn-reservar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.btn-reservar:hover::before {
  left: 100%;
}

/* ===== ESTILOS PARA EL EFECTO PARALLAX ===== */

/* Mejorando el efecto parallax para el fondo */
.invitacion_container,
.container {
  background-attachment: fixed;
  position: relative;
}

/* Creando un suave efecto de superposición para mejorar la legibilidad */
.invitacion_container::before,
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(0px);
  transition: backdrop-filter 0.5s ease;
}

.invitacion_container:hover::before,
.container:hover::before {
  backdrop-filter: blur(1px);
}

/* Script para activar las animaciones al hacer scroll - incluirlo en un bloque de JS interno */

/* Animaciones y Efectos INTENSIFICADOS para la Página de Boda */

/* ===== ANIMACIONES GENERALES CON MAYOR IMPACTO ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes expandIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes glowEffect {
  0% {
    box-shadow: 0 0 5px rgba(125, 155, 118, 0.3);
  }
  50% {
    box-shadow: 0 0 25px rgba(125, 155, 118, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(125, 155, 118, 0.3);
  }
}

@keyframes colorPulse {
  0% {
    color: #7d9b76;
  }
  50% {
    color: #e68395;
  }
  100% {
    color: #7d9b76;
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* ===== CONFIGURACIÓN DE SCROLL REVEAL CON MAYOR IMPACTO ===== */
/* Clase general para elementos que se revelarán al hacer scroll */
.reveal {
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1.4);
  transform: scale(0.85);
}

.reveal.active {
  opacity: 1;
  transform: scale(1);
}

.reveal-left {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1.4);
}

.reveal-left.active {
  transform: translateX(0);
  opacity: 1;
}

.reveal-right {
  transform: translateX(100px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1.4);
}

.reveal-right.active {
  transform: translateX(0);
  opacity: 1;
}

.reveal-up {
  transform: translateY(100px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1.4);
}

.reveal-up.active {
  transform: translateY(0);
  opacity: 1;
}

.reveal-expand {
  transform: scale(0.5);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1.4);
}

.reveal-expand.active {
  transform: scale(1);
  opacity: 1;
}

/* Añadir un suave rebote al final de las animaciones */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-expand.active {
  animation: smallBounce 0.5s 1.2s;
}

@keyframes smallBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* ===== ESTILOS Y ANIMACIONES IMPACTANTES PARA LA SECCIÓN DRESS CODE ===== */

/* Animación para el título de Dress Code */
.invitacion_dress_code_header {
  animation: expandIn 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.invitacion_dress_code_titulo {
  animation: slideInLeft 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.2s
    forwards;
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.6s ease;
}

.invitacion_dress_code_formal {
  animation: slideInRight 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s
    forwards;
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.6s ease;
}

/* Efecto hover para los títulos */
.invitacion_dress_code_titulo:hover,
.invitacion_dress_code_formal:hover {
  transform: scale(1.1);
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
  animation: colorPulse 2s infinite;
}

/* Animaciones para las columnas */
.invitacion_columna_mujeres {
  animation: slideInLeft 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s
    forwards;
  opacity: 0;
  transform: translateX(-100px);
}

.invitacion_columna_central {
  animation: expandIn 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.8s forwards;
  opacity: 0;
  transform: scale(0.7);
}

.invitacion_columna_hombres {
  animation: slideInRight 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.6s
    forwards;
  opacity: 0;
  transform: translateX(100px);
}

/* Animación para la imagen de la pareja */
.invitacion_pareja_img {
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0);
}

.invitacion_pareja_img:hover {
  transform: scale(1.08) translateY(-10px);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.25));
}

/* Mejorando la animación de los círculos de colores */
.invitacion_color_circle {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse 3s infinite ease-in-out;
  animation-delay: calc(var(--circle-index, 0) * 0.2s);
}

.invitacion_color_row span:nth-child(1) {
  --circle-index: 1;
}
.invitacion_color_row span:nth-child(2) {
  --circle-index: 2;
}
.invitacion_color_row span:nth-child(3) {
  --circle-index: 3;
}
.invitacion_color_row span:nth-child(4) {
  --circle-index: 4;
}

.invitacion_color_circle:hover {
  transform: scale(1.4) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Animación para Lluvia de Sobres */
.invitacion_lluvia_sobres {
  animation: slideInUp 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.2s
    forwards;
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation-delay: 1s;
}

.invitacion_lluvia_sobres:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  background-color: rgba(249, 247, 245, 0.95);
}

/* Animando el icono del sobre */
.invitacion_sobre_icon {
  animation: bounce 3s ease-in-out infinite;
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 2.5rem !important;
}

.invitacion_sobre_icon:hover {
  animation-play-state: paused;
  transform: scale(1.5) rotate(15deg);
}

/* Efectos para los títulos de sección */
.invitacion_titulo_seccion {
  transition: all 0.5s ease;
  position: relative;
}

.invitacion_titulo_seccion::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e68395;
  transition: width 0.5s ease;
}

.invitacion_columna_hombres .invitacion_titulo_seccion::after {
  left: auto;
  right: 0;
}

.invitacion_columna_mujeres:hover .invitacion_titulo_seccion::after,
.invitacion_columna_hombres:hover .invitacion_titulo_seccion::after {
  width: 100%;
}

/* ===== ESTILOS Y ANIMACIONES IMPACTANTES PARA LA SECCIÓN HOSPEDAJE ===== */

/* Animación para el título de Hospedaje */
.hospedaje-title {
  animation: expandIn 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  transform-origin: center top;
}

.hospedaje-title img {
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.hospedaje-title img:hover {
  transform: scale(1.08) translateY(-5px);
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.2));
}

/* Animaciones para los hoteles */
.hotel {
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation-duration: 1s;
  animation-fill-mode: both;
  transform-origin: center bottom;
}

/* Efecto de entrada escalonado para los hoteles */
.hotel:nth-child(1) {
  animation-delay: 0.3s;
}
.hotel:nth-child(2) {
  animation-delay: 0.6s;
}
.hotel:nth-child(3) {
  animation-delay: 0.9s;
}

/* Modificación de la animación hover para los hoteles */
.hotel:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

/* Animación para las imágenes de los hoteles */
.hotel-imagen-container {
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.hotel-imagen-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(125, 155, 118, 0.3) 0%,
    rgba(230, 131, 149, 0.3) 100%
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hotel:hover .hotel-imagen-container {
  transform: scale(1.05) translateY(-5px);
}

.hotel:hover .hotel-imagen-container::before {
  opacity: 1;
}

/* Añadir un efecto de overlay con una transición suave */
.hotel-imagen-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.4)
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.hotel:hover .hotel-imagen-container::after {
  opacity: 1;
}

/* Mejora para el título del hotel */
.hotel-titulo {
  transition: all 0.5s ease;
  position: relative;
  padding-bottom: 15px;
}

.hotel-titulo::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 0;
  height: 2px;
  background: #e68395;
  transition: width 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hotel:hover .hotel-titulo {
  color: #e68395;
  letter-spacing: 2px;
}

.hotel:hover .hotel-titulo::after {
  width: 100%;
}

/* Animación para el nombre vertical del hotel */
.hotel-nombre-vertical {
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: left top;
}

.hotel:hover .hotel-nombre-vertical {
  color: #e68395; /* Cambia al color rosa al hacer hover */
  transform: rotate(-90deg) scale(1.15) translateX(-5px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
  letter-spacing: 5px;
}

/* Animación para los íconos de contacto */
.hotel-contacto i {
  transition: all 0.4s ease;
}

.hotel-contacto div:hover i {
  transform: scale(1.3) translateX(3px);
  color: #7d9b76;
}

/* Animación para el botón de reserva */
.btn-reservar {
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-origin: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-reservar::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(45deg);
  transition: all 0.8s ease;
}

.btn-reservar:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: 2px;
  background-color: #7d9b76;
  border-color: #7d9b76;
}

.btn-reservar:hover::before {
  left: 100%;
}

/* ===== ESTILOS MEJORADOS PARA EL EFECTO PARALLAX ===== */

/* Mejorando el efecto parallax para el fondo */
.invitacion_container,
.container {
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  transition: all 1s ease;
}

/* Creando un suave efecto de superposición para mejorar la legibilidad */
.invitacion_container::before,
.container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.05)
  );
  backdrop-filter: blur(0px);
  transition: all 0.8s ease;
  pointer-events: none;
}

.invitacion_container:hover::before,
.container:hover::before {
  backdrop-filter: blur(2px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.1)
  );
}

/* Añadir un efecto de escala para secciones al hacer scroll */
.invitacion_container,
.container {
  transition: transform 0.5s ease;
  transform-origin: center center;
}

/* Añadir efectos especiales a elementos clave */
.invitacion_dress_code_header,
.hospedaje-title {
  position: relative;
}

.invitacion_dress_code_header::before,
.hospedaje-title::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(
    to right,
    transparent,
    #7d9b76,
    #e68395,
    transparent
  );
  transition: width 1.5s ease;
}

.invitacion_dress_code_header.active::before,
.hospedaje-title.active::before {
  width: 80%;
}

/* Añadir efecto de enfoque al scrollear a una sección */
.invitacion_container.focus-section,
.container.focus-section {
  transform: scale(1.01);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
}

/* Mejoras adicionales para dispositivos móviles */
@media (max-width: 768px) {
  .invitacion_container::before,
  .container::before {
    background: rgba(255, 255, 255, 0.15);
  }

  .invitacion_container.focus-section,
  .container.focus-section {
    transform: none;
  }
}

/* Script para activar las animaciones al hacer scroll */

<!--css: Agrega estos estilos a tu archivo CSS existente -->
  .mr-gift-link-section {
  display: flex;
  margin-bottom: 30px;
  position: relative;
  align-items: center;
  width: 100%;
  background-color: #f5f5f0;
  padding: 15px;
  border-radius: 5px;
  margin-top: 15px;
}

.mr-link-title {
  font-size: 1rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
  margin-right: 20px;
  height: auto;
  line-height: 1;
  color: #000;
}

.mr-link-info {
  padding-left: 15px;
  border-left: 1px solid #ccc;
}

.mr-registry-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  color: #4a6741; /* Color verde que combina con el título de la imagen */
  text-decoration: none;
  border: 1px solid #4a6741;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 1.1rem;
  font-family: "Times New Roman", serif; /* Fuente elegante para combinar con el título */
  letter-spacing: 1px;
}

.mr-registry-button:hover {
  background-color: #4a6741;
  color: #fff;
}

/* Ajustes responsive para la nueva sección */
@media (max-width: 768px) {
  .mr-gift-link-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .mr-link-title {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .mr-link-info {
    padding-left: 0;
    border-left: none;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .mr-registry-button {
    font-size: 1rem;
    padding: 6px 12px;
  }
}
