/* ==============================
   🎨 Paleta de colores
   ============================== */
:root {
  --verde-oliva: #707f62;  
  --verde-salvia: #aeb79d; 
  --dorado: #C2A96B;    
  --beige: #FAF0DC;   
  --marfil: #F5F4F0; 
  --negro: #2C2C2C; 
}

/* ==============================
   Reset básico
   ============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--marfil);
  color: var(--negro);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--negro);
}

p {
  margin-bottom: 1rem;
}

/* ==============================
   Botones
   ============================== */
.btn {
  padding: 0.75rem 1.5rem;
  background: var(--dorado);
  color: var(--marfil);
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #a88f54; /* tono más oscuro del dorado */
}

/* ==============================
   INTRO/SPLASH SCREEN
   ============================== */

.intro-screen {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #f5f0e8 0%, #ebe4d6 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  overflow: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Fondo animado */
.intro-background {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(90, 107, 74, 0.08) 0%, transparent 50%);
  animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Contenido principal */
.intro-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

/* Título arriba del sobre */
.intro-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: #5a6b4a;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.08em;
  animation: fadeInDown 1s ease-out;
}

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

/* Contenedor del sobre - EXTRA GRANDE (50% pantalla) */
.envelope-container {
  position: relative;
  cursor: pointer;
  animation: float 3.5s ease-in-out infinite;
  transition: transform 0.4s ease;
  width: 38vw;
  max-width: 1200px;
}

.envelope-container:hover {
  transform: scale(1.03);
  animation-play-state: paused;
}

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

.envelope-svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 35px 70px rgba(0, 0, 0, 0.3));
}

/* Sombra del sobre */
.envelope-shadow {
  opacity: 0.3;
  transition: all 0.5s ease;
}

.envelope-container:hover .envelope-shadow {
  rx: 270;
  opacity: 0.4;
}

/* Solapa que se abre */
.envelope-flap {
  transform-origin: 500px 250px;
  transition: transform 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.envelope-container.opened .envelope-flap {
  transform: rotateX(180deg);
}

/* Sello de cera */
.wax-seal {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.envelope-container.opened .wax-seal {
  transform: translateY(-200px) scale(0.7);
  opacity: 0;
}

/* Partículas decorativas */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #c9a961;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  top: 40%;
  left: 80%;
  animation-delay: 0.5s;
}

.particle:nth-child(3) {
  top: 60%;
  left: 15%;
  animation-delay: 1s;
}

.particle:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 1.5s;
}

.particle:nth-child(5) {
  top: 70%;
  left: 60%;
  animation-delay: 2s;
}

.particle:nth-child(6) {
  top: 50%;
  left: 30%;
  animation-delay: 2.5s;
}

@keyframes particleFloat {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-30px) scale(1.2);
  }
}

/* Texto de sugerencia - ÚNICO */
.intro-hint {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #7a8c6f;
  margin: 0;
  font-style: italic;
  animation: fadeInUp 1s ease-out 0.5s backwards, bounce 2s ease-in-out 2s infinite;
}

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

/* Canvas de confeti */
#confetti-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

/* Responsive */
@media (max-width: 1024px) {
  .envelope-container {
    width: 85vw;
    max-width: 900px;
  }
  
  .intro-title {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .intro-content {
    gap: 1.2rem;
  }
  
  .intro-title {
    font-size: 2.8rem;
  }
  
  .envelope-container {
    width: 88vw;
    max-width: 600px;
  }
  
  .intro-hint {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .intro-title {
    font-size: 2rem;
  }
  
  .envelope-container {
    width: 92vw;
    max-width: 400px;
  }
  
  .intro-hint {
    font-size: 0.9rem;
  }
}

/* ==============================
   Hero / Portada
   ============================== */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('assets/images/portada-000.jpeg');
    background-size: cover;
    background-position: center bottom -748px;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
        background: rgb(0 0 0 / 60%);
    z-index: 1;
}

/* Overlay para oscurecer la imagen */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Contenido del Hero */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--marfil);
    padding: 20px;
    max-width: 800px;
}

/* Subtítulo */
.hero-subtitle { 
	color: var(--marfil);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 8px;
    margin-bottom: 20px;
    text-transform: uppercase;
    opacity: 0.95;
}

