/* ==========================================================
   CEREMONIA
========================================================== */

.ceremony-section {
  position: relative;
  min-height: 100svh;
  overflow: hidden;

  background:
  radial-gradient(
    ellipse at 50% 42%,
    rgba(25, 58, 120, .34) 0%,
    rgba(8, 24, 55, .18) 32%,
    rgba(2, 8, 18, 0) 64%
  ),
  radial-gradient(
    ellipse at 50% -10%,
    rgba(75, 110, 180, .14) 0%,
    rgba(20, 45, 95, .09) 26%,
    transparent 58%
  ),
  linear-gradient(
    180deg,
    #01060f 0%,
    #020b18 24%,
    #06172d 48%,
    #041326 72%,
    #020914 100%
  );
   margin-top: -1px;
}

.ceremony-section,
.ceremony-section .section-inner {
    min-height: 72svh;
}

.ceremony-content {
  position: relative;
  z-index: 5;

  min-height: 100svh;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start !important;

  padding-top: 54px;
  padding-bottom: 54px;
}

/* ==========================================================
   ESTRELLAS LATERALES CEREMONIA
========================================================== */

.ceremony-stars {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.ceremony-star {
  position: absolute;
  display: block;

  border-radius: 50%;
  background: #f6d98a;

  opacity: .45;

  box-shadow:
    0 0 4px rgba(246,217,138,.7),
    0 0 10px rgba(220,177,101,.35);

  animation: ceremonyStarPulse 4.8s ease-in-out infinite;
}

/* pequeñas */
.ceremony-star.star-sm {
  width: 2px;
  height: 2px;
}

/* medianas */
.ceremony-star.star-md {
  width: 3.5px;
  height: 3.5px;
}

/* grandes con destello */
.ceremony-star.star-lg {
  width: 5px;
  height: 5px;
  opacity: .75;

  box-shadow:
    0 0 6px rgba(255,245,210,.9),
    0 0 14px rgba(220,177,101,.55),
    0 0 24px rgba(220,177,101,.25);
}

.ceremony-star.star-lg::before,
.ceremony-star.star-lg::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;

  background: rgba(246,217,138,.9);
  border-radius: 999px;

  transform: translate(-50%, -50%);
}

.ceremony-star.star-lg::before {
  width: 22px;
  height: 1px;
}

.ceremony-star.star-lg::after {
  width: 1px;
  height: 22px;
}

/* LADO IZQUIERDO */
/* LADO IZQUIERDO */
.cs1  { left: 2%;  top: 8%;  animation-delay: .1s; }
.cs2  { left: 8%;  top: 14%; animation-delay: .8s; }
.cs3  { left: 4%;  top: 22%; animation-delay: 1.5s; }
.cs4  { left: 10%; top: 28%; animation-delay: .3s; }
.cs5  { left: 6%;  top: 36%; animation-delay: 2s; }
.cs6  { left: 3%;  top: 46%; animation-delay: 1.1s; }
.cs7  { left: 9%;  top: 54%; animation-delay: .6s; }
.cs8  { left: 5%;  top: 63%; animation-delay: 2.4s; }
.cs9  { left: 11%; top: 72%; animation-delay: 1.7s; }
.cs10 { left: 4%;  top: 84%; animation-delay: .9s; }

.cs11 { left: 8%;  top: 90%; animation-delay: 2.8s; }
.cs12 { left: 10%; top: 8%;  animation-delay: 1.4s; }
.cs13 { left: 2%;  top: 68%; animation-delay: 3s; }
.cs14 { left: 7%;  top: 42%; animation-delay: .5s; }
.cs15 { left: 11%; top: 58%; animation-delay: 2.2s; }
.cs16 { left: 5%;  top: 75%; animation-delay: 1.2s; }
.cs17 { left: 9%;  top: 20%; animation-delay: 2.6s; }
.cs18 { left: 3%;  top: 31%; animation-delay: .7s; }
.cs19 { left: 8%;  top: 80%; animation-delay: 1.9s; }
.cs20 { left: 10%; top: 67%; animation-delay: 3.2s; }

/* LADO DERECHO */
.cs21 { right: 2%;  top: 9%;  animation-delay: .4s; }
.cs22 { right: 8%;  top: 15%; animation-delay: 1.1s; }
.cs23 { right: 4%;  top: 24%; animation-delay: 2.2s; }
.cs24 { right: 10%; top: 30%; animation-delay: .8s; }
.cs25 { right: 6%;  top: 38%; animation-delay: 2.7s; }
.cs26 { right: 3%;  top: 48%; animation-delay: 1.5s; }
.cs27 { right: 9%;  top: 56%; animation-delay: .3s; }
.cs28 { right: 5%;  top: 65%; animation-delay: 2s; }
.cs29 { right: 11%; top: 74%; animation-delay: 1s; }
.cs30 { right: 4%;  top: 86%; animation-delay: 3.1s; }

