/* --- START OF FILE styles.css --- */
/* Estilos para la pantalla de carga */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #86A7C6;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
}

.loader-content {
  text-align: center;
}

.initials {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  color: white;
  animation: fadeInOut 2s infinite;
}

@keyframes fadeInOut {
  0% {
      opacity: 0.3;
      transform: scale(0.95);
  }
  50% {
      opacity: 1;
      transform: scale(1);
  }
  100% {
      opacity: 0.3;
      transform: scale(0.95);
  }
}

/* Clase para ocultar el loader */
.loader-wrapper.hidden {
  opacity: 0;
  pointer-events: none;
}
/* Estilos específicos para la página de mesa de regalos */
.mesa-regalos-page {
    min-height: 100vh;
    padding: 8rem 2rem;
    background-color: #fff;
}

.lista-regalos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.categoria-regalos {
    background: rgba(134, 167, 198, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.categoria-regalos h3 {
    color: var(--azul);
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.categoria-regalos ul {
    list-style: none;
    padding: 0;
}

.categoria-regalos li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(134, 167, 198, 0.2);
    color: #333;
    font-size: 1.1rem;
}

.mensaje-regalo-container {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2.5rem;
    background: rgba(134, 167, 198, 0.05);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(134, 167, 198, 0.1);
}

.mensaje-regalo-content {
    position: relative;
    padding: 1rem;
}

.mensaje-regalo-texto {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a4a4a;
    text-align: center;
    letter-spacing: 0.3px;
    margin: 0;
}

@media (max-width: 768px) {
    .mensaje-regalo-container {
        margin: 2rem 1rem;
        padding: 1.5rem;
    }
    
    .mensaje-regalo-texto {
        font-size: 1.1rem;
        line-height: 1.6;
    }
}
/* Estilos para la lista de regalos interactiva */
.regalo-lista {
    list-style: none;
    padding: 0;
}

.regalo-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    color: #333;
    transition: all 0.3s ease;
}

.regalo-btn:hover {
    background-color: rgba(134, 167, 198, 0.1);
}

.flecha {
    transition: transform 0.2s ease-in-out;
}

.flecha.active {
    transform: rotate(-90deg);
}

.regalo-detalle {
    display: none;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 0.5rem 0;
    border-radius: 8px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.regalo-detalle.active {
    display: block;
    opacity: 1;
    max-height: 1000px;
    padding: 1rem;
}

.regalo-detalle img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    margin: 0 auto;
    transform: translateY(20px);
    opacity: 0;
    transition: all 1.0s ease-in-out 0.9s;
}

.regalo-detalle.active img {
    transform: translateY(0);
    opacity: 1;
}

.regalo-info {
    padding: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    transition: all 2.0s ease-in-out 0.3s;
}

.regalo-info p {
    text-align: justify;
    line-height: 1.5;
    color: #333;
}

.regalo-detalle.active .regalo-info {
    transform: translateY(0);
    opacity: 1;
}

.regalo-info h4 {
    text-align: justify;
    margin: 0 0 0.2rem;
    color: #86A7C6;
}

@media (max-width: 768px) {
    .regalo-detalle {
        grid-template-columns: 1fr;
    }
}

.categoria-regalos li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .mesa-regalos-page {
        padding: 6rem 1rem;
    }

    .lista-regalos {
        grid-template-columns: 1fr;
    }

    .categoria-regalos {
        padding: 1.5rem;
    }
}
.seccion-transferencia {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    margin-top: 2rem;
}