/* Nombres */
.hero-names { 
	color: var(--marfil);
    font-size: 42px;
    font-weight: 300;
    letter-spacing: 12px;
    margin-bottom: 60px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Fecha */
.hero-date {
	font-family: 'Playfair Display', serif;
    position: relative;
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.date-line {
    width: 1px;
    height: 80px;
    background: white;
    margin: 0 auto;
}

.date-day { 
    font-size: 120px;
    font-weight: 400;
    line-height: 1;
    margin: 20px 0 0;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.date-month { 
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 10px;
    margin: 10px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.date-year { 
    font-size: 120px;
    font-weight: 400;
    line-height: 1;
    margin: 0 0 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

/* Ubicación */
.hero-location {
    margin-top: 60px;
}

.location-city { 
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 6px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.location-country { 
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {

    .hero-content {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;  
		padding: 10rem 0;
    }
 
    .hero-date {
        flex-direction: row;
        align-items: center;
        justify-content: center;
		gap: 1em;
    }
 
    .date-line {
        display: none;
    }

    .date-day,
    .date-month,
    .date-year {
        margin: 0;
		font-size: 42px;
		line-height: 54px;
    } 
}



@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 12px;
        letter-spacing: 4px;
        margin-bottom: 15px;
    }
    
    .hero-names {
        font-size: 32px;
        letter-spacing: 6px;
        margin-bottom: 40px;
    }
       
    .hero-location {
        margin-top: 40px;
    }
    
    .location-city {
        font-size: 18px;
        letter-spacing: 4px;
    }
    
    .location-country {
        font-size: 14px;
        letter-spacing: 3px;
    }
}
 
/* Animaciones opcionales */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.hero-content {
    animation: fadeIn 1.5s ease-out;
}

/* ==============================
   Secciones generales
   ============================== */
section {
  padding: 4rem 2rem;
} 
section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--verde-oliva);
}

/* ===============================
   NUESTRA HISTORIA 
   =============================== */  
.historia {
  background: linear-gradient(135deg, #5a6b4a 0%, #6b7c5a 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  color: var(--beige);
}

/* Decoraciones florales */
.floral-decoration {
  position: absolute;
  width: 750px;
  height: 750px;
  background-image: url('assets/images/hojas.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.2;
}

.floral-left {
  top: 0;
  left: -4%;
  transform: rotate(-72deg);
}

.floral-right {
    bottom: 0%;
    right: -2%;
    transform: rotate(60deg) scaleX(-1);
}

.historia .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.historia-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

/* Marco con arco árabe */
.historia-foto-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.arched-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.historia-foto {
  width: 100%;
  border-radius: 15px;
  display: block;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Contenido de texto */
.historia-content {
  text-align: left;
}

.historia .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--beige);
  margin-bottom: 2rem;
  letter-spacing: 0.15em;
  font-weight: 400; 
}

.historia-text {
  font-family: 'Lato', sans-serif;
  line-height: 1.9;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
}

.historia-text p {
  margin-bottom: 1.3rem;
}

.historia-text p:last-of-type {
  margin-bottom: 0;
}

.historia-final {
  font-style: italic;
  color: var(--dorado);
  margin-top: 1.8rem;
  font-size: 1.1rem;
}

.historia-epilogo {
  text-align: center;
  margin-top: 4rem;
  color: var(--beige);
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.05em;
  font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .historia-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .historia-foto-wrapper {
    order: -1;
  }
  
  .arched-frame {
    max-width: 350px;
  }
  
  .historia .section-title {
    text-align: center;
  }
  
  .historia-content {
    text-align: center;
  }
  
  .floral-decoration {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .historia {
    padding: 3rem 1.5rem;
  }
  
  .historia .section-title {
    font-size: 2rem;
    letter-spacing: 0.1em;
  }
  
  .historia-text {
    font-size: 0.95rem;
  }
  
  .historia-epilogo {
    font-size: 1.3rem;
    margin-top: 3rem;
  }
  
  .arched-frame {
    max-width: 300px;
  }
  
  .floral-decoration {
    width: 150px;
    height: 150px;
  }
  
  .floral-left {
    top: 5%;
    left: -5%;
  }
  
  .floral-right {
    bottom: 5%;
    right: -5%;
  }
}

@media (max-width: 480px) {
  .historia .section-title {
    font-size: 1.6rem;
  }
  
  .historia-text {
    font-size: 0.9rem;
  }
  
  .arched-frame {
    max-width: 280px;
    padding: 15px;
  }
}


/* ==============================
   Boda (Detalles)
   ============================== */
#boda p {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: var(--negro);
}

#mapa {
  margin: 2rem auto;
  width: 100%;
  max-width: 600px;
  height: 300px;
  background: var(--verde-salvia);
  border-radius: 12px;
}

/* ===== Sección La Boda ===== */
.section {
  padding: 60px 20px;
  background-color: #F5F4F0; /* marfil */
}

.section-title {
  text-align: center;
  font-size: 2.2em;
  color: #2C2C2C; /* negro ahumado */
  margin-bottom: 40px;
  font-family: 'Georgia', serif;
}

.evento {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.evento-img {
  width: 40%;
  object-fit: cover;
	    max-height: 500px;
}

.evento-info {
  padding: 20px;
  width: 60%;
}

.evento-info h3 {
  font-size: 1.5em;
  color: #4A5A41; /* verde oliva */
  margin-bottom: 10px;
}

.evento-info p {
  font-size: 1em;
  margin-bottom: 8px;
  color: #2C2C2C;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background-color: #C2A96B; /* dorado */
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #7D8C6F; /* verde salvia */
}

/* ==============================
   TIMELINE - ESTILO ELEGANTE
   ============================== */

.timeline-section {
  background: linear-gradient(135deg, #f5f0e8 0%, #ebe4d6 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Decoraciones florales */
.timeline-floral-left,
.timeline-floral-right {
  position: absolute;
  width: 200px;
  height: 200px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="none" stroke="%235a6b4a" stroke-width="1.5" opacity="0.2"><circle cx="100" cy="100" r="40"/><path d="M100 60 Q80 80 100 100 Q120 80 100 60"/><path d="M140 100 Q120 80 100 100 Q120 120 140 100"/><path d="M100 140 Q120 120 100 100 Q80 120 100 140"/><path d="M60 100 Q80 120 100 100 Q80 80 60 100"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.5;
}

.timeline-floral-left {
  top: 10%;
  left: 2%;
  transform: rotate(-15deg);
}

.timeline-floral-right {
  bottom: 10%;
  right: 2%;
  transform: rotate(25deg);
}

.timeline-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.timeline-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.timeline-line-header {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a961, transparent);
}

.timeline-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #5a6b4a;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.timeline-intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #7a8c6f;
  font-style: italic;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.6;
}

/* Timeline container */
.timeline {
  position: relative;
  padding: 2rem 0;
}

/* Línea central */
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, #c9a961 0%, #d4b98a 50%, #c9a961 100%);
  border-radius: 2px;
}

/* Items de timeline */
.timeline-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
  gap: 3rem;
}

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

/* Alternar lado */
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Punto en la línea */
.timeline-item::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: #5a6b4a;
  border: 4px solid #f5f0e8;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(90, 107, 74, 0.2);
}

/* Contenido */
.timeline__content {
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 45%;
  position: relative;
  border: 1px solid rgba(201, 169, 97, 0.2);
  transition: all 0.3s ease;
}

.timeline__content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
} 
/* Título del evento */
.timeline__content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* Hora */
.timeline__content time {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #c9a961;
  background: rgba(201, 169, 97, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

/* Descripción */
.timeline__content p {
  font-family: 'Lato', sans-serif;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.7;
  margin: 1rem 0;
}

/* Botón de mapa */
.btn-timeline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.5rem;
  background: linear-gradient(135deg, #5a6b4a 0%, #7a8c6f 100%);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(90, 107, 74, 0.3);
}

.btn-timeline:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 107, 74, 0.4);
}

