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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #f7f5f2;
  color: #2b2b2b;
}


/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url("../assets/img/hero.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, .45),
    rgba(0, 0, 0, .35),
    rgba(0, 0, 0, .55)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  animation: fadeUp 1.8s ease forwards;
}

.hero-label {
  font-size: 12px;
  letter-spacing: .45em;
  font-weight: 500;
  margin-bottom: 22px;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 12vw, 110px);
  font-weight: 500;
  line-height: .95;
  margin-bottom: 24px;
}

.hero-date {
  font-size: 14px;
  letter-spacing: .28em;
  font-weight: 300;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-text {
  max-width: 420px;
  margin: 0 auto 34px;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(255, 255, 255, .88);
}

.hero-btn {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid rgba(255, 255, 255, .75);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: all .4s ease;
}

.hero-btn:hover {
  background: #fff;
  color: #2b2b2b;
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  z-index: 2;
  color: #fff;
  font-size: 22px;
  animation: bounce 1.8s infinite;
}
/*=========================================
ANIMACIÓN HERO
=========================================*/

.reveal{

    opacity:0;

    transform:translateY(35px);

    transition:
    opacity .9s ease,
    transform .9s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

/* Retrasos */

.delay-1{

    transition-delay:.15s;

}

.delay-2{

    transition-delay:.35s;

}

.delay-3{

    transition-delay:.55s;

}

.delay-4{

    transition-delay:.75s;

}

.delay-5{

    transition-delay:.95s;

}

.delay-6{

    transition-delay:1.15s;

}


/* ==================================================
   MÚSICA
================================================== */

.music-btn {
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .7);
  background: rgba(0, 0, 0, .25);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
  font-size: 18px;
  transition:
    background .35s ease,
    transform .35s ease;
}

.music-btn:hover {
  background: rgba(0, 0, 0, .4);
  transform: scale(1.05);
}

.music-btn.playing {
  animation: musicPulse 2s ease-in-out infinite;
}


/* ==================================================
   PADRES Y PADRINOS
================================================== */

.family-section {
  min-height: 100vh;
  background: #f8f6f3;
  padding: 160px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.family-container {
  max-width: 850px;
  margin: auto;
  text-align: center;
}

.family-small-title {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: #b89a63;
  margin-bottom: 35px;
}

.ornament {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #b89a63;
  margin-bottom: 45px;
}

.family-verse {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.55;
  color: #2d2d2d;
  font-weight: 400;
  max-width: 760px;
  margin: auto;
}

.family-cite {
  margin-top: 30px;
  font-size: 13px;
  letter-spacing: .30em;
  text-transform: uppercase;
  color: #999;
}

.family-divider {
  width: 120px;
  height: 1px;
  background: #d8c4a5;
  margin: 80px auto;
}

.family-label {
  font-size: 11px;
  letter-spacing: .45em;
  text-transform: uppercase;
  color: #b89a63;
  margin-bottom: 25px;
}

.family-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.2;
  color: #2d2d2d;
}

.family-block span {
  display: block;
  margin: 18px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  color: #b89a63;
}

.memory-text {
  font-size: 16px;
  color: #8a8a8a;
  font-style: italic;
  margin-bottom: 15px;
}

.family-block sup {
  font-size: 18px;
  color: #b89a63;
}


/* ==================================================
   FECHA Y CUENTA REGRESIVA
================================================== */

.countdown-section {
  min-height: 100vh;
  background: #ffffff;
  padding: 150px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countdown-container {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

.countdown-label {
  font-size: 12px;
  letter-spacing: .48em;
  text-transform: uppercase;
  color: #b89a63;
  margin-bottom: 38px;
}

.countdown-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 8vw, 96px);
  font-weight: 500;
  line-height: 1;
  color: #2d2d2d;
  margin-bottom: 34px;
  white-space: nowrap;
}

.date-line {
  width: 160px;
  height: 1px;
  background: #d8c4a5;
  margin: 0 auto 42px;
}

.countdown-text {
  font-size: 15px;
  color: #777;
  line-height: 1.8;
  max-width: 520px;
  margin: 0 auto 56px;
}

.countdown-line {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 54px;
  margin-bottom: 64px;
  white-space: nowrap;
}

.countdown-line div {
  text-align: center;
}

.countdown-line span {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 6vw, 78px);
  line-height: 1;
  color: #2d2d2d;
  font-weight: 400;
}

.countdown-line p {
  margin-top: 14px;
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: #b89a63;
}

.calendar-btn {
  display: inline-block;
  padding: 15px 0;
  border-bottom: 1px solid #b89a63;
  color: #2d2d2d;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition: all .4s ease;
}

.calendar-btn:hover {
  color: #b89a63;
  letter-spacing: .32em;
}

/* ==================================================
   CARRUSEL: UNA SOLA FOTO, SIN MARCO
================================================== */

.gallery-section {
  width: 100%;
  min-height: 100vh;
  padding: 110px 0;
  background: #f8f6f3;
  overflow: hidden;
}

.gallery-container {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.gallery-label {
  padding: 0 20px;
  margin-bottom: 20px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.gallery-title {
  max-width: 760px;
  padding: 0 20px;
  margin: 0 auto 55px;
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 500;
  line-height: 1.05;
}

/* Oculta la línea decorativa */

.gallery-divider {
  display: none;
}

/* Carrusel */

.carousel {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  touch-action: pan-y;
}

/*
  Este espacio conserva una sola altura.
  Las imágenes se colocan una encima de otra.
*/

.carousel-track {
  position: relative;
  width: 100%;
  height: min(75vw, 720px);
  min-height: 500px;
  overflow: hidden;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Todas las fotografías permanecen superpuestas */

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
  transition:
    opacity 1.2s ease,
    visibility 1.2s ease;
}

/* Solo una fotografía será visible */

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

/* Fotografía sin recuadro ni marco */

.carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Quita cualquier capa o sombra */

.carousel-shadow {
  display: none;
}

/* Quita las flechas */

.carousel-btn {
  display: none;
}

/* Puntos discretos */

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
}

.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d2c7b9;
  cursor: pointer;
  transition:
    width .4s ease,
    background .4s ease,
    border-radius .4s ease;
}

.carousel-dot.active {
  width: 25px;
  border-radius: 20px;
  background: #b89a63;
}

.gallery-text {
  max-width: 540px;
  padding: 0 25px;
  margin: 40px auto 0;
  color: #777;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.6;
}


/* ==================================================
   CARRUSEL EN CELULAR
================================================== */