.contenedor-transferencia {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.info-transferencia {
    margin-top: 2rem;
}

.tarjeta-bancaria {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.encabezado-tarjeta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.encabezado-tarjeta i {
    font-size: 2rem;
    color: #86A7C6;
}

.detalles-bancarios {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.dato {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.dato label {
    font-weight: bold;
    color: #86A7C6;
}

.dato span {
    font-family: monospace;
    font-size: 1.1em;
}

@media (max-width: 768px) {
    .dato {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}
body {
  overflow-x: hidden;
}

.agendar-section {
    padding: 6rem 2rem;
    background: #86A7C6;
    text-align: center;
}

.agendar-section h2 {
    font-family: 'Fraunces', serif;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.agendar-section p {
    font-family: 'Fraunces', serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 300;
}

@media (max-width: 768px) {
    .agendar-section h2 {
        font-size: 2rem;
    }

    .agendar-section p {
        font-size: 1rem;
    }
}

.calendar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calendar-date {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}


.google-calendar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 5rem;
    background: linear-gradient(45deg, #86A7C6, #EDC967);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.google-calendar-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #EDC967, #86A7C6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.google-calendar-btn:hover::before {
    opacity: 1;
}

.google-calendar-btn i,
.google-calendar-btn span {
    position: relative;
    z-index: 1;
}

.google-calendar-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .agendar-section {
        padding: 4rem 1rem;
    }

    .calendar-container {
        padding: 1.5rem;
        margin: 2rem auto;
    }

    .calendar-day {
        font-size: 2.5rem;
    }

    .calendar-year {
        font-size: 1.8rem;
    }

    .google-calendar-btn {
        padding: 0.8rem 1.5rem;
    }
}

/* Importación de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Boldonse&family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Meow+Script&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500&display=swap');

/* Colores base */
:root {
  --azul: #86A7C6;
  --amarillo: #EDC967;
  --blanco: #FFFFFF;
}

/* Estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: var(--blanco);
    color: #000000;
    padding-top: 0;
}

/* Estilos del header y navegación */
.header-navegacion {
    background-color: #fff;
    padding: 1rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.062);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos del menú desktop */
.menu-desktop {
    width: auto;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.menu-desktop ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.menu-desktop a {
    text-decoration: none;
    color: rgba(0, 0, 0, 0.603);
    font-weight: 250;
    font-family: Fraunces;  
    transition: color 0.3s ease;
    font-size: 1rem;
}

.menu-desktop a:hover {
    color: rgb(0, 0, 0);
}

/* Estilos del nuevo menú hamburguesa */
.event-wrapper > .event-wrapper-inp {
  display: none;
}

.event-wrapper {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: white;
    background-color: var(--azul);
    padding: 3px 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    height: 2.5rem;
    width: fit-content;
    position: fixed;
    right: auto;
    left: 1rem;
    top: 1rem;
    cursor: pointer;
    justify-content: space-between;
    z-index: 2;
}

.bar {
  display: flex;
  height: 50%;
  width: 20px;
  flex-direction: column;
  gap: 3px;
}

.bar-list {
  --transform: -25%;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: rgb(255, 255, 255);
  transition: all 0.4s;
  position: relative;
}

.menu-container {
  background-color: rgb(255, 253, 249);
  color: var(--azul);
  border-radius: 10px;
  position: absolute;
  width: 150px;
  left: 0;
  top: 100%;
  overflow: hidden;
  clip-path: inset(10% 50% 90% 50% round 10px);
  transition: all 0.4s;
}

.menu-list {
  --delay: 0.4s;
  --trdelay: 0.15s;
  padding: 8px 10px;
  border-radius: inherit;
  transition: background-color 0.2s 0s;
  position: relative;
  transform: translateY(30px);
  opacity: 0;
}

.menu-list a {
  text-decoration: none;
  color: var(--azul);
  display: block;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
}

.menu-list::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  background-color: rgba(0, 0, 0, 0.3);
  width: 95%;
}

.menu-list:hover {
  background-color: rgb(206, 206, 206);
}

.event-wrapper-inp:checked ~ .menu-container {
  clip-path: inset(0% 0% 0% 0% round 10px);
}

.event-wrapper-inp:checked ~ .menu-container .menu-list {
  transform: translateY(0);
  opacity: 1;
}

.event-wrapper-inp:checked ~ .menu-container .menu-list:nth-child(1) {
  transition:
    transform 0.4s var(--delay),
    opacity 0.4s var(--delay);
}

.event-wrapper-inp:checked ~ .menu-container .menu-list:nth-child(2) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 1)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 1));
}

.event-wrapper-inp:checked ~ .menu-container .menu-list:nth-child(3) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 2)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 2));
}

