/* Reset de márgenes y padding para todos los elementos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

/* Estilos generales del cuerpo */
body {
  font-family: 'Playfair Display', sans-serif;
  background-color: #fff; /* Fondo suave */
  color: #333; /* Color de texto */
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  overflow-y: hidden;
}

@font-face {
  font-family: Baretta;
  src: url(fonts/Baretta.ttf);
  font-weight: normal;
  font-style: normal;
}

/* Estilos para los títulos */
h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #555;
}

h3 {
  font-size: 1.8rem;
  font-weight: normal;
  margin-bottom: 10px;
  color: #666;
}

/* Estilos para los párrafos */
p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

/* Estilo para texto en negrita */
strong {
  font-weight: bold;
}

a {
  text-decoration: none;
  color: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* Clase que se añade cuando el elemento es visible */
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Estilos del pre-loader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8d765c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#logo {
  font-size: 1.5rem;
  font-weight: 100;
  color: #fff;
}

/* Contenido del loader */
.loader-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Texto de carga */
.loading-text {
  font-family: serif;
  font-size: 14px;
  color: #fff;
  margin-bottom: 10px;
}

/* Barra de carga */
.loading-bar {
  width: 200px;
  height: 8px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.progress {
  width: 0%;
  height: 100%;
  background-color: #550000;
  animation: progressAnimation 2s infinite;
}

/* Animación de la barra de progreso */
@keyframes progressAnimation {
  0% {
      width: 0%;
  }
  50% {
      width: 70%;
  }
  100% {
      width: 100%;
  }
}

  /* POP-UP */
  #mute-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    padding: 10px;
    cursor: pointer;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }
  
  /* Estilos de la ventana pop-up */
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    width: 500px;
  }
  
  .popup-content button {
    padding: 10px 20px;
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
    border: none;
    background-color: #8d765c;
    color: #fff;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: bold;
  }

  .btn {
    padding: 10px 20px;
    font-size: 16px;
    line-height: normal;
    cursor: pointer;
    border: none;
    background-color: #8d765c;
    color: #fff;
    border-radius: 5px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    font-weight: bold;
  }

  .btn:hover {
    background-color: #550000;
    color: #fff;
  }

  .popup-content a {
    width: 100%;
    text-decoration: none;
  }
  
  .popup-content button:hover {
    background-color: #550000;
    color: #fff;
  }
  
  .popup-text {
    width: 400px;
  }
  
  .h3-popup {
    color: #550000;
    font-size: 30px;
  }
  
  .h2-popup {
    color: #550000;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 40px;
    line-height: normal;
  }
  
  .popup-p {
    font-weight: 100;
  }

  .popup-p span {
    font-size: 1.25rem;
  }
  
  @media screen and (max-width: 450px) {
    .h2-popup {
      font-size: 1.5rem;
    }
    .popup-p {
      font-size: 16px;
    }
  }

  @media screen and (max-width: 600px) {
    .popup-text {
      width: 340px;
    }
    .popup-content {
      width: 350px;
    }
  }

/* POP-UP ENDS */

/* POP-UP SOBRE */
.popup_sobre {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup_sobre-content {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    background-size: contain;
    padding: 0 20px 20px;
    text-align: center;
    border-radius: 8px;
    height: auto;
    width: 400px;
}

.popup_sobre_text h3 {
  margin: 0;
  line-height: normal;
  font-size: 35px;
}

.close {
  position: relative; /* Relativo al contenedor del popup */
  top: 10px;          /* A 10px del borde superior */
  left: 150px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
  background: none;   /* Sin fondo */
  border: none;
}

/* POP-UP SOBRE ENDS */

/* POP-UP ENVIAR */
.popup_enviar {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup_enviar-content {
  display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #fff;
    background-size: contain;
    padding: 0 20px 20px;
    text-align: center;
    border-radius: 8px;
    height: auto;
    width: 400px;
}

.popup_enviar_text h3 {
  margin: 0;
  line-height: normal;
  font-size: 35px;
}

.closeE {
  position: relative; /* Relativo al contenedor del popup */
  top: 10px;          /* A 10px del borde superior */
  left: 150px;
  font-size: 24px;
  cursor: pointer;
  color: #000;
  background: none;   /* Sin fondo */
  border: none;
}

/* POP-UP ENVIAR ENDS */

#recaptcha_inicio {
  display: flex;
  justify-content: center;
}

/* Disposición en filas y columnas (responsivo con flexbox) */
.row {
  display: flex;
  flex-wrap: wrap; /* Permite que las columnas se ajusten en pantallas pequeñas */
  gap: 20px;
  margin-top: 30px;
}

.column {
  flex: 1; /* Hace que cada columna ocupe el mismo espacio */
  padding: 10px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  text-align: center;
}

.column h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

/* Responsividad */
@media (max-width: 768px) {
  .column {
      flex: 100%; /* Las columnas ocuparán el 100% en pantallas pequeñas */
  }
}

/* Hero principal */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
}