.cs31 { right: 8%;  top: 92%; animation-delay: 1.6s; }
.cs32 { right: 10%; top: 10%; animation-delay: 2.4s; }
.cs33 { right: 2%;  top: 70%; animation-delay: .9s; }
.cs34 { right: 7%;  top: 44%; animation-delay: 1.8s; }
.cs35 { right: 11%; top: 60%; animation-delay: .6s; }
.cs36 { right: 5%;  top: 77%; animation-delay: 2.9s; }
.cs37 { right: 9%;  top: 21%; animation-delay: 1.3s; }
.cs38 { right: 3%;  top: 33%; animation-delay: 2.1s; }
.cs39 { right: 8%;  top: 82%; animation-delay: .2s; }
.cs40 { right: 10%; top: 69%; animation-delay: 2.6s; }

@keyframes ceremonyStarPulse {
  0%, 100% {
    opacity: .25;
    transform: scale(.75);
  }

  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

/* TÍTULO */

.ceremony-title {
  margin: 0;

  position: relative;
  display: inline-block;
  overflow: visible;

  font-family: 'Cinzel', serif;
  font-size: clamp(.5rem, 4.6vw, 1.2rem);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;

  background: linear-gradient(
    90deg,
    #b9935a 0%,
    #e7c88d 24%,
    #fff8d8 50%,
    #e7c88d 76%,
    #b9935a 100%
  );

  background-size: 220% auto;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  filter:
    drop-shadow(0 1px 2px rgba(0,0,0,.55))
    drop-shadow(0 0 8px rgba(220,177,101,.18));

  animation: ceremonyTitleGoldShine 6s linear infinite;
}

@keyframes ceremonyTitleGoldShine {
  0% {
    background-position: 220% center;
  }

  100% {
    background-position: 0% center;
  }
}

/* DIVISOR */

.ceremony-divider {
  position: relative;
  width: 230px;
  height: 18px;
  margin: 26px auto 28px;
}

.ceremony-divider::before,
.ceremony-divider::after {
  content: "";
  position: absolute;
  top: 50%;

  width: 42%;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(220,177,101,.72),
    transparent
  );
}

.ceremony-divider::before {
  left: 0;
}

.ceremony-divider::after {
  right: 0;
}

.ceremony-divider span {
  position: absolute;
  left: 50%;
  top: 50%;

  width: 8px;
  height: 8px;

  background: #dcb165;
  transform: translate(-50%, -50%) rotate(45deg);

  box-shadow:
    0 0 7px rgba(220,177,101,.48),
    0 0 14px rgba(246,217,138,.22);
}

/* IMAGEN IGLESIA */

.ceremony-image {
  position: relative;
  width: 78%;
  max-width: 360px;
  margin: 0 auto 28px;
}

.ceremony-image::before {
  content: "";
  position: absolute;
  inset: 12% 8%;
  z-index: -1;

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(220,177,101,.16) 0%,
      rgba(40,90,180,.16) 36%,
      transparent 70%
    );

  filter: blur(18px);
}

.ceremony-image img {
  width: 100%;
  height: auto;
  display: block;

  filter:
    drop-shadow(0 0 7px rgba(220,177,101,.32))
    drop-shadow(0 12px 22px rgba(0,0,0,.32));
}

/* INFO */

.ceremony-info {

    width: 92%;
    max-width: 300px;

    margin: -30px auto 0;

    display: flex;
    flex-direction: column;
    gap: 14px;

}

.ceremony-place,
.ceremony-time {

    display: flex;
    align-items: center;

    justify-content: flex-start;

    gap: 12px;

    width: 100%;

    font-family: 'Cinzel', serif;
    font-size: .89rem;
    letter-spacing: .06em;
    text-transform: uppercase;

    color: #fff4d6;

}

.ceremony-icon {
  width: 20px;
  height: 20px;
  color: #dcb165;
  flex-shrink: 0;

  filter:
    drop-shadow(0 0 4px rgba(220,177,101,.45));
}

/* BOTONES */

.ceremony-buttons {
  margin-top: 50px;

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.ceremony-btn {
  min-width: 112px;
  padding: 11px 22px;

  border: 1px solid rgba(220,177,101,.75);
  border-radius: 999px;

  background: rgba(1, 7, 33, .82);
  color: #dcb165;

  font-family: 'Cinzel', serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;

  box-shadow:
    0 0 6px rgba(220,177,101,.55),
    0 0 18px rgba(220,177,101,.28),
    0 0 34px rgba(220,177,101,.10),
    inset 0 0 10px rgba(220,177,101,.08);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease;
}

.ceremony-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.ceremony-btn-icon{
    width:15px;
    height:15px;

    color:#dcb165;

    flex-shrink:0;
}

.ceremony-btn-waze{
    width:17px;
    height:17px;

    object-fit:contain;

    flex-shrink:0;
}
.ceremony-btn:hover {
  background: rgba(8,18,42,.95);
  transform: translateY(-2px);

  box-shadow:
    0 0 12px rgba(220,177,101,.35),
    0 10px 20px rgba(0,0,0,.30);
}

.ceremony-btn:active {
  transform: scale(.97);
}



/* PC */

@media (min-width: 601px) {
  .ceremony-content {
    min-height:100svh;
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .ceremony-image {
    width: 70%;
    max-width: 390px;
  }

  .ceremony-title {
    font-size: 1.3rem;
  }
}