@media (max-width: 768px) {

  .gallery-section {
    min-height: auto;
    padding: 90px 0;
  }

  .gallery-label {
    letter-spacing: .30em;
  }

  .gallery-title {
    margin-bottom: 42px;
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .carousel-track {
    width: 100%;
    height: 125vw;
    min-height: 460px;
    max-height: 650px;
  }

  .carousel-slide img {
    object-fit: cover;
    object-position: center;
  }

  .gallery-text {
    margin-top: 34px;
    font-size: 20px;
  }
}

@media (max-width: 390px) {

  .gallery-section {
    padding: 80px 0;
  }

  .gallery-title {
    font-size: 39px;
  }

  .carousel-track {
    height: 130vw;
    min-height: 440px;
  }

  .gallery-text {
    font-size: 19px;
  }
}
/* ==================================================
   CEREMONIA Y RECEPCIÓN
================================================== */

.event-section {
  min-height: 100vh;
  padding: 140px 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.event-small-title {
  margin-bottom: 24px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.event-title {
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(px, 8vw, 88px);
  font-weight: 500;
  line-height: 1;
}

.event-line {
  width: 110px;
  height: 1px;
  margin: 42px auto;
  background: #d8c4a5;
}

.event-intro {
  max-width: 540px;
  margin: 0 auto 75px;
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

.event-card {
  position: relative;
  padding: 10px 45px 20px;
}

.event-card:first-child {
  border-right: 1px solid rgba(184, 154, 99, .35);
}

.event-number {
  margin-bottom: 24px;
  color: #c6ae83;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
}

.event-card h3 {
  margin-bottom: 18px;
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 50px;
  font-weight: 500;
}

.event-time {
  color: #b89a63;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
}

.event-card-line {
  width: 60px;
  height: 1px;
  margin: 30px auto;
  background: #d8c4a5;
}

.event-card h4 {
  margin-bottom: 18px;
  color: #333;
  font-family: 'Cormorant Garamond', serif;
  font-size: 29px;
  font-weight: 500;
}

.event-address {
  margin-bottom: 34px;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}

.event-btn {
  display: inline-block;
  padding: 13px 26px;
  border: 1px solid #b89a63;
  color: #6e5b3b;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  transition:
    background .4s ease,
    color .4s ease;
}

.event-btn:hover {
  background: #b89a63;
  color: #ffffff;
}


/* ==================================================
   CEREMONIA Y RECEPCIÓN EN CELULAR
================================================== */

@media (max-width: 768px) {

  .event-section {
    min-height: auto;
    padding: 110px 22px;
  }

  .event-small-title {
    letter-spacing: .3em;
  }

  .event-title {
    font-size:clamp(30px, 8.5vw, 40px);;
  }

  .event-line {
    margin: 34px auto;
  }

  .event-intro {
    margin-bottom: 60px;
  }

  .event-grid {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .event-card {
    padding: 0 10px;
  }

  .event-card:first-child {
    padding-bottom: 65px;
    border-right: none;
    border-bottom: 1px solid rgba(184, 154, 99, .35);
  }

  .event-card h3 {
    font-size: 42px;
  }

  .event-card h4 {
    font-size: 25px;
  }
}
/* ==================================================
   ITINERARIO
================================================== */

.timeline-section {
  min-height: 100vh;
  padding: 140px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8f6f3;
}

.timeline-container {
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.timeline-label {
  margin-bottom: 20px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.timeline-title {
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
   font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.timeline-title-line {
  width: 100px;
  height: 1px;
  margin: 38px auto;
  background: #d8c4a5;
}

.timeline-intro {
  max-width: 530px;
  margin: 0 auto 80px;
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}


/* ==================================================
   LÍNEA DEL ITINERARIO
================================================== */

.timeline {
  position: relative;
  width: 100%;
  max-width: 610px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 55px;
  left: 50%;
  width: 3px;
  border-radius: 10px;

  background:
    linear-gradient(
      to bottom,
      #4a4847 0%,
      #4a4847 38%,
      #b77b68 38%,
      #b77b68 100%
    );

  transform: translateX(-50%);
}

.timeline-item {
  position: relative;

  display: grid;
  grid-template-columns: 1fr 70px 1fr;
  align-items: center;

  min-height: 165px;
}


/* ==================================================
   ICONOS
================================================== */

.timeline-icon {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  padding-right: 38px;

  color: #b77b68;
  text-align: right;
}

.timeline-icon svg {
  display: block;
  width: 88px;
  height: 88px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-icon-farewell {
  color: #b77b68;
}

.timeline-icon-farewell span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 39px;
  font-style: italic;
  font-weight: 400;
  white-space: nowrap;
}


/* ==================================================
   CORAZONES CENTRALES
================================================== */

.timeline-marker {
  position: relative;
  z-index: 3;

  justify-self: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;

  background: #b77b68;

  box-shadow:
    0 0 0 5px #f8f6f3;
}

.timeline-marker::after {
  content: "";

  position: absolute;
  top: 50%;
  left: 50%;

  width: 16px;
  height: 16px;
  background: url("../assets/img/timeline-heart.png") center / contain no-repeat;

  transform: translate(-50%, -50%);
}


/* Primeros marcadores oscuros */

.timeline-item:nth-child(1) .timeline-marker,
.timeline-item:nth-child(2) .timeline-marker {
  background: #4a4847;
}


/* ==================================================
   INFORMACIÓN
================================================== */

.timeline-content {
  padding-left: 38px;
  text-align: left;
}

.timeline-time {
  margin-bottom: 6px;

  color: #2d2d2d;

  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
}

.timeline-content h3 {
  color: #2d2d2d;

  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
}

.timeline-closing {
  margin-top: 68px;

  color: #746e67;

  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-style: italic;
}


/* ==================================================
   ITINERARIO EN TABLET
================================================== */

@media (min-width: 769px) and (max-width: 1023px) {

  .timeline {
    max-width: 590px;
  }

  .timeline-item {
    min-height: 155px;
  }

  .timeline-icon svg {
    width: 82px;
    height: 82px;
  }
}


/* ==================================================
   ITINERARIO EN CELULAR
================================================== */

@media (max-width: 768px) {

  .timeline-section {
    min-height: auto;
    padding: 110px 14px;
  }

  .timeline-label {
    letter-spacing: .30em;
  }

  .timeline-title {
    font-size: clamp(30px, 8.5vw, 40px);;
  }

  .timeline-title-line {
    margin: 32px auto;
  }

  .timeline-intro {
    max-width: 340px;
    margin-bottom: 65px;
    padding: 0 10px;
    font-size: 14px;
  }

  .timeline {
    width: 100%;
    max-width: 430px;
  }

  .timeline::before {
    top: 34px;
    bottom: 48px;
    left: 45%;
    width: 3px;
  }

  .timeline-item {
    grid-template-columns: 39% 12% 49%;
    min-height: 145px;
  }

  .timeline-icon {
    padding-right: 13px;
  }

  .timeline-icon svg {
    width: 71px;
    height: 71px;
    stroke-width: 2.5;
  }

  .timeline-icon-farewell span {
    font-size: 30px;
  }

  .timeline-marker {
    width: 25px;
    height: 25px;

    box-shadow:
      0 0 0 4px #f8f6f3;
  }

  .timeline-content {
    padding-left: 16px;
  }

  .timeline-time {
    margin-bottom: 5px;
    font-size: 21px;
  }

  .timeline-content h3 {
    font-size: 25px;
    line-height: 1.16;
  }

  .timeline-closing {
    margin-top: 52px;
    font-size: 27px;
  }
}


/* ==================================================
   CELULARES PEQUEÑOS
================================================== */

@media (max-width: 390px) {

  .timeline-section {
    padding: 95px 8px;
  }

  .timeline {
    max-width: 370px;
  }

  .timeline::before {
    left: 44%;
  }

  .timeline-item {
    grid-template-columns: 38% 12% 50%;
    min-height: 136px;
  }

  .timeline-icon {
    padding-right: 8px;
  }

  .timeline-icon svg {
    width: 64px;
    height: 64px;
  }

  .timeline-icon-farewell span {
    font-size: 26px;
  }

  .timeline-content {
    padding-left: 12px;
  }

  .timeline-time {
    font-size: 19px;
  }

  .timeline-content h3 {
    font-size: 22px;
  }
}
/* ==================================================
   CÓDIGO DE VESTIMENTA
================================================== */

.dresscode-section {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  padding: 140px 24px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.dresscode-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.dresscode-label {
  margin-bottom: 22px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.dresscode-title {
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 500;
  line-height: 1;
}

.dresscode-line {
  width: 100px;
  height: 1px;
  margin: 40px auto;
  background: #d8c4a5;
}

.dresscode-intro {
  max-width: 520px;
  margin: 0 auto 75px;
  color: #777;
  font-size: 15px;
  line-height: 1.8;
}


/* ==================================================
   DAMA Y CABALLERO
================================================== */

.dresscode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.dresscode-single {
  grid-template-columns: 1fr;
  max-width: 680px;
}

.dresscode-person {
  position: relative;
  text-align: center;
}

.dresscode-grid:not(.dresscode-single) .dresscode-person:first-child {
  padding-right: 40px;
  border-right: 1px solid rgba(184, 154, 99, .28);
}

.dresscode-grid:not(.dresscode-single) .dresscode-person:last-child {
  padding-left: 40px;
}

.dresscode-single .dresscode-person {
  padding: 0;
}

.dresscode-image-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.dresscode-image-wrap::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 70%;
  height: 24px;
  border-radius: 50%;
  background: rgba(45, 45, 45, .10);
  filter: blur(14px);
  transform: translateX(-50%);
  z-index: 1;
}

.dresscode-image {
  position: relative;
  z-index: 2;
  display: block;
  width: auto;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  border: none;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, .08));
}

.dresscode-number {
  margin-bottom: 12px;
  color: #b89a63;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
}

.dresscode-person h3 {
  margin-bottom: 16px;
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1;
}

.dresscode-description {
  max-width: 520px;
  margin: 0 auto;
  color: #777;
  font-size: 14px;
  line-height: 1.8;
}


/* ==================================================
   AVISO DEL COLOR BLANCO
================================================== */

.dresscode-notice {
  max-width: 700px;
  margin: 70px auto 0;
  padding: 30px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 1px solid rgba(184, 154, 99, .38);
  border-bottom: 1px solid rgba(184, 154, 99, .38);
}

.dresscode-notice-icon {
  flex-shrink: 0;
  color: #b89a63;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.dresscode-notice div {
  text-align: left;
}

.dresscode-notice-title {
  margin-bottom: 7px;
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 500;
}

.dresscode-notice-text {
  color: #777;
  font-size: 13px;
  line-height: 1.7;
}


/* ==================================================
   CÓDIGO DE VESTIMENTA EN CELULAR
================================================== */
@media (max-width: 768px) {

  .dresscode-section {
    min-height: auto;
    padding: 110px 20px;
  }

  .dresscode-label {
    letter-spacing: .3em;
    line-height: 1.8;
  }

  .dresscode-title {
    font-size: clamp(28px, 8vw, 36px);
    white-space: nowrap;
  }

  .dresscode-line {
    margin: 34px auto;
  }

  .dresscode-intro {
    margin-bottom: 60px;
  }

  .dresscode-grid {
    grid-template-columns: 1fr;
    gap: 70px;
    max-width: 480px;
  }

  .dresscode-grid:not(.dresscode-single) .dresscode-person:first-child {
    padding: 0 0 70px;
    border-right: none;
    border-bottom: 1px solid rgba(184, 154, 99, .28);
  }

  .dresscode-grid:not(.dresscode-single) .dresscode-person:last-child,
  .dresscode-single .dresscode-person {
    padding: 0;
  }

  .dresscode-image-wrap {
    height: 420px;
    margin-bottom: 32px;
  }

  .dresscode-person h3 {
    font-size: 38px;
  }

  .dresscode-description {
    max-width: 360px;
    font-size: 12px;
    line-height: 1.7;
  }

  .dresscode-notice {
    margin-top: 70px;
    padding: 28px 16px;
    gap: 16px;
  }

  .dresscode-notice-title {
    font-size: 21px;
  }
}

@media (max-width: 390px) {

  .dresscode-section {
    padding: 95px 14px;
  }

  .dresscode-title {
    font-size: clamp(27px, 8vw, 30px);
    white-space: nowrap;
  }

  .dresscode-image-wrap {
    height: 380px;
  }

  .dresscode-person h3 {
    font-size: 34px;
  }

  .dresscode-description {
    font-size: 12px;
    line-height: 1.7;
  }

  .dresscode-notice {
    align-items: flex-start;
  }

  .dresscode-notice-icon {
    font-size: 10px;
  }

}

/* ==================================================
   FOTO DE TRANSICIÓN PREMIUM
================================================== */

body {
  overflow-x: hidden;
}

/*
  La sección crea un recorrido corto y fluido.
  La imagen entra desde abajo y ocupa la pantalla.
*/

.photo-scroll-section {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 135vh;
  background: transparent;
}

/* Pantalla que contiene la fotografía */

.photo-scroll-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #111111;
  transform: translateY(100%);
  opacity: 0;
  will-change: transform, opacity;
}

/* Fotografía */

.photo-scroll-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: scale(1.08);
  will-change: transform;
}

/* Degradado fino */

.photo-scroll-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, .08) 0%,
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, .18) 100%
    );
}

/*
  La sección siguiente se coloca por encima
  cuando continúe el scroll.
*/

.photo-scroll-section + section {
  position: relative;
  z-index: 30;
  min-height: 100vh;
  background: #ffffff;
}


/* ==================================================
   LAPTOP Y ESCRITORIO
================================================== */

@media (min-width: 1024px) {

  .photo-scroll-section {
    height: 140vh;
  }

  .photo-scroll-stage {
    height: 100vh;
  }

  .photo-scroll-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}


/* ==================================================
   TABLET
================================================== */

@media (min-width: 769px) and (max-width: 1023px) {

  .photo-scroll-section {
    height: 135vh;
  }

  .photo-scroll-stage {
    height: 100vh;
  }

  .photo-scroll-image {
    object-fit: contain;
    object-position: center center;
    background: #111111;
  }
}


/* ==================================================
   MÓVIL — FOTO SIN FRANJAS NEGRAS
================================================== */

@media (max-width: 768px) {

  .photo-scroll-section {
    height: 125vh;
  }

  .photo-scroll-stage {
    width: 100%;
    height: 100vh;
    padding: 0;
    display: block;
    overflow: hidden;
    background: transparent;
  }

  .photo-scroll-image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;

    object-fit: cover;
    object-position: center center;

    border: 0;
    background: transparent;
  }

  .photo-scroll-overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, .05) 0%,
      rgba(0, 0, 0, 0) 50%,
      rgba(0, 0, 0, .12) 100%
    );
  }
}