/* Responsive para pantallas grandes */
@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }
}

/* Ocultar por defecto la imagen móvil */
.background-image.mobile {
  display: none;
}

/* Mostrar solo en móvil */
@media (max-width: 768px) {
  .background-image.pc {
    display: none;
  }
  .background-image.mobile {
    display: block;
  }
}

/* Ambas imágenes comparten estilo base */
.background-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.17); /* negro con 40% opacidad */
  pointer-events: none; /* permite clics a través del overlay si es necesario */
}

/* Iniciales y flecha */
.center-content {
  position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.iniciales {
  font-family: 'Playfair Display', serif;
  font-size: 100px;
  color: white;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5);
  margin: 0;
}

/* Responsive para pantallas grandes */
@media (max-width: 768px) {
  .iniciales {
    font-size: 80px;
  }
}

.letra-p {
  position: relative;
  top: 0px;
  left: 20px;
  font-weight: 100;
}

.letra-m {
  position: relative;
  top: 50px; /* Puedes ajustar más si hace falta */
  font-weight: 100;
  right: 20px;
}


.flecha-wrapper {
  animation: bounce 2s infinite;
}

.flecha {
  font-size: 1rem;
  color: white;
  transform: rotate(270deg); /* solo la rotación aquí */
  text-shadow: -2px 2px 4px black;
}

/* Bounce animación aplicada al wrapper */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

/* Segunda foto */
.segunda-foto-container {
  position: relative;
  margin-top: -30px;
  z-index: 1;
  display: flex;
  justify-content: center; /* centrar horizontal */
}

.segunda-foto-wrapper {
  width: 80%;
  max-width: 800px; /* opcional */
  height: 200px;
  overflow: hidden;
}

.segunda-foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

#countdown {
}

#countdown .countdown {
  margin-bottom: 0;
  font-size: 60px;
  color: #fff;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5)
}

#countdown .countdown span {
  margin: 0 20px;
  display: inline-block;
}

#countdown .countdown small {
  display: block;
  font-size: 16px;
  font-family: serif;
  font-weight: bold;
}

@media screen and (max-width: 920px) {
  #countdown .countdown {
    font-size: 30px;
  }
  #countdown .countdown span {
    margin: 0 10px;
    display: inline-block;
  }
}

@media screen and (max-width: 592px) {
  #countdown .countdown {
    font-size: 40px;
  }
  #countdown .countdown span {
    margin: 0 10px;
  }
}

.pareja {
  background-color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.contenido-pareja {
  max-width: 800px;
  margin: 0 auto;
}

/* Curvar "Nosotros" */
.curva-nosotros {
  width: 300px;
  height: 50px;
  margin: 0 auto 0 auto;
  display: block;
}

.curva-nosotros text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  fill: #333;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.nombres {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 469px) {
  .nombres {
    gap: 0;
  }
}

.nombre h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
}

.apellido {
  text-align: right;
  margin-top: -15px !important;
}

.nombre .apellido {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-top: 5px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 0;
}

.y {
  font-family: 'Allura', cursive;
  font-size: 2.5rem;
  color: #777;
  margin-top: -10px;
}

@media (max-width: 469px) {
  .y {
    margin-left: 20px;
  }
}

.texto_central {
  padding:0 20px 40px;
  text-align: center;
  background-color: #fff;
}

.contenedor-texto {
  margin: 0 auto;
  width: 90%;
  max-width: 800px;
}

.contenedor-texto p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

/* Responsive para pantallas grandes */
@media (min-width: 768px) {
  .contenedor-texto {
    width: 60%;
  }
}