.event-wrapper-inp:checked ~ .menu-container .menu-list:nth-child(4) {
  transition:
    transform 0.4s calc(var(--delay) + (var(--trdelay) * 3)),
    opacity 0.4s calc(var(--delay) + (var(--trdelay) * 3));
}

.event-wrapper-inp:checked ~ .bar > .top {
  transform-origin: top right;
  transform: translateY(var(--transform)) rotate(-45deg);
}

.event-wrapper-inp:checked ~ .bar > .middle {
  transform: translateX(-50%);
  opacity: 0;
}

.event-wrapper-inp:checked ~ .bar > .bottom {
  transform-origin: bottom right;
  transform: translateY(calc(var(--transform) * -1)) rotate(45deg);
}

/* Media queries para responsividad */
@media (max-width: 768px) {
    .menu-desktop {
        display: none;
    }
    
    .event-wrapper {
        display: flex;
    }

    .header-navegacion {
        background-color: transparent;
        box-shadow: none;
    }
}

@media (min-width: 769px) {
    .event-wrapper {
        display: none;
    }
    
    .menu-desktop {
        display: flex;
    }
}

header.hero {
  background-color: rgb(0, 0, 0);
  color: var(--blanco);
  text-align: center;
  padding: 3rem 2rem;
}

section {
  padding: 0.1rem 1rem;
  border-bottom: 1px solid #eee;
}

h2 {
  color: var(--azul);
  margin-bottom: 1rem;
}

form input, form select, form button {
  display: block;
  margin: 0.5rem 0;
  padding: 0.2rem;
  width: 100%;
  max-width: 400px;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.galeria img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.btn-whatsapp {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
}

footer {
  text-align: center;
  background-color: var(--azul);
  color: var(--blanco);
  padding: 2rem;
}

/* Estilos para títulos */
h2, h3, h4, h5, h6 {
    font-family: 'Fraunces', serif;
}

/* Estilos para el hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('img/bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 20, 20, 0.397);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  text-align: center;
  padding: 2rem;
}
.hero h1 {
    font-family: 'Fraunces', serif;
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 15rem;
    font-weight: 300;
}

.hero p {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

/* Estilos para el contador */
.simply-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.simply-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 1rem;
    min-width: 100px;
    text-align: center;
}

