/* ===== RESET Y BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  color: #4a4a4a;
  background-color: #faf8f5;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Bloquear scroll mientras la carta está visible */
body.scroll-bloqueado {
  overflow: hidden;
  height: 100vh;
}

/* ===== PANTALLA DE SELLO DE LACRE ===== */
.pantalla-carta {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #fdf6e3 0%, #f5e6d3 50%, #edddc8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 1s ease,
    visibility 1s ease,
    transform 1s ease;
  overflow: hidden;
}

.pantalla-carta.oculta {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.1);
}

/* Corazones flotantes */
.corazones-flotantes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.corazon {
  position: absolute;
  font-size: 1.5rem;
  opacity: 0.4;
  animation: flotar 15s infinite ease-in-out;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.corazon:nth-child(1) {
  left: 3%;
  animation-delay: -1s;
  animation-duration: 6s;
}
.corazon:nth-child(2) {
  left: 10%;
  animation-delay: -4s;
  animation-duration: 7s;
}
.corazon:nth-child(3) {
  left: 18%;
  animation-delay: -2s;
  animation-duration: 5s;
}
.corazon:nth-child(4) {
  left: 25%;
  animation-delay: -6s;
  animation-duration: 8s;
}
.corazon:nth-child(5) {
  left: 33%;
  animation-delay: -3s;
  animation-duration: 6s;
}
.corazon:nth-child(6) {
  left: 42%;
  animation-delay: -5s;
  animation-duration: 7s;
}
.corazon:nth-child(7) {
  left: 50%;
  animation-delay: -1.5s;
  animation-duration: 5s;
}
.corazon:nth-child(8) {
  left: 58%;
  animation-delay: -4.5s;
  animation-duration: 6s;
}
.corazon:nth-child(9) {
  left: 67%;
  animation-delay: -2.5s;
  animation-duration: 7s;
}
.corazon:nth-child(10) {
  left: 75%;
  animation-delay: -7s;
  animation-duration: 8s;
}
.corazon:nth-child(11) {
  left: 82%;
  animation-delay: -3.5s;
  animation-duration: 5s;
}
.corazon:nth-child(12) {
  left: 90%;
  animation-delay: -5.5s;
  animation-duration: 6s;
}
.corazon:nth-child(13) {
  left: 8%;
  animation-delay: -0.5s;
  animation-duration: 7s;
}
.corazon:nth-child(14) {
  left: 38%;
  animation-delay: -6.5s;
  animation-duration: 5s;
}
.corazon:nth-child(15) {
  left: 62%;
  animation-delay: -2s;
  animation-duration: 8s;
}
.corazon:nth-child(16) {
  left: 97%;
  animation-delay: -4s;
  animation-duration: 6s;
}

@keyframes flotar {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.4;
  }
  90% {
    opacity: 0.4;
  }
  100% {
    transform: translateY(-100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Invitación con lacre */
.invitacion-lacre {
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.invitacion-texto {
  margin-bottom: 40px;
}

.lacre-subtitulo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #8b7355;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.lacre-a {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #a89070;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.lacre-nombres {
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
  color: #2c2c2c;
  margin-bottom: 15px;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lacre-nombres span {
  color: #d4a574;
  display: inline-block;
  margin: 0 15px;
}

.lacre-fecha {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #d4a574;
  letter-spacing: 5px;
}

/* Sello de lacre */
.sello-container {
  margin: 30px 0;
}

.sello-lacre {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #c9302c 0%, #8b0000 60%, #5c0000 100%);
  border: none;
  cursor: pointer;
  position: relative;
  box-shadow:
    0 8px 30px rgba(139, 0, 0, 0.6),
    inset 0 -5px 15px rgba(0, 0, 0, 0.3),
    inset 0 5px 15px rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  animation: pulsar 2s ease-in-out infinite;
}

.sello-lacre:hover {
  transform: scale(1.1);
  box-shadow:
    0 12px 40px rgba(139, 0, 0, 0.8),
    inset 0 -5px 15px rgba(0, 0, 0, 0.3),
    inset 0 5px 15px rgba(255, 255, 255, 0.1);
}

.sello-lacre:active {
  transform: scale(0.95);
}

@keyframes pulsar {
  0%,
  100% {
    box-shadow:
      0 8px 30px rgba(139, 0, 0, 0.6),
      inset 0 -5px 15px rgba(0, 0, 0, 0.3),
      inset 0 5px 15px rgba(255, 255, 255, 0.1),
      0 0 0 0 rgba(212, 165, 116, 0.4);
  }
  50% {
    box-shadow:
      0 8px 30px rgba(139, 0, 0, 0.6),
      inset 0 -5px 15px rgba(0, 0, 0, 0.3),
      inset 0 5px 15px rgba(255, 255, 255, 0.1),
      0 0 0 20px rgba(212, 165, 116, 0);
  }
}

.sello-borde {
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.sello-interior {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.sello-iniciales {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  line-height: 1;
}

.sello-texto {
  font-family: "Montserrat", sans-serif;
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* Líneas decorativas */
.lineas-decorativas {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.lineas-decorativas span {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4a574, transparent);
}

/* Responsive */
@media (max-width: 480px) {
  .lacre-nombres {
    font-size: 2.8rem;
  }

  .lacre-subtitulo {
    font-size: 1rem;
    letter-spacing: 2px;
  }

  .sello-lacre {
    width: 120px;
    height: 120px;
  }

  .sello-iniciales {
    font-size: 2rem;
  }

  .invitacion-lacre {
    padding: 20px;
  }
}

/* Contenido principal oculto inicialmente */
.contenido-oculto {
  opacity: 0;
  visibility: hidden;
}

.contenido-visible {
  opacity: 1;
  visibility: visible;
  animation: fadeIn 1s ease;
}

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

/* ===== TIPOGRAFÍA ===== */
h1,
h2,
h3 {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  color: #2c2c2c;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: #8b7355;
}

/* ===== CONTENEDOR ===== */
.container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5e6d3 0%, #e8d4c4 50%, #d4c4b0 100%);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("img/WhatsApp%20Image%202026-02-03%20at%2017.31.20%20(3).jpeg") center/cover;
  opacity: 0.15;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(139, 115, 85, 0.1) 100%);
}

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

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8b7355;
  margin-bottom: 10px;
}

.hero-title {
  font-family: "Great Vibes", cursive;
  font-size: 4rem;
  color: #5c4a3d;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero-title span {
  display: block;
  font-size: 2rem;
  color: #c9a87c;
  margin: 10px 0;
}

.hero-date {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.hero-date span {
  font-family: "Cormorant Garamond", serif;
  color: #5c4a3d;
}

.date-day {
  font-size: 3rem;
  font-weight: 600;
}

.date-month {
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-left: 2px solid #c9a87c;
  border-right: 2px solid #c9a87c;
  padding: 0 15px;
}

.date-year {
  font-size: 1.5rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  text-decoration: none;
  cursor: pointer;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transition: background 0.3s ease;
}

.scroll-indicator:hover {
  background: rgba(255, 255, 255, 0.5);
}

.scroll-indicator i {
  font-size: 1.5rem;
  color: #5c4a3d;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===== PHOTO SECTION ===== */
.photo-section {
  padding: 20px 20px;
  background: #fff;
}

.photo-frame {
  max-width: 350px;
  margin: 0 auto;
  padding: 15px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 3px;
}

/* ===== WELCOME SECTION ===== */
.welcome-section {
  padding: 0px 20px;
  background: linear-gradient(to bottom, #fff, #faf8f5);
  text-align: center;
}

.welcome-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.welcome-section p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #6b6b6b;
  max-width: 400px;
  margin: 0 auto;
}

.ornament {
  font-size: 1.5rem;
  color: #c9a87c;
  margin: 20px 0;
}

/* ===== AUDIO SECTION ===== */
.audio-section {
  padding: 40px 20px;
  background: #f5e6d3;
  text-align: center;
}

.audio-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: #8b7355;
  margin-bottom: 15px;
}

.audio-text i {
  margin-right: 8px;
}

.audio-section iframe {
  width: 100%;
  max-width: 350px;
  height: 80px;
  border-radius: 12px;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* ===== COUNTDOWN SECTION ===== */
.countdown-section {
  padding: 60px 20px;
  text-align: center;
}

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

.countdown-item {
  background: linear-gradient(135deg, #8b7355 0%, #a08060 100%);
  border-radius: 15px;
  padding: 15px 10px;
  flex: 1;
  max-width: 80px;
  box-shadow: 0 5px 20px rgba(139, 115, 85, 0.3);
}

.countdown-value {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.countdown-label {
  display: block;
  font-size: clamp(0.55rem, 2vw, 0.7rem);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* ===== DIVIDER ===== */
.divider {
  text-align: center;
  padding: 20px 0;
  background: #faf8f5;
}

.divider span {
  font-size: 2rem;
}

/* ===== EVENT SECTIONS ===== */
.event-section {
  padding: 60px 20px;
  text-align: center;
}

.ceremony {
  background: linear-gradient(to bottom, #faf8f5, #f5e6d3);
}

.celebration {
  background: linear-gradient(to bottom, #faf8f5, #e8d4c4);
}

.event-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  max-width: 400px;
  margin: 0 auto;
}

.event-icon {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #c9a87c 0%, #8b7355 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.event-icon i {
  font-size: 2rem;
  color: #fff;
}

.event-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #5c4a3d;
  margin-bottom: 15px;
}

.event-address {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 20px;
  line-height: 1.6;
}

.event-time {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f5e6d3;
  padding: 10px 25px;
  border-radius: 25px;
  margin-bottom: 15px;
}

.event-time i {
  color: #8b7355;
}

.event-time span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #5c4a3d;
}

.event-note {
  font-size: 0.85rem;
  color: #999;
  font-style: italic;
  margin-bottom: 20px;
}

.btn-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #8b7355 0%, #a08060 100%);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 5px;
}

.btn-location:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(139, 115, 85, 0.4);
  color: #fff;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  margin: 5px;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(220, 39, 67, 0.4);
  color: #fff;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}

.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

/* ===== RSVP SECTION ===== */
.rsvp-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #5c4a3d 0%, #8b7355 100%);
  text-align: center;
}

.rsvp-section h2 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 10px;
}

.rsvp-section p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.rsvp-warning {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rsvp-warning i {
  animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30% {
    transform: rotate(10deg);
  }
  20%,
  40% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(0deg);
  }
}

.btn-rsvp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #8b7355;
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-rsvp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-rsvp i {
  color: #e74c3c;
}

/* ===== TIMELINE ===== */
.timeline-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #faf8f5 0%, #f5efe8 100%);
}

.timeline-section h2 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #2c2c2c;
  text-align: center;
  margin-bottom: 10px;
}

.timeline-intro {
  text-align: center;
  color: #8b7355;
  font-size: 1.1rem;
  margin-bottom: 50px;
}

.timeline {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Línea de fondo (gris) */
.timeline::before {
  content: "";
  position: absolute;
  left: 105px;
  top: 0;
  width: 3px;
  height: 100%;
  background: #e0d5c7;
  border-radius: 3px;
  z-index: 0;
}

/* Línea de progreso (dorada) */
.timeline-progress {
  position: absolute;
  left: 105px;
  top: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, #d4a574 0%, #c9956a 100%);
  border-radius: 3px;
  transition: height 0.3s ease;
  z-index: 1;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 120px;
  position: relative;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
  z-index: 3;
}

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

.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-time {
  flex: 0 0 80px;
  text-align: right;
  padding-right: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: #d4a574;
}

.timeline-dot {
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  background: #e0d5c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  z-index: 5;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  position: relative;
}

.timeline-item.visible .timeline-dot {
  background: linear-gradient(135deg, #d4a574 0%, #c9956a 100%);
  box-shadow: 0 4px 15px rgba(212, 165, 116, 0.4);
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(212, 165, 116, 0.6);
}

.timeline-content {
  flex: 1;
  padding-left: 25px;
}

.timeline-content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: #6b6b6b;
  line-height: 1.4;
}

@media (max-width: 480px) {
  .timeline::before,
  .timeline-progress {
    left: 70px;
  }

  .timeline-item {
    flex-wrap: wrap;
    transform: translateX(-30px);
    margin-bottom: 80px;
  }

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

  .timeline-item.visible {
    transform: translateX(0);
  }

  .timeline-time {
    flex: 0 0 50px;
    padding-right: 0;
    text-align: center;
    font-size: 0.9rem;
  }

  .timeline-dot {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .timeline-content {
    flex: 1 0 calc(100% - 100px);
    padding-left: 15px;
  }

  .timeline-content h3 {
    font-size: 1.2rem;
  }

  .timeline-content p {
    font-size: 0.85rem;
  }
}

/* ===== SECCIÓN REGALO ===== */
.gift-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #8b7355 0%, #a89070 100%);
  text-align: center;
}

.gift-section h2 {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
}

.gift-section > .container > p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cuenta-container {
  background: rgba(255, 255, 255, 0.1);
  border: 2px dashed rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  padding: 20px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
}

.cuenta-container:hover:not(.revelado) {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.02);
}

.cuenta-container.revelado {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid #d4a574;
  cursor: default;
}

.cuenta-oculta {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cuenta-oculta i {
  font-size: 1.3rem;
  animation: pulseGift 1.5s ease-in-out infinite;
}

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

.cuenta-visible {
  display: none;
  color: #2c2c2c;
  font-family: "Courier New", monospace;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 2px;
  animation: fadeInCuenta 0.5s ease;
}

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

.btn-copiar {
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d4a574;
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

/* ===== FOOTER ===== */
footer {
  padding: 50px 20px;
  background: #2c2c2c;
  text-align: center;
}

.footer-hearts {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-names {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: #c9a87c;
  margin-bottom: 5px;
}

.footer-date {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== RESPONSIVE (YA MOBILE-FIRST) ===== */
@media (min-width: 768px) {
  .hero-title {
    font-size: 5rem;
  }

  .hero-title span {
    font-size: 2.5rem;
  }

  .countdown-item {
    padding: 25px 20px;
    min-width: 90px;
  }

  .countdown-value {
    font-size: 2.8rem;
  }

  .container {
    max-width: 600px;
  }
}

/* ===== BOTÓN FLOTANTE DE MÚSICA ===== */
.btn-musica-flotante {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a574 0%, #c97f3f 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.btn-musica-flotante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-musica-flotante.reproduciendo {
  animation: pulse 1.5s ease-in-out infinite;
}

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

@media (max-width: 768px) {
  .btn-musica-flotante {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* ===== BOTÓN FLOTANTE DE MÚSICA ===== */
.btn-musica-flotante {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d4a574 0%, #c97f3f 100%);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
}

.btn-musica-flotante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-musica-flotante.reproduciendo {
  animation: pulse 1.5s ease-in-out infinite;
}

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

@media (max-width: 768px) {
  .btn-musica-flotante {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}
