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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  overflow-x: hidden;
  line-height: 1.6;
}

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

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

img {
  max-width: 100%;
  display: block;
}

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

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

@keyframes heartBeat {
  0%,
  100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
}

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

/* ============ BOTÓN MÚSICA ============ */
.btn-musica {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 125, 0.4);
  background: rgba(13, 13, 13, 0.8);
  color: #d4af7d;
  font-size: 18px;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-musica:hover {
  background: rgba(212, 175, 125, 0.2);
  transform: scale(1.05);
}

.btn-musica.playing i {
  animation: heartBeat 1.5s infinite;
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(145deg, #1a1815 0%, #0d0d0d 50%, #1a1815 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 20% 80%,
      rgba(180, 140, 100, 0.12) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(212, 175, 125, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(139, 90, 43, 0.06) 0%,
      transparent 60%
    );
  pointer-events: none;
}

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

/* [FIX] position: absolute para que left/top inline funcionen */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #d4af7d;
  border-radius: 50%;
  opacity: 0;
  animation: sparkle 3s infinite;
}

.particle::before {
  content: "✦";
  position: absolute;
  font-size: 8px;
  color: #d4af7d;
  top: -2px;
  left: -2px;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 20px;
  animation: fadeInUp 1s ease-out;
}

.hero-join {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 30px;
}

.hero-names {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 600;
  color: #f5f0e8;
  margin-bottom: 10px;
  line-height: 1.2;
}

.hero-names span {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color: #d4af7d;
  margin: 15px 0;
  animation: heartBeat 2s infinite;
}

.hero-date {
  font-size: 13px;
  letter-spacing: 4px;
  color: #a09080;
  margin-bottom: 40px;
}

.hero-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 1px solid rgba(212, 175, 125, 0.5);
  color: #d4af7d;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  background: transparent;
  cursor: pointer;
}

.hero-btn:hover {
  background: rgba(212, 175, 125, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 125, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: float 2s infinite;
}

.scroll-indicator span {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #605850;
  margin-bottom: 10px;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid #605850;
  border-bottom: 1px solid #605850;
  transform: rotate(45deg);
  margin: 0 auto;
}

/* ============ HISTORIA / SLIDER ============ */
.historia {
  padding: 60px 0 40px;
  background: #0d0d0d;
}

.historia-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  text-align: center;
  margin-bottom: 30px;
}

.slider-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-wrapper {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slider-slide {
  min-width: 100%;
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}

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

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 20px 30px;
  background: linear-gradient(
    to top,
    rgba(13, 13, 13, 0.95) 0%,
    transparent 100%
  );
  text-align: center;
}

.slider-text {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #f5f0e8;
  margin-bottom: 5px;
}

.slider-year {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af7d;
}

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

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

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

/* ============ COUNTDOWN ============ */
.countdown {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.countdown-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 40px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.count-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.count-circle {
  width: 70px;
  height: 70px;
  border: 1px solid rgba(212, 175, 125, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: rgba(212, 175, 125, 0.05);
  transition: all 0.3s ease;
}

.count-circle:hover {
  background: rgba(212, 175, 125, 0.1);
  transform: scale(1.05);
}

.count-number {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
  color: #d4af7d;
}

.count-label {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #605850;
}

/* ============ FRASE ============ */
.frase {
  padding: 80px 20px;
  background: linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
  text-align: center;
}

/* [FIX] HTML usa .frase-content, no .frase-container */
.frase-content {
  max-width: 320px;
  margin: 0 auto;
}

.frase-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-style: italic;
  color: #f5f0e8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.frase-autor {
  font-size: 12px;
  letter-spacing: 2px;
  color: #d4af7d;
}

/* ============ PADRES ============ */
/* [FIX] Sección completa sin CSS */
.padres {
  padding: 60px 20px;
  background: #0d0d0d;
  text-align: center;
}

.padres-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 20px;
}

.padres-names {
  max-width: 300px;
  margin: 0 auto;
}

.padres-names p {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #f5f0e8;
  margin-bottom: 10px;
  line-height: 1.5;
}

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

/* ============ CEREMONIA ============ */
.ceremonia {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.ceremonia-container {
  max-width: 300px;
  margin: 0 auto;
}

/* [FIX] HTML usa .ceremonia-badge, no .ceremonia-titulo */
.ceremonia-badge {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 20px;
}

.ceremonia-lugar {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #f5f0e8;
  margin-bottom: 10px;
}

.ceremonia-direccion {
  font-size: 13px;
  color: #a09080;
  margin-bottom: 8px;
}

.ceremonia-hora {
  font-size: 15px;
  color: #d4af7d;
  margin-bottom: 25px;
}

/* [FIX] HTML usa .ceremonia-mapa, no .ceremonia-btn */
.ceremonia-mapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border: 1px solid rgba(212, 175, 125, 0.4);
  color: #d4af7d;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.ceremonia-mapa:hover {
  background: rgba(212, 175, 125, 0.1);
}