.simply-amount {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.simply-word {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Ajustes responsivos para el hero */
@media (max-width: 768px) {
  .hero {
      padding: 1rem;
      min-height: 100vh;
  }

  .hero-content {
      padding: 1rem;
      margin-top: 4rem;
  }

  .hero h1 {
      font-size: 2.5rem;
      margin-bottom: 8rem;
  }

  .hero p {
      font-size: 1.2rem;
  }

  /* Ajustes para el botón de confirmación */
  .hero .group {
      width: 100%;
      max-width: 300px;
      margin: 0 auto;
  }

  .hero .group a {
      width: 100%;
      font-size: 0.9rem;
      padding: 0.8rem 1.5rem;
  }

  /* Ajustes para el contador */
  .countdown-container {
      flex-wrap: wrap;
      justify-content: center;
      gap: 1rem;
  }

  .countdown-item {
      min-width: 70px;
  }

  .countdown-item .number {
      font-size: 1.8rem;
  }

  .countdown-item .label {
      font-size: 0.7rem;
  }
}

/* Ajustes para pantallas muy pequeñas */
@media (max-width: 380px) {
  .hero h1 {
      font-size: 2rem;
      margin-bottom: 6rem;
  }

  .hero p {
      font-size: 1rem;
  }

  .hero .group a {
      font-size: 0.8rem;
      padding: 0.7rem 1.2rem;
  }
}

/* Estilos específicos para el contenedor de padrinos */
.padres-container:last-of-type {
    margin: 2rem auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    padding: 0 1rem;
}

.padres-container:last-of-type .padres {
    width: 100%;
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.padres-container:last-of-type .padres:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.padres-container:last-of-type .padres h3 {
    color: white;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

/* Ajustes responsivos para el contenedor de padrinos */
@media (max-width: 768px) {
    .padres-container:last-of-type {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .padres-container:last-of-type .padres {
        padding: 2rem 1.5rem;
    }
}

.wedding-date {
    font-family: 'Fraunces', serif;
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
}

.wedding-date::before,
.wedding-date::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: rgb(255, 255, 255);
    position: absolute;
    left: 0;
}

.wedding-date::before {
    top: -10px;
}

.wedding-date::after {
    bottom: -10px;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    color: rgb(255, 255, 255);
    text-align: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
}

.countdown-item .number {
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Fraunces', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.countdown-item .label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Fraunces', serif;
}

/* Responsive design */
@media (max-width: 768px) {
    .countdown-container {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 60px;
    }

    .countdown-item .number {
        font-size: 2rem;
    }

    .countdown-item .label {
        font-size: 0.7rem;
    }
}
.nuestros-padres {
  background: linear-gradient(to right, #86A7C6, #a8c3d9);
  padding: 6rem 2rem;
  text-align: center;
}

.nuestros-padres h2 {
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.padres-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.padres-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2.5rem 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.padres-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.padres-item i {
  font-size: 2rem;
  color: white;
  margin-bottom: 1.5rem;
}

.padres-item h3 {
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.padres-item p {
  color: white;
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

@media (max-width: 768px) {
  .padres-container {
      grid-template-columns: 1fr;
      gap: 1.5rem;
  }

  .nuestros-padres h2 {
      font-size: 2rem;
  }

  .padres-item {
      padding: 2rem 1.5rem;
  }
}
.poema-hero {
  background: linear-gradient(rgba(134, 167, 198, 0.3), rgba(134, 167, 198, 0.3)), url('img/bg2.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
}

.poema-hero-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  max-width: 800px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(134, 167, 198, 0.2);
}

.poema-hero-content::before {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 6rem;
  font-family: 'Fraunces', serif;
  color: rgba(134, 167, 198, 0.2);
  line-height: 1;
}

.poema-texto {
  font-family: 'Fraunces', serif;
  text-align: center;
  position: relative;
  z-index: 1;
}

.poema-texto p:first-child {
  font-size: 2rem;
  line-height: 1.6;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

.poema-texto p:last-child {
  font-size: 1.2rem;
  color: #86A7C6;
  font-style: italic;
}

@media (max-width: 768px) {
  .poema-hero {
      min-height: 50vh;
      padding: 2rem 1rem;
  }

  .poema-hero-content {
      padding: 2rem;
  }

  .poema-texto p:first-child {
      font-size: 1.5rem;
  }

  .poema-texto p:last-child {
      font-size: 1rem;
  }
}
.itinerario-section {
    position: relative;
    background-image: url('img/bm.jpg');
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
}

.itinerario-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.itinerario-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: black;
    max-width: 800px;
    padding: 3rem;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(8px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.096);
}

.itinerario-content h2 {
    color: black;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Fraunces', serif;
    position: relative;
    display: inline-block;
}

.itinerario-content h2::after {
    display: none;
}

.itinerario-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.itinerario-content .map-link {
    display: inline-block;
    padding: 0.8rem 2rem;
    background-color: var(--amarillo);
    color: #131313;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.itinerario-content .map-link:hover {
    background-color: var(--blanco);
    transform: translateY(-2px);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 2rem auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(8, 8, 8, 0.11);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--amarillo);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.timeline-icon i {
    font-size: 1.5rem;
    color: #008fc7;
}

.timeline-content {
    width: calc(50% - 50px);
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: left;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
}

.timeline-content h3 {
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-family: 'Fraunces', serif;
}

.timeline-content .time {
    font-size: 1.5rem;
    color: rgb(0, 0, 0);
    margin-bottom: 0.5rem;
    font-family: 'Fraunces', serif;
}

.timeline-content .location {
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: #000;
}

.timeline-content .address {
    font-size: 0.9rem;
    opacity: 0.8;
    font-style: italic;
    margin-bottom: 1rem;
    color: #666;
}

.location-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--amarillo);
    color: #000000;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.location-btn:hover {
    background-color: var(--blanco);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 60px;
    }

    .timeline-icon {
        left: 0;
        transform: none;
        width: 50px;
        height: 50px;
    }

    .timeline-content {
        width: 100%;
        margin: 0 !important;
    }

    .timeline-icon i {
        font-size: 1.2rem;
    }

    .itinerario-content {
        padding: 2rem 1rem;
    }
}

.dress-code {
  padding: 4rem 2rem;
  background-color: #f8fafc;
}

.dress-code h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2.5rem;
  color: #1f2937;
}

.dress-code-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  margin-top: 2rem;
}

.dress-code h3 {
  font-size: 1.3em;
  color: #374151;
  margin-bottom: 1.5rem;
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 200;
}

.dress-code h4 {
  font-size: 1.4rem;
  color: #4b5563;
  margin-bottom: 0.5rem;
}

.dress-code-content {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.dress-code-content.hidden {
    display: none;
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Agregar delays escalonados para los iframes */
.dress-code-content.slide-in iframe:nth-child(1) { transition-delay: 0.2s; }
.dress-code-content.slide-in iframe:nth-child(2) { transition-delay: 0.3s; }
.dress-code-content.slide-in iframe:nth-child(3) { transition-delay: 0.4s; }

.dress-code img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.outfit-inspo {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.096);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
    transition-delay: 0.2s;
}

.outfit-inspo.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.outfit-inspo h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
    font-family: 'Fraunces', serif;
}

.outfit-inspo p {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
}

/* Retrasos escalonados para los elementos del dress code */
.dress-code-content.animate-in .dress-item:nth-child(1) { transition-delay: 0.3s; }
.dress-code-content.animate-in .dress-item:nth-child(2) { transition-delay: 0.5s; }
.dress-code-content.animate-in .dress-item:nth-child(3) { transition-delay: 0.7s; }

@media (max-width: 768px) {
    .dress-code h2 {
        font-size: 2rem;
    }

    .dress-code-content {
        padding: 1.5rem;
    }

    .dress-code-content h3,
    .outfit-inspo h3 {
        font-size: 1.5rem;
    }

    .dress-item h4 {
        font-size: 1.1rem;
    }

    .dress-item p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
  #dress-code .flex {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    padding: 0 1rem;
  }

  #dress-code button {
    width: 100%;
    max-width: 250px;
  }
}


/* Línea decorativa específica para DRESS CODE */
#dress-code .linea-decorativa {
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #000000, transparent);
  margin: 1.5rem auto;
}

