@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Montserrat:wght@300;400;500;600&family=Libre+Baskerville:wght@400;700&family=Nunito+Sans:wght@300;400;500;600&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: #1a1f1c;
  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(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes gentlePulse {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes leafFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #1a1f1c 0%, #252b27 50%, #1a1f1c 100%);
  position: relative;
  padding: 40px 20px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      ellipse at 30% 70%,
      rgba(85, 107, 47, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 70% 30%,
      rgba(107, 142, 35, 0.1) 0%,
      transparent 40%
    );
  pointer-events: none;
}

.hero-leaves {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-leaves span {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(85, 107, 47, 0.08);
  border-radius: 50% 0 50% 0;
  animation: leafFloat 6s ease-in-out infinite;
}

.hero-leaves span:nth-child(1) {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}
.hero-leaves span:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 1.5s;
}
.hero-leaves span:nth-child(3) {
  bottom: 15%;
  left: 10%;
  animation-delay: 3s;
}
.hero-leaves span:nth-child(4) {
  top: 30%;
  right: 5%;
  animation-delay: 4.5s;
}

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

.hero-year {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 6px;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out both;
}

.hero-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  color: rgba(154, 183, 112, 0.9);
  letter-spacing: 8px;
  margin-bottom: 5px;
  animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 7rem;
  font-weight: 300;
  color: #9ab870;
  line-height: 1;
  margin: 10px 0;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-name {
  font-family: "Libre Baskerville", serif;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 8px;
  margin-bottom: 5px;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-surname {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 12px;
  margin-bottom: 40px;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btn {
  display: inline-block;
  padding: 14px 45px;
  background: transparent;
  border: 1px solid #9ab870;
  color: #9ab870;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 4px;
  transition: all 0.4s ease;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-btn:hover {
  background: #9ab870;
  color: #1a1f1c;
}

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

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

.countdown-wrapper {
  text-align: center;
  z-index: 10;
  padding: 20px 0;
}

.countdown-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  color: #9ab870;
  margin-bottom: 25px;
  letter-spacing: 2px;
}

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

.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.03);
  border: 1px solid rgba(154, 183, 112, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.count-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: 500;
  line-height: 1;
}

.count-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  color: rgba(154, 183, 112, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ============ PADRES ============ */
.padres {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1f1c;
  padding: 40px 20px;
  position: relative;
}

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

.padres-decoration {
  font-size: 1.2rem;
  color: rgba(154, 183, 112, 0.4);
  margin: 10px 0;
}

.padres-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: rgba(154, 183, 112, 0.7);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.padres-names {
  font-family: "Libre Baskerville", serif;
  font-size: 1.3rem;
  color: #fff;
}

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

/* ============ FOTOS ============ */
.fotos {
  min-height: 520px;
  background: #252b27;
  padding: 50px 0;
}

.fotos-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #9ab870;
  text-align: center;
  margin-bottom: 30px;
}

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

.slider-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}

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

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

.slider-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px 20px;
  background: linear-gradient(to top, rgba(26, 31, 28, 0.95), transparent);
  text-align: center;
}

.slider-name {
  font-family: "Libre Baskerville", serif;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 3px;
}

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

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

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

/* ============ FECHA ============ */
.fecha {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1f1c;
  padding: 50px 20px;
}

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

.fecha-icon {
  font-size: 2rem;
  color: #9ab870;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.fecha-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: rgba(154, 183, 112, 0.7);
  letter-spacing: 4px;
  margin-bottom: 12px;
}

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

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

/* ============ FRASE ============ */
.frase {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #252b27;
  padding: 50px 30px;
}

.frase-container {
  text-align: center;
  max-width: 280px;
}

.frase-text {
  font-family: "Libre Baskerville", serif;
  font-size: 1.15rem;
  color: #fff;
  font-style: italic;
  line-height: 1.7;
}

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

/* ============ UBICACIÓN ============ */
.ubicacion {
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1f1c;
  padding: 50px 20px;
}

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