.date-section {
  position: relative;
  background-image: url('img/pareja20.webp'); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.date-container {
  padding: 40px 20px;
  text-shadow: 4px 4px 10px rgba(0, 0, 0, 0.5)
}

.curva-dia {
  width: 300px;
  height: 50px;
  margin: 0 auto 0 auto;
  display: block;
}

.curva-dia text {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  fill: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
}

/* Fecha */
.fecha {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap; /* Para que en móvil se acomoden en columna */
}

.fecha div {
  font-family: 'Playfair Display', serif;
  color: #fff;
}

/* Número día */
.fecha .numero {
  font-size: 5rem;
  margin: 0 10px;
}

/* Mes */
.fecha .mes {
  font-size: 3rem;
  margin: 0 10px;
}

/* Año */
.fecha .anio {
  font-size: 2rem;
  margin: 0 10px;
}

/* Hora */
.hora {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
}

/* Responsive: en móvil, apilar fecha */
@media (max-width: 768px) {
  .fecha {
    flex-direction: column;
  }
}

.detalles {
  background-color: #ffffff; /* Fondo blanco */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
}

.cuadro-detalles {
  background-color: #8d765c; /* Solo el cuadro */
  color: white;
  padding: 40px 20px;
  max-width: 600px;
  margin: 1rem auto;
  min-width: 400px;
}

.cuadro-detalles h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 100;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: normal;
  color: #fff;
}

.cuadro-detalles p {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
}