/* Línea decorativa específica para ITINERARIO */
#itinerario .linea-decorativa {
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #000000, transparent);
  margin: 1.5rem auto;
}

/* Ajustar espaciado en ITINERARIO para simetría */
.itinerario-content h2 {
  margin-bottom: 1.5rem;
}

/* Ajustar el espacio después de la línea decorativa */
#itinerario .linea-decorativa {
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #000000, transparent);
  margin: 1.5rem auto;
}

/* Ajustar el espacio antes del timeline */
.timeline {
  margin-top: 3rem; /* Aumentado para crear simetría */
}



/* Estilos para la sección de Viaje y Estadía */
.viaje-estadia-section {
  background-color: #86A7C6;
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.viaje-estadia-section h2 {
  color: white;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 300;
  margin-bottom: 1.5rem;
  font-family: 'Fraunces', serif;
  position: relative;
}

.viaje-estadia-section h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  margin: 1.5rem auto;
}

.viaje-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: white;
}

.hoteles-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hotel-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 0.6s ease forwards;
}

.hotel-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hotel-image-container {
  position: relative;
  overflow: hidden;
  padding-top: 66.67%;
  border: 3px solid var(--amarillo);
  border-radius: 15px 15px 0 0;
}

.hotel-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-image {
  transform: scale(1.1);
}

