@charset "UTF-8";
@font-face {
  font-family: "Halo Handletter";
  src: url("/public/dist/fonts/pinku/halo-handletter.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Noyh Slim";
  src: url("/public/dist/fonts/pinku/noyh-slim-light.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-titulo: "Halo Handletter", cursive;
  --font-texto: "Noyh Slim", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body.pinku-body {
  margin: 0;
  background: var(--ink);
  color: var(--pearl);
  font-family: var(--font-texto);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

.pinku {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  overflow-x: hidden;
  background: var(--ink);
}
.pinku section {
  position: relative;
  z-index: 1;
}

.no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 17px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-family: var(--font-titulo);
  font-weight: 400;
  line-height: 1.2;
}

.btn-pink,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-texto);
  font-size: 17px;
  letter-spacing: 0.3px;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-pink:hover,
.btn-ghost:hover {
  opacity: 0.88;
}
.btn-pink:active,
.btn-ghost:active {
  transform: scale(0.96);
}
.btn-pink:disabled,
.btn-ghost:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

.btn-pink {
  background: var(--pink-soft);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}

@keyframes sparkleTwinkle {
  0%, 100% {
    opacity: 0.15;
    transform: scale(0.7);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.15);
  }
}
@keyframes coverCrossfade {
  0% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  37% {
    opacity: 0;
  }
  96% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(1.5deg);
  }
}
@keyframes heartBeatNeon {
  0%, 100% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.12);
  }
  30% {
    transform: scale(0.97);
  }
  45% {
    transform: scale(1.1);
  }
  60% {
    transform: scale(1);
  }
}
@keyframes softScale {
  from {
    opacity: 0;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}
@keyframes openerHeartBeat {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  15% {
    transform: translate(-50%, -50%) scale(1.12);
  }
  30% {
    transform: translate(-50%, -50%) scale(0.97);
  }
  45% {
    transform: translate(-50%, -50%) scale(1.1);
  }
  60% {
    transform: translate(-50%, -50%) scale(1);
  }
}
.opener {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 32px;
  background: var(--ink);
  text-align: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.opener.gone {
  opacity: 0;
  transform: translateY(-16px);
  pointer-events: none;
}
.opener__sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.opener__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 480px;
}
.opener__eyebrow {
  margin: 0;
  color: var(--pink-soft);
}
.opener__logo-wrap {
  position: relative;
  width: 100%;
}
.opener__heart {
  position: absolute;
  top: 53%;
  left: 50%;
  width: min(130%, 92vw);
  max-width: min(130%, 92vw);
  height: auto;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  animation: openerHeartBeat 1.6s ease-in-out infinite;
}
@media (min-width: 768px) {
  .opener__heart {
    width: 118%;
    max-width: 118%;
  }
}
.opener__logo {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  height: auto;
  animation: logoFloat 4s ease-in-out infinite;
}
.opener__name {
  margin: 0;
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: 54px;
  line-height: 1.1;
  color: #fff;
}
.opener__date {
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
}
.opener__cta {
  margin-top: 6px;
  padding: 15px 34px;
}
.opener__hint {
  margin: 0;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.sin-opener .opener {
  display: none;
}

body.pinku-body:not(.is-opened) {
  overflow: hidden;
}

.sin-opener body.pinku-body {
  overflow: visible;
}

body.pinku-body:not(.is-opened) .pinku-music {
  display: none;
}

.cover {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100svh;
  overflow: hidden;
  text-align: center;
}
.cover__bg {
  position: absolute;
  inset: 0;
  animation: softScale 1.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.cover__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.cover__photo.is-crossfade {
  animation: coverCrossfade 12s ease-in-out infinite;
}
.cover__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 2, 8, 0.05) 0%, rgba(13, 2, 8, 0.02) 40%, rgba(13, 2, 8, 0.55) 78%, rgba(13, 2, 8, 0.94) 100%);
}
.cover__sparkles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.cover__sparkle {
  position: absolute;
  line-height: 1;
  animation-name: sparkleTwinkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.cover__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0 0 56px;
}
.cover__logo {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 90px 0 -50px;
  animation: logoFloat 4s ease-in-out infinite;
}
.cover__name {
  margin: 90px 0 0;
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: 66px;
  line-height: 1.1;
  color: #fff;
}
.cover__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cover__rule {
  width: 32px;
  height: 1px;
  margin: 6px 0;
  background: rgba(255, 255, 255, 0.35);
}
.cover__date {
  font-weight: 400;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}
.cover__place {
  font-weight: 400;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
}