.cuadro-detalles strong {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

@media (max-width: 768px) {
  .cuadro-detalles {
  min-width: 200px;
}
}

.botones {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-detalle {
  padding: 10px 20px;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  transition: transform 0.3s ease;
  width: 70%;
}

.btn-detalle:hover {
  transform: scale(1.1);
}

.itinerario {
  background-color: #fff;
  padding: 0 20px 4rem;
  display: flex;
  justify-content: center;
}

.contenedor-itinerario {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.contenedor-itinerario::before {
  content: '';
  position: absolute;
  top: 150px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background-color: #333;
  z-index: 1;
}

.titulo-itinerario {
  font-family: Baretta;
  font-size: 5rem;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 2px;
  font-weight: 100;
}


.fila-itinerario {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.lado-izquierdo {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  padding-right: 10px;
}

.lado-izquierdo img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border-radius: 10px;
}

.linea-central {
  flex: 0 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.punto {
  width: 14px;
  height: 14px;
  background-color: #333;
  border-radius: 50%;
  position: relative;
}

.lado-derecho {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 10px;
}

.lado-derecho h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #333;
  text-transform: uppercase;
  margin: 0;
  text-align: left;
}

.lado-derecho .hora {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: #550000; /* Borgoña */
  margin: 0;
  text-align: left;
}

.dresscode-section {
  text-align: center;
  padding: 2rem 2rem 6rem;
  background-color: #ffffff;
}

.dresscode-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 100;
}

.dresscode-formal {
  font-family: 'Baretta', serif; /* Asegúrate de cargar Baretta */
  font-size: 3rem;
  margin: 0;
}

.dresscode-note {
  font-size: 0.9rem;
  margin: 0.5rem 0 2rem;
}

.dresscode-images {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.dresscode-image {
  width: 50%;
  position: relative;
  left: 2%;
}

.dresscode-image img {
  display: block;
  max-width: 30%;
  height: auto;
}

@media (max-width: 768px) {
  .dresscode-image img {
    max-width: 100%;
  }
  .dresscode-image {
    left: 4%;
  }
}

/* Alinear las imágenes hacia el centro */
.dresscode-image.mujeres img {
  margin-left: auto; /* Se empuja hacia la derecha */
  transition: 0.2s;
}

.dresscode-image.caballeros img {
  margin-right: auto; /* Se empuja hacia la izquierda */
  transition: 0.2s;
}

.dresscode-image.caballeros img:hover,  
.dresscode-image.mujeres img:hover {
  transform: scale(1.1);
}

.dresscode-label {
  margin-top: 0.5rem;
  font-size: 1rem;
}

.dresscode-adorno {
  margin-top: 3rem;
  text-align: center;
}

.dresscode-adorno img {
  width: 20%;
  max-width: 100%;
  height: auto;
}

/* Adaptación para pantallas pequeñas */
@media (max-width: 768px) {
  .dresscode-adorno img {
    width: 60%;
  }
}

/* Colores no permitidos */
.colors {
  display: flex;
  justify-content: center;
  gap: 15px;               /* Espacio entre los círculos */
  margin: 30px 0 10px;     /* Espaciado arriba y abajo */
  flex-wrap: wrap;         /* Para que sean responsivos */
}

.color-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  /* Sombra sutil */
  transition: transform 0.3s;                /* Efecto hover */
}

.color-circle:hover {
  transform: scale(1.1);                     /* Efecto zoom al pasar el mouse */
}

/* Mensaje de colores no permitidos */
.no-colors-msg {
  font-size: 0.9rem;
  color: #555;
  margin-top: 15px;
  font-style: italic;
}

@media (max-width: 768px) {
  /* Mensaje de colores no permitidos */
  .no-colors-msg {
  font-size: 1rem;
  }
}


.imagen_ancha {
  display: flex;
  align-items: center;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
}

.imagen_ancha img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Mostrar solo en pantallas grandes (PC) */
.imagen-pc {
  display: block;
}

.imagen-movil {
  display: none;
}

/* Mostrar solo en pantallas pequeñas (móvil) */
@media (max-width: 768px) {
  .imagen-pc {
    display: none;
  }

  .imagen-movil {
    display: block;
  }
}

.mesa-de-regalos {
  text-align: center;
  padding: 60px 20px;
  font-family: 'Playfair Display', serif;
  background-color: #fff;
}

.titulo-mesa .linea1 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin: 0;
  color: #333;
}

.titulo-mesa .linea2 {
  font-family: 'Baretta', serif;
  font-size: 4rem;
  margin-top: -45px;
  color: #8d765c;
}

.frase-mesa {
  position: relative;
  font-size: 1rem;
  margin: 20px auto 60px;
  max-width: 600px;
  color: #555;
  z-index: 1;
}

/* Capa de fondo con avioncito */
.frase-mesa::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px; /* Ajusta tamaño del avioncito */
  height: 200px;
  background-image: url('img/avion2.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5; /* Controla opacidad del avion */
  transform: translate(-50%, -50%);
  z-index: 0;
}

.contenedor-mesas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contenedor-mesas a {
  display: block;
  width: 300px;
  max-width: 90%;
  transition: transform 0.3s ease;
}

.contenedor-mesas img {
  width: 40%;
  height: auto;
  border-radius: 10px;
}

.contenedor-mesas a:hover {
  transform: scale(1.1);
}

.mesa-con-numero {
  position: relative;
  display: inline-block;
  text-align: center;
}

.numero-mesa {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #555;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
}

.recomendacion-hospedaje {
  background-color: white;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 100;
  padding: 0 0 6rem 0;
}

.carrusel-contenedor {
  width: 90%;
  margin: 0 auto;
  position: relative; /* importante para las flechas */
}

.hospedaje-card {
  background-color: #8d765c; /* Solo el cuadro */
  color: white;
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.hospedaje-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 100;
  margin-bottom: 20px;
  letter-spacing: 2px;
  line-height: normal;
  color: #fff;
}

.hospedaje-card p {
  font-family: 'Playfair Display', serif;
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
}

.hospedaje-card strong {
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.hospedaje-card .telf {
  transition: 0.2s;
}

.hospedaje-card .telf:hover {
  transform: scale(1.1);
}

.recomendacion-hospedaje .linea1 {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin: 0;
  color: #333;
  font-weight: 100;
}

.recomendacion-hospedaje .linea2 {
  font-family: 'Baretta', serif;
  font-size: 5rem;
  margin-top: -55px;
  color: #8d765c;
  font-weight: 100;
}

.owl-carousel .card {
  background-color: #8d765c;
  color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.card .boton-hotel {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 14px;
  border: 1px solid white;
  color: white;
  text-decoration: none;
  transition: transform 0.3s;
}

.card .boton-hotel:hover {
  transform: scale(1.1);
}

.owl-nav {
  position: absolute;
  top: 40%;
  left: -40px;
  right: -40px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
  font-size: 50px;
}

/* Responsividad */
@media (max-width: 768px) {
  .owl-nav {
    left: -30px;
    right: -30px;
    font-size: 30px;
  }
}

.owl-nav button {
  background-color: #8d765c;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  opacity: 1;
  transform: scale(1.1);
  color: #4c4135 !important;
}

.owl-dots {
  text-align: center;
  margin-top: 10px;
}

.owl-dot span {
  background: #ccc;
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dot.active span {
  background: #8d765c;
  transform: scale(1.3);
}

.galeria {
  text-align: center;
  font-family: 'Playfair Display', serif;
  padding: 0 0 6rem 0;
  background-color: #fff;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Dos columnas en pantallas grandes */
  gap: 20px; /* Espacio entre las fotos */
  max-width: 80%; /* No abarcar todo el ancho de la pantalla */
  margin: 0 auto; /* Centrar la galería */
}

.gallery-item img {
  width: 100%; /* Hacer que las imágenes se ajusten al tamaño de su contenedor */
  height: auto;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: 1fr; /* Una sola columna en pantallas pequeñas */
  }
}

.rsvp-section {
  position: relative;
  background-image: url('img/pareja18.webp'); /* Reemplaza con la URL de tu imagen */
  background-size: cover; /* Asegura que la imagen cubra todo el fondo */
  background-position: center;
  height: auto; /* Ajusta la altura según tus necesidades */
}

.rsvp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Overlay negro con opacidad */
}

#invitados {
  text-align: center;
  padding-top: 4em;
  padding-bottom: 4rem;
  position: relative;
  z-index: 100;
}

@media screen and (max-width: 768px) {
  #invitados {
    margin: 2em 4em;
  }
}