.hotel-info {
  padding: 1.5rem;
}

.hotel-info h3 {
  color: white;
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.hotel-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background-color: var(--amarillo);
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.hotel-btn:hover {
  background-color: white;
  color: var(--azul);
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animación escalonada para las tarjetas */
.hotel-card:nth-child(1) { animation-delay: 0.2s; }
.hotel-card:nth-child(2) { animation-delay: 0.4s; }
.hotel-card:nth-child(3) { animation-delay: 0.6s; }

@media (max-width: 768px) {
  .viaje-estadia-section {
    padding: 4rem 1rem;
  }

  .hoteles-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hotel-info h3 {
    font-size: 1.1rem;
  }
}

/* === CSS Responsivo General (Workik Grid - wk- classes) === */
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0;
  /* Ahora puedes usar las fuentes importadas como 'Poppins', 'Fraunces', etc. */
  /* Ejemplo: font-family: 'Poppins', sans-serif; */
}

/* --- Clases de rejilla wk- (si las necesitas) --- */
.wk-desk-1 { width: 8.333333%; }
.wk-desk-2 { width: 16.666667%; }
.wk-desk-3 { width: 25%; }
.wk-desk-4 { width: 33.333333%; }
.wk-desk-5 { width: 41.666667%; }
.wk-desk-6 { width: 50%; }
.wk-desk-7 { width: 58.333333%; }
.wk-desk-8 { width: 66.666667%; }
.wk-desk-9 { width: 75%; }
.wk-desk-10 { width: 83.333333%; }
.wk-desk-11 { width: 91.666667%; }
.wk-desk-12 { width: 100%; }

@media (max-width: 1024px) {
  .wk-ipadp-1 { width: 8.333333%; }
  .wk-ipadp-2 { width: 16.666667%; }
  .wk-ipadp-3 { width: 25%; }
  .wk-ipadp-4 { width: 33.333333%; }
  .wk-ipadp-5 { width: 41.666667%; }
  .wk-ipadp-6 { width: 50%; }
  .wk-ipadp-7 { width: 58.333333%; }
  .wk-ipadp-8 { width: 66.666667%; }
  .wk-ipadp-9 { width: 75%; }
  .wk-ipadp-10 { width: 83.333333%; }
  .wk-ipadp-11 { width: 91.666667%; }
  .wk-ipadp-12 { width: 100%; }
}

@media (max-width: 768px) {
  .wk-tab-1 { width: 8.333333%; }
  .wk-tab-2 { width: 16.666667%; }
  .wk-tab-3 { width: 25%; }
  .wk-tab-4 { width: 33.333333%; }
  .wk-tab-5 { width: 41.666667%; }
  .wk-tab-6 { width: 50%; }
  .wk-tab-7 { width: 58.333333%; }
  .wk-tab-8 { width: 66.666667%; }
  .wk-tab-9 { width: 75%; }
  .wk-tab-10 { width: 83.333333%; }
  .wk-tab-11 { width: 91.666667%; }
  .wk-tab-12 { width: 100%; }
}

@media (max-width: 500px) {
  .wk-mobile-1 { width: 8.333333%; }
  .wk-mobile-2 { width: 16.666667%; }
  .wk-mobile-3 { width: 25%; }
  .wk-mobile-4 { width: 33.333333%; }
  .wk-mobile-5 { width: 41.666667%; }
  .wk-mobile-6 { width: 50%; }
  .wk-mobile-7 { width: 58.333333%; }
  .wk-mobile-8 { width: 66.666667%; }
  .wk-mobile-9 { width: 75%; }
  .wk-mobile-10 { width: 83.333333%; }
  .wk-mobile-11 { width: 91.666667%; }
  .wk-mobile-12 { width: 100%; }
}


.galeria-section {
  padding: 4rem 2rem;
  background-color: #1b1b1b;
}

.galeria-section h2 {
  color: white;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-family: 'Fraunces', serif;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.galeria-item:hover {
  transform: scale(1.05);
}

.galeria-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.galeria-overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  transition: bottom 0.3s ease;
  text-align: center;
  font-family: 'Fraunces', serif;
}

.galeria-item:hover img {
  transform: scale(1.1);
}

.galeria-item:hover .galeria-overlay {
  bottom: 0;
}

.galeria-overlay span {
  font-size: 1.2rem;
  font-weight: 300;
}

@media (max-width: 768px) {
  .galeria-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 1rem;
  }

  .galeria-section h2 {
    font-size: 2rem;
  }
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 900%;
  max-height: 90vh;
  object-fit: contain;
  justify-content: center;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 25px;
  color: white;
  font-size: 35px;
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
}