/* ============ RECEPCIÓN ============ */
.recepcion {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0d 0%, #151515 100%);
  text-align: center;
}

.recepcion-container {
  max-width: 300px;
  margin: 0 auto;
}

/* [FIX] HTML usa .recepcion-badge, no .recepcion-titulo */
.recepcion-badge {
  font-family: "Cormorant Garamond", serif;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 20px;
}

.recepcion-lugar {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #f5f0e8;
  margin-bottom: 10px;
}

.recepcion-direccion {
  font-size: 13px;
  color: #a09080;
  margin-bottom: 8px;
}

.recepcion-hora {
  font-size: 15px;
  color: #d4af7d;
  margin-bottom: 25px;
}

/* [FIX] HTML usa .recepcion-mapa, no .recepcion-btn */
.recepcion-mapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  border: 1px solid rgba(212, 175, 125, 0.4);
  color: #d4af7d;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.recepcion-mapa:hover {
  background: rgba(212, 175, 125, 0.1);
}

/* ============ DRESS CODE ============ */
.dresscode {
  padding: 80px 20px;
  background: linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
  text-align: center;
}

.dresscode-container {
  max-width: 320px;
  margin: 0 auto;
}

/* [FIX] Clase nueva para emoji icon */
.dresscode-icon {
  font-size: 32px;
  margin-bottom: 20px;
}

/* [FIX] HTML usa .dresscode-title, no .dresscode-titulo */
.dresscode-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 20px;
}

/* [FIX] HTML usa .dresscode-text, no .dresscode-texto */
.dresscode-text {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #f5f0e8;
  margin-bottom: 15px;
}

/* [FIX] HTML usa .dresscode-note, no .dresscode-nota */
.dresscode-note {
  font-size: 12px;
  color: #a09080;
  font-style: italic;
}

/* ============ ITINERARIO ============ */
.itinerario {
  padding: 80px 20px;
  background: #0d0d0d;
}

/* [FIX] HTML usa .itinerario-content, no .itinerario-container */
.itinerario-content {
  max-width: 320px;
  margin: 0 auto;
}

/* [FIX] HTML usa .itinerario-title, no .itinerario-titulo */
.itinerario-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  text-align: center;
  margin-bottom: 40px;
}

.itinerario-item {
  text-align: left;
  padding: 20px 0;
  border-bottom: 1px solid rgba(212, 175, 125, 0.1);
}

.itinerario-item:last-child {
  border-bottom: none;
}

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

.itinerario-row {
  display: inline-flex;
  align-items: flex-start;
  gap: 15px;
}

.itinerario-row .itinerario-time,
.itinerario-row .itinerario-details {
  width: 120px;
}

/* [FIX] HTML usa .itinerario-time, no .itinerario-hora */
.itinerario-time {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #d4af7d;
  text-align: right;
}

/* [FIX] Wrapper nuevo */
.itinerario-details {
  text-align: left;
}

/* [FIX] HTML usa .itinerario-actividad, no .itinerario-evento */
.itinerario-actividad {
  font-size: 15px;
  color: #f5f0e8;
  margin-bottom: 4px;
}

/* [FIX] HTML usa .itinerario-detalle, no .itinerario-lugar */
.itinerario-detalle {
  font-size: 12px;
  color: #706860;
}

/* ============ GALERIA ============ */
/* [FIX] Sección sin padding/background */
.galeria {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0d 0%, #151515 100%);
}

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

/* [FIX] HTML usa .galeria-title, no .galeria-titulo */
.galeria-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 15px;
}

.galeria-texto {
  font-size: 13px;
  color: #a09080;
  margin-bottom: 15px;
}

.galeria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 15px;
}

.galeria-item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

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

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

.galeria-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #605850;
  padding: 30px;
  font-size: 13px;
}

.galeria-upload {
  margin-top: 15px;
}

.galeria-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: #d4af7d;
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.galeria-btn:hover {
  background: #c9a46a;
  transform: translateY(-2px);
}

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

.galeria-preview-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}