.countdown {
  padding: 96px 32px;
  background: var(--ink);
  text-align: center;
}
.countdown__eyebrow {
  margin-bottom: 36px;
  color: var(--pink-soft);
}
.countdown__grid {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
}
.countdown__sep {
  font-size: 29px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.2);
}
.countdown__num {
  display: block;
  font-family: var(--font-texto);
  font-weight: 400;
  font-size: 53px;
  line-height: 1;
  color: #fff;
}
.countdown__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
}
.countdown__unit:last-child .countdown__num {
  color: var(--pink-soft);
}

.voicenote {
  padding: 80px 32px;
  background: var(--ink);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.voicenote__eyebrow {
  color: var(--pink-soft);
}
.voicenote__title {
  margin-bottom: 28px;
  font-size: 54px;
  color: #fff;
}
.voicenote__player {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  text-align: left;
}
.voicenote__play {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 52px;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--pink-soft);
  color: #fff;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
}
.voicenote__play:hover {
  background: var(--pink-neon);
}
.voicenote__play:active {
  transform: scale(0.94);
}
.voicenote__icon-play {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
}
.voicenote__icon-pause {
  display: none;
  width: 14px;
  height: 17px;
  border-left: 4px solid #fff;
  border-right: 4px solid #fff;
}
.voicenote__player.is-playing .voicenote__icon-play {
  display: none;
}
.voicenote__player.is-playing .voicenote__icon-pause {
  display: block;
}
.voicenote__body {
  flex: 1;
  min-width: 0;
}
.voicenote__wave {
  position: relative;
  height: 34px;
}
.voicenote__bars {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.voicenote__bars span {
  flex: 1;
  min-width: 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.28);
}
.voicenote__bars--fill {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.1s linear;
}
.voicenote__bars--fill span {
  background: var(--pink-soft);
}
.voicenote__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}
.voicenote__author {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.voicenote__time {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-variant-numeric: tabular-nums;
}
.voicenote__hint {
  margin: 18px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

.dresscode {
  padding: 96px 32px;
  background: var(--pearl);
  text-align: center;
}
.dresscode__eyebrow {
  color: var(--magenta-glow);
}
.dresscode__title {
  margin-bottom: 16px;
  font-size: 54px;
  color: var(--plum);
}
.dresscode__text {
  max-width: 320px;
  margin: 0 auto;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--mauve);
}

.locations {
  padding: 0 32px 96px;
  background: var(--pearl);
  text-align: center;
}
.locations__eyebrow {
  color: var(--magenta-glow);
}
.locations__title {
  margin-bottom: 20px;
  font-size: 54px;
  color: var(--plum);
}
.locations__item + .locations__item {
  margin-top: 48px;
}
.locations__map {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-radius: 20px;
}
.locations__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.locations__place {
  margin: 20px 0 0;
  font-weight: 400;
  font-size: 17px;
  color: var(--plum);
}
.locations__time {
  margin: 6px 0 0;
  font-weight: 400;
  font-size: 17px;
  color: var(--mauve);
}
.locations__cta {
  margin-top: 18px;
}

.gallery {
  padding: 96px 0;
  background: var(--blush);
  text-align: center;
}
.gallery__eyebrow {
  margin-bottom: 10px;
  padding: 0 32px;
  color: var(--magenta-glow);
}
.gallery__title {
  margin-bottom: 10px;
  padding: 0 32px;
  font-size: 54px;
  color: var(--plum);
}
.gallery__text {
  margin: 0 0 24px;
  padding: 0 32px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: var(--mauve);
}
.gallery__stage {
  position: relative;
}
.gallery__track {
  display: flex;
  gap: 14px;
  padding: 0 32px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.gallery__card {
  position: relative;
  flex: 0 0 90%;
  margin: 0;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 20px;
  scroll-snap-align: center;
}
.gallery__card img,
.gallery__card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__play {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(13, 2, 8, 0.5);
  backdrop-filter: blur(4px);
  cursor: pointer;
  transition: opacity 0.2s;
}
.gallery__play-icon {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-style: solid;
  border-width: 6px 0 6px 10px;
  border-color: transparent transparent transparent #fff;
}
.gallery__card.is-playing .gallery__play {
  opacity: 0;
  pointer-events: none;
}
.gallery__caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(0deg, rgba(13, 2, 8, 0.75), transparent);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-align: left;
  pointer-events: none;
}
.gallery__arrows {
  position: absolute;
  right: 44px;
  bottom: -32px;
  display: flex;
  gap: 6px;
}
.gallery__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  color: var(--plum);
  cursor: pointer;
  transition: background 0.2s;
}
.gallery__arrow:hover {
  background: rgba(255, 255, 255, 0.85);
}
.gallery__arrow svg {
  width: 14px;
  height: 14px;
}
.gallery__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 18px;
}
.gallery__dot {
  width: 8px;
  height: 6px;
  border-radius: 3px;
  background: var(--rose-pastel);
  transition: all 0.3s;
}
.gallery__dot.is-active {
  width: 22px;
  background: var(--pink-neon);
}
.gallery__card img, .gallery__card video {
  cursor: zoom-in;
}