.close-modal:hover {
  color: #999;
}

.whatsapp-section {
  background-image: url('img/pases.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 4rem 2rem;
}

.historia-section {
  background-image: url('img/1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 3rem 1rem;
  position: relative;
  overflow: hidden;
}

.historia-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.568);
  z-index: 1;
}

.historia-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.historia-content-wrapper {
  width: 100%;
  color: white;
}

.historia-content-wrapper h2 {
  font-family: Fraunces, serif;
  font-size: 3.5rem;
  color: var(--blanco);
  margin-bottom: 2rem;
  text-align: center;
  font-weight: 300;
  letter-spacing: 2px;
}

.historia-content {
  text-align: justify;
  padding: 2.5rem;
  
}

.historia-content p {
  font-family: 'Fraunces', serif;
  margin-bottom: 1.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.historia-content p:first-of-type {
  font-size: 1.4rem;
  color: var(--amarillo);
  font-style: italic;
  text-align: center;
  margin-bottom: 2rem;
}

.historia-content p:not(:first-of-type) {
  font-size: 1.1rem;
  font-weight: 300;
}

.historia-content p:last-child {
  font-style: italic;
  color: var(--amarillo);
  text-align: center;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .historia-section {
      padding: 4rem 1rem;
  }

  .historia-container {
      padding: 0 1rem;
  }

  .historia-content-wrapper h2 {
      font-size: 2.8rem;
  }

  .historia-content {
      padding: 1.5rem;
  }

  .historia-content p:first-of-type {
      font-size: 1.2rem;
  }

  .historia-content p:not(:first-of-type) {
      font-size: 1rem;
  }

  .historia-content p:last-child {
      font-size: 1.1rem;
  }
}
.whatsapp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.whatsapp-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 600px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.whatsapp-section h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, #ffffff, transparent);
  margin: 1.5rem auto;
}

.whatsapp-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn-whatsapp {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: #86A7C6;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-whatsapp:hover {
  background-color: transparent;
  border-color: #86A7C6;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
    .modal img {
        max-width: 95%;
        max-height: 60vh;
        object-fit: contain;
        margin: 0 auto;
        border-radius: 8px;
    }

    .close-modal {
        top: 10px;
        right: 15px;
        font-size: 30px;
    }

    .whatsapp-section {
    min-height: 40vh;
    padding: 3rem 1rem;
  }

  .whatsapp-section h2 {
    font-size: 2rem;
  }

  .whatsapp-section p {
    font-size: 1rem;
  }
}
/* Estilos para la sección de Mesa de Regalos */
#mesa-regalos {
  background-color: #ffffff;
  padding: 6rem 2rem;
  position: relative;
  text-align: center;
  color: #000000;
}

#mesa-regalos .mesa-regalos-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem;
  border-radius: 15px;
}

#mesa-regalos h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--azul);
  margin-bottom: 1.5rem;
}

#mesa-regalos .linea-decorativa {
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--azul), transparent);
  margin: 1.5rem auto;
}

#mesa-regalos p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #000000;
}

#mesa-regalos .regalos-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

#mesa-regalos .regalo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background-color: var(--azul);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

#mesa-regalos .regalo-link:hover {
  background-color: var(--amarillo);
  transform: translateY(-3px);
  color: #000;
}