/* ==================================================
   TELÉFONOS VERTICALES
================================================== */

@media (max-width: 768px) and (orientation: portrait) {

  .photo-scroll-image {
    object-position: center center;
  }
}


/* ==================================================
   TELÉFONOS HORIZONTALES
================================================== */

@media (max-width: 932px) and (orientation: landscape) {

  .photo-scroll-stage {
    height: 100vh;
  }

  .photo-scroll-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }
}


/* ==================================================
   CELULARES PEQUEÑOS
================================================== */

@media (max-width: 390px) {

  .photo-scroll-section {
    height: 120vh;
  }

  .photo-scroll-image {
    object-position: center center;
  }
}

/* ==================================================
   CELULARES PEQUEÑOS
================================================== */

@media (max-width: 390px) {

  .photo-scroll-section {
    height: 120vh;
  }

  .photo-scroll-image {
    max-height: 76vh;
  }
}


/* ==================================================
   MOVIMIENTO REDUCIDO
================================================== */

@media (prefers-reduced-motion: reduce) {

  .photo-scroll-stage {
    transform: none !important;
    opacity: 1 !important;
  }

  .photo-scroll-image {
    transform: none !important;
  }
}

  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 500;
  line-height: 1;
}

.gift-line {
  width: 100px;
  height: 1px;
  margin: 40px auto;
  background: #d8c4a5;
}