.preview-item {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* [FIX] Hover state agregado */
.preview-item::after {
  content: "×";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.preview-item:hover::after {
  opacity: 1;
}

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

.galeria-submit {
  padding: 10px 20px;
  background: #d4af7d;
  color: #0d0d0d;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.galeria-submit:hover {
  background: #c9a46a;
}

.galeria-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.galeria-cancel {
  padding: 10px 20px;
  background: transparent;
  color: #a09080;
  border: 1px solid #333;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.galeria-cancel:hover {
  background: rgba(212, 175, 125, 0.1);
}

/* ============ REGALOS ============ */
.regalos {
  padding: 80px 20px;
  background: linear-gradient(180deg, #0d0d0d 0%, #151515 100%);
  text-align: center;
}

.regalos-content {
  max-width: 320px;
  margin: 0 auto;
}

.regalos-icon {
  font-size: 32px;
  margin-bottom: 25px;
}

.regalos-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 20px;
}

.regalos-texto {
  font-size: 13px;
  color: #a09080;
  line-height: 1.7;
  margin-bottom: 30px;
}

.regalos-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 25px;
  border: 1px solid rgba(212, 175, 125, 0.5);
  background: transparent;
  color: #d4af7d;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.regalos-btn:hover {
  background: rgba(212, 175, 125, 0.15);
}

/* ============ HASHTAG ============ */
.hashtag {
  padding: 60px 20px;
  background: linear-gradient(180deg, #151515 0%, #0d0d0d 100%);
  text-align: center;
}

.hashtag-tag {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  color: rgba(212, 175, 125, 0.15);
  white-space: nowrap;
  animation: shimmer 8s linear infinite;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 125, 0.3),
    transparent
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ RSVP ============ */
.rsvp {
  padding: 80px 20px;
  background: #0d0d0d;
  text-align: center;
}

.rsvp-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 20px;
}

.rsvp-text {
  font-size: 14px;
  color: #f5f0e8;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* [FIX] Clase para token RSVP */
.rsvp-texto {
  font-size: 14px;
  color: #f5f0e8;
  margin-bottom: 15px;
}

.rsvp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 35px;
  background: #d4af7d;
  color: #0d0d0d;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rsvp-btn:hover {
  background: #c9a46a;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(212, 175, 125, 0.3);
}

.rsvp-form {
  text-align: center;
  margin-top: 20px;
}

.rsvp-cantidad {
  font-size: 13px;
  color: #a09080;
  margin-bottom: 15px;
}

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

.rsvp-numeros button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #d4af7d;
  background: transparent;
  color: #d4af7d;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.rsvp-numeros button:hover {
  background: #d4af7d;
  color: #0d0d0d;
}

.rsvp-numeros span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #d4af7d;
}

.rsvp-info {
  font-size: 12px;
  color: #605850;
  margin-bottom: 20px;
}

.rsvp-botones {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.rsvp-botones .rsvp-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rsvp-botones .rsvp-btn.si {
  background: #10b981;
  color: #fff;
  border: none;
}

.rsvp-botones .rsvp-btn.si:hover {
  background: #059669;
}

.rsvp-botones .rsvp-btn.no {
  background: transparent;
  color: #ef4444;
  border: 1px solid #ef4444;
}

.rsvp-botones .rsvp-btn.no:hover {
  background: #ef4444;
  color: #fff;
}

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

.rsvp-exito i {
  font-size: 3rem;
  color: #10b981;
  margin-bottom: 15px;
  display: block;
}

.rsvp-exito p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #d4af7d;
}

/* ============ FOOTER ============ */
.footer {
  padding: 80px 20px 60px;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1815 100%);
  text-align: center;
}

.footer-content {
  max-width: 320px;
  margin: 0 auto;
}

.footer-amp {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  color: #d4af7d;
  margin-bottom: 10px;
}

.footer-names {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #f5f0e8;
  margin-bottom: 15px;
}

.footer-names span {
  color: #d4af7d;
  margin: 0 8px;
}

.footer-date {
  font-size: 12px;
  letter-spacing: 3px;
  color: #d4af7d;
  margin-bottom: 30px;
}

.footer-message {
  font-size: 12px;
  color: #605850;
  font-style: italic;
  margin-bottom: 30px;
}

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

.footer-markentas-link {
  display: inline-block;
  padding: 12px 25px;
  background: #d4af7d;
  color: #0d0d0d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 25px;
  transition: all 0.3s ease;
}

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

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

.footer-panel-link {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #d4af7d;
  color: #d4af7d;
  text-decoration: none;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer-panel-link:hover {
  background: #d4af7d;
  color: #0d0d0d;
}

/* ============ WHATSAPP FLOAT ============ */
.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 FLOAT ============ */
.saludos-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: #d4af7d;
  color: #0d0d0d;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(212, 175, 125, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.saludos-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ef4444;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
}