@media (max-width: 768px) {
  #mesa-regalos {
      padding: 4rem 1.5rem;
  }

  #mesa-regalos .mesa-regalos-content {
      padding: 2rem 1rem;
  }

  #mesa-regalos h2 {
      font-size: 2rem;
  }

  #mesa-regalos p {
      font-size: 1rem;
  }

  #mesa-regalos .regalos-links {
      flex-direction: column;
      gap: 1rem;
  }

  #mesa-regalos .regalo-link {
      width: 100%;
      justify-content: center;
  }
}

.reglas-section {
    padding: 6rem 2rem;
    background: #fff;
    text-align: center;
}

.reglas-section h2 {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  color: var(--azul);
  margin-bottom: 1.5rem;
}

.reglas-section h2::after {
  content: '';
  display: block;
  width: 60%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--azul), transparent);
  margin: 1.5rem auto;
}

.sugerencias-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}

.sugerencia-item {
    background: rgba(134, 167, 198, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.sugerencia-item:hover {
    transform: translateY(-5px);
}

.sugerencia-item i {
    font-size: 2rem;
    color: #86A7C6;
    margin-bottom: 1rem;
}

.sugerencia-item h3 {
    color: #333;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.sugerencia-item p {
    color: #666;
    line-height: 1.6;
}

.sugerencia-lista {
  list-style: none;
  padding: 0;
  text-align: left;
}

.sugerencia-lista li {
  margin-bottom: 0.5rem;
  color: #666;
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.sugerencia-lista li:before {
  content: "•";
  color: var(--azul);
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
    .sugerencias-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .reglas-section {
        padding: 3rem 1rem;
    }

    .reglas-section h2 {
        font-size: 2rem;
    }

    .sugerencia-item {
        padding: 1.5rem;
    }
}

.form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  background-color: #fff;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  margin: 2rem auto;
  box-shadow: 0 8px 24px rgba(134, 167, 198, 0.15);
}

.form .title {
  font-size: 2rem;
  color: var(--azul);
  font-weight: 600;
  letter-spacing: -1px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
  font-family: 'Fraunces', serif;
  margin: 0;
}

.title::before, .title::after {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 0px;
  background-color: var(--azul);
}

.title::before {
  width: 18px;
  height: 18px;
}

.title::after {
  width: 18px;
  height: 18px;
  animation: pulse 1s linear infinite;
}

.message {
  color: rgba(88, 87, 87, 0.822);
  font-size: 1rem;
  margin: 0;
}

.flex {
  display: flex;
  width: 100%;
  gap: 15px;
}

.form label {
  position: relative;
  width: 100%;
}

.form label .input {
  width: 100%;
  padding: 15px;
  outline: 0;
  border: 1px solid rgba(134, 167, 198, 0.3);
  border-radius: 10px;
  background-color: transparent;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form label .input + span {
  position: absolute;
  left: 10px;
  top: 15px;
  color: #86A7C6;
  font-size: 0.9em;
  cursor: text;
  transition: 0.3s ease;
  pointer-events: none;
}

.form label .input:placeholder-shown + span {
  top: 15px;
  font-size: 0.9em;
}

.form label .input:focus + span,
.form label .input:valid + span {
  top: -10px;
  font-size: 0.7em;
  font-weight: 600;
  background-color: white;
  padding: 0 5px;
}

.form label .input:valid + span {
  color: var(--azul);
}

.form label .input:focus {
  border-color: var(--azul);
}

.submit {
  border: none;
  outline: none;
  background-color: var(--azul);
  padding: 15px;
  border-radius: 10px;
  color: #fff;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

.submit:hover {
  background-color: #7596b5;
  transform: translateY(-2px);
}

@keyframes pulse {
  from {
    transform: scale(0.9);
    opacity: 1;
  }

  to {
    transform: scale(1.8);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .flex {
    flex-direction: column;
    gap: 10px;
  }

  .form {
    margin: 1rem;
    padding: 20px;
  }
}