@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Montserrat:wght@300;400;500;600&family=Parisienne&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  -webkit-focus-ring-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #1a1a2e;
  color: #fff;
  overflow-x: hidden;
}

a,
button {
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

section {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% center;
  }
  100% {
    background-position: 200% center;
  }
}

@keyframes rotateIn {
  from {
    transform: rotate(-10deg) scale(0.8);
    opacity: 0;
  }
  to {
    transform: rotate(0) scale(1);
    opacity: 1;
  }
}

@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(180, 140, 220, 0.7);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(180, 140, 220, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(180, 140, 220, 0);
  }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 30% 20%,
      rgba(147, 112, 219, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 80%,
      rgba(138, 43, 226, 0.1) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(75, 0, 130, 0.08) 0%,
      transparent 60%
    );
  pointer-events: none;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(180, 140, 220, 0.5);
  border-radius: 50%;
  animation: float 4s ease-in-out infinite;
}

.hero-content {
  text-align: center;
  z-index: 10;
  padding: 20px;
}

.hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(180, 140, 220, 0.8);
  margin-bottom: 10px;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 5px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  color: #b48cdc;
  line-height: 1;
  margin-bottom: 5px;
  text-shadow: 0 0 30px rgba(180, 140, 220, 0.4);
}

.hero-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 10px;
  color: #b48cdc;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-date {
  font-size: 0.85rem;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-btn {
  display: inline-block;
  padding: 14px 45px;
  background: linear-gradient(135deg, #b48cdc 0%, #9370db 100%);
  color: #1a1a2e;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  border-radius: 30px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(147, 112, 219, 0.4);
  animation: fadeInUp 1s ease-out 0.9s both;
  border: none;
  cursor: pointer;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(147, 112, 219, 0.6);
}

/* ============ COUNTDOWN ============ */
.countdown {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
  padding: 50px 20px;
  position: relative;
}

.countdown::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(147, 112, 219, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.countdown-title {
  font-family: "Parisienne", cursive;
  font-size: 2.2rem;
  color: #b48cdc;
  margin-bottom: 40px;
  text-align: center;
  animation: fadeInUp 0.8s ease-out both;
}

.countdown-timer {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  z-index: 10;
}

.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 0.8s ease-out both;
}

.count-block:nth-child(1) {
  animation-delay: 0.1s;
}
.count-block:nth-child(2) {
  animation-delay: 0.2s;
}
.count-block:nth-child(3) {
  animation-delay: 0.3s;
}
.count-block:nth-child(4) {
  animation-delay: 0.4s;
}

.count-circle {
  width: 65px;
  height: 65px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 112, 219, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.count-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: #fff;
}

.count-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  color: rgba(180, 140, 220, 0.7);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============ PADRES ============ */
.padres {
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  padding: 50px 20px;
  position: relative;
}

.padres::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(147, 112, 219, 0.3),
    transparent
  );
}

.padres::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(147, 112, 219, 0.3),
    transparent
  );
}

.padres-container {
  text-align: center;
}

.padres-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: rgba(180, 140, 220, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.padres-names {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
}

.padres-names span {
  color: #b48cdc;
  margin: 0 8px;
}

/* ============ ITINERARIO ============ */
.itinerario {
  min-height: 500px;
  background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.itinerario-container {
  text-align: center;
  max-width: 340px;
}

.itinerario-title {
  font-family: "Parisienne", cursive;
  font-size: 2.2rem;
  color: #b48cdc;
  margin-bottom: 35px;
}

.itinerario-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  text-align: left;
}

.itinerario-item:last-child {
  margin-bottom: 0;
}

.itinerario-icon {
  width: 45px;
  height: 45px;
  background: rgba(147, 112, 219, 0.15);
  border: 1px solid rgba(147, 112, 219, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #b48cdc;
  flex-shrink: 0;
}

.itinerario-content {
  flex: 1;
  padding-top: 8px;
}

.itinerario-hora {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #b48cdc;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.itinerario-actividad {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #fff;
  font-weight: 500;
}

.itinerario-detalle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ============ SLIDER FOTOS ============ */
.fotos {
  min-height: 550px;
  background: #0f0f23;
  padding: 50px 0;
}

.fotos-title {
  font-family: "Parisienne", cursive;
  font-size: 2.2rem;
  color: #b48cdc;
  text-align: center;
  margin-bottom: 25px;
}

.slider-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
  background: #1a1a2e;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.slider-slide {
  min-width: 100%;
  height: 380px;
  position: relative;
  flex-shrink: 0;
}

.slider-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.85);
}

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px;
  background: linear-gradient(
    to top,
    rgba(15, 15, 35, 0.95) 0%,
    transparent 100%
  );
}