/* ============ MODAL ============ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(5px);
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background: linear-gradient(145deg, #1a1815 0%, #0d0d0d 100%);
  border: 1px solid rgba(212, 175, 125, 0.3);
  padding: 40px 30px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  position: relative;
}

/* [FIX] Una sola definición de .modal-cerrar */
.modal-cerrar {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(212, 175, 125, 0.2);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #d4af7d;
  font-size: 16px;
  transition: all 0.2s ease;
}

.modal-cerrar:hover {
  background: rgba(212, 175, 125, 0.4);
  transform: scale(1.1);
}

.modal-titulo {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #f5f0e8;
  margin-bottom: 30px;
}

/* [FIX] Para modal de transferencia */
.modal-title {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  color: #f5f0e8;
  margin-bottom: 30px;
}

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

/* [FIX] Clases nuevas para transferencia */
.modal-banco {
  font-size: 14px;
  color: #a09080;
  margin-bottom: 12px;
}

.modal-alias {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  color: #d4af7d;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding: 12px;
  background: rgba(212, 175, 125, 0.08);
  border: 1px solid rgba(212, 175, 125, 0.15);
}

.modal-titular {
  font-size: 13px;
  color: #706860;
}

/* [FIX] Botón cerrar del modal transferencia */
.modal-btn {
  padding: 12px 35px;
  border: 1px solid rgba(212, 175, 125, 0.5);
  background: transparent;
  color: #d4af7d;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-btn:hover {
  background: rgba(212, 175, 125, 0.15);
}

/* ============ MODAL SALUDOS ============ */
.saludos-modal {
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.saludos-lista {
  flex: 1;
  overflow-y: auto;
  max-height: 300px;
  margin-bottom: 15px;
}

.saludos-card {
  background: #1a1815;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid #333;
}

.saludos-card-nombre {
  font-size: 14px;
  font-weight: 600;
  color: #d4af7d;
  margin-bottom: 5px;
}

.saludos-card-mensaje {
  font-size: 13px;
  color: #f5f5f5;
  line-height: 1.5;
}

.saludos-card-fecha {
  font-size: 11px;
  color: #a09080;
  margin-top: 8px;
}

.saludos-vacio {
  text-align: center;
  color: #a09080;
  padding: 30px;
  font-size: 13px;
}

.saludos-form {
  border-top: 1px solid #333;
  padding-top: 15px;
}

.saludos-input,
.saludos-textarea {
  width: 100%;
  padding: 12px 15px;
  background: #1a1815;
  border: 1px solid #333;
  border-radius: 8px;
  color: #f5f5f5;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
}

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

.saludos-input::placeholder,
.saludos-textarea::placeholder {
  color: #605850;
}

.saludos-textarea {
  resize: none;
}

.saludos-btn {
  width: 100%;
  padding: 12px;
  background: #d4af7d;
  border: none;
  border-radius: 8px;
  color: #0d0d0d;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.saludos-btn:hover {
  background: #c9a46a;
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 13, 13, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox.active {
  display: flex;
}

.lightbox-cerrar {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(212, 175, 125, 0.2);
  border: none;
  border-radius: 50%;
  color: #d4af7d;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
  transition: all 0.3s ease;
}

.lightbox-cerrar:hover {
  background: rgba(212, 175, 125, 0.4);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(212, 175, 125, 0.2);
  border: none;
  color: #d4af7d;
  font-size: 1.5rem;
  padding: 15px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.lightbox-nav:hover {
  background: rgba(212, 175, 125, 0.4);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

/* ============ 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 {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  color: #f5f5f5;
  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.5);
  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 #d4af7d;
}

.notificacion::before {
  content: "♡";
  color: #d4af7d;
}

.notificacion::after {
  content: "♡";
  color: #d4af7d;
}

.notificacion.exito {
  border-color: #d4af7d;
}

.notificacion.error {
  border-color: #c0392b;
}

.notificacion i {
  color: #d4af7d;
  font-size: 16px;
}

.notificacion.exito i {
  color: #d4af7d;
}

.notificacion.error i {
  color: #e74c3c;
}

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

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

/* ============ RESPONSIVE ============ */
@media (max-width: 480px) {
  .hero-names {
    font-size: 34px;
  }

  .count-circle {
    width: 60px;
    height: 60px;
  }

  .count-number {
    font-size: 20px;
  }

  .slider-slide {
    aspect-ratio: 1/1.2;
  }

  .galeria-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .whatsapp-float {
    right: 15px;
    bottom: 90px;
  }

  .saludos-float {
    right: 15px;
    bottom: 150px;
  }

  .btn-musica {
    right: 15px;
    bottom: 20px;
  }

  .notificacion {
    min-width: auto;
  }
}