.ubicacion-icon {
  width: 55px;
  height: 55px;
  background: rgba(154, 183, 112, 0.1);
  border: 1px solid rgba(154, 183, 112, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.2rem;
  color: #9ab870;
}

.ubicacion-titulo {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: rgba(154, 183, 112, 0.7);
  letter-spacing: 4px;
  margin-bottom: 15px;
}

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

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

.ubicacion-btn {
  display: inline-block;
  padding: 12px 30px;
  background: transparent;
  border: 1px solid rgba(154, 183, 112, 0.5);
  color: #9ab870;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.ubicacion-btn:hover {
  background: #9ab870;
  color: #1a1f1c;
}

/* ============ DRESS CODE ============ */
.dresscode {
  min-height: 250px;
  background: #252b27;
  padding: 45px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.dresscode-title {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: rgba(154, 183, 112, 0.7);
  letter-spacing: 4px;
  margin-bottom: 8px;
}

.dresscode-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 20px;
}

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

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

.color-swatch.forest {
  background: #2d4a3e;
}
.color-swatch.olive {
  background: #6b7c59;
}
.color-swatch.stone {
  background: #8a8a7a;
}
.color-swatch.ivory {
  background: #f5f5dc;
}

/* ============ ITINERARIO ============ */
.itinerario {
  min-height: 420px;
  background: #1a1f1c;
  padding: 50px 20px;
}

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

.itinerario-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #9ab870;
  text-align: center;
  margin-bottom: 30px;
}

.itinerario-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

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

.itinerario-time {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #9ab870;
  width: 50px;
  flex-shrink: 0;
}

.itinerario-content {
  flex: 1;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(154, 183, 112, 0.15);
}

.itinerario-actividad {
  font-family: "Libre Baskerville", serif;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 4px;
}

.itinerario-detalle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============ REGALOS ============ */
.regalos {
  min-height: 350px;
  background: #252b27;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.regalos-icon {
  font-size: 2rem;
  color: #9ab870;
  margin-bottom: 18px;
}

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

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

.regalos-btn {
  display: inline-block;
  padding: 13px 35px;
  background: #9ab870;
  color: #1a1f1c;
  border: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.regalos-btn:hover {
  background: #fff;
}

/* ============ INSTAGRAM ============ */
.instagram {
  min-height: 320px;
  background: #1a1f1c;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.instagram-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #9ab870;
  margin-bottom: 15px;
}

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

.instagram-user {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 1px;
}

.instagram-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #9ab870;
  color: #1a1f1c;
  border: none;
  border-radius: 25px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

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

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

.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;
}

.preview-item::after {
  content: "×";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
}

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

.galeria-submit {
  padding: 10px 20px;
  background: #9ab870;
  color: #1a1f1c;
  border: none;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.galeria-cancel {
  padding: 10px 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.galeria-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============ CONFIRMAR ============ */
.confirmar {
  min-height: 350px;
  background: #252b27;
  padding: 50px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.confirmar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 10px;
}

.confirmar-date {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: rgba(154, 183, 112, 0.7);
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.confirmar-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  transition: all 0.3s ease;
}

.confirmar-btn:hover {
  background: #128c7e;
}

/* ============ FOOTER ============ */
.footer {
  min-height: 380px;
  background: #1a1f1c;
  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: 100px;
  height: 1px;
  background: rgba(154, 183, 112, 0.3);
}

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

.footer-invitacion {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  color: rgba(154, 183, 112, 0.7);
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.footer-name {
  font-family: "Libre Baskerville", serif;
  font-size: 2.5rem;
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 15px;
}

.footer-espero {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: #9ab870;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.footer-hashtag {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-markentas-link {
  display: inline-block;
  padding: 12px 25px;
  background: #9ab170;
  color: #fff;
  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;
  color: #9ab170;
  transform: translateY(-2px);
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 20px;
  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);
}

/* ============ MODAL ============ */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  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: #252b27;
  padding: 35px 25px;
  border: 1px solid rgba(154, 183, 112, 0.3);
  max-width: 320px;
  width: 100%;
  text-align: center;
}

.modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  color: #9ab870;
  margin-bottom: 22px;
  letter-spacing: 2px;
}

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

.modal-banco {
  font-size: 0.9rem;
  color: #fff;
  margin-bottom: 12px;
}

.modal-alias {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  color: #9ab870;
  padding: 12px;
  background: rgba(154, 183, 112, 0.1);
  display: inline-block;
  margin-bottom: 12px;
}

.modal-titular {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.modal-cerrar {
  padding: 10px 30px;
  background: transparent;
  border: 1px solid rgba(154, 183, 112, 0.5);
  color: #9ab870;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-cerrar:hover {
  background: #9ab870;
  color: #1a1f1c;
}

/* ============ BOTÓN MÚSICA ============ */
.btn-musica {
  position: fixed;
  bottom: 30px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #9ab870;
  border: none;
  color: #1a1f1c;
  font-size: 1rem;
  cursor: pointer;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 480px) {
  .hero-title {
    font-size: 5rem;
  }
  .hero-name {
    font-size: 1.8rem;
    letter-spacing: 5px;
  }
  .count-circle {
    width: 55px;
    height: 55px;
  }
  .count-number {
    font-size: 1.3rem;
  }
  .slider-slide {
    height: 300px;
  }
}

/* ============ ADN STYLES ============ */
.whatsapp-float {
  position: fixed;
  bottom: 150px;
  right: 20px;
  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 {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #9ab870;
  color: #1a1f1c;
  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(154, 183, 112, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

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

.modal-cerrar {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: all 0.2s ease;
}

.modal-cerrar:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.modal-cerrar-btn {
  padding: 10px 30px;
  background: transparent;
  border: 1px solid rgba(154, 183, 112, 0.5);
  color: #9ab870;
  font-family: "Montserrat", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-cerrar-btn:hover {
  background: #9ab870;
  color: #1a1f1c;
}

.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: #1a1f1c;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 10px;
  border: 1px solid rgba(154, 183, 112, 0.2);
}

.saludos-card-nombre {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #9ab870;
  margin-bottom: 5px;
}

.saludos-card-mensaje {
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  color: #fff;
  line-height: 1.5;
}

.saludos-card-fecha {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 8px;
}

.saludos-vacio {
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  padding: 30px;
  font-family: "Montserrat", sans-serif;
}

.saludos-form {
  border-top: 1px solid rgba(154, 183, 112, 0.2);
  padding-top: 15px;
}

.saludos-input {
  width: 100%;
  padding: 12px 15px;
  background: #1a1f1c;
  border: 1px solid rgba(154, 183, 112, 0.3);
  border-radius: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.saludos-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.saludos-textarea {
  width: 100%;
  padding: 12px 15px;
  background: #1a1f1c;
  border: 1px solid rgba(154, 183, 112, 0.3);
  border-radius: 8px;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  margin-bottom: 10px;
  resize: none;
}

.saludos-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.saludos-btn {
  width: 100%;
  padding: 12px;
  background: #9ab870;
  border: none;
  border-radius: 8px;
  color: #1a1f1c;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  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(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2001;
}

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

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

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

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

.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: rgba(255, 255, 255, 0.4);
  padding: 30px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.85rem;
}

.confirmar-icon {
  font-size: 2rem;
  margin-bottom: 15px;
}

.confirmar-titulo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: #9ab870;
  margin-bottom: 15px;
}

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

.confirmar-form {
  text-align: center;
}

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

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

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

.confirmar-numeros button:hover {
  background: #9ab870;
  color: #1a1f1c;
}

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

.confirmar-info {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

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

.confirmar-botones .confirmar-btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

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

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

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

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

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

.confirmar-exito p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  color: #fff;
}

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

.footer-panel-link {
  display: inline-block;
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(154, 183, 112, 0.4);
  color: rgba(154, 183, 112, 0.6);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.footer-panel-link:hover {
  background: rgba(154, 183, 112, 0.1);
  border-color: #9ab870;
  color: #9ab870;
}

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

.notificacion {
  background: linear-gradient(135deg, #0a1a0a 0%, #1a2a1a 100%);
  color: #fff;
  padding: 18px 32px;
  border-radius: 2px;
  font-family: "Nunito Sans", 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 #9ab870;
}

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

.notificacion.exito {
  border-color: #9ab870;
}
.notificacion.error {
  border-color: #cd5c5c;
}
.notificacion.exito i {
  color: #9ab870;
}
.notificacion.error i {
  color: #cd5c5c;
}
.notificacion i {
  color: #9ab870;
  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;
  }
}