.slider-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #fff;
  text-align: center;
}

.slider-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: #b48cdc;
  text-align: center;
  margin-top: 5px;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(147, 112, 219, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.slider-dot.active {
  background: #b48cdc;
  transform: scale(1.3);
}

/* ============ FECHA ============ */
.fecha {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  padding: 40px 20px;
}

.fecha::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(147, 112, 219, 0.3),
    transparent
  );
}

.fecha::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(147, 112, 219, 0.3),
    transparent
  );
}

.fecha-container {
  text-align: center;
}

.fecha-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.fecha-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: rgba(180, 140, 220, 0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.fecha-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 500;
}

.fecha-detail {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #b48cdc;
  margin-top: 12px;
}

/* ============ FRASE ============ */
.frase {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
  padding: 50px 30px;
}

.frase-container {
  text-align: center;
  max-width: 320px;
  position: relative;
}

.frase-container::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: 6rem;
  color: rgba(147, 112, 219, 0.15);
  line-height: 1;
}

.frase-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #fff;
  font-style: italic;
  line-height: 1.7;
  font-weight: 400;
}

.frase-autor {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: #b48cdc;
  margin-top: 20px;
  letter-spacing: 2px;
}

/* ============ UBICACIÓN ============ */
.ubicacion {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
  padding: 50px 20px;
}

.ubicacion-container {
  text-align: center;
  max-width: 320px;
}

.ubicacion-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.ubicacion-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: rgba(180, 140, 220, 0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.ubicacion-lugar {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 8px;
}

.ubicacion-detalle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}

.ubicacion-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid rgba(147, 112, 219, 0.5);
  color: #b48cdc;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 3px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.ubicacion-btn:hover {
  background: #b48cdc;
  color: #1a1a2e;
}

/* ============ DRESS CODE ============ */
.dresscode {
  min-height: 280px;
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
  padding: 45px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dresscode-container {
  text-align: center;
}

.dresscode-title {
  font-family: "Parisienne", cursive;
  font-size: 2rem;
  color: #b48cdc;
  margin-bottom: 18px;
}

.dresscode-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
}

.dresscode-colors {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.color-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.color-swatch.gold {
  background: #d4af7a;
}
.color-swatch.navy {
  background: #1a2744;
}
.color-swatch.cream {
  background: #f5f0e8;
}
.color-swatch.blush {
  background: #ffb6c1;
}

/* ============ REGALOS ============ */
.regalos {
  min-height: 400px;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.regalos-container {
  text-align: center;
  max-width: 320px;
}

.regalos-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.regalos-titulo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 15px;
}

.regalos-texto {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 25px;
}

.regalos-btn {
  display: inline-block;
  padding: 13px 32px;
  background: linear-gradient(135deg, #b48cdc 0%, #9370db 100%);
  color: #1a1a2e;
  border: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(147, 112, 219, 0.3);
}

.regalos-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(147, 112, 219, 0.5);
}

/* ============ INSTAGRAM ============ */
.instagram {
  min-height: 400px;
  background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.instagram-container {
  text-align: center;
  max-width: 320px;
}

.instagram-icon {
  font-size: 2.5rem;
  margin-bottom: 18px;
}

.instagram-titulo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 12px;
}

.instagram-texto {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 18px;
  line-height: 1.5;
}

.instagram-usuario {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #b48cdc;
  font-weight: 500;
  margin-bottom: 20px;
}

.instagram-hashtag-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.instagram-hashtag {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #fff;
}

/* ============ ESPECIAL ============ */
.especial {
  min-height: 350px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f23 100%);
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.especial::before,
.especial::after {
  content: "✦";
  position: absolute;
  font-size: 1.5rem;
  color: rgba(147, 112, 219, 0.3);
  animation: float 3s ease-in-out infinite;
}

.especial::before {
  top: 30px;
  left: 30px;
}
.especial::after {
  bottom: 30px;
  right: 30px;
  animation-delay: 1.5s;
}

.especial-container {
  text-align: center;
}

.especial-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.especial-texto {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.especial-texto:last-of-type {
  color: #b48cdc;
  margin-top: 8px;
}

/* ============ CONFIRMAR ============ */
.confirmar {
  min-height: 400px;
  background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirmar-container {
  text-align: center;
  max-width: 320px;
}

.confirmar-icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.confirmar-titulo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 12px;
}

.confirmar-fecha {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 25px;
}

.confirmar-btn {
  display: inline-block;
  padding: 15px 38px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.25);
  border: none;
  cursor: pointer;
}

.confirmar-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.4);
}

