.boda-section {
  padding: 80px 0;
  background-color: #faf8f5;
}
.phone-mockup {
  position: relative;
  width: 250px;
  height: 510px;
  margin: 0 auto 25px auto;
  border: 11px solid #2d2621;
  border-radius: 35px;
  box-shadow: 0 20px 40px rgba(74, 59, 50, 0.15);
  overflow: hidden;
  background: #000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.phone-mockup:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(74, 59, 50, 0.25);
}
.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #000; /* Fondo negro para simular el área de la barra de estado */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-screen img.invitation-img {
  width: 100%;
  height: calc(100% - 18px);
  margin-top: 18px; /* Desplaza la imagen debajo de la cámara/notch */
  object-fit: cover;
  display: block;
  border-top-left-radius: 18px; /* Esquinas redondeadas del diseño de la invitación */
  border-top-right-radius: 18px;
}
/* Notch/Camera */
.phone-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 115px;
  height: 16px;
  background: #2d2621;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  z-index: 10;
}

/* Optional soft shimmer sweep reflection (without sparkles) */
@keyframes shimmer-sweep {
  0% { transform: translateX(-150%) rotate(45deg); }
  100% { transform: translateX(150%) rotate(45deg); }
}
.shimmer-line {
  position: absolute;
  top: 18px;
  left: -50%;
  width: 200%;
  height: calc(100% - 18px);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.2) 30%,
    rgba(255, 255, 255, 0) 60%
  );
  transform: rotate(45deg);
  animation: shimmer-sweep 5s infinite linear;
  pointer-events: none;
  z-index: 4;
}

/* Original GIF Sparkles overlay */
.gif-sparkles-overlay {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: calc(100% - 18px);
  background: url('../img/brillitos.gif') repeat;
  background-size: 220px 220px;
  mix-blend-mode: screen;
  pointer-events: none;
  opacity: 0.7;
  z-index: 5;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}

/* Sparkles Container overlay */
.sparkles-overlay {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: calc(100% - 18px);
  pointer-events: none;
  z-index: 5;
}

/* Base Style for CSS Sparkles */
.sparkle {
  position: absolute;
  color: #fff;
  opacity: 0;
  text-shadow: 0 0 5px #fff, 0 0 10px #d8b166;
  pointer-events: none;
}

/* Animation keyframes for sparkles */
@keyframes sparkle-anim-2 {
  0%, 100% { opacity: 0; transform: scale(0) translateY(0); }
  50% { opacity: 0.9; transform: scale(1) translateY(-15px); }
}

.shimmer-line.slow {
  animation-duration: 6s;
}
.shimmer-line.more-visible {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.6) 30%,
    rgba(255, 255, 255, 0) 60%
  );
}

/* Timings, positions and sizes for sutil sparkles */
.sp-4 { top: 15%; right: 25%; font-size: 20px; color: #fff5e6; text-shadow: 0 0 5px #fff, 0 0 10px #ffb366; animation: sparkle-anim-2 3s infinite; animation-delay: 0.5s; }
.sp-5 { top: 55%; left: 15%; font-size: 14px; color: #ffe6ff; text-shadow: 0 0 5px #fff, 0 0 10px #ff80ff; animation: sparkle-anim-2 2.5s infinite; animation-delay: 1.2s; }
.sp-6 { bottom: 15%; right: 20%; font-size: 18px; color: #e6f7ff; text-shadow: 0 0 5px #fff, 0 0 10px #66ccff; animation: sparkle-anim-2 3.5s infinite; animation-delay: 2s; }

.style-title {
  font-family: 'Playball', cursive, sans-serif;
  color: #d8b166;
  font-size: 32px;
  margin-top: 15px;
  margin-bottom: 5px;
}
.style-desc {
  font-size: 15px;
  color: #6c5b51;
  line-height: 1.5;
  padding: 0 15px;
}
.btn-adquirir {
  background-color: #ddb063;
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 20px;
  margin-top: 15px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}
.btn-adquirir:hover {
  background-color: #c99b53;
  color: white;
}

/* Falling Petals Animation */
#petals-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1; /* Behind content but above background */
}

.falling-petal {
  position: absolute;
  pointer-events: none;
}

@keyframes fallAndSway {
  0% {
    top: -50px;
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(180deg) translateX(60px);
  }
  100% {
    top: 105vh;
    transform: rotate(360deg) translateX(-30px);
  }
}