.gift-intro {
  max-width: 620px;
  margin: 0 auto 70px;
  color: #777;
  font-size: 15px;
  line-height: 1.9;
}

.gift-closing {
  max-width: 560px;
  margin: 55px auto 0;
  color: #746e67;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.6;
}

/* ==================================================
   REGALO / LLUVIA DE SOBRES
================================================== */

.gift-section {
  min-height: 100vh;
  padding: 140px 24px;
  background: #f8f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gift-container {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
  text-align: center;
}

.gift-label {
  margin-bottom: 22px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.gift-title {
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(54px, 8vw, 92px);
  font-weight: 500;
  line-height: 1;
}

.gift-line {
  width: 100px;
  height: 1px;
  margin: 40px auto;
  background: #d8c4a5;
}

.gift-intro {
  max-width: 620px;
  margin: 0 auto 70px;
  color: #777;
  font-size: 15px;
  line-height: 1.9;
}

.gift-closing {
  max-width: 560px;
  margin: 55px auto 0;
  color: #746e67;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.6;
}

/* ==================================================
   REGALO / LLUVIA DE SOBRES
================================================== */

.gift-section {
  min-height: 100vh;
  padding: 140px 24px;
  background: #f8f6f3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gift-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.gift-label {
  margin-bottom: 22px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.gift-title {
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.gift-line {
  width: 100px;
  height: 1px;
  margin: 40px auto;
  background: #d8c4a5;
}

.gift-intro {
  max-width: 640px;
  margin: 0 auto 70px;
  color: #777;
  font-size: 15px;
  line-height: 1.9;
}

.gift-closing {
  max-width: 580px;
  margin: 55px auto 0;
  color: #746e67;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.6;
}


/* ==================================================
   REGALO / LLUVIA DE SOBRES
================================================== */

.gift-section {
  width: 100%;
  min-height: 100vh;
  padding: 140px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f8f6f3;
}

.gift-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.gift-label {
  margin-bottom: 22px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.gift-title {
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 8vw, 36px);
  font-weight: 500;
  line-height: 1;
}

.gift-line {
  width: 100px;
  height: 1px;
  margin: 40px auto;
  background: #d8c4a5;
}

.gift-intro {
  max-width: 640px;
  margin: 0 auto 70px;
  color: #777;
  font-size: 15px;
  line-height: 1.9;
}

.gift-closing {
  max-width: 580px;
  margin: 55px auto 0;
  color: #746e67;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-style: italic;
  line-height: 1.6;
}


/* ==================================================
   TARJETA BANCARIA
================================================== */

.bank-card {
  position: relative;
  isolation: isolate;
  width: min(940px, 100%);
  min-height: 520px;
  margin: 0 auto;
  padding: 42px 50px 38px;
  overflow: hidden;
  border-radius: 30px;
  color: #ffffff !important;
  text-align: center;

  background:
    linear-gradient(
      135deg,
      #07185b 0%,
      #0b2b83 45%,
      #0e48a1 75%,
      #1269ad 100%
    );

  box-shadow:
    0 30px 70px rgba(10, 28, 79, .24),
    0 8px 22px rgba(10, 28, 79, .14);
}

.bank-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(255, 255, 255, .26),
      transparent 30%
    );
}

.bank-card-decoration {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 50%;
}

.decoration-one {
  top: -180px;
  right: -110px;
  width: 380px;
  height: 380px;
}

.decoration-two {
  right: 50px;
  bottom: -190px;
  width: 280px;
  height: 280px;
}


/* ==================================================
   ENCABEZADO
================================================== */

.bank-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.bank-card-brand {
  margin: 0;
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -.04em;
  -webkit-text-fill-color: #ffffff !important;
}

.bank-card-chip {
  width: 66px;
  height: 48px;
  padding: 7px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  border-radius: 9px;

  background:
    linear-gradient(
      135deg,
      #f6e2af,
      #cda451 55%,
      #f3d99a
    );
}

.bank-card-chip span {
  border: 1px solid rgba(90, 63, 18, .38);
  border-radius: 2px;
}

.bank-card-chip span:last-child {
  grid-column: 1 / 3;
}


/* ==================================================
   ETIQUETAS
================================================== */

.bank-card-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .76) !important;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  -webkit-text-fill-color: rgba(255, 255, 255, .76) !important;
}


/* ==================================================
   NÚMERO PRINCIPAL
================================================== */

.bank-card-primary {
  margin-top: 38px;
  text-align: center;
}