/* ============ FOOTER ============ */
.footer {
  min-height: 450px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0a0a15 100%);
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(147, 112, 219, 0.3),
    transparent
  );
}

.footer-container {
  text-align: center;
}

.footer-icon {
  font-size: 2.5rem;
  margin-bottom: 25px;
  animation: float 3s ease-in-out infinite;
}

.footer-invitacion {
  font-family: "Parisienne", cursive;
  font-size: 2rem;
  color: #b48cdc;
  margin-bottom: 5px;
}

.footer-de {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.footer-nombre {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  color: #fff;
  font-weight: 500;
  letter-spacing: 6px;
  margin-bottom: 15px;
}

.footer-texto {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #b48cdc;
  letter-spacing: 4px;
}

.footer-hashtag {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 18px;
}

.footer-markentas {
  margin-top: 40px;
}

.footer-markentas-link {
  display: inline-block;
  padding: 12px 25px;
  background: #b48cdc;
  color: #1a1a2e;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.footer-markentas-link:hover {
  background: #fff;
  transform: translateY(-2px);
}

.footer-panel {
  margin-top: 15px;
}

.footer-panel-link {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.footer-panel-link:hover {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.4);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 150px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-float.visible {
  opacity: 1;
  visibility: visible;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* ============ SALUDOS FLOTANTE ============ */
.saludos-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  border: none;
}

.saludos-float:hover {
  transform: scale(1.1);
}

.saludos-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff6b6b;
  color: white;
  font-size: 0.7rem;
  font-weight: bold;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ============ MODAL SALUDOS ============ */
.saludos-modal {
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  background: #252542;
  border-radius: 20px;
  padding: 25px;
  position: relative;
}

.saludos-modal .modal-cerrar {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
  cursor: pointer;
}

.saludos-modal .modal-cerrar:hover {
  color: white;
}

.saludos-modal .modal-titulo {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.saludos-lista {
  flex: 1;
  overflow-y: auto;
  margin-bottom: 20px;
  max-height: 300px;
  padding-right: 10px;
}

.saludos-lista::-webkit-scrollbar {
  width: 5px;
}

.saludos-lista::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.saludos-lista::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

.saludos-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
}

.saludos-item-nombre {
  font-weight: 600;
  color: #667eea;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.saludos-item-mensaje {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  line-height: 1.4;
  margin-bottom: 8px;
}

.saludos-item-fecha {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
}

.saludos-vacio {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 30px;
}

.saludos-form {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.saludos-input,
.saludos-textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
}

.saludos-input:focus,
.saludos-textarea:focus {
  outline: none;
  border-color: #667eea;
}

.saludos-textarea {
  resize: none;
  min-height: 60px;
}

.saludos-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.saludos-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.saludos-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 35px 25px;
  border-radius: 15px;
  max-width: 350px;
  width: 100%;
  text-align: center;
  position: relative;
  border: 1px solid rgba(147, 112, 219, 0.2);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

.modal-titulo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #b48cdc;
  margin-bottom: 22px;
  letter-spacing: 2px;
}

.modal-datos {
  margin-bottom: 22px;
}

.modal-banco {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 12px;
}

.modal-alias {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  color: #b48cdc;
  font-weight: 600;
  padding: 12px;
  background: rgba(147, 112, 219, 0.1);
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 1px;
}

.modal-titular {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
}

.modal-cerrar {
  padding: 10px 30px;
  background: transparent;
  border: 1px solid rgba(147, 112, 219, 0.5);
  color: #b48cdc;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-cerrar:hover {
  background: #b48cdc;
  color: #1a1a2e;
}

/* ============ BOTÓN MÚSICA ============ */
.btn-musica {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b48cdc 0%, #9370db 100%);
  border: none;
  color: #1a1a2e;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(147, 112, 219, 0.4);
}

.btn-musica:hover {
  transform: scale(1.1);
}

.btn-musica.playing {
  animation: pulseRing 2s infinite;
}

/* ============ GALERÍA DE INVITADOS ============ */
.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 20px 0;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #667eea #1a1a2e;
}