.gallery-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: #080105;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.gallery-viewer.is-open {
  opacity: 1;
  visibility: visible;
}
.gallery-viewer__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  touch-action: none;
}
.gallery-viewer__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: zoom-in;
  transform-origin: center center;
}
.gallery-viewer__img[hidden] {
  display: none;
}
.gallery-viewer.is-zoomed .gallery-viewer__img {
  cursor: grab;
}
.gallery-viewer__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-viewer__video[hidden] {
  display: none;
}
.gallery-viewer__ui {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.gallery-viewer__ui > * {
  pointer-events: auto;
}
.gallery-viewer.is-ui-hidden .gallery-viewer__ui {
  opacity: 0;
  pointer-events: none;
}
.gallery-viewer.is-ui-hidden .gallery-viewer__ui > * {
  pointer-events: none;
}
.gallery-viewer__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(8, 1, 5, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-viewer__close:hover {
  background: rgba(8, 1, 5, 0.8);
}
.gallery-viewer__close svg {
  width: 18px;
  height: 18px;
}
.gallery-viewer__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(8, 1, 5, 0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}
.gallery-viewer__arrow:hover {
  background: rgba(8, 1, 5, 0.8);
}
.gallery-viewer__arrow--prev {
  left: 12px;
}
.gallery-viewer__arrow--next {
  right: 12px;
}
.gallery-viewer__arrow svg {
  width: 18px;
  height: 18px;
}
.gallery-viewer__foot {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 40px 68px 16px;
  background: linear-gradient(0deg, rgba(8, 1, 5, 0.75), transparent);
  text-align: center;
}
.gallery-viewer__caption {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}
.gallery-viewer__counter {
  margin: 6px 0 0;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--pink-neon);
}

.wishlist {
  padding: 96px 32px;
  background: var(--pearl);
}
.wishlist__eyebrow {
  margin-bottom: 12px;
  color: var(--magenta-glow);
  text-align: center;
}
.wishlist__title {
  margin-bottom: 28px;
  font-size: 54px;
  color: var(--plum);
  text-align: center;
}
.wishlist__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.wishlist__item {
  display: flex;
}
.wishlist__item.is-extra {
  display: none;
}
.wishlist__grid.is-expanded .wishlist__item.is-extra {
  display: flex;
}
.wishlist__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 22px auto 0;
  padding: 12px 26px;
  border: 1px solid rgba(122, 21, 80, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--plum);
  font-family: var(--font-texto);
  font-size: 17px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.wishlist__more:hover {
  background: #fff;
  border-color: var(--pink-soft);
}
.wishlist__more[hidden] {
  display: none;
}
.wishlist__more-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--magenta-glow);
  color: #fff;
  font-size: 14px;
}
.wishlist__card {
  display: block;
  width: 100%;
  padding: 0 0 14px;
  border: none;
  border-radius: 18px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.18s;
}
.wishlist__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(224, 33, 138, 0.16);
}
.wishlist__card:active {
  transform: scale(0.98);
}
.wishlist__thumb {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  background: var(--blush);
}
.wishlist__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wishlist__name {
  display: block;
  padding: 12px 14px 0;
  font-size: 16px;
  line-height: 1.4;
  color: var(--plum);
}

.modal--wishlist .modal__grab {
  margin-bottom: 36px;
}