.bank-number {
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  text-decoration: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.bank-number span {
  display: inline-block;
  color: #ffffff !important;
  text-decoration: none !important;
  white-space: nowrap;
  -webkit-text-fill-color: #ffffff !important;
}

.bank-number-card {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: .42em;
  margin: 18px 0 22px;
  font-size: clamp(37px, 5vw, 56px);
  line-height: 1;
}


/* ==================================================
   CUENTA Y CLABE
================================================== */

.bank-information {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 28px;
  margin-top: 38px;
}

.bank-information-item {
  min-width: 0;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 18px;
  background: rgba(255, 255, 255, .06);
}

.bank-number-account,
.bank-number-clabe {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: .28em;
  min-height: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(25px, 3vw, 33px);
  line-height: 1;
}

.bank-number-clabe {
  font-size: clamp(22px, 2.65vw, 30px);
}


/* ==================================================
   TITULAR Y CONCEPTO
================================================== */

.bank-card-footer {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 30px;
  margin-top: 32px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.bank-footer-item {
  min-width: 0;
  text-align: center;
}

.bank-footer-value {
  display: block;
  color: #ffffff !important;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(23px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.18;
  overflow-wrap: anywhere;
  -webkit-text-fill-color: #ffffff !important;
}


/* ==================================================
   BOTONES
================================================== */

.bank-copy-btn {
  margin-top: 12px;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 40px;
  background: rgba(255, 255, 255, .10);
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-text-fill-color: #ffffff !important;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

.bank-copy-btn:hover,
.bank-copy-btn.copied {
  background: #ffffff;
  color: #0c318c !important;
  -webkit-text-fill-color: #0c318c !important;
  transform: translateY(-2px);
}


/* ==================================================
   BLOQUEO DE ENLACES AZULES EN iPHONE
================================================== */

.bank-card a,
.bank-card a:link,
.bank-card a:visited,
.bank-card a:hover,
.bank-card a:active,
.bank-card [x-apple-data-detectors],
.bank-card [x-apple-data-detectors="true"],
.bank-card [data-detectors] {
  color: #ffffff !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
  -webkit-text-fill-color: #ffffff !important;
}

.bank-card * {
  text-decoration: none;
}

.bank-card a[x-apple-data-detectors] {
  color: inherit !important;
  font: inherit !important;
  text-decoration: none !important;
  -webkit-text-fill-color: inherit !important;
}

/* ==================================================
   MÓVIL — TARJETA CENTRADA Y MÁS ALTA
================================================== */

@media (max-width: 768px) {

  .gift-section {
    min-height: auto;
    padding: 105px 12px;
  }

  .gift-label {
    padding: 0 12px;
    letter-spacing: .28em;
    line-height: 1.7;
  }

  .gift-title {
    padding: 0 12px;
    font-size: clamp(28px, 8vw, 36px);
  }

  .gift-line {
    margin: 32px auto;
  }

  .gift-intro {
    padding: 0 18px;
    margin-bottom: 48px;
    font-size: 14px;
  }

  /* Tarjeta más larga y sin datos ocultos */

  .bank-card {
    width: 100%;
    min-height: 720px;
    height: auto;
    padding: 24px 18px 30px;
    border-radius: 24px;
    overflow: visible;
    text-align: center;
  }

  /* Encabezado */

  .bank-card-top {
    align-items: center;
  }

  .bank-card-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 27px;
    font-weight: 700;
  }

  .bank-card-chip {
    width: 52px;
    height: 38px;
    padding: 5px;
    border-radius: 7px;
  }

  /* Número de tarjeta */

  .bank-card-primary {
    width: 100%;
    margin-top: 34px;
    text-align: center;
  }

  .bank-card-label {
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .16em;
    text-align: center;
  }

  .bank-number-card {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: .20em;
    margin: 18px auto 20px;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(20px, 5.8vw, 28px);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
  }

  /* Cuenta y CLABE */

  .bank-information {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
  }

  .bank-information-item {
    width: 100%;
    padding: 20px 14px;
    border-radius: 15px;
    text-align: center;
  }

  .bank-number-account,
  .bank-number-clabe {
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    margin: 8px auto 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
    text-align: center;
  }

  .bank-number-account {
    gap: .20em;
    font-size: clamp(22px, 5.9vw, 29px);
  }

  .bank-number-clabe {
    gap: .10em;
    font-size: clamp(16px, 4.25vw, 21px);
  }

  /* Titular y concepto visibles abajo */

  .bank-card-footer {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .bank-footer-item {
    width: 100%;
    padding: 0 8px;
    text-align: center;
  }

  .bank-footer-value {
    display: block;
    width: 100%;
    margin-top: 8px;
    color: #ffffff !important;
    font-family: 'Poppins', sans-serif;
    font-size: clamp(18px, 5vw, 23px);
    font-weight: 600;
    line-height: 1.35;
    text-align: center;
    overflow-wrap: anywhere;
    -webkit-text-fill-color: #ffffff !important;
  }

  /* Botones */

  .bank-copy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    margin-top: 14px;
    padding: 10px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    font-weight: 600;
    letter-spacing: .09em;
  }

  .gift-closing {
    padding: 0 16px;
    margin-top: 44px;
    font-size: 22px;
  }
}


/* ==================================================
   MÓVILES PEQUEÑOS
================================================== */

@media (max-width: 390px) {

  .gift-section {
    padding-left: 7px;
    padding-right: 7px;
  }

  .gift-title {
    font-size: 47px;
  }

  .bank-card {
    min-height: 740px;
    padding: 22px 11px 28px;
    border-radius: 19px;
  }

  .bank-card-brand {
    font-size: 24px;
  }

  .bank-card-chip {
    width: 45px;
    height: 34px;
  }

  .bank-number-card {
    gap: .12em;
    font-size: clamp(18px, 5.25vw, 22px);
  }

  .bank-number-account {
    font-size: clamp(20px, 5.35vw, 24px);
  }

  .bank-number-clabe {
    gap: .07em;
    font-size: clamp(14px, 3.75vw, 17px);
  }

  .bank-footer-value {
    font-size: clamp(17px, 4.55vw, 20px);
  }

  .bank-copy-btn {
    min-width: 140px;
    padding: 9px 12px;
    font-size: 7px;
  }
}
/* ==================================================
   RSVP ELEGANTE Y SUTIL
================================================== */

.rsvp-section {
  width: 100%;
  min-height: 100vh;
  padding: 140px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  overflow: hidden;
}

.rsvp-container {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.rsvp-label {
  margin-bottom: 22px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .42em;
  text-transform: uppercase;
}

.rsvp-title {
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 8.5vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.rsvp-line {
  width: 90px;
  height: 1px;
  margin: 38px auto;
  background: #d8c4a5;
}

.rsvp-intro {
  max-width: 590px;
  margin: 0 auto 68px;
  color: #777;
  font-size: 15px;
  line-height: 1.9;
}


/* ==================================================
   FORMULARIO SIN RECUADRO
================================================== */

.rsvp-form {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.rsvp-field {
  position: relative;
  width: 100%;
  margin-bottom: 42px;
}

.rsvp-field label {
  display: block;
  margin-bottom: 13px;
  color: #8d7550;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.rsvp-field label span {
  margin-left: 7px;
  color: #aaa198;
  font-size: 9px;
  font-weight: 400;
}

.rsvp-field input,
.rsvp-field select,
.rsvp-field textarea {
  width: 100%;
  padding: 12px 0 15px;
  border: none;
  border-bottom: 1px solid rgba(184, 154, 99, .42);
  border-radius: 0;
  outline: none;
  background: transparent;
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 25px;
  font-weight: 500;
  line-height: 1.3;
  transition:
    border-color .35s ease,
    padding-left .35s ease;
}

.rsvp-field select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 35px;

  background-image:
    linear-gradient(45deg, transparent 50%, #b89a63 50%),
    linear-gradient(135deg, #b89a63 50%, transparent 50%);

  background-position:
    calc(100% - 12px) 52%,
    calc(100% - 7px) 52%;

  background-size:
    5px 5px,
    5px 5px;

  background-repeat: no-repeat;
}

.rsvp-field textarea {
  min-height: 110px;
  resize: none;
}

.rsvp-field input::placeholder,
.rsvp-field textarea::placeholder {
  color: #b2aca5;
  font-weight: 400;
}

.rsvp-field input:focus,
.rsvp-field select:focus,
.rsvp-field textarea:focus {
  border-bottom-color: #9d7b45;
  box-shadow: none;
}

.rsvp-field small {
  display: block;
  margin-top: 10px;
  color: #aaa198;
  font-size: 10px;
  line-height: 1.6;
}


/* ==================================================
   BOTÓN
================================================== */

.rsvp-submit {
  display: block;
  width: auto;
  min-width: 310px;
  margin: 25px auto 0;
  padding: 15px 34px;
  border: 1px solid #b89a63;
  border-radius: 0;
  background: transparent;
  color: #6f5a38;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease;
}

.rsvp-submit:hover {
  background: #b89a63;
  color: #ffffff;
  transform: translateY(-2px);
}

.rsvp-privacy {
  max-width: 440px;
  margin: 18px auto 0;
  color: #aaa198;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

.rsvp-field.is-disabled {
  display: none;
}


/* ==================================================
   MÓVIL
================================================== */

@media (max-width: 768px) {

  .rsvp-section {
    min-height: auto;
    padding: 105px 22px;
  }

  .rsvp-label {
    letter-spacing: .28em;
    line-height: 1.7;
  }

  .rsvp-title {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .rsvp-line {
    margin: 32px auto;
  }

  .rsvp-intro {
    margin-bottom: 55px;
    font-size: 14px;
  }

  .rsvp-form {
    max-width: 100%;
  }

  .rsvp-field {
    margin-bottom: 36px;
  }

  .rsvp-field input,
  .rsvp-field select,
  .rsvp-field textarea {
    font-size: 22px;
  }

  .rsvp-submit {
    width: 100%;
    min-width: 0;
    padding: 16px 18px;
    font-size: 9px;
    letter-spacing: .15em;
  }
}


@media (max-width: 390px) {

  .rsvp-section {
    padding: 92px 16px;
  }

  .rsvp-title {
    font-size: 60px;
  }

  .rsvp-field input,
  .rsvp-field select,
  .rsvp-field textarea {
    font-size: 20px;
  }
}
/*==================================================
DESPEDIDA
==================================================*/

.farewell-section{
  position:relative;
  width:100%;
  height:100vh;
  overflow:hidden;
  display:flex;
  align-items:stretch;
  justify-content:center;
}

.farewell-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transform:scale(1.08);
}

.farewell-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      rgba(0,0,0,.42),
      rgba(0,0,0,.52)
    );
}

.farewell-content{
  position:relative;
  z-index:3;
  width:100%;
  max-width:700px;
  min-height:100vh;
  padding:90px 30px 42px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
  color:#fff;
}

.farewell-label{
  font-size:13px;
  letter-spacing:.45em;
  text-transform:uppercase;
  color:#d9c49a;
}

.farewell-line{
  width:90px;
  height:1px;
  background:#d9c49a;
  margin:35px auto auto;
}

.farewell-text{
  margin-top:auto;
  font-family:'Cormorant Garamond',serif;
  font-size:38px;
  margin-bottom:12px;
}

.farewell-content h2{
  font-family:'Cormorant Garamond',serif;
  font-size:68px;
  font-weight:500;
  line-height:1.1;
  margin-bottom:34px;
}

.farewell-sign{
  font-family:'Cormorant Garamond',serif;
  font-size:48px;
  line-height:1.5;
}

.farewell-heart{
  margin:24px 0;
  font-size:40px;
  color:#d9c49a;
}

.farewell-btn{
  display:inline-block;
  padding:15px 34px;
  border:1px solid rgba(255,255,255,.5);
  color:#fff;
  text-decoration:none;
  letter-spacing:.2em;
  font-size:12px;
  transition:.35s;
}

.farewell-btn:hover{
  background:#fff;
  color:#000;
}


/*==================================================
DESPEDIDA EN CELULAR
==================================================*/

@media (max-width: 768px) {

  .farewell-content{
    max-width:420px;
    padding:74px 18px 34px;
  }

  .farewell-label{
    font-size:10px;
    letter-spacing:.28em;
    line-height:1.7;
  }

  .farewell-line{
    margin:24px auto auto;
  }

  .farewell-text{
    font-size:30px;
    margin-bottom:10px;
  }

  .farewell-content h2{
    margin-bottom:24px;
    font-size:clamp(38px, 10vw, 48px);
    white-space:nowrap;
  }

  .farewell-sign{
    font-size:38px;
    line-height:1.25;
  }

  .farewell-heart{
    margin:20px 0;
  }
}

@media (max-width: 390px) {

  .farewell-content{
    padding:62px 16px 28px;
  }

  .farewell-content h2{
    font-size:36px;
  }
}
/*=========================================
ANIMACIONES DE SCROLL
=========================================*/

.reveal{

    opacity:0;

    transform:translateY(70px);

    transition:
    opacity .9s ease,
    transform .9s ease;

    will-change:opacity,transform;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}


/*--------------------------------*/

.reveal-left{

    opacity:0;

    transform:translateX(-80px);

    transition:.9s;

}

.reveal-left.active{

    opacity:1;

    transform:translateX(0);

}


/*--------------------------------*/

.reveal-right{

    opacity:0;

    transform:translateX(80px);

    transition:.9s;

}

.reveal-right.active{

    opacity:1;

    transform:translateX(0);

}


/*--------------------------------*/

.reveal-zoom{

    opacity:0;

    transform:scale(.92);

    transition:1s;

}

.reveal-zoom.active{

    opacity:1;

    transform:scale(1);

}
.reveal-zoom {
  opacity: 0;
  transform: scale(.92);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal-zoom.active {
  opacity: 1;
  transform: scale(1);
}
/* ==================================================
   PORTADA SOBRE
================================================== */

body.envelope-locked {
  overflow: hidden;
}

.envelope-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 35%,
      #fffdf9 0%,
      #f7f2ea 55%,
      #ece3d7 100%
    );
  opacity: 1;
  visibility: visible;
  transition:
    opacity .85s ease,
    visibility .85s ease;
}

.envelope-intro.is-finished {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.envelope-scene {
  width: min(94vw, 520px);
  text-align: center;
  perspective: 1400px;
}

.envelope {
  position: relative;
  width: 100%;
  aspect-ratio: 0.68 / 1;
  max-height: 82vh;
  margin: 0 auto;
  overflow: hidden;
  background: #b97864;
  box-shadow:
    0 24px 70px rgba(54, 26, 19, .24);
}

/* Fondo */

.envelope-back {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .06),
      transparent 36%
    ),
    #efe5d9;
}

/* Carta interior */

.envelope-letter {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 10%;
  z-index: 2;
  min-height: 58%;
  padding: 60px 22px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f6efe7;
  color: #604b3f;
  transform: translateY(45%);
  transition:
    transform 1.05s cubic-bezier(.22, .8, .25, 1);
  box-shadow: 0 10px 34px rgba(74, 45, 33, .15);
}

.envelope-small {
  margin-bottom: 18px;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: #a47f62;
}

.envelope-letter h2 {
  margin: 0 0 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 10vw, 66px);
  font-weight: 500;
  line-height: .95;
}

.envelope-date {
  font-size: 11px;
  letter-spacing: .23em;
  text-transform: uppercase;
}

/* Laterales */

.envelope-left,
.envelope-right,
.envelope-bottom,
.envelope-flap {
  position: absolute;
  pointer-events: none;
}

.envelope-left {
  inset: 0 50% 0 0;
  z-index: 4;
  background: #e8ddd1;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.envelope-right {
  inset: 0 0 0 50%;
  z-index: 4;
  background: #e3d7ca;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.envelope-bottom {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  height: 55%;
  background: #f2e9df;
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

/* Solapa superior */

.envelope-flap {
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: 54%;
  background: #e7dbcf;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform-origin: top center;
  transform: rotateX(0deg);
  backface-visibility: hidden;
  transition:
    transform .9s cubic-bezier(.55, .08, .28, .92),
    z-index 0s linear .45s;
}

/* Sello */

.envelope-seal {
  position: absolute;
  top: 49%;
  left: 50%;
  z-index: 10;
  width: 126px;
  height: 126px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 35% 28%,
      #ffd482 0%,
      #eaa745 38%,
      #c97b28 73%,
      #a55d1f 100%
    );
  color: #8b531f;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow:
    0 11px 25px rgba(89, 43, 15, .28),
    inset 0 0 0 6px rgba(255, 216, 139, .26),
    inset 0 -7px 14px rgba(116, 55, 14, .20);
  transition:
    transform .35s ease,
    opacity .35s ease;
}

.envelope-seal::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(122, 67, 23, .25);
  border-radius: 50%;
}

.envelope-seal span,
.envelope-seal strong,
.envelope-seal small {
  position: relative;
  z-index: 2;
  display: block;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.envelope-seal span {
  font-size: 20px;
  font-style: italic;
}

.envelope-seal strong {
  margin: 4px 0;
  font-size: 27px;
  font-weight: 500;
}

.envelope-seal small {
  font-family: 'Manrope', sans-serif;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.envelope-seal:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.envelope-help {
  margin-top: 22px;
  color: rgba(255, 255, 255, .84);
  font-size: 10px;
  letter-spacing: .24em;
  text-transform: uppercase;
  animation: envelopeHint 1.8s ease-in-out infinite;
}

/* Apertura */

.envelope-intro.is-opening .envelope-flap {
  z-index: 1;
  transform: rotateX(180deg);
}

.envelope-intro.is-opening .envelope-seal {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.72);
}

.envelope-intro.is-opening .envelope-letter {
  transform: translateY(-4%);
}

.envelope-intro.is-opening .envelope-help {
  opacity: 0;
}

@keyframes envelopeHint {
  0%,
  100% {
    opacity: .55;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}


/* ==================================================
   SOBRE EN LAPTOP
================================================== */

@media (min-width: 769px) {

  .envelope-scene {
    width: min(78vw, 520px);
  }

  .envelope {
    aspect-ratio: 0.72 / 1;
    max-height: 84vh;
  }
}


/* ==================================================
   SOBRE EN MÓVIL
================================================== */

@media (max-width: 768px) {

  .envelope-intro {
    align-items: stretch;
  }

  .envelope-scene {
    width: 100%;
    height: 100%;
  }

  .envelope {
    width: 100%;
    height: 100%;
    max-height: none;
    aspect-ratio: auto;
    box-shadow: none;
  }

  .envelope-seal {
    width: 118px;
    height: 118px;
  }

  .envelope-letter {
    left: 8%;
    right: 8%;
    bottom: 8%;
  }

  .envelope-help {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 24px;
    z-index: 20;
    margin: 0;
  }
}
/* ==================================================
   PORTADA INICIAL CON IMAGEN
================================================== */

html,
body {
  width: 100%;
  margin: 0;
}

body.cover-locked {
  height: 100%;
  overflow: hidden;
  touch-action: none;
}

.cover-intro {
  position: fixed;
  inset: 0;
  z-index: 99999;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #efe7de;
  opacity: 1;
  visibility: visible;

  transition:
    opacity .8s ease,
    visibility .8s ease;
}

.cover-intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cover-intro-button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #efe7de;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cover-intro-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;

  transform: scale(1);
  transition:
    transform 1.05s cubic-bezier(.22, .75, .25, 1),
    filter .8s ease;
}

.cover-intro-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, .03) 0%,
      rgba(0, 0, 0, 0) 65%,
      rgba(0, 0, 0, .14) 100%
    );
}