.galeria-grid::-webkit-scrollbar {
  width: 6px;
}

.galeria-grid::-webkit-scrollbar-track {
  background: #1a1a2e;
}

.galeria-grid::-webkit-scrollbar-thumb {
  background: #667eea;
  border-radius: 3px;
}

.galeria-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

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

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

.galeria-vacio {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  grid-column: 1 / -1;
  padding: 20px;
}

.galeria-upload {
  margin: 20px 0;
}

.instagram-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.instagram-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.galeria-preview {
  margin-top: 15px;
  text-align: center;
}

.galeria-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 15px;
  max-height: 200px;
  overflow-y: auto;
}

.galeria-preview-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.galeria-preview-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.galeria-submit {
  background: #4ade80;
  color: #1a1a2e;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
}

.galeria-cancel {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.lightbox-cerrar {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10001;
}

.lightbox-cerrar:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
    letter-spacing: 5px;
  }
  .hero-number {
    font-size: 4rem;
  }
  .hero-name {
    font-size: 1.4rem;
    letter-spacing: 6px;
  }
  .count-circle {
    width: 58px;
    height: 58px;
  }
  .count-number {
    font-size: 1.4rem;
  }
  .slider-slide {
    height: 340px;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-img {
    max-width: 95%;
    max-height: 85%;
  }
}

/* Confirmación de asistencia */
.confirmar-texto {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 15px 0;
  text-align: center;
}

.confirmar-form {
  margin-top: 25px;
}

.confirmar-cantidad {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
}

.confirmar-numeros {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 15px;
}

.confirmar-numeros button {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirmar-numeros button:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.confirmar-numeros span {
  font-size: 2rem;
  font-weight: 700;
  min-width: 50px;
  text-align: center;
}

.confirmar-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 25px;
}

.confirmar-botones {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.confirmar-btn.si {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.confirmar-btn.si:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(74, 222, 128, 0.4);
}

.confirmar-btn.no {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  border: 2px solid #ff6b6b;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.confirmar-btn.no:hover {
  background: #ff6b6b;
  color: #fff;
}

.confirmar-exito {
  text-align: center;
  padding: 30px;
}

.confirmar-exito i {
  font-size: 4rem;
  color: #4ade80;
  margin-bottom: 15px;
  animation: scaleIn 0.5s ease;
}

.confirmar-exito p {
  font-size: 1.3rem;
  color: #4ade80;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ============ NOTIFICACIONES ============ */
#notificaciones {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.notificacion {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #fff;
  padding: 18px 32px;
  border-radius: 2px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation:
    notifSlideDown 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    notifFadeOut 0.5s ease 2.5s forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 90vw;
  min-width: 300px;
  text-align: center;
  border: 1px solid #d4af7a;
}

.notificacion::before {
  content: "✨";
  font-size: 14px;
}
.notificacion::after {
  content: "✨";
  font-size: 14px;
}

.notificacion.exito {
  border-color: #d4af7a;
}
.notificacion.error {
  border-color: #ff6b6b;
}
.notificacion.exito i {
  color: #d4af7a;
}
.notificacion.error i {
  color: #ff6b6b;
}
.notificacion i {
  color: #d4af7a;
  font-size: 16px;
}

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

@keyframes notifFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