.wishlist-detail {
  text-align: center;
}
.wishlist-detail__photo {
  position: relative;
  margin: 0 auto 18px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 20px;
  background: var(--blush);
}
.wishlist-detail__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wishlist-detail__title {
  margin: 0 0 8px;
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.2;
  color: var(--plum);
}
.wishlist-detail__text {
  margin: 0 auto 22px;
  max-width: 320px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--mauve);
}
.wishlist-detail__text:empty {
  margin-bottom: 4px;
}
.wishlist-detail__actions {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wishlist-detail__nav, .wishlist-detail__share {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(122, 21, 80, 0.18);
  border-radius: 50%;
  background: #fff;
  color: var(--plum);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.wishlist-detail__nav:hover, .wishlist-detail__share:hover {
  background: rgba(255, 126, 194, 0.12);
  border-color: var(--pink-soft);
}
.wishlist-detail__nav svg, .wishlist-detail__share svg {
  width: 18px;
  height: 18px;
}
.wishlist-detail__share {
  color: var(--mauve);
}
.wishlist-detail__share svg {
  width: 16px;
  height: 16px;
}
.wishlist-detail__share.is-done {
  border-color: var(--magenta-glow);
  color: var(--magenta-glow);
}
.wishlist-detail__feedback {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 14px;
  color: var(--magenta-glow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.wishlist-detail__feedback.is-on {
  opacity: 1;
}
.wishlist-detail__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  max-width: 260px;
  padding: 15px 18px;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.32);
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.3px;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.wishlist-detail__cta:hover {
  opacity: 0.88;
}
.wishlist-detail__cta:active {
  transform: scale(0.96);
}
.wishlist-detail__cta svg {
  flex: none;
  width: 18px;
  height: 18px;
}
.wishlist-detail.is-single .wishlist-detail__nav {
  display: none;
}

.whatsapp {
  padding: 96px 32px;
  background: var(--ink);
  text-align: center;
}
.whatsapp__eyebrow {
  margin-bottom: 16px;
  color: var(--pink-soft);
}
.whatsapp__title {
  margin: 0 0 32px;
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: 54px;
  color: #fff;
}
.whatsapp__note {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.whatsapp__cta {
  margin-top: 20px;
}

.rsvp {
  padding: 96px 32px;
  background: var(--ink);
  text-align: center;
}
.rsvp__eyebrow {
  margin-bottom: 16px;
  color: var(--pink-soft);
}
.rsvp__title {
  margin-bottom: 32px;
  font-size: 54px;
  color: #fff;
}
.rsvp__card {
  padding: 28px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}
.rsvp__confirmed, .rsvp__cancelled {
  display: none;
}
.rsvp__card.is-confirmed .rsvp__pending,
.rsvp__card.is-confirmed .rsvp__cancelled {
  display: none;
}
.rsvp__card.is-confirmed .rsvp__confirmed {
  display: block;
  animation: fadeIn 0.5s ease both;
}
.rsvp__card.is-cancelled .rsvp__pending,
.rsvp__card.is-cancelled .rsvp__confirmed {
  display: none;
}
.rsvp__card.is-cancelled .rsvp__cancelled {
  display: block;
  animation: fadeIn 0.5s ease both;
}
.rsvp__label {
  margin: 0;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.rsvp__name {
  margin: 8px 0 0;
  font-family: var(--font-texto);
  font-weight: 400;
  font-size: 27px;
  color: #fff;
}
.rsvp__passes {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.rsvp__passes-num {
  font-family: var(--font-texto);
  font-weight: 400;
  font-size: 31px;
  color: var(--pink-soft);
}
.rsvp__passes-label {
  font-size: 14px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.5);
}
.rsvp__note {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}
.rsvp__note b {
  color: var(--pink-soft);
}
.rsvp__cta {
  margin-top: 20px;
}
.rsvp__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: #fff;
}
.rsvp__badge svg {
  width: 22px;
  height: 22px;
}
.rsvp__attendees {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 16px 0;
}
.rsvp__attendee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
}
.rsvp__attendee svg {
  width: 15px;
  height: 15px;
  color: var(--pink-soft);
}
.rsvp__qr {
  display: inline-block;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
}
.rsvp__qr img {
  display: block;
  width: 212px;
  height: 212px;
}
.rsvp__code {
  margin: 12px 0 8px;
  font-family: var(--font-texto);
  font-size: 17px;
  letter-spacing: 2px;
  color: var(--pink-soft);
}

.modal-back {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(13, 2, 8, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-back.on {
  opacity: 1;
  visibility: visible;
}
.modal-back.on .modal {
  transform: none;
}

.modal {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 94svh;
  overflow-y: auto;
  padding: 14px 22px 24px;
  border-radius: 24px 24px 0 0;
  background: var(--pearl);
  color: var(--plum);
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal__grab {
  width: 42px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: 999px;
  background: rgba(122, 21, 80, 0.2);
}
.modal__title {
  margin: 0 0 4px;
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: 32px;
}
.modal__sub {
  margin: 0 0 18px;
  font-size: 17px;
  color: var(--mauve);
}
.modal__confirm, .modal__decline {
  width: 100%;
}
.modal__confirm {
  margin-top: 18px;
}
.modal__decline {
  margin-top: 10px;
  color: var(--mauve);
  border-color: rgba(122, 21, 80, 0.2);
}
.modal__success {
  display: none;
  padding: 40px 0;
}
.modal__success-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: #fff;
}
.modal__success-badge svg {
  width: 28px;
  height: 28px;
}
.modal__success-text {
  margin: 0;
  font-family: var(--font-titulo);
  font-weight: 400;
  font-size: 28px;
}
.modal.is-success .modal__body {
  display: none;
}
.modal.is-success .modal__success {
  display: block;
  animation: fadeIn 0.3s ease both;
}

.modal-x {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(122, 21, 80, 0.08);
  color: var(--mauve);
  cursor: pointer;
}
.modal-x svg {
  width: 16px;
  height: 16px;
}

.person {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  padding: 13px 16px;
  border: 1px solid rgba(122, 21, 80, 0.15);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  text-align: left;
}
.person__name {
  font-weight: 400;
  font-size: 17px;
}
.person__tag {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--mauve);
}
.person .check-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(122, 21, 80, 0.25);
  border-radius: 50%;
  color: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.person .check-toggle svg {
  width: 14px;
  height: 14px;
}
.person.on {
  border-color: var(--pink-soft);
  background: rgba(255, 126, 194, 0.1);
}
.person.on .check-toggle {
  border-color: var(--pink-soft);
  background: var(--pink-soft);
  color: #fff;
}

.postscript {
  padding: 88px 32px;
  background: var(--pearl);
  text-align: center;
}
.postscript__heart {
  display: block;
  width: 46px;
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 6px rgba(224, 33, 138, 0.35));
}
.postscript__title {
  margin-bottom: 24px;
  font-size: 54px;
  color: var(--plum);
}
.postscript__text {
  max-width: 340px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: var(--mauve);
}
.postscript__text p {
  margin: 0 0 18px;
}
.postscript__text p:last-child {
  margin-bottom: 0;
}
.postscript__thanks-title {
  max-width: 340px;
  margin: 30px auto 18px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--plum);
}
.postscript__thanks {
  max-width: 340px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}
.postscript__thank {
  position: relative;
  padding: 12px 16px 12px 42px;
  margin-bottom: 8px;
  border-radius: 14px;
  background: #fff;
  font-size: 16px;
  line-height: 1.55;
  color: var(--plum);
}
.postscript__thank::before {
  content: "✦";
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 15px;
  color: var(--magenta-glow);
}
.postscript__closing {
  max-width: 340px;
  margin: 30px auto 0;
  font-size: 17px;
  line-height: 1.75;
  color: var(--mauve);
}

.sponsors {
  padding: 64px 32px;
  background: var(--black);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.sponsors__eyebrow {
  margin-bottom: 28px;
  color: var(--pink-soft);
}
.sponsors__title {
  margin-bottom: 24px;
  font-size: 54px;
  color: #fff;
}
.sponsors__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.sponsors__item {
  flex: 0 1 calc(50% - 12px);
  max-width: 190px;
}
.sponsors__card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}
.sponsors__logo {
  width: 100%;
  height: auto;
}
.sponsors__name {
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.6);
}

.farewell {
  padding: 56px 32px 64px;
  background: var(--black);
  text-align: center;
}
.farewell__heart {
  display: block;
  width: 70px;
  height: auto;
  margin: 0 auto 16px;
  animation: heartBeatNeon 1.6s ease-in-out infinite;
}
.farewell__rule {
  display: block;
  width: 24px;
  height: 1px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.25);
}
.farewell__script {
  margin: 0 0 4px;
  font-family: var(--font-titulo);
  font-size: 36px;
  color: var(--pink-soft);
}
.farewell__sign {
  margin: 0;
  font-family: var(--font-texto);
  font-weight: 400;
  font-size: 17px;
  color: #fff;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 32px 40px;
  background: var(--black);
}
.footer p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer img {
  display: block;
  width: 78px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.pinku-music {
  position: fixed;
  right: 16px;
  bottom: 20px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--magenta-glow);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(224, 33, 138, 0.35);
}
.pinku-music svg {
  width: 20px;
  height: 20px;
}
.pinku-music__eq {
  display: none;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.pinku-music__eq i {
  display: block;
  width: 3px;
  height: 100%;
  border-radius: 2px;
  background: #fff;
  animation: pinkuEq 0.9s ease-in-out infinite;
}
.pinku-music__eq i:nth-child(2) {
  animation-delay: 0.15s;
}
.pinku-music__eq i:nth-child(3) {
  animation-delay: 0.3s;
}
.pinku-music[aria-pressed=true] svg {
  display: none;
}
.pinku-music[aria-pressed=true] .pinku-music__eq {
  display: flex;
}

@keyframes pinkuEq {
  0%, 100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}