/*
  Brillo sutil en el área inferior.
  Puedes moverlo cambiando bottom, left,
  width y height.
*/

.cover-intro-pulse {
  position: absolute;
  left: 50%;
  bottom: 5.5%;
  width: 220px;
  height: 78px;
  border-radius: 50%;
  pointer-events: none;

  background:
    radial-gradient(
      ellipse at center,
      rgba(255, 220, 157, .30) 0%,
      rgba(255, 220, 157, .10) 42%,
      transparent 72%
    );

  transform: translateX(-50%);
  animation: coverPulse 2.1s ease-in-out infinite;
}

.cover-intro-help {
  position: absolute;
  left: 50%;
  bottom: 2.5%;
  z-index: 3;
  margin: 0;
  color: #725e4c;
  font-family: 'Manrope', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  white-space: nowrap;

  transform: translateX(-50%);
  animation: coverHelp 1.8s ease-in-out infinite;
}


/* ==================================================
   ANIMACIÓN AL ABRIR
================================================== */

.cover-intro.is-opening .cover-intro-image {
  transform: scale(1.055);
  filter: brightness(1.04);
}

.cover-intro.is-opening .cover-intro-help,
.cover-intro.is-opening .cover-intro-pulse {
  opacity: 0;
}

@keyframes coverPulse {

  0%,
  100% {
    opacity: .48;
    transform: translateX(-50%) scale(.94);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes coverHelp {

  0%,
  100% {
    opacity: .55;
    transform: translate(-50%, 0);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -4px);
  }
}


/* ==================================================
   LAPTOP Y ESCRITORIO
================================================== */

@media (min-width: 769px) {

  .cover-intro {
    padding: 24px;
    background:
      radial-gradient(
        circle at center,
        #f7f1eb 0%,
        #e8ddd3 100%
      );
  }

  .cover-intro-button {
    max-width: 570px;
    height: calc(100vh - 48px);
    margin: 0 auto;
    border-radius: 20px;

    box-shadow:
      0 28px 75px rgba(68, 45, 31, .20);
  }

  .cover-intro-image {
    object-fit: contain;
  }
}


/* ==================================================
   MÓVIL
================================================== */

@media (max-width: 768px) {

  .cover-intro-button {
    width: 100%;
    height: 100%;
  }

  .cover-intro-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .cover-intro-pulse {
    bottom: 5%;
    width: 190px;
    height: 70px;
  }

  .cover-intro-help {
    bottom: calc(16px + env(safe-area-inset-bottom));
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
  }
}


/* ==================================================
   MÓVILES MUY ALTOS
================================================== */

@media (max-width: 768px) and (min-aspect-ratio: 9 / 18) {

  .cover-intro-image {
    object-position: center center;
  }
}


/* ==================================================
   MOVIMIENTO REDUCIDO
================================================== */

@media (prefers-reduced-motion: reduce) {

  .cover-intro-image,
  .cover-intro,
  .cover-intro-help,
  .cover-intro-pulse {
    animation: none !important;
    transition-duration: .01ms !important;
  }
}
/* ==================================================
   TÍTULO PRINCIPAL DEL EVENTO
================================================== */

.event-main-title {
  margin-bottom: 18px;
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}


/* ==================================================
   SUBTÍTULO CEREMONIA Y RECEPCIÓN
================================================== */

.event-subtitle {
  color: #b89a63;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: .28em;
  text-transform: uppercase;
}


/* ==================================================
   AVISO PARA ADULTOS
================================================== */

.adults-notice {
  max-width: 680px;
  margin: 0 auto 80px;
  padding: 30px 36px;
  border-top: 1px solid rgba(184, 154, 99, .35);
  border-bottom: 1px solid rgba(184, 154, 99, .35);
  text-align: center;
}

.adults-notice-label {
  margin-bottom: 14px;
  color: #b89a63;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
}

.adults-notice-text {
  margin: 0;
  color: #6f6a64;
  font-family: 'Cormorant Garamond', serif;
  font-size: 23px;
  font-weight: 500;
  line-height: 1.6;
}


/* ==================================================
   AJUSTES EN MÓVIL
================================================== */

@media (max-width: 768px) {

  .event-main-title {
    font-size: clamp(30px, 8.5vw, 40px);
    white-space: nowrap;
  }

  .event-subtitle {
    font-size: 12px;
    letter-spacing: .22em;
  }

  .adults-notice {
    margin-bottom: 62px;
    padding: 26px 18px;
  }

  .adults-notice-text {
    font-size: 21px;
    line-height: 1.55;
  }
}
/*=========================================
PADRES Y PADRINOS PREMIUM
=========================================*/

.family-title{

    margin:0;

    color:#b89a63;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(38px,5vw,56px);

    font-weight:500;

    line-height:1.1;

    text-align:center;

}

.family-title-line{

    width:90px;

    height:1px;

    margin:22px auto 34px;

    background:#d8c5a1;

}

.family-name{

    margin:0;

    color:#2d2d2d;

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(30px,4vw,40px);

    font-weight:400;

    line-height:1.35;

    text-align:center;

}

.family-and{

    display:block;

    margin:16px 0;

    color:#b89a63;

    font-family:'Cormorant Garamond',serif;

    font-size:34px;

    font-style:italic;

}

.memory-text{

    margin:0 0 18px;

    color:#9a9a9a;

    font-size:16px;

    font-style:italic;

    text-align:center;

}

@media(max-width:768px){

    .family-title{

        font-size:34px;

    }

    .family-name{

        font-size:28px;

        line-height:1.45;

    }

    .family-and{

        font-size:28px;

        margin:14px 0;

    }

}
/* ==================================================
   COMPARTIR FOTOS
================================================== */

.photo-share-section {
  min-height: 100vh;
  padding: 140px 24px;
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f6f3 100%
    );
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-share-container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.photo-share-label {
  margin-bottom: 24px;
  color: #b89a63;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .45em;
  text-transform: uppercase;
}

.photo-share-title {
  margin: 0;
  color: #2d2d2d;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 500;
  line-height: 1.05;
}

.photo-share-line {
  width: 110px;
  height: 1px;
  margin: 42px auto;
  background: #d8c4a5;
}

.photo-share-text {
  max-width: 560px;
  margin: 0 auto 46px;
  color: #777;
  font-size: 15px;
  line-height: 1.9;
}

.photo-share-btn {
  display: inline-block;
  padding: 15px 34px;
  border: 1px solid #b89a63;
  background: transparent;
  color: #6e5b3b;
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  transition:
    background .35s ease,
    color .35s ease,
    transform .35s ease;
}

.photo-share-btn:hover {
  background: #b89a63;
  color: #ffffff;
  transform: translateY(-2px);
}


/* ==================================================
   COMPARTIR FOTOS EN CELULAR
================================================== */

@media (max-width: 768px) {

  .photo-share-section {
    min-height: auto;
    padding: 105px 22px;
  }

  .photo-share-label {
    letter-spacing: .28em;
    line-height: 1.7;
  }

  .photo-share-title {
    font-size: clamp(30px, 8.5vw, 40px);
  }

  .photo-share-line {
    margin: 34px auto;
  }

  .photo-share-text {
    margin-bottom: 38px;
    font-size: 14px;
    line-height: 1.8;
  }

  .photo-share-btn {
    width: 100%;
    max-width: 320px;
    padding: 16px 18px;
    font-size: 9px;
    letter-spacing: .18em;
  }
}


@media (max-width: 390px) {

  .photo-share-section {
    padding: 92px 16px;
  }

  .photo-share-title {
    font-size: 30px;
  }

  .photo-share-text {
    font-size: 13px;
  }
}
/* TARJETA BBVA COMPACTA EN CELULAR */

@media screen and (max-width: 768px) {

  .bank-card {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: calc(100% - 16px) !important;
    max-width: 430px !important;
    min-height: 0 !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 18px 14px 20px !important;
    overflow: hidden !important;
    border-radius: 20px !important;
    color: #ffffff !important;
    background: linear-gradient(
      135deg,
      #07185b 0%,
      #0b2b83 45%,
      #0e48a1 75%,
      #1269ad 100%
    ) !important;
  }

  .bank-card-top {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
  }

  .bank-card-brand {
    font-size: 23px !important;
  }

  .bank-card-chip {
    width: 44px !important;
    height: 32px !important;
    padding: 4px !important;
  }

  .bank-card-primary {
    margin-top: 16px !important;
  }

  .bank-card-label {
    margin-bottom: 5px !important;
    font-size: 7px !important;
  }

  .bank-number-card {
    margin: 8px auto 10px !important;
    gap: .12em !important;
    font-size: clamp(16px, 4.8vw, 21px) !important;
  }

  .bank-information {
    display: grid !important;
    grid-template-columns: .8fr 1.2fr !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  .bank-information-item {
    display: block !important;
    min-width: 0 !important;
    padding: 11px 5px !important;
    border-radius: 11px !important;
  }

  .bank-number-account,
  .bank-number-clabe {
    display: flex !important;
    min-height: 0 !important;
    margin-top: 5px !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  .bank-number-account {
    font-size: clamp(13px, 4vw, 17px) !important;
  }

  .bank-number-clabe {
    font-size: clamp(9px, 2.8vw, 12px) !important;
  }

  .bank-card-footer {
    display: grid !important;
    grid-template-columns: 1.15fr .85fr !important;
    gap: 8px !important;
    margin-top: 14px !important;
    padding-top: 13px !important;
  }

  .bank-footer-value {
    margin-top: 4px !important;
    font-size: clamp(10px, 3.2vw, 14px) !important;
    line-height: 1.2 !important;
  }

  .bank-copy-btn {
    display: inline-flex !important;
    min-width: 0 !important;
    margin-top: 7px !important;
    padding: 7px 9px !important;
    font-size: 7px !important;
  }
}


/* ==================================================
   TÍTULOS DE EVENTO IGUALES A ITINERARIO EN CELULAR
================================================== */

@media (max-width: 768px) {

  .timeline-title,
  .event-main-title,
  .event-title,
  .event-subtitle,
  .event-card h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(30px, 8.5vw, 40px) !important;
    font-weight: 500 !important;
    line-height: 1 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
  }

  .event-main-title,
  .event-subtitle {
    white-space: normal !important;
  }
}