.section-invitados .heading-style-h3 {
  color: #fff;
  font-size: 40px;
  line-height: 45px;
  margin: 0;
}

.section-invitados .heading-style-h4 {
  color: #fff;
  font-size: 15px;
  line-height: 20px;
  margin: 0;
}

.section-invitados .heading-style-h5 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 2.5rem;
  padding-top: 20px;
  margin: 0;
}

.section-invitados p {
  color: #fff;
  margin: 0;
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: background-color 0.3s ease;
}
.circle.filled {
  background-color: #8d765c;
}
.circles_container {
  display: flex; 
  gap: 10px; 
  justify-content: center;
  padding: 20px 0 5px 0;
}

.titulo-rsvp .linea {
  font-size: 1.5rem;
  letter-spacing: 1px;
  margin: 0;
  color: #fff;
  text-align: center;
}

/* Responsividad */
@media (max-width: 768px) {
  .titulo-rsvp .linea {
    font-size: 1.2rem;
  }
}

.btn-rsvp {
  padding: 10px 20px;
  border: 2px solid white;
  background-color: transparent;
  color: white;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  transition: transform 0.3s ease;
  width: 70%;
}

.btn-rsvp:hover {
  transform: scale(1.1);
  font-weight: bold;
}

.container-form {
  width: 100%;
  max-width: 50rem;
  position: relative;
  z-index: 100;
  justify-content: center;
}

.container-form {
  width: 100%;
  max-width: 50rem;
  position: relative;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 4rem;
}

.form-control {
  display: block;
  width: 100%;
  height: auto;
  padding: 10px 20px;
  font-size: 14px;
  line-height: 1.42857;
  color: #555555;
}

.row {
  margin-left: -15px;
  margin-right: -15px;
}

.row:before, .row:after {
  content: " ";
  display: table;
}

.row:after {
  clear: both;
}

.form-component-col-1 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-component-col-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 0.2fr 1fr 0.2fr 1fr;
  grid-auto-columns: 0.2fr 1fr 0.2fr 1fr;
  display: grid;
}

.form-input {
  border: 1px solid var(--text-color--text-primary);
  color: var(--text-color--text-primary);
  background-color: #0000;
  border-radius: 2.3125rem;
  min-height: 52px;
  margin-bottom: 1.25rem;
  padding: .9375rem 1.25rem;
  font-size: 1rem;
}

.form-input::placeholder {
  font-family: 'Playfair Display', serif;
  font-size: 12px;
  line-height: 1.375rem;
  font-weight: 100;
}

.form-input.is-text-area {
  resize: none;
  min-height: 10rem;
  padding-top: .75rem;
  font-size: 12px;
}

.input-spec, .select-spec {
  color: #ffffff;
  vertical-align: middle;
  background-color: #0000002e;
  width: 100%;
  height: 38px;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
}

.input-spec::placeholder, .select-spec::placeholder {
  color: #ffffff;
  font-family: 'Playfair Display', serif;
}

textarea.input-spec, textarea.select-spec {
  height: auto;
}

label {
  color: #fff;
}

.hashtag-section {
  background-color: #8d765c;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 4rem;
}

.hashtag-link {
  color: white;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: inline-block;
}

.hashtag-link:hover {
  transform: scale(1.05);
  opacity: 0.8;
}

/* Responsivo */
@media (max-width: 768px) {
  .hashtag-link {
    font-size: 1.8rem;
  }
}


.nota-section {
  background-color: #8d765c;
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 4rem;
}

.nota-link {
  color: white;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: inline-block;
}

/* Responsivo */
@media (max-width: 768px) {
  .nota-link {
    font-size: 1.2rem;
  }
}