.btn-timeline svg {
  width: 18px;
  height: 18px;
}

/* Imagen */
.timeline__image {
  width: 45%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.timeline__image:hover img {
  transform: scale(1.05);
}

/* Footer */
.timeline-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #7a8c6f;
  font-style: italic;
  text-align: center;
  margin-top: 4rem;
  letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 900px) {
  .timeline-section {
    padding: 3rem 1.5rem;
  }
  
  .timeline-section .section-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  .timeline-header {
    gap: 1rem;
  }
  
  .timeline-line-header {
    width: 50px;
  }
  
  .timeline-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
  }
  
  /* Cambiar a layout vertical */
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 60px;
    gap: 1.5rem;
  }
  
  .timeline-item::before {
    left: 30px;
    top: 20px;
  }
  
  .timeline__content,
  .timeline__image {
    width: 100%;
  }
  
  .timeline__image img {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .timeline-section {
    padding: 2.5rem 1rem;
  }
  
  .timeline-section .section-title {
    font-size: 1.6rem;
  }
  
  .timeline-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 50px;
    margin-bottom: 3rem;
  }
  
  .timeline-item::before {
    left: 20px;
    width: 16px;
    height: 16px;
    border-width: 3px;
  }
  
  .timeline__content {
    padding: 1.5rem 1.8rem;
  }
  
  .timeline-icon {
    width: 45px;
    height: 45px;
  }
  
  .timeline-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .timeline__content h3 {
    font-size: 1.5rem;
  }
  
  .timeline__content time {
    font-size: 1rem;
  }
  
  .timeline__content p {
    font-size: 0.95rem;
  }
  
  .timeline__image img {
    height: 200px;
  }
  
  .btn-timeline {
    font-size: 0.9rem;
    padding: 0.7rem 1.3rem;
  }
  
  .timeline-footer {
    font-size: 1.1rem;
    margin-top: 3rem;
  }
  
  .timeline-line-header {
    width: 30px;
  }
  
  .timeline-floral-left,
  .timeline-floral-right {
    width: 140px;
    height: 140px;
  }
}

/* ==============================
   Cuenta regresiva
   ============================== */ 
.countdown-section {
  background: linear-gradient(135deg, #f5f0e8 0%, #ebe4d6 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decoración de fondo sutil */
.countdown-bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(90, 107, 74, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.countdown-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header de la sección */
.countdown-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.countdown-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a961, transparent);
}

.countdown-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #5a6b4a;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

/* Wrapper de la cuenta atrás */
.countdown-wrapper {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 3rem 0;
}

/* Items individuales */
.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out;
}

.countdown-item:nth-child(2) { animation-delay: 0.1s; }
.countdown-item:nth-child(4) { animation-delay: 0.2s; }
.countdown-item:nth-child(6) { animation-delay: 0.3s; }
.countdown-item:nth-child(8) { animation-delay: 0.4s; }

/* Círculos con números */
.countdown-circle {
  position: relative;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, #ffffff 0%, #faf8f3 100%);
  border-radius: 50%;
  display: flex;
  align-items: baseline;
  justify-content: center;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.1),
    inset 0 -2px 8px rgba(0, 0, 0, 0.05);
  border: 3px solid #c9a961;
  transition: all 0.3s ease;
}

.countdown-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.countdown-circle:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.15),
    inset 0 -2px 8px rgba(0, 0, 0, 0.05);
}

.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #5a6b4a;
  line-height: 2.6;
}

.countdown-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #4a4a4a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

/* Separadores entre números */
.countdown-separator {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #c9a961;
  font-weight: 300;
  margin: 0 0.5rem;
  opacity: 0.6;
  align-self: flex-start;
  margin-top: 45px;
}

/* Subtítulo */
.countdown-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #7a8c6f;
  font-style: italic;
  margin-top: 3rem;
  letter-spacing: 0.03em;
}

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

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

/* Animación sutil en los números cuando cambian */
.countdown-number {
  animation: pulse 0.5s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .countdown-wrapper {
    gap: 1rem;
  }
  
  .countdown-circle {
    width: 120px;
    height: 120px;
  }
  
  .countdown-number {
    font-size: 2.5rem;
  }
  
  .countdown-separator {
    font-size: 2.5rem;
    margin-top: 38px;
  }
}

@media (max-width: 768px) {
  .countdown-section {
    padding: 3rem 1.5rem;
  }
  
  .countdown-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  .countdown-header {
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .countdown-divider {
    width: 50px;
  }
  
  .countdown-wrapper {
    gap: 0.8rem;
  }
  
  .countdown-circle {
    width: 100px;
    height: 100px;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-label {
    font-size: 0.85rem;
  }
  
  .countdown-separator {
    font-size: 2rem;
    margin: 0 0.2rem;
    margin-top: 28px;
  }
  
  .countdown-subtitle {
    font-size: 1.1rem;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .countdown-title {
    font-size: 1.6rem;
  }
  
  .countdown-wrapper {
    gap: 0.5rem;
  }
  
  .countdown-circle {
    width: 75px;
    height: 75px;
  }
  
  .countdown-circle::before {
    inset: -5px;
  }
  
  .countdown-number {
    font-size: 1.6rem;
  }
  
  .countdown-label {
    font-size: 0.75rem;
  }
  
  .countdown-separator {
    font-size: 1.6rem;
    margin: 0;
    margin-top: 18px;
  }
  
  .countdown-subtitle {
    font-size: 1rem;
  }
  
  .countdown-divider {
    width: 30px;
  }
}

/* ==============================
   GALERÍA 
   ============================== */

.galeria-section {
  background: linear-gradient(135deg, #5a6b4a 0%, #6b7c5a 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Decoraciones florales */
.galeria-floral-left,
.galeria-floral-right {
  position: absolute;
  width: 220px;
  height: 220px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="none" stroke="%23d4c5a0" stroke-width="1.5" opacity="0.25"><circle cx="100" cy="100" r="40"/><path d="M100 60 Q80 80 100 100 Q120 80 100 60"/><path d="M140 100 Q120 80 100 100 Q120 120 140 100"/><path d="M100 140 Q120 120 100 100 Q80 120 100 140"/><path d="M60 100 Q80 120 100 100 Q80 80 60 100"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.4;
}

.galeria-floral-left {
  top: 6%;
  left: 2%;
  transform: rotate(-30deg);
}

.galeria-floral-right {
  bottom: 6%;
  right: 2%;
  transform: rotate(40deg);
}

.galeria-section .container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.galeria-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.galeria-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 240, 232, 0.5), transparent);
}

.galeria-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f5f0e8;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.galeria-intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(245, 240, 232, 0.95);
  font-style: italic;
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

/* Grid de galería con diferentes tamaños */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 280px;
  gap: 20px;
  margin: 2rem 0;
}

/* Items de la galería */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-wide img {
  object-position: center -200px;
}

/* Variaciones de tamaño */
.gallery-tall {
  grid-row: span 2;
}

.gallery-wide {
  grid-column: span 2;
}

/* Imagen */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

/* Overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(90, 107, 74, 0) 0%,
    rgba(90, 107, 74, 0.7) 100%
  );
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.gallery-overlay svg {
  width: 50px;
  height: 50px;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

/* Hover effects */
.gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay svg {
  transform: scale(1);
}

/* Footer */
.galeria-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(245, 240, 232, 0.95);
  font-style: italic;
  text-align: center;
  margin-top: 3.5rem;
  letter-spacing: 0.02em;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-auto-rows: 250px;
  }
}

@media (max-width: 900px) {
  .galeria-section {
    padding: 3rem 1.5rem;
  }
  
  .galeria-section .section-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  .galeria-header {
    gap: 1rem;
  }
  
  .galeria-line {
    width: 50px;
  }
  
  .galeria-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
  }
  
  /* En tablet, resetear los tamaños especiales */
  .gallery-tall {
    grid-row: span 1;
  }
  
  .gallery-wide {
    grid-column: span 2;
  }
  
  .galeria-floral-left,
  .galeria-floral-right {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .galeria-section {
    padding: 2.5rem 1rem;
  }
  
  .galeria-section .section-title {
    font-size: 1.6rem;
  }
  
  .galeria-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
    gap: 12px;
  }
  
  /* En móvil, todos los items tienen el mismo tamaño */
  .gallery-tall,
  .gallery-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  
  .gallery-overlay svg {
    width: 40px;
    height: 40px;
  }
  
  .galeria-footer {
    font-size: 1.1rem;
    margin-top: 2.5rem;
  }
  
  .galeria-line {
    width: 30px;
  }
  
  .galeria-floral-left,
  .galeria-floral-right {
    width: 120px;
    height: 120px;
  }
  
  .galeria-floral-left {
    top: 2%;
    left: -3%;
  }
  
  .galeria-floral-right {
    bottom: 2%;
    right: -3%;
  }
}

/* Animación de entrada progresiva */
@keyframes fadeInGallery {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.gallery-item {
  animation: fadeInGallery 0.6s ease-out backwards;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }

/* Mejora de rendimiento */
.gallery-item {
  will-change: transform;
}

.gallery-item img {
  will-change: transform;
}

/* ==============================
   DRESS CODE 
   ============================== */ 
/* ==============================
   DRESS CODE - ESTILO ELEGANTE
   ============================== */

.dresscode-section {
  background: linear-gradient(135deg, #faf8f3 0%, #f5f0e8 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Decoraciones florales sutiles */
.dresscode-floral-left,
.dresscode-floral-right {
  position: absolute;
  width: 200px;
  height: 200px;
  opacity: 0.15;
  pointer-events: none;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="none" stroke="%235a6b4a" stroke-width="1.5"><circle cx="100" cy="100" r="40"/><path d="M100 60 Q80 80 100 100 Q120 80 100 60"/><path d="M140 100 Q120 80 100 100 Q120 120 140 100"/><path d="M100 140 Q120 120 100 100 Q80 120 100 140"/><path d="M60 100 Q80 120 100 100 Q80 80 60 100"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
}

.dresscode-floral-left {
  top: 5%;
  left: 3%;
  transform: rotate(-20deg);
}

.dresscode-floral-right {
  bottom: 8%;
  right: 3%;
  transform: rotate(35deg);
}

.dresscode-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header de la sección */
.dresscode-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.dresscode-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a961, transparent);
}

.dresscode-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #5a6b4a;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

/* Intro text */
.dresscode-intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #7a8c6f;
  font-style: italic;
  margin-bottom: 3.5rem;
  letter-spacing: 0.02em;
}

/* Grid de tarjetas */
.dresscode-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin: 3rem 0;
}

/* Tarjetas individuales */
.dresscard {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(201, 169, 97, 0.2);
  opacity: 0;
  transform: translateY(30px);
}

.dresscard.visible {
  opacity: 1;
  transform: translateY(0);
}

.dresscard:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

/* Borde superior según tipo */
.dresscard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  border-radius: 0 0 4px 4px;
  transition: width 0.3s ease;
}

.dresscard:hover::before {
  width: 80%;
}

.dresscard.permitido::before {
  background: linear-gradient(90deg, #5a6b4a, #7a8c6f);
}

.dresscard.prohibido::before {
  background: linear-gradient(90deg, #c9a961, #d4b98a);
}

.dresscard.bonus::before {
  background: linear-gradient(90deg, #7a8c6f, #5a6b4a);
}

/* Wrapper del icono */
.dresscard-icon-wrapper {
  margin-bottom: 1.5rem;
}

.dresscard-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
}

.dresscard-icon::before {
  content: '';
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  opacity: 0.2;
  transition: all 0.3s ease;
}

.dresscard:hover .dresscard-icon {
  transform: scale(1.1) rotate(5deg);
}

.dresscard-icon svg {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

/* Colores específicos por tipo de tarjeta */
.dresscard.permitido .dresscard-icon {
  background: rgba(90, 107, 74, 0.1);
  color: #5a6b4a;
}

.dresscard.permitido .dresscard-icon::before {
  border: 2px solid #5a6b4a;
}

.dresscard.prohibido .dresscard-icon {
  background: rgba(201, 169, 97, 0.1);
  color: #c9a961;
}

.dresscard.prohibido .dresscard-icon::before {
  border: 2px solid #c9a961;
}

.dresscard.bonus .dresscard-icon {
  background: rgba(122, 140, 111, 0.1);
  color: #7a8c6f;
}

.dresscard.bonus .dresscard-icon::before {
  border: 2px solid #7a8c6f;
}

/* Título de la tarjeta */
.dresscard-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #2c2c2c;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Texto de la tarjeta */
.dresscard-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #4a4a4a;
}

/* Footer con nota */
.dresscode-footer {
  margin-top: 4rem;
}

.dresscode-note {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #7a8c6f;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Animaciones escalonadas */
.dresscard:nth-child(1) {
  transition-delay: 0.1s;
}

.dresscard:nth-child(2) {
  transition-delay: 0.2s;
}

.dresscard:nth-child(3) {
  transition-delay: 0.3s;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .dresscode-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .dresscode-section {
    padding: 3rem 1.5rem;
  }
  
  .dresscode-section .section-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  .dresscode-header {
    gap: 1rem;
  }
  
  .dresscode-line {
    width: 60px;
  }
  
  .dresscode-intro {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }
  
  .dresscode-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .dresscard {
    padding: 2rem 1.5rem;
  }
  
  .dresscard-icon {
    width: 60px;
    height: 60px;
  }
  
  .dresscard-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .dresscard-title {
    font-size: 1.4rem;
  }
  
  .dresscard-text {
    font-size: 0.95rem;
  }
  
  .dresscode-floral-left,
  .dresscode-floral-right {
    width: 150px;
    height: 150px;
    opacity: 0.1;
  }
}

@media (max-width: 480px) {
  .dresscode-section .section-title {
    font-size: 1.6rem;
  }
  
  .dresscode-intro {
    font-size: 1.1rem;
  }
  
  .dresscard {
    padding: 1.8rem 1.2rem;
  }
  
  .dresscard-title {
    font-size: 1.3rem;
  }
  
  .dresscard-text {
    font-size: 0.9rem;
  }
  
  .dresscode-note {
    font-size: 1.1rem;
  }
  
  .dresscode-line {
    width: 40px;
  }
  
  .dresscode-floral-left {
    top: 2%;
    left: -5%;
  }
  
  .dresscode-floral-right {
    bottom: 2%;
    right: -5%;
  }
}

/* ==============================
   FAQs - ACORDEÓN ELEGANTE
   ============================== */

.faq-section {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(90, 107, 74, 0.2);
}

.faq-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #5a6b4a;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(201, 169, 97, 0.15);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
  box-shadow: 0 4px 20px rgba(90, 107, 74, 0.15);
}

.faq-question {
  width: 100%;
  padding: 1.3rem 1.5rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #2c2c2c;
  text-align: left;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #5a6b4a;
}

.faq-question span {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: #7a8c6f;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #5a6b4a;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

/* Animación de entrada */
@keyframes fadeInFaq {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.faq-item {
  animation: fadeInFaq 0.5s ease-out backwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

/* Responsive FAQs */
@media (max-width: 768px) {
  .faq-section {
    margin-top: 3rem;
    padding-top: 2rem;
  }
  
  .faq-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
  }
  
  .faq-question {
    padding: 1.1rem 1.2rem;
    font-size: 0.98rem;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
  }
  
  .faq-answer p {
    font-size: 0.93rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.4rem;
  }
  
  .faq-question {
    padding: 1rem;
    font-size: 0.93rem;
  }
  
  .faq-answer p {
    font-size: 0.9rem;
  }
}

/* ===================== 
LISTA DE BODA 
===================== */ 
.lista-boda-section {
  background: linear-gradient(135deg, #5a6b4a 0%, #6b7c5a 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  color: var(--beige);
}

/* Decoraciones florales */
.lista-floral-left,
.lista-floral-right {
  position: absolute;
  width: 250px;
  height: 250px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="none" stroke="%23d4c5a0" stroke-width="1.5" opacity="0.3"><path d="M100 50 Q80 70 100 90 Q120 70 100 50 M90 60 Q100 50 110 60 M100 90 L100 120 M85 105 Q95 115 100 120 M115 105 Q105 115 100 120"/><ellipse cx="100" cy="65" rx="12" ry="18" transform="rotate(-20 100 65)"/><ellipse cx="100" cy="65" rx="12" ry="18" transform="rotate(20 100 65)"/><path d="M100 50 Q75 55 70 80 M100 50 Q125 55 130 80"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.3;
}

.lista-floral-left {
  top: 8%;
  left: 3%;
  transform: rotate(-25deg);
}

.lista-floral-right {
  bottom: 8%;
  right: 3%;
  transform: rotate(35deg) scaleX(-1);
}

.lista-boda-section .container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.lista-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.lista-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 240, 232, 0.5), transparent);
}

.lista-boda-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f5f0e8;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.lista-intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(245, 240, 232, 0.95);
  font-style: italic;
  text-align: center;
  margin-bottom: 3rem;
  line-height: 1.6;
}

/* Contenido principal */
.lista-content {
  margin: 3rem 0;
}

/* Flip Card Container */
.flip-card-container {
  perspective: 1500px;
  margin: 0 auto 3rem;
}

.flip-card {
  width: 100%;
  max-width: 450px;
  height: 280px;
  margin: 0 auto;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.flip-inner.flipped {
  transform: rotateY(180deg);
}

/* Caras de la tarjeta */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border: 2px solid rgba(245, 240, 232, 0.3);
  backdrop-filter: blur(10px);
}

.flip-back {
  transform: rotateY(180deg);
}

/* Iconos de la tarjeta */
.flip-icon,
.flip-icon-unlocked {
  width: 70px;
  height: 70px;
  margin-bottom: 1.5rem;
  color: #c9a961;
}

.flip-icon svg,
.flip-icon-unlocked svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.flip-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #f5f0e8;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.flip-text {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.8);
  margin-bottom: 1.5rem;
}

/* Botón de flip */
.btn-flip {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #c9a961 0%, #d4b98a 100%);
  color: #2c2c2c;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(201, 169, 97, 0.4);
}

.btn-flip:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(201, 169, 97, 0.5);
}

.btn-flip svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.btn-flip:hover svg {
  transform: translateX(4px);
}

/* Número de cuenta */
.account-number {
  font-family: 'Courier New', monospace;
  font-size: 1.3rem;
  font-weight: 600;
  color: #c9a961;
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 1.5rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.1em;
  text-align: center;
  border: 1px dashed rgba(201, 169, 97, 0.5);
}

/* Botón copiar */
.btn-copy {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.8rem;
  background: rgba(245, 240, 232, 0.95);
  color: #2c2c2c;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-copy:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-copy svg {
  width: 18px;
  height: 18px;
}

/* Alternativas */
.lista-alternatives {
  text-align: center;
  margin: 2rem 0;
}

.alternative-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.9);
  line-height: 1.6;
}

.alternative-text svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  opacity: 0.7;
}

/* Mensaje de agradecimiento */
.lista-thanks {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(245, 240, 232, 0.95);
  font-style: italic;
  text-align: center;
  margin-top: 3rem;
  letter-spacing: 0.02em;
}

/* Responsive */
@media (max-width: 768px) {
  .lista-boda-section {
    padding: 3rem 1.5rem;
  }
  
  .lista-boda-section .section-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  .lista-header {
    gap: 1rem;
  }
  
  .lista-line {
    width: 50px;
  }
  
  .lista-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
  
  .flip-card {
    height: 260px;
  }
  
  .flip-front,
  .flip-back {
    padding: 2rem;
  }
  
  .flip-icon,
  .flip-icon-unlocked {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .flip-title {
    font-size: 1.5rem;
  }
  
  .account-number {
    font-size: 1.1rem;
    padding: 0.8rem 1rem;
    word-break: break-all;
  }
  
  .alternative-text {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .lista-floral-left,
  .lista-floral-right {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 480px) {
  .lista-boda-section .section-title {
    font-size: 1.6rem;
  }
  
  .lista-intro {
    font-size: 1rem;
  }
  
  .flip-card {
    height: 240px;
    max-width: 350px;
  }
  
  .flip-front,
  .flip-back {
    padding: 1.5rem;
  }
  
  .flip-title {
    font-size: 1.3rem;
  }
  
  .account-number {
    font-size: 0.95rem;
    letter-spacing: 0.05em;
  }
  
  .btn-flip {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .btn-copy {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .lista-thanks {
    font-size: 1.1rem;
  }
  
  .lista-line {
    width: 30px;
  }
}

/* ==============================
   FORMULARIO RSVP
   ============================== */

.rsvp-section {
  background: linear-gradient(135deg, #f5f0e8 0%, #ebe4d6 100%);
  padding: 5rem 2rem;
  position: relative;
}

.rsvp-section .container {
  max-width: 700px;
  margin: 0 auto;
}

/* Header */
.rsvp-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.rsvp-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c9a961, transparent);
}

.rsvp-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #5a6b4a;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.rsvp-intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #7a8c6f;
  font-style: italic;
  text-align: center;
  margin-bottom: 3rem;
}

/* Formulario */
.rsvp-form {
  background: #ffffff;
  padding: 3rem 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(201, 169, 97, 0.2);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #2c2c2c;
  margin-bottom: 0.8rem;
  letter-spacing: 0.02em;
}

.required {
  color: #c9a961;
}

.form-group input[type="text"],
.form-group input[type="number"],
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #2c2c2c;
  transition: all 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7a8c6f;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(122, 140, 111, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* Radio buttons */
.radio-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #4a4a4a;
}

.radio-label input[type="radio"] {
  margin-right: 0.6rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #7a8c6f;
}

/* Mensajes */
.form-message {
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  font-family: 'Lato', sans-serif;
  text-align: center;
  display: none;
}

.form-message:not(:empty) {
  display: block;
}

.form-message.success {
  background: rgba(90, 107, 74, 0.1);
  color: #5a6b4a;
  border: 1px solid rgba(90, 107, 74, 0.3);
}

.form-message.error {
  background: rgba(201, 169, 97, 0.1);
  color: #a67c00;
  border: 1px solid rgba(201, 169, 97, 0.3);
}

/* Botón de envío */
.btn-submit {
  width: 100%;
  padding: 1.2rem 2rem;
  background: linear-gradient(135deg, #5a6b4a 0%, #7a8c6f 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(90, 107, 74, 0.3);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(90, 107, 74, 0.4);
}

.btn-submit:active:not(:disabled) {
  transform: translateY(0);
}

.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-loading {
  display: inline-block;
}

/* Responsive */
@media (max-width: 768px) {
  .rsvp-section {
    padding: 3rem 1.5rem;
  }
  
  .rsvp-section .section-title {
    font-size: 2rem;
  }
  
  .rsvp-form {
    padding: 2rem 1.5rem;
  }
  
  .rsvp-header {
    gap: 1rem;
  }
  
  .rsvp-line {
    width: 50px;
  }
  
  .radio-group {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .rsvp-section .section-title {
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  
  .rsvp-intro {
    font-size: 1.1rem;
  }
  
  .rsvp-form {
    padding: 1.5rem 1.2rem;
  }
  
  .rsvp-line {
    width: 30px;
  }
}

/* ==============================
   PLAYLIST - SPOTIFY SECTION
   ============================== */ 
.playlist-section {
  background: linear-gradient(135deg, #5a6b4a 0%, #6b7c5a 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Decoraciones florales */
.playlist-floral-left,
.playlist-floral-right {
  position: absolute;
  width: 220px;
  height: 220px;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><g fill="none" stroke="%23d4c5a0" stroke-width="1.5" opacity="0.25"><circle cx="100" cy="100" r="40"/><path d="M100 60 Q80 80 100 100 Q120 80 100 60"/><path d="M140 100 Q120 80 100 100 Q120 120 140 100"/><path d="M100 140 Q120 120 100 100 Q80 120 100 140"/><path d="M60 100 Q80 120 100 100 Q80 80 60 100"/></g></svg>');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0.3;
}

.playlist-floral-left {
  top: 8%;
  left: 2%;
  transform: rotate(-25deg);
}

.playlist-floral-right {
  bottom: 8%;
  right: 2%;
  transform: rotate(35deg);
}

.playlist-section .container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Header */
.playlist-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.playlist-line {
  width: 100px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 240, 232, 0.5), transparent);
}

.playlist-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f5f0e8;
  letter-spacing: 0.08em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
  text-align: center;
}

.playlist-intro {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(245, 240, 232, 0.95);
  font-style: italic;
  text-align: center;
  margin-bottom: 3.5rem;
  line-height: 1.6;
}

/* Contenido principal */
.playlist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

/* Info de la playlist */
.playlist-info {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 240, 232, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.playlist-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.spotify-icon {
  width: 80px;
  height: 80px;
  color: #1DB954;
  filter: drop-shadow(0 4px 12px rgba(29, 185, 84, 0.4));
}

.playlist-title-card {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #f5f0e8;
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.playlist-description {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.9);
  text-align: center;
  margin-bottom: 2rem;
}

/* Estadísticas */
.playlist-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0 2.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 240, 232, 0.2);
  border-bottom: 1px solid rgba(245, 240, 232, 0.2);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.stat-item svg {
  width: 28px;
  height: 28px;
  color: #c9a961;
}

.stat-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(245, 240, 232, 0.95);
}

/* Botón de Spotify */
.btn-spotify {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: #1DB954;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

.btn-spotify:hover {
  background: #1ed760;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(29, 185, 84, 0.5);
}

.btn-spotify svg {
  width: 24px;
  height: 24px;
}

/* Embed de Spotify */
.playlist-embed {
  display: flex;
  justify-content: center;
  align-items: center;
}

.playlist-frame {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(245, 240, 232, 0.2);
  background: #000;
}

.playlist-frame iframe {
  display: block;
}

/* Footer */
.playlist-footer {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: rgba(245, 240, 232, 0.95);
  font-style: italic;
  text-align: center;
  margin-top: 3.5rem;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

/* ==============================
   FORMULARIO DE SUGERENCIAS
   ============================== */

.song-suggestions {
  max-width: 700px;
  margin: 3rem auto 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  padding: 2.5rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245, 240, 232, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.suggestions-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #f5f0e8;
  text-align: center;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.suggestions-intro {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.85);
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.suggestions-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(245, 240, 232, 0.95);
}

.form-field .required {
  color: #c9a961;
}

.form-field input,
.form-field textarea {
  padding: 0.9rem 1.2rem;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(201, 169, 97, 0.3);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: #2c2c2c;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #c9a961;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.2);
}

.form-field textarea {
  resize: vertical;
  min-height: 60px;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #999;
}

/* Botón de enviar */
.btn-suggest {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.1rem 2rem;
  background: linear-gradient(135deg, #c9a961 0%, #d4b98a 100%);
  color: #2c2c2c;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4);
  margin-top: 0.5rem;
}

.btn-suggest:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 97, 0.5);
}

.btn-suggest:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.btn-suggest svg {
  width: 20px;
  height: 20px;
}

/* Mensajes del formulario */
.song-suggestions .form-message {
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  display: none;
}

.song-suggestions .form-message:not(:empty) {
  display: block;
}

.song-suggestions .form-message.success {
  background: rgba(29, 185, 84, 0.2);
  color: #1DB954;
  border: 1px solid rgba(29, 185, 84, 0.4);
}

.song-suggestions .form-message.error {
  background: rgba(201, 169, 97, 0.2);
  color: #f5f0e8;
  border: 1px solid rgba(201, 169, 97, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .playlist-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .playlist-info {
    order: 1;
  }
  
  .playlist-embed {
    order: 2;
  }
}

@media (max-width: 768px) {
  .playlist-section {
    padding: 3rem 1.5rem;
  }
  
  .playlist-section .section-title {
    font-size: 2rem;
    letter-spacing: 0.05em;
  }
  
  .playlist-header {
    gap: 1rem;
  }
  
  .playlist-line {
    width: 50px;
  }
  
  .playlist-intro {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  
  .playlist-info {
    padding: 2rem 1.8rem;
  }
  
  .spotify-icon {
    width: 65px;
    height: 65px;
  }
  
  .playlist-title-card {
    font-size: 1.6rem;
  }
  
  .playlist-description {
    font-size: 1rem;
  }
  
  .playlist-stats {
    gap: 2rem;
  }
  
  .playlist-floral-left,
  .playlist-floral-right {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 600px) {
  .playlist-section {
    padding: 2.5rem 1rem;
  }
  
  .playlist-section .section-title {
    font-size: 1.6rem;
  }
  
  .playlist-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .playlist-info {
    padding: 1.8rem 1.5rem;
  }
  
  .spotify-icon {
    width: 55px;
    height: 55px;
  }
  
  .playlist-title-card {
    font-size: 1.4rem;
  }
  
  .playlist-description {
    font-size: 0.95rem;
  }
  
  .playlist-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .btn-spotify {
    font-size: 1rem;
    padding: 1rem 1.8rem;
  }
  
  .playlist-footer {
    font-size: 1.1rem;
    margin-top: 2.5rem;
  }
  
  .playlist-line {
    width: 30px;
  }
  
  .playlist-frame {
    max-width: 100%;
  }
  
  .playlist-floral-left,
  .playlist-floral-right {
    width: 120px;
    height: 120px;
    opacity: 0.2;
  }
  
  .song-suggestions {
    padding: 2rem 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .suggestions-title {
    font-size: 1.5rem;
  }
  
  .suggestions-intro {
    font-size: 0.95rem;
  }
  
  .btn-suggest {
    font-size: 1rem;
    padding: 1rem 1.8rem;
  }
}

/* ==============================
   Footer
   ============================== */
footer {
  text-align: center;
  padding: 2rem;
  background: var(--verde-oliva);
  color: var(--marfil);
  font-size: 0.9rem;
}

/* ==============================
   Musica
   ============================== */
.music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--dorado);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 999;
}

.music-btn:hover {
  background: var(--verde-salvia);
  transform: scale(1.1);
}


/* ==============================
   Responsive
   ============================== */

@media (max-width: 860px) {
  .timeline {
    width: 100%;
}
	#hero {
	background-position: center;
	}
	.gallery-wide img {
    object-position: center -114px;
}
}


/* ==============================
Efecto boton
   ============================== */
.btn-animado {
  position: relative;
  display: inline-block;   
  color: var(--marfil);
  border: 2px solid var(--verde-oliva);
  background-color: var(--verde-oliva);
  border-radius: 8px; 
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: color 0.3s ease;
  overflow: hidden;
  z-index: 1;
}

.btn-animado::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  background-color: var(--dorado);
	border: 2px solid var(--dorado);
  z-index: -1;
  opacity: 0;
  transition: all 0.5s ease;
}

.btn-animado:hover::before {
  left: 0;
  right: 0;
  opacity: 1;
}

.btn-animado:hover {
  color: var(--marfil);
	border: 2px solid var(--dorado);
}

/* ==============================
   Menu
   ============================== */
        .menu-button {
            position: fixed;
            top: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            cursor: pointer;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 5px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
        }

        .menu-button:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: scale(1.05);
        }

        .menu-button span {
            width: 24px;
            height: 2px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* Animación del icono cuando está abierto */
        .menu-button.active span:nth-child(1) {
            transform: rotate(45deg) translate(7px, 7px);
        }

        .menu-button.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-button.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Panel del menú */
        .menu-panel {
            position: fixed;
            top: 0;
            right: -400px;
            width: 350px;
            height: 100vh;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-left: 1px solid rgba(255, 255, 255, 0.3);
            z-index: 999;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
        }

        .menu-panel.active {
            right: 0;
        }

        .menu-content {
            padding: 100px 40px 40px;
        }

        .menu-title {
            font-size: 2rem;
            color: var(--verde-oliva);
            margin-bottom: 10px;
            font-weight: normal;
        } 

        .menu-items {
            list-style: none;
        }

        .menu-items li {
            margin-bottom: 25px;
        }

        .menu-items a {
            text-decoration: none;
            color: #333;
            font-size: 1.2rem;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .menu-items a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 0;
            background: var(--verde-oliva);
            transition: width 0.3s ease;
            z-index: -1;
        }

        .menu-items a:hover::before {
            width: 100%;
        }

        .menu-items a:hover {
            color: white;
            transform: translateX(10px);
        }

        .menu-icon {
            font-size: 1.5rem;
        }

        /* Overlay de fondo */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0);
            pointer-events: none;
            z-index: 998;
            transition: background 0.3s ease;
        }

        .menu-overlay.active {
            background: rgba(0, 0, 0, 0.5);
            pointer-events: all;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .menu-button {
                top: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
            }

            .menu-panel {
                width: 85%;
                max-width: 300px;
            }

            .menu-content {
                padding: 80px 30px 30px;
            }

            .content h1 {
                font-size: 2rem;
            }
        }
