/* Reset e Variáveis Premium com Melhor Visibilidade */
:root {
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #f4e5c2;
  --champagne: #f7e7ce;
  --ivory: #fff8f0;
  --cream: #faf7f2;
  --platinum: #e5e4e2;
  --diamond: #b9f2ff;
  --rose-gold: #e8b4b8;
  --dark: #1a1a1a;
  --text: #2c2c2c;
  --text-light: #4a4a4a;
  --accent: #8b7355;
  --shadow-soft: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  --shadow-strong: rgba(0, 0, 0, 0.16);
  --gold-glow: rgba(212, 175, 55, 0.15);
  --gold-shine: rgba(255, 255, 255, 0.8);
  --soft-dark: rgba(0, 0, 0, 0.55);
  --card: #ffffff;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--ivory);
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--ivory);
  color: var(--text-light);
  overflow-x: hidden;
}

.back-to-cover {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Philosopher", serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3a3228;
  text-decoration: none;
  padding: 11px 18px 11px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.04),
    0 12px 32px rgba(0, 0, 0, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.back-to-cover__glyph {
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 400;
  color: var(--gold-dark);
  opacity: 0.9;
  margin-right: 1px;
}

.back-to-cover:hover {
  transform: translateY(-2px);
  color: var(--gold-dark);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(212, 175, 55, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

@media (max-width: 640px) {
  .back-to-cover {
    font-size: 0.68rem;
    padding: 9px 14px 9px 12px;
    top: 12px;
    left: 12px;
    letter-spacing: 0.14em;
  }
}

/* ==========================================
   CAPA (cover) — estilo minimal e premium
   ========================================== */

.cover-hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 56px 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.42)),
    radial-gradient(
      circle at 50% 15%,
      rgba(212, 175, 55, 0.14),
      transparent 55%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(232, 180, 184, 0.08),
      transparent 55%
    ),
    url("images/amor.jpg") center 60% / cover no-repeat;
}

.cover-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35),
    rgba(0, 0, 0, 0.18) 52%,
    rgba(0, 0, 0, 0.45)
  );
  pointer-events: none;
}

.cover-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 35%,
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.38) 72%
  );
  pointer-events: none;
}

.cover-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  box-shadow: inset 0 0 min(120px, 16vw) rgba(0, 0, 0, 0.14);
  background: radial-gradient(
    ellipse 78% 72% at 50% 45%,
    transparent 58%,
    rgba(0, 0, 0, 0.08) 100%
  );
}

.cover-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

.cover-inner {
  position: relative;
  z-index: 2;
  width: min(880px, 92vw);
  display: grid;
  justify-items: center;
  gap: 22px;
}

@media (prefers-reduced-motion: no-preference) {
  .cover-inner {
    animation: coverInnerIn 0.88s cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: 0.05s;
  }
}

@keyframes coverInnerIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cover-kicker {
  margin: 0;
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.85),
    0 1px 2px rgba(0, 0, 0, 0.75),
    0 2px 16px rgba(0, 0, 0, 0.55),
    0 4px 28px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.cover-names {
  margin: 0;
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: clamp(3.2rem, 7.5vw, 5.8rem);
  line-height: 1.04;
  color: #ffe9b8;
  text-shadow:
    0 0 2px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(0, 0, 0, 0.35),
    0 2px 12px rgba(0, 0, 0, 0.65),
    0 4px 28px rgba(0, 0, 0, 0.45),
    0 0 52px rgba(212, 175, 55, 0.28);
}

.cover-countdown {
  margin-top: 6px;
}

.cover-countdown-box {
  width: min(168px, 52vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(212, 175, 55, 0.22) inset;
  position: relative;
  overflow: hidden;
}

.cover-countdown-box::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.55),
    rgba(255, 255, 255, 0.1),
    rgba(212, 175, 55, 0.28)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.85;
}

.cover-countdown-box::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(212, 175, 55, 0.18),
    transparent 45%
  );
  transform: translateZ(0);
  pointer-events: none;
  animation: coverGlow 6s ease-in-out infinite;
}

.cover-days {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(3.2rem, 8vw, 4.3rem);
  line-height: 1;
  color: #c9a227;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 1;
  animation: coverNumberBreath 3.8s ease-in-out infinite;
  text-shadow:
    0 0 1px rgba(255, 255, 255, 0.4),
    0 1px 2px rgba(0, 0, 0, 0.35),
    0 2px 12px rgba(0, 0, 0, 0.25);
}

.cover-days-label {
  margin-top: -10px;
  font-size: 0.8rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.5);
}

.cover-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.95),
    rgba(184, 148, 31, 0.95)
  );
  color: rgba(255, 255, 255, 0.96);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow:
    0 16px 45px rgba(0, 0, 0, 0.35),
    0 8px 25px rgba(212, 175, 55, 0.22);
  transition:
    transform 0.22s ease,
    filter 0.22s ease;
  position: relative;
  overflow: hidden;
}

.cover-cta::after {
  content: "→";
  font-size: 1.05em;
  margin-left: 12px;
  opacity: 0.95;
  transform: translateY(-0.5px);
}

.cover-cta::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -40%;
  width: 60%;
  height: 180%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: rotate(18deg) translateX(-140%);
  transition: transform 0.45s ease;
  pointer-events: none;
}

.cover-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.03);
}

.cover-cta:hover::before {
  transform: rotate(18deg) translateX(380%);
}

.cover-audio-hint {
  margin: -4px 0 0;
  padding: 0 12px;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  line-height: 1.45;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.65),
    0 1px 10px rgba(0, 0, 0, 0.35);
  max-width: 22rem;
}

.cover-date {
  margin: 8px 0 0;
  font-size: 0.95rem;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.95);
  text-transform: uppercase;
  text-shadow:
    0 0 1px rgba(0, 0, 0, 0.8),
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 2px 16px rgba(0, 0, 0, 0.45);
  position: relative;
  padding-top: 14px;
}

.cover-date::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(180px, 64vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.75),
    transparent
  );
  opacity: 0.9;
}

@keyframes coverNumberBreath {
  0%,
  100% {
    transform: translateY(0);
    text-shadow:
      0 0 1px rgba(255, 255, 255, 0.4),
      0 1px 2px rgba(0, 0, 0, 0.35),
      0 2px 12px rgba(0, 0, 0, 0.25),
      0 0 18px rgba(212, 175, 55, 0.2);
  }
  50% {
    transform: translateY(-1px);
    text-shadow:
      0 0 1px rgba(255, 255, 255, 0.45),
      0 1px 2px rgba(0, 0, 0, 0.38),
      0 2px 14px rgba(0, 0, 0, 0.28),
      0 0 24px rgba(212, 175, 55, 0.28);
  }
}

@keyframes coverGlow {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.65;
  }
  50% {
    transform: translateY(-6px) scale(1.05);
    opacity: 0.9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cover-days,
  .cover-countdown-box::after,
  .cover-cta::before,
  .cover-inner {
    animation: none !important;
    transition: none !important;
  }

  .cover-inner {
    opacity: 1;
    transform: none;
  }
}

.cover-audio {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  z-index: 1000;
  display: none;
}

@media (max-width: 640px) {
  .cover-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.42)),
      radial-gradient(
        circle at 50% 15%,
        rgba(212, 175, 55, 0.14),
        transparent 55%
      ),
      radial-gradient(
        circle at 20% 80%,
        rgba(232, 180, 184, 0.08),
        transparent 55%
      ),
      url("images/amor.jpg") center 22% / cover no-repeat;
  }
}

@media (max-width: 480px) {
  .cover-inner {
    gap: 16px;
  }

  .cover-kicker {
    font-size: 0.82rem;
    letter-spacing: 0.2em;
    transform: translateY(-4px);
  }

  .cover-names {
    font-size: clamp(3.1rem, 11vw, 4.2rem);
  }

  .cover-countdown {
    margin-top: 2px;
  }

  .cover-cta {
    width: min(320px, 92vw);
    padding: 14px 20px;
  }

  .cover-audio-hint {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--gold-dark);
}

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.52)),
    url("images/capa.jpg") center/cover no-repeat;
  color: white;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.eyebrow {
  font-size: 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.names {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  color: white;
  margin: 0 0 30px;
  font-weight: 400;
  line-height: 1.1;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(212, 175, 55, 0.3);
}

.date {
  font-size: 1.4rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.2em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
}

/* Overlay Luxuoso Avançado */
.luxury-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(212, 175, 55, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 50% 20%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 50% 80%,
      rgba(212, 175, 55, 0.15) 0%,
      transparent 40%
    ),
    linear-gradient(
      135deg,
      rgba(212, 175, 55, 0.12) 0%,
      transparent 50%,
      rgba(212, 175, 55, 0.08) 100%
    );
  pointer-events: none;
}

/* Pattern Dourado Sutil */
.luxury-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 35px,
      rgba(212, 175, 55, 0.03) 35px,
      rgba(212, 175, 55, 0.03) 70px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 35px,
      rgba(212, 175, 55, 0.03) 35px,
      rgba(212, 175, 55, 0.03) 70px
    );
  pointer-events: none;
}

/* Partículas Douradas Premium */
.golden-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 20px rgba(212, 175, 55, 1),
    0 0 40px rgba(212, 175, 55, 0.5),
    inset 0 0 10px rgba(255, 255, 255, 0.5);
  animation: floatUp 10s infinite linear;
}

.particle:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  width: 4px;
  height: 4px;
}
.particle:nth-child(2) {
  left: 15%;
  animation-delay: 1.5s;
  width: 6px;
  height: 6px;
}
.particle:nth-child(3) {
  left: 25%;
  animation-delay: 3s;
  width: 5px;
  height: 5px;
}
.particle:nth-child(4) {
  left: 35%;
  animation-delay: 4.5s;
  width: 7px;
  height: 7px;
}
.particle:nth-child(5) {
  left: 45%;
  animation-delay: 6s;
  width: 4px;
  height: 4px;
}
.particle:nth-child(6) {
  left: 55%;
  animation-delay: 7.5s;
  width: 6px;
  height: 6px;
}
.particle:nth-child(7) {
  left: 65%;
  animation-delay: 9s;
  width: 5px;
  height: 5px;
}
.particle:nth-child(8) {
  left: 75%;
  animation-delay: 2s;
  width: 8px;
  height: 8px;
}
.particle:nth-child(9) {
  left: 85%;
  animation-delay: 5s;
  width: 4px;
  height: 4px;
}
.particle:nth-child(10) {
  left: 95%;
  animation-delay: 8s;
  width: 6px;
  height: 6px;
}

@keyframes floatUp {
  0% {
    transform: translateY(100vh) rotate(0deg) scale(0);
    opacity: 0;
  }
  5% {
    transform: translateY(95vh) rotate(45deg) scale(1);
    opacity: 1;
  }
  95% {
    transform: translateY(5vh) rotate(315deg) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(360deg) scale(0);
    opacity: 0;
  }
}

/* Bordas Douradas Luxuosas */
.golden-border-top,
.golden-border-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(212, 175, 55, 0.3) 10%,
    var(--gold) 25%,
    var(--gold) 75%,
    rgba(212, 175, 55, 0.3) 90%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.golden-border-top {
  top: 40px;
}

.golden-border-bottom {
  bottom: 40px;
}

.golden-border-left,
.golden-border-right {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 70%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(212, 175, 55, 0.3) 10%,
    var(--gold) 25%,
    var(--gold) 75%,
    rgba(212, 175, 55, 0.3) 90%,
    transparent 100%
  );
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.golden-border-left {
  left: 40px;
}

.golden-border-right {
  right: 40px;
}

/* Cantos Dourados Decorativos */
.golden-corner {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 2px solid var(--gold);
  opacity: 0.8;
}

.golden-corner::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--gold);
  border-radius: 50%;
}

.golden-corner.top-left {
  top: 30px;
  left: 30px;
  border-right: none;
  border-bottom: none;
}

.golden-corner.top-left::before {
  bottom: -10px;
  right: -10px;
}

.golden-corner.top-right {
  top: 30px;
  right: 30px;
  border-left: none;
  border-bottom: none;
}

.golden-corner.top-right::before {
  bottom: -10px;
  left: -10px;
}

.golden-corner.bottom-left {
  bottom: 30px;
  left: 30px;
  border-right: none;
  border-top: none;
}

.golden-corner.bottom-left::before {
  top: -10px;
  right: -10px;
}

.golden-corner.bottom-right {
  bottom: 30px;
  right: 30px;
  border-left: none;
  border-top: none;
}

.golden-corner.bottom-right::before {
  top: -10px;
  left: -10px;
}

/* Monograma Ultra Luxuoso */
.monogram {
  margin-bottom: 40px;
  animation: fadeInScale 2s ease-out;
  position: relative;
}

.monogram-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  border: 4px solid var(--gold);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 30% 30%,
      rgba(255, 255, 255, 0.2),
      transparent 50%
    ),
    rgba(212, 175, 55, 0.15);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  position: relative;
  box-shadow:
    0 0 50px rgba(212, 175, 55, 0.4),
    inset 0 0 50px rgba(212, 175, 55, 0.2),
    0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
}

.monogram-circle:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 70px rgba(212, 175, 55, 0.6),
    inset 0 0 70px rgba(212, 175, 55, 0.3),
    0 15px 50px rgba(0, 0, 0, 0.4);
}

.monogram-circle::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  opacity: 0.4;
  animation: pulse 3s infinite;
}

.monogram-circle::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.2;
  animation: pulse 3s infinite 0.5s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.6;
  }
}

.monogram-text {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-shadow:
    0 0 30px rgba(212, 175, 55, 0.8),
    0 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
}

/* Nomes com Design Ultra Premium */
.names {
  margin: 30px 0 40px;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 200;
  letter-spacing: 0.03em;
  animation: fadeInUp 2.2s ease-out;
  position: relative;
}

.name-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.name {
  display: inline-block;
  position: relative;
  text-shadow:
    0 0 30px rgba(212, 175, 55, 0.6),
    0 4px 8px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.name:hover {
  transform: translateY(-2px);
  text-shadow:
    0 0 40px rgba(212, 175, 55, 0.8),
    0 6px 12px rgba(0, 0, 0, 0.5);
}

.name::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.ampersand {
  font-family: "Great Vibes", cursive;
  font-size: 1.3em;
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(212, 175, 55, 1),
    0 4px 12px rgba(0, 0, 0, 0.4);
  animation: shimmer 4s infinite;
  position: relative;
}

.ampersand::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent 70%);
  animation: glow 3s infinite;
}

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

@keyframes glow {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Data Ultra Elegante */
.hero .date-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px 0;
  position: relative;
}

.date-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.date-line::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.date-line::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero .date {
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 500;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.6);
  position: relative;
}

.hero .date::before {
  content: "♦";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.6;
}

.hero .date::after {
  content: "♦";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Contagem Regressiva*/
.countdown-luxury {
  margin: 40px 0;
  animation: slideInUp 2.2s ease-out;
}

.countdown-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}

.countdown-number {
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  text-shadow:
    0 0 30px rgba(212, 175, 55, 0.8),
    0 4px 8px rgba(0, 0, 0, 0.3);
  line-height: 1;
  margin-bottom: 15px;
  font-family: "Montserrat", sans-serif;
}

.countdown-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.countdown-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.decoration-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.decoration-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

/* Botão Luxury */
.button-container {
  margin: 40px 0;
  animation: fadeInScale 2.5s ease-out;
}

.btn-luxury {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 50px;
  border: 2px solid var(--gold);
  background: rgba(212, 175, 55, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--gold);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow:
    0 0 30px rgba(212, 175, 55, 0.3),
    inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.btn-luxury::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.4),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-luxury:hover::before {
  left: 100%;
}

.btn-luxury:hover {
  transform: translateY(-3px);
  box-shadow:
    0 10px 40px rgba(212, 175, 55, 0.5),
    inset 0 0 40px rgba(212, 175, 55, 0.2);
  background: rgba(212, 175, 55, 0.2);
}

.btn-text {
  position: relative;
  z-index: 1;
}

.btn-decoration {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid var(--gold);
  border-radius: 50px;
  opacity: 0.6;
}

/* Frase Romântica */
.romantic-quote {
  margin-top: 30px;
  font-family: "Great Vibes", cursive;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeIn 3s ease-out;
}

/* Corações Flutuantes */
.floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.heart {
  position: absolute;
  font-size: 1.5rem;
  animation: floatHeart 6s infinite ease-in-out;
  opacity: 0.7;
}

.heart:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 7s;
}
.heart:nth-child(2) {
  left: 25%;
  animation-delay: 1s;
  animation-duration: 8s;
}
.heart:nth-child(3) {
  left: 40%;
  animation-delay: 2s;
  animation-duration: 6s;
}
.heart:nth-child(4) {
  left: 60%;
  animation-delay: 3s;
  animation-duration: 7s;
}
.heart:nth-child(5) {
  left: 75%;
  animation-delay: 4s;
  animation-duration: 8s;
}

@keyframes floatHeart {
  0%,
  100% {
    transform: translateY(100vh) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  50% {
    transform: translateY(50vh) rotate(180deg) scale(1);
    opacity: 0.7;
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

/* Parallax Scrolling */
.parallax-element {
  transition: transform 0.1s ease-out;
}

/* Hover Sparkle Elements */
.sparkle-hover {
  position: relative;
  overflow: visible;
}

.sparkle-hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

/* Animações Avançadas - Partículas Douradas que Seguem o Mouse */
.golden-particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.golden-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, var(--gold), var(--gold-light));
  border-radius: 50%;
  pointer-events: none;
  animation: particleFade 2s ease-out forwards;
  box-shadow: 0 0 10px var(--gold-glow);
}

@keyframes particleFade {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.3);
  }
}

/* Confetti Animation */
.confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.confetti {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--gold);
  pointer-events: none;
  animation: confettiFall 3s ease-out forwards;
}

.confetti:nth-child(odd) {
  background: var(--gold-light);
  width: 8px;
  height: 8px;
}

.confetti:nth-child(even) {
  background: var(--gold-dark);
  width: 12px;
  height: 12px;
}

.confetti:nth-child(3n) {
  background: var(--rose-gold);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

@keyframes confettiFall {
  0% {
    opacity: 1;
    transform: translateY(-100vh) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(100vh) rotate(720deg);
  }
}

/* Floating Hearts com Física Realista */
.floating-hearts-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.golden-particles-container,
.floating-hearts-container,
.sparkle-container {
  transition: opacity 0.5s ease;
}

body.hero-intro-in-view .golden-particles-container,
body.hero-intro-in-view .floating-hearts-container,
body.hero-intro-in-view .sparkle-container {
  opacity: 0.34;
}

.floating-heart {
  position: absolute;
  font-size: 20px;
  color: var(--gold);
  pointer-events: none;
  animation: floatUp 4s ease-out forwards;
  text-shadow: 0 0 20px var(--gold-glow);
}

.floating-heart:nth-child(odd) {
  color: var(--rose-gold);
  font-size: 16px;
}

.floating-heart:nth-child(even) {
  color: var(--gold-light);
  font-size: 24px;
}

@keyframes floatUp {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1) rotate(10deg);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1.2) rotate(-10deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(0.8) rotate(0deg);
  }
}

/* Sparkle Effects em Hover */
.sparkle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: white;
  border-radius: 50%;
  pointer-events: none;
  animation: sparkleAnim 1s ease-out forwards;
  box-shadow:
    0 0 6px white,
    0 0 12px var(--gold);
}

@keyframes sparkleAnim {
  0% {
    opacity: 0;
    transform: scale(0) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
  100% {
    opacity: 0;
    transform: scale(0) rotate(360deg);
  }
}

/* Parallax Scrolling */
.parallax-element {
  transition: transform 0.1s ease-out;
}

/* Hover Sparkle Elements */
.sparkle-hover {
  position: relative;
  overflow: visible;
}

.sparkle-hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 10;
}

/* Toast Indicador de Música */
.music-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.95),
    rgba(184, 148, 31, 0.95)
  );
  color: white;
  padding: 15px 20px;
  border-radius: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow:
    0 8px 25px rgba(212, 175, 55, 0.3),
    0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  opacity: 0;
  transform: translateX(100px) translateY(-20px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
}

.music-toast.show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

.music-toast.hide {
  opacity: 0;
  transform: translateX(100px) translateY(-20px);
}

.music-toast .music-icon {
  font-size: 1.2rem;
  animation: pulse 2s infinite;
}

.music-toast .music-info {
  flex: 1;
  line-height: 1.4;
}

.music-toast .song-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.music-toast .artist-name {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Mensagem de Interação do Usuário */
.user-interaction-message {
  font-family: "Montserrat", sans-serif;
}

.message-content {
  display: flex;
  align-items: center;
  gap: 15px;
}

.message-content .music-icon {
  font-size: 2rem;
  animation: pulse 2s infinite;
}

.message-text {
  flex: 1;
  line-height: 1.4;
}

.message-text strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.message-text small {
  display: block;
  font-size: 0.9rem;
  opacity: 0.9;
  margin-top: 5px;
}

@keyframes messageSlideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes messageSlideOut {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
}

/* ==========================================
   CAPA CINEMATOGRÁFICA ESPETACULAR
   ========================================== */

/* Background Cinematográfico */
.cinematic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: linear-gradient(
    135deg,
    #1a1a2e 0%,
    #16213e 25%,
    #0f3460 50%,
    #533483 75%,
    #e94560 100%
  );
}

.bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(
      circle at 20% 50%,
      rgba(212, 175, 55, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(233, 69, 96, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 20%,
      rgba(83, 52, 131, 0.3) 0%,
      transparent 50%
    );
  animation: gradientShift 15s ease-in-out infinite;
}

.bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(
      2px 2px at 20px 30px,
      rgba(255, 255, 255, 0.3),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(
      1px 1px at 50px 50px,
      rgba(255, 255, 255, 0.5),
      transparent
    ),
    radial-gradient(1px 1px at 80px 10px, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(
      2px 2px at 130px 80px,
      rgba(255, 255, 255, 0.4),
      transparent
    );
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: particlesFloat 20s linear infinite;
}

.bg-light-rays {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(212, 175, 55, 0.1) 45deg,
    transparent 90deg,
    rgba(233, 69, 96, 0.1) 135deg,
    transparent 180deg,
    rgba(212, 175, 55, 0.1) 225deg,
    transparent 270deg,
    rgba(233, 69, 96, 0.1) 315deg,
    transparent 360deg
  );
  animation: lightRaysRotate 30s linear infinite;
}

/* Overlay Mágico */
.magic-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    transparent 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 1;
}

/* Partículas Douradas Flutuantes */
.golden-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.golden-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: radial-gradient(circle, #d4af37 0%, #b8941f 50%, transparent 70%);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
  animation: goldenParticleFloat 8s ease-in-out infinite;
}

.golden-particle:nth-child(1) {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}
.golden-particle:nth-child(2) {
  top: 20%;
  left: 80%;
  animation-delay: 1s;
}
.golden-particle:nth-child(3) {
  top: 30%;
  left: 10%;
  animation-delay: 2s;
}
.golden-particle:nth-child(4) {
  top: 40%;
  left: 90%;
  animation-delay: 3s;
}
.golden-particle:nth-child(5) {
  top: 50%;
  left: 30%;
  animation-delay: 4s;
}
.golden-particle:nth-child(6) {
  top: 60%;
  left: 70%;
  animation-delay: 5s;
}
.golden-particle:nth-child(7) {
  top: 70%;
  left: 15%;
  animation-delay: 6s;
}
.golden-particle:nth-child(8) {
  top: 80%;
  left: 85%;
  animation-delay: 7s;
}
.golden-particle:nth-child(9) {
  top: 90%;
  left: 40%;
  animation-delay: 8s;
}
.golden-particle:nth-child(10) {
  top: 15%;
  left: 60%;
  animation-delay: 9s;
}
.golden-particle:nth-child(11) {
  top: 25%;
  left: 35%;
  animation-delay: 10s;
}
.golden-particle:nth-child(12) {
  top: 35%;
  left: 75%;
  animation-delay: 11s;
}
.golden-particle:nth-child(13) {
  top: 45%;
  left: 25%;
  animation-delay: 12s;
}
.golden-particle:nth-child(14) {
  top: 55%;
  left: 65%;
  animation-delay: 13s;
}
.golden-particle:nth-child(15) {
  top: 65%;
  left: 45%;
  animation-delay: 14s;
}

/* Anéis de Casamento Animados */
.wedding-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

.ring {
  position: absolute;
  border: 3px solid #d4af37;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.ring-left {
  width: 80px;
  height: 80px;
  top: -40px;
  left: -60px;
  animation: ringFloatLeft 6s ease-in-out infinite;
}

.ring-right {
  width: 80px;
  height: 80px;
  top: -40px;
  left: -20px;
  animation: ringFloatRight 6s ease-in-out infinite;
}

.diamond {
  position: absolute;
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #ffffff 0%, #d4af37 50%, #ffffff 100%);
  transform: rotate(45deg);
  top: -30px;
  left: -40px;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
  animation: diamondSparkle 2s ease-in-out infinite;
}

/* Conteúdo Principal da Capa */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
}

/* Selo Premium */
.premium-seal {
  margin-bottom: 40px;
  animation: sealBounce 3s ease-in-out infinite;
}

.seal-inner {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
}

.seal-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: sealShine 4s ease-in-out infinite;
}

/* Monograma Extravagante */
.monogram-luxury {
  margin-bottom: 50px;
  position: relative;
}

.monogram-frame {
  display: inline-block;
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
  animation: monogramRotate 20s linear infinite;
}

.monogram-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: #d4af37;
  letter-spacing: 2px;
}

.monogram-letter {
  display: inline-block;
  animation: letterPulse 2s ease-in-out infinite;
}

.monogram-letter:first-child {
  animation-delay: 0s;
}

.monogram-letter:last-child {
  animation-delay: 1s;
}

.monogram-symbol {
  margin: 0 5px;
  color: #e94560;
  animation: symbolGlow 3s ease-in-out infinite;
}

.monogram-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.3) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: monogramGlow 4s ease-in-out infinite;
}

/* Título Principal */
.wedding-title {
  margin-bottom: 50px;
}

.title-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.couple-names {
  font-family: "Great Vibes", cursive;
  font-size: 4.5rem;
  font-weight: 400;
  color: white;
  margin: 0;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  animation: titleGlow 3s ease-in-out infinite;
}

.name-first,
.name-second {
  display: inline-block;
  animation: nameFloat 4s ease-in-out infinite;
}

.name-first {
  animation-delay: 0s;
}

.name-second {
  animation-delay: 2s;
}

.name-ampersand {
  color: #d4af37;
  margin: 0 15px;
  font-size: 3.5rem;
  animation: ampersandSparkle 2s ease-in-out infinite;
}

.title-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 20px;
}

.divider-line {
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  animation: dividerGlow 3s ease-in-out infinite;
}

.divider-heart {
  font-size: 1.5rem;
  color: #e94560;
  animation: heartBeat 1.5s ease-in-out infinite;
}

/* Data com Design Espectacular */
.date-showcase {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.date-card {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  border: 2px solid #d4af37;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: dateCardFloat 6s ease-in-out infinite;
}

.date-day {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 900;
  color: #d4af37;
  line-height: 1;
}

.date-month {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 5px 0;
}

.date-year {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
}

.date-details {
  text-align: left;
}

.date-weekday {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
}

.date-time {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Contagem Regressiva Cinematográfica */
.countdown-cinematic {
  margin-bottom: 50px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(233, 69, 96, 0.1) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: countdownPulse 4s ease-in-out infinite;
}

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

.countdown-label {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-sparkle {
  font-size: 1.5rem;
  animation: sparkleRotate 2s linear infinite;
}

.countdown-display {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

.countdown-number {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  font-weight: 900;
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
  animation: numberPulse 2s ease-in-out infinite;
}

.countdown-suffix {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}

.countdown-message {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.countdown-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #d4af37 0%, #e94560 100%);
  border-radius: 2px;
  animation: progressGrow 10s ease-in-out infinite;
}

/* Botão Mágico */
.button-magical {
  margin-bottom: 50px;
}

.btn-magic {
  position: relative;
  display: inline-block;
  padding: 20px 60px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 50%, #d4af37 100%);
  color: white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.btn-bg {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-magic:hover .btn-bg {
  left: 100%;
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-sparkles {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  font-size: 1rem;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.sparkle:nth-child(2) {
  top: 20%;
  right: 20%;
  animation-delay: 1s;
}
.sparkle:nth-child(3) {
  bottom: 20%;
  left: 50%;
  animation-delay: 2s;
}

.btn-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-magic:hover .btn-arrow {
  transform: translateY(-50%) translateX(5px);
}

.btn-magic:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.6);
}

/* Frase Poética */
.poetic-quote {
  margin-bottom: 50px;
  position: relative;
  padding: 0 40px;
}

.quote-mark {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  color: rgba(212, 175, 55, 0.6);
  position: absolute;
  top: -20px;
}

.quote-mark.opening {
  left: 0;
}

.quote-mark.closing {
  right: 0;
}

.quote-text {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-style: italic;
  color: white;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Indicadores Sociais */
.social-indicators {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: indicatorFloat 4s ease-in-out infinite;
}

.indicator:nth-child(1) {
  animation-delay: 0s;
}
.indicator:nth-child(2) {
  animation-delay: 1.3s;
}
.indicator:nth-child(3) {
  animation-delay: 2.6s;
}

.indicator-icon {
  font-size: 2rem;
  animation: iconBounce 2s ease-in-out infinite;
}

.indicator-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 120px;
}

/* Corações Flutuantes */
.floating-hearts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.floating-heart {
  position: absolute;
  font-size: 1.5rem;
  animation: heartFloat 6s ease-in-out infinite;
}

.floating-heart:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.floating-heart:nth-child(2) {
  top: 20%;
  right: 15%;
  animation-delay: 1s;
}
.floating-heart:nth-child(3) {
  top: 30%;
  left: 80%;
  animation-delay: 2s;
}
.floating-heart:nth-child(4) {
  top: 40%;
  right: 25%;
  animation-delay: 3s;
}
.floating-heart:nth-child(5) {
  top: 50%;
  left: 5%;
  animation-delay: 4s;
}
.floating-heart:nth-child(6) {
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}

/* Elementos Decorativos Inferiores */
.bottom-decorations {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  z-index: 5;
}

.floral-left,
.floral-right {
  font-size: 2rem;
  animation: floralSwing 4s ease-in-out infinite;
}

.floral-right {
  animation-delay: 2s;
}

.ribbon-banner {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.8) 0%,
    rgba(184, 148, 31, 0.8) 100%
  );
  padding: 10px 30px;
  border-radius: 25px;
  box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.ribbon-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Botão de Áudio Flutuante */
.audio-toggle-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.audio-toggle-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.6);
}

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

/* Animações Espectaculares */
@keyframes gradientShift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

@keyframes particlesFloat {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-100px) translateX(100px);
  }
}

@keyframes lightRaysRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@keyframes ringFloatLeft {
  0%,
  100% {
    transform: translate(0, 0) rotate(-5deg);
  }
  50% {
    transform: translate(10px, -20px) rotate(5deg);
  }
}

@keyframes ringFloatRight {
  0%,
  100% {
    transform: translate(0, 0) rotate(5deg);
  }
  50% {
    transform: translate(-10px, -20px) rotate(-5deg);
  }
}

@keyframes diamondSparkle {
  0%,
  100% {
    transform: rotate(45deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: rotate(45deg) scale(1.3);
    opacity: 1;
  }
}

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

@keyframes sealShine {
  0% {
    transform: translateX(-100%) translateY(-100%);
  }
  100% {
    transform: translateX(100%) translateY(100%);
  }
}

@keyframes monogramRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@keyframes symbolGlow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(233, 69, 96, 0.5);
  }
  50% {
    text-shadow: 0 0 20px rgba(233, 69, 96, 0.8);
  }
}

@keyframes monogramGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.6;
  }
}

@keyframes titleGlow {
  0%,
  100% {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }
  50% {
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.3);
  }
}

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

@keyframes ampersandSparkle {
  0%,
  100% {
    transform: scale(1);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
  }
  50% {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  }
}

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

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

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

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

@keyframes sparkleRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

@keyframes progressGrow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

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

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

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

@keyframes heartFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-40px) rotate(180deg);
    opacity: 1;
  }
}

@keyframes floralSwing {
  0%,
  100% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(5deg);
  }
}

/* Responsive Design para Capa */
@media (max-width: 768px) {
  .couple-names {
    font-size: 3rem;
  }

  .date-showcase {
    flex-direction: column;
    gap: 20px;
  }

  .countdown-number {
    font-size: 3rem;
  }

  .social-indicators {
    gap: 20px;
  }

  .bottom-decorations {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

/* ==========================================
   SISTEMA DE PEDIDOS DE BEBIDAS - TEMA DOURADO
   ========================================== */

.drink-box {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(218, 165, 32, 0.15) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.drink-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.6);
}

.drink-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(212, 175, 55, 0.15) 45deg,
    transparent 90deg,
    rgba(218, 165, 32, 0.15) 135deg,
    transparent 180deg,
    rgba(212, 175, 55, 0.15) 225deg,
    transparent 270deg,
    rgba(218, 165, 32, 0.15) 315deg,
    transparent 360deg
  );
  animation: drinkRaysRotate 25s linear infinite;
  pointer-events: none;
}

.drink-box > div {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.drink-box h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.drink-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
}

.drink-icon {
  color: #d4af37;
  margin-right: 12px;
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.drink-form {
  margin-top: 25px;
}

.drink-form .form-row {
  margin-bottom: 20px;
}

.drink-form .form-group {
  width: 100%;
}

.drink-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 15px;
}

/* ==========================================
   ESTADOS DE VALIDAÇÃO - SISTEMA DE BEBIDAS DOURADO
   ========================================== */

.drink-checkbox {
  display: flex;
  align-items: center;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.drink-checkbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.drink-checkbox:hover::before {
  left: 100%;
}

.drink-checkbox:hover {
  background: rgba(212, 175, 55, 0.15);
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.drink-checkbox input[type="checkbox"] {
  margin-right: 10px;
  accent-color: #d4af37;
  min-width: 18px;
  height: 18px;
  cursor: pointer;
}

.drink-checkbox span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.drink-checkbox input[type="checkbox"]:checked + span {
  color: #d4af37;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.drink-checkbox input[type="checkbox"]:checked ~ .checkmark {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.checkmark {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  color: #d4af37;
  font-size: 14px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: bold;
}

/* Estados de erro otimizados */
.drink-options.validation-error {
  border: 2px solid #f44336;
  background: rgba(244, 67, 54, 0.1);
  border-radius: 15px;
  padding: 20px;
  animation: shakeError 0.5s ease-in-out;
  box-shadow: 0 0 20px rgba(244, 67, 54, 0.3);
}

.field-error {
  border-color: #f44336 !important;
  background: rgba(244, 67, 54, 0.08) !important;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2) !important;
  animation: fieldErrorPulse 0.6s ease-in-out;
}

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

.field-error-message {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 8px;
  padding: 10px 15px;
  background: rgba(244, 67, 54, 0.12);
  border-radius: 8px;
  border-left: 4px solid #f44336;
  animation: slideDownError 0.3s ease-out;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(244, 67, 54, 0.2);
}

@keyframes shakeError {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-8px);
  }
  75% {
    transform: translateX(8px);
  }
}

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

/* Formulário otimizado */
.drink-form input[type="text"],
.drink-form input[type="email"],
.drink-form select,
.drink-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 15px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.drink-form input[type="text"]:focus,
.drink-form input[type="email"]:focus,
.drink-form select:focus,
.drink-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}

.drink-form input[type="text"]::placeholder,
.drink-form input[type="email"]::placeholder,
.drink-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-weight: 500;
}

.drink-form label {
  display: block;
  margin-bottom: 10px;
  color: white;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Radio buttons de contato otimizados */
.contact-options {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.contact-radio {
  display: flex;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  min-width: 150px;
  position: relative;
  overflow: hidden;
}

.contact-radio::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.contact-radio:hover::before {
  left: 100%;
}

.contact-radio:hover {
  background: rgba(212, 175, 55, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

.contact-radio input[type="radio"] {
  margin-right: 12px;
  accent-color: #d4af37;
  min-width: 18px;
  height: 18px;
  cursor: pointer;
}

.contact-radio input[type="radio"]:checked + i {
  color: #d4af37;
  transform: scale(1.1);
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.contact-radio input[type="radio"]:checked + i + span {
  color: #d4af37;
  font-weight: 600;
  text-shadow: 0 1px 3px rgba(212, 175, 55, 0.3);
}

.contact-radio i {
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-radio span {
  transition: all 0.3s ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

/* Botão submit otimizado */
.drink-submit {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  margin-top: 25px;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.drink-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.drink-submit:hover::before {
  left: 100%;
}

.drink-submit:hover {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.drink-submit:active {
  transform: translateY(-1px);
}

.drink-submit.success {
  background: linear-gradient(135deg, #d4af37 0%, #ffd700 100%);
  animation: successPulse 0.6s ease;
}

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

.drink-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.drink-submit.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Melhorias no toast de notificação */
.drink-toast,
.photo-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.95) 0%,
    rgba(46, 125, 50, 0.95) 100%
  );
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  z-index: 10001;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 350px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.photo-toast {
  background: linear-gradient(
    135deg,
    rgba(156, 39, 176, 0.95) 0%,
    rgba(186, 104, 200, 0.95) 100%
  );
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
}

.drink-toast.show,
.photo-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.drink-toast .toast-icon,
.photo-toast .toast-icon {
  margin-right: 10px;
  font-size: 1.2rem;
  display: inline-block;
  animation: toastIconBounce 0.5s ease;
}

.drink-toast .toast-title,
.photo-toast .toast-title {
  font-weight: 600;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.drink-toast .toast-message,
.photo-toast .toast-message {
  font-size: 0.8rem;
  opacity: 0.9;
  line-height: 1.4;
}

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

/* Animação de confetti */
@keyframes confettiFall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

/* Responsive Design para Validação */
@media (max-width: 768px) {
  .drink-options {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .contact-options {
    flex-direction: column;
  }

  .drink-toast,
  .photo-toast {
    right: 10px;
    left: 10px;
    max-width: none;
    top: 10px;
  }

  .field-error-message {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}

/* Estados de foco melhorados */
.drink-form input:focus:invalid,
.drink-form textarea:focus:invalid {
  border-color: #f44336;
  box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.2);
}

.drink-form input:focus:valid,
.drink-form textarea:focus:valid {
  border-color: #4caf50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.2);
}

/* Tooltips personalizados */
.drink-form [title] {
  position: relative;
  cursor: help;
}

.drink-form [title]:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  white-space: nowrap;
  z-index: 1000;
  margin-bottom: 5px;
  animation: tooltipFadeIn 0.3s ease;
}

@keyframes tooltipFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.contact-options {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-radio {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(76, 175, 80, 0.3);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.contact-radio:hover {
  background: rgba(76, 175, 80, 0.1);
}

.contact-radio input[type="radio"] {
  margin-right: 8px;
  accent-color: #4caf50;
}

.contact-radio input[type="radio"]:checked {
  accent-color: #4caf50;
}

.contact-radio input[type="radio"]:checked + i {
  color: #4caf50;
}

.contact-radio input[type="radio"]:checked + i + span {
  color: #4caf50;
  font-weight: 600;
}

.contact-radio i {
  margin-right: 8px;
  transition: color 0.3s ease;
}

.drink-submit {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.drink-submit:hover {
  background: linear-gradient(135deg, #45a049 0%, #4caf50 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
}

@keyframes drinkRaysRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================
   SISTEMA DE UPLOAD DE FOTOS
   ========================================== */

.photo-box {
  background: linear-gradient(
    135deg,
    rgba(156, 39, 176, 0.1) 0%,
    rgba(186, 104, 200, 0.1) 100%
  );
  border: 1px solid rgba(186, 104, 200, 0.3);
  position: relative;
  overflow: hidden;
}

.photo-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(186, 104, 200, 0.1) 45deg,
    transparent 90deg,
    rgba(156, 39, 176, 0.1) 135deg,
    transparent 180deg,
    rgba(186, 104, 200, 0.1) 225deg,
    transparent 270deg,
    rgba(156, 39, 176, 0.1) 315deg,
    transparent 360deg
  );
  animation: photoRaysRotate 30s linear infinite;
}

.photo-icon {
  color: #9c27b0;
  margin-right: 10px;
}

.photo-upload-area {
  margin: 20px 0;
}

.upload-zone {
  border: 2px dashed rgba(186, 104, 200, 0.5);
  border-radius: 15px;
  padding: 40px 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  cursor: pointer;
}

.upload-zone:hover {
  border-color: #9c27b0;
  background: rgba(156, 39, 176, 0.05);
}

.upload-zone.dragover {
  border-color: #9c27b0;
  background: rgba(156, 39, 176, 0.1);
  transform: scale(1.02);
}

.upload-zone i {
  font-size: 3rem;
  color: #9c27b0;
  margin-bottom: 15px;
}

.upload-zone h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.upload-zone p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.upload-btn {
  background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.upload-btn:hover {
  background: linear-gradient(135deg, #ba68c8 0%, #9c27b0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
}

.photo-preview-area {
  margin: 20px 0;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(186, 104, 200, 0.3);
}

.photo-preview-area h4 {
  color: white;
  margin-bottom: 15px;
  text-align: center;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

/* ==========================================
   SISTEMA DE GALERIA DE FOTOS - TEMA DOURADO
   ========================================== */

.photo-box {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.15) 0%,
    rgba(218, 165, 32, 0.15) 100%
  );
  border: 2px solid rgba(212, 175, 55, 0.4);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.2);
  transition: all 0.4s ease;
}

.photo-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
  border-color: rgba(212, 175, 55, 0.6);
}

.photo-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    rgba(212, 175, 55, 0.15) 45deg,
    transparent 90deg,
    rgba(218, 165, 32, 0.15) 135deg,
    transparent 180deg,
    rgba(212, 175, 55, 0.15) 225deg,
    transparent 270deg,
    rgba(218, 165, 32, 0.15) 315deg,
    transparent 360deg
  );
  animation: photoRaysRotate 30s linear infinite;
  pointer-events: none;
}

.photo-box > div {
  position: relative;
  z-index: 2;
  padding: 30px;
}

.photo-box h3 {
  color: white;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

.photo-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: "Montserrat", sans-serif;
}

.photo-icon {
  color: #d4af37;
  margin-right: 12px;
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

/* Upload Zone Ultra Otimizada */
.upload-zone {
  border: 3px dashed rgba(212, 175, 55, 0.6);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.upload-zone::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.1) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.upload-zone:hover::before {
  opacity: 1;
}

.upload-zone:hover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.upload-zone.dragover {
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(212, 175, 55, 0.35);
}

.upload-zone.dragover::before {
  opacity: 1;
  animation: pulseDragover 2s ease-in-out infinite;
}

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

.upload-zone i {
  font-size: 4.5rem;
  color: #d4af37;
  margin-bottom: 25px;
  display: block;
  animation: floatIcon 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 15px rgba(212, 175, 55, 0.4));
}

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

.upload-zone h4 {
  color: white;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.upload-zone p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
}

.upload-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.upload-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.upload-btn:hover::before {
  left: 100%;
}

.upload-btn:hover {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Photo Preview Area Ultra Otimizada */
.photo-preview-area {
  margin: 35px 0;
  padding: 35px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
  animation: slideUpPreview 0.5s ease-out;
}

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

.photo-preview-area h4 {
  color: white;
  margin-bottom: 25px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 18px;
  margin-bottom: 30px;
  max-height: 450px;
  overflow-y: auto;
  padding: 15px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.photo-grid::-webkit-scrollbar {
  width: 10px;
}

.photo-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 5px;
}

.photo-grid::-webkit-scrollbar-thumb {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.6),
    rgba(218, 165, 32, 0.6)
  );
  border-radius: 5px;
  transition: background 0.3s ease;
}

.photo-grid::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.8),
    rgba(218, 165, 32, 0.8)
  );
}

/* Photo Items Ultra Otimizados */
.photo-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(212, 175, 55, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: photoItemAppear 0.5s ease-out;
  cursor: pointer;
}

@keyframes photoItemAppear {
  from {
    opacity: 0;
    transform: scale(0.8) rotate(-8deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

.photo-item:hover {
  border-color: #d4af37;
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
  z-index: 10;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.photo-item:hover img {
  transform: scale(1.15);
}

.photo-item-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(244, 67, 54, 0.95);
  color: white;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: scale(0.8);
  z-index: 15;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.photo-item:hover .photo-item-remove {
  opacity: 1;
  transform: scale(1);
}

.photo-item-remove:hover {
  background: #f44336;
  transform: scale(1.2);
  box-shadow: 0 6px 20px rgba(244, 67, 54, 0.6);
}

.photo-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  padding: 12px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.photo-item:hover .photo-info-overlay {
  transform: translateY(0);
}

.photo-name {
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
  font-family: "Montserrat", sans-serif;
}

.photo-size {
  font-size: 0.65rem;
  opacity: 0.8;
  font-family: "Montserrat", sans-serif;
}

/* Formulário de Fotos Ultra Otimizado */
.photo-form {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.photo-form input[type="text"],
.photo-form input[type="email"],
.photo-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 18px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.photo-form input[type="text"]:focus,
.photo-form input[type="email"]:focus,
.photo-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}

.photo-form input[type="text"]::placeholder,
.photo-form input[type="email"]::placeholder,
.photo-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.85);
  font-style: normal;
  font-weight: 500;
}

.photo-form label {
  display: block;
  margin-bottom: 10px;
  color: white;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* Photo Actions Ultra Otimizadas */
.photo-actions {
  display: flex;
  gap: 18px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.photo-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 18px 30px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.photo-actions .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.photo-submit {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.photo-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.photo-submit:hover::before {
  left: 100%;
}

.photo-submit:hover {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.photo-submit.loading {
  pointer-events: none;
  opacity: 0.8;
}

.photo-submit.loading::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  margin: auto;
  border: 2px solid transparent;
  border-top-color: white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Progress Bar Ultra Otimizada */
.upload-progress-container {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin: 25px 0;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

.upload-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #d4af37, #b8860b);
  border-radius: 4px;
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
  position: relative;
  overflow: hidden;
}

.upload-progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: progressShimmer 2s infinite;
}

@keyframes progressShimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Photo Gallery Info Ultra Otimizada */
.photo-gallery-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: help;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.info-item:hover {
  background: rgba(212, 175, 55, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.25);
  border-color: rgba(212, 175, 55, 0.4);
}

.info-item i {
  color: #d4af37;
  font-size: 1.4rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.info-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  font-weight: 500;
}

/* Counter de fotos otimizado */
.photo-counter {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2),
    rgba(218, 165, 32, 0.2)
  );
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  border: 2px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* Animação de raios para fotos */
@keyframes photoRaysRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Animação de raios para bebidas */
@keyframes drinkRaysRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Toast notifications otimizadas */
.drink-toast,
.photo-toast {
  position: fixed;
  top: 25px;
  right: 25px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.95) 0%,
    rgba(218, 165, 32, 0.95) 100%
  );
  color: white;
  padding: 18px 25px;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(212, 175, 55, 0.4);
  z-index: 10001;
  opacity: 0;
  transform: translateX(120px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 380px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.drink-toast.show,
.photo-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.drink-toast .toast-icon,
.photo-toast .toast-icon {
  margin-right: 12px;
  font-size: 1.3rem;
  display: inline-block;
  animation: toastIconBounce 0.5s ease;
}

.drink-toast .toast-title,
.photo-toast .toast-title {
  font-weight: 700;
  margin-bottom: 3px;
  font-size: 1rem;
}

.drink-toast .toast-message,
.photo-toast .toast-message {
  font-size: 0.85rem;
  opacity: 0.9;
  line-height: 1.5;
}

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

/* ==========================================
   AJUSTES FINAIS - HARMONIZAÇÃO DE CARDS
   ========================================== */

/* Espaçamento consistente entre cards */
.gift-box > div,
.drink-box > div,
.photo-box > div {
  padding: 30px;
}

/* Margem entre sistemas dentro do card de presentes */
.drink-box,
.photo-box {
  margin-top: 25px;
  border-top: 2px solid rgba(212, 175, 55, 0.3);
  padding-top: 25px;
}

/* Títulos consistentes */
.gift-box h3,
.drink-box h3,
.photo-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-family: "Montserrat", sans-serif;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

/* Ícones consistentes */
.gift-icon,
.drink-icon,
.photo-icon {
  margin-right: 12px;
  font-size: 2rem;
  filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.4));
}

.gift-icon {
  color: #d4af37;
}

/* Botões consistentes */
.presentes-lista-btn,
.drink-submit,
.photo-submit,
.upload-btn {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.presentes-lista-btn:hover,
.drink-submit:hover,
.photo-submit:hover,
.upload-btn:hover {
  background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Formulários consistentes */
.drink-form input[type="text"],
.drink-form input[type="email"],
.drink-form select,
.drink-form textarea,
.photo-form input[type="text"],
.photo-form input[type="email"],
.photo-form textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  padding: 15px;
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.drink-form input[type="text"]:focus,
.drink-form input[type="email"]:focus,
.drink-form select:focus,
.drink-form textarea:focus,
.photo-form input[type="text"]:focus,
.photo-form input[type="email"]:focus,
.photo-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  transform: translateY(-1px);
}

.photo-form {
  margin-top: 20px;
}

.photo-actions {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.photo-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.photo-actions .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

.photo-submit {
  background: linear-gradient(135deg, #9c27b0 0%, #ba68c8 100%);
  display: flex;
  align-items: center;
  gap: 8px;
}

.photo-submit:hover {
  background: linear-gradient(135deg, #ba68c8 0%, #9c27b0 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
}

.photo-gallery-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid rgba(186, 104, 200, 0.2);
}

.info-item i {
  color: #9c27b0;
  font-size: 1.2rem;
}

.info-item span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

@keyframes photoRaysRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ==========================================
   TOAST NOTIFICATIONS PARA NOVOS SISTEMAS
   ========================================== */

.drink-toast,
.photo-toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background: linear-gradient(
    135deg,
    rgba(76, 175, 80, 0.95) 0%,
    rgba(46, 125, 50, 0.95) 100%
  );
  color: white;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.4);
  z-index: 10001;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  max-width: 350px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.photo-toast {
  background: linear-gradient(
    135deg,
    rgba(156, 39, 176, 0.95) 0%,
    rgba(186, 104, 200, 0.95) 100%
  );
  box-shadow: 0 8px 25px rgba(156, 39, 176, 0.4);
}

.drink-toast.show,
.photo-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.drink-toast .toast-icon,
.photo-toast .toast-icon {
  margin-right: 10px;
  font-size: 1.2rem;
}

.drink-toast .toast-title,
.photo-toast .toast-title {
  font-weight: 600;
  margin-bottom: 2px;
}

.drink-toast .toast-message,
.photo-toast .toast-message {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Responsive Design para Novos Sistemas */
@media (max-width: 768px) {
  .drink-options {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .contact-options {
    flex-direction: column;
  }

  .photo-grid {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
  }

  .photo-gallery-info {
    grid-template-columns: 1fr;
  }

  .photo-actions {
    flex-direction: column;
  }
}

/* Animações Avançadas */
@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -130px;
  height: 260px;
  background: var(--ivory);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 18px 120px;
  max-width: 980px;
}

.eyebrow {
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 22px;
  font-weight: 500;
}

.names {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3.8rem, 9vw, 7.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 400;
}

.date {
  letter-spacing: 0.35em;
  font-size: 1rem;
  margin-bottom: 34px;
  font-weight: 600;
}

.countdown-box {
  width: min(300px, 82vw);
  margin: 0 auto 30px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 28px 20px;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: rgba(0, 0, 0, 0.16);
}

.count-num {
  font-size: clamp(4rem, 10vw, 5rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.count-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 16px 34px;
  border-radius: 999px;
  background: var(--gold);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 600;
  transition:
    transform 0.25s ease,
    background 0.25s ease;
  box-shadow: var(--shadow);
  cursor: pointer;
  border: none;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--gold-dark);
}

.audio-toggle {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: #d7b24b;
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.audio-toggle .audio-toggle__icon,
.audio-toggle svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  stroke-width: 2;
  flex-shrink: 0;
}

/* Modal de Presentes */
.gift-modal-content {
  background: white;
  border-radius: 20px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow);
  position: relative;
}

.gift-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid rgba(204, 178, 107, 0.2);
}

.gift-modal-header h3 {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  color: var(--gold);
  margin: 0;
}

.close-modal {
  background: none;
  border: none;
  font-size: 2rem;
  color: #999;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: #f5f5f5;
  color: var(--gold);
}

.gift-modal-body {
  padding: 30px;
  text-align: center;
}

.gift-modal-body p {
  color: #666;
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.gift-options {
  display: grid;
  gap: 20px;
}

.gift-option {
  background: var(--ivory);
  padding: 25px;
  border-radius: 15px;
  border: 2px solid rgba(204, 178, 107, 0.2);
  transition: all 0.3s ease;
}

.gift-option:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.gift-option h4 {
  font-family: "Great Vibes", cursive;
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.gift-option p {
  color: #666;
  margin-bottom: 20px;
  font-size: 1rem;
}

.btn-gift-option {
  background: var(--gold);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.btn-gift-option:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.hero-intro {
  min-height: 90vh;
}

/* Hero convite (intro): referência editorial — foto limpa, sombra suave só no terço inferior, curva branca em baixo */
.hero.hero-intro {
  display: grid;
  place-items: center;
  margin: 0;
  padding: env(safe-area-inset-top, 0) 0 0;
  min-height: 100vh;
  min-height: 100dvh;
  min-height: 100svh;
  background:
    linear-gradient(
      180deg,
      rgba(8, 8, 10, 0) 0%,
      rgba(8, 8, 10, 0) 55%,
      rgba(8, 8, 10, 0.18) 72%,
      rgba(8, 8, 10, 0.36) 100%
    ),
    url("images/principal.jpg") center 36% / cover no-repeat;
  background-color: #141416;
}

.hero-intro__film {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  opacity: 0.038;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='280' height='280'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

.hero-intro__vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
  /* Sem sombreado nas quatro bordas (evita faixas pretas em cima e em baixo). */
  box-shadow: none;
  background: transparent;
}

.hero.hero-intro .hero-content.hero-content--intro {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(28px, 5vh, 48px);
  width: 100%;
  max-width: var(--max);
  min-height: min(100vh, 100dvh);
  margin: 0 auto;
  padding: clamp(88px, 12vh, 120px) clamp(20px, 5vw, 40px)
    clamp(160px, 24vw, 200px);
  box-sizing: border-box;
}

.hero.hero-intro .hero-intro__copy {
  max-width: min(32rem, 92vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vh, 26px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero.hero-intro .hero-intro__copy {
    animation: heroIntroCopyIn 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
  }
}

@keyframes heroIntroCopyIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero.hero-intro .hero-content.hero-content--intro .eyebrow,
.hero.hero-intro .hero-content.hero-content--intro .names,
.hero.hero-intro .hero-content.hero-content--intro .date {
  text-align: center;
}

.hero.hero-intro .eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.65rem, 1.45vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.35);
}

/* Nomes: script + dourado champanhe, lockup centrado e proporcional */
.hero.hero-intro .names.names--display.names--lockup {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  margin: 0;
  padding: 0 0.5rem;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: min(96vw, 36rem);
}

.hero.hero-intro .names--lockup .names__inner {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  column-gap: clamp(0.1em, 2.2vw, 0.24em);
  row-gap: 0.1em;
  font-size: clamp(2.75rem, 11vw, 6rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  color: #e8cf6a;
  -webkit-text-fill-color: #e8cf6a;
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(212, 175, 55, 0.28),
    0 1px 0 rgba(255, 252, 232, 0.2);
}

.hero.hero-intro .names--lockup .names__part {
  display: inline-block;
  white-space: nowrap;
}

.hero.hero-intro .names--lockup .names__amp {
  font-family: "Great Vibes", cursive;
  font-size: 0.4em;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  padding: 0 0.02em;
  opacity: 0.94;
  flex-shrink: 0;
  transform: translateY(0.26em);
  text-shadow:
    0 2px 14px rgba(0, 0, 0, 0.35),
    0 0 1px rgba(255, 244, 200, 0.3);
}

.hero.hero-intro .names.names--lockup::after {
  content: "";
  display: block;
  width: min(88px, 26vw);
  height: 1px;
  margin: clamp(8px, 1.8vw, 14px) auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(242, 227, 142, 0.4),
    transparent
  );
  box-shadow: 0 0 10px rgba(242, 227, 142, 0.12);
}

.hero.hero-intro .date {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.78rem, 1.75vw, 0.92rem);
  font-weight: 300;
  letter-spacing: 0.42em;
  margin: 0;
  padding-left: 0.42em;
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}

.hero.hero-intro .date::before,
.hero.hero-intro .date::after {
  content: none;
  display: none;
}

.hero-intro__scroll {
  position: relative;
  z-index: 12;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #d4af37;
  text-decoration: none;
  transition:
    color 0.25s ease,
    filter 0.25s ease;
  padding: 10px 16px 8px;
  margin-top: -4px;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.25));
}

.hero-intro__scroll:hover {
  color: #f0dc82;
}

.hero-intro__scroll:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.75);
  outline-offset: 4px;
  border-radius: 8px;
}

.hero-intro__scroll-chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}

.hero-intro__chev {
  display: block;
  animation: heroIntroChevronDrift 2.1s ease-in-out infinite;
}

.hero-intro__chev--2 {
  animation-delay: 0.18s;
}

@keyframes heroIntroChevronDrift {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(5px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-intro__chev,
  .hero-intro__chev--2 {
    animation: none;
    opacity: 0.9;
  }

  .hero.hero-intro .hero-intro__copy {
    animation: none;
  }
}

@media (max-width: 767px) {
  .hero.hero-intro {
    background-position: 50% 32%;
  }

  .hero.hero-intro .names--lockup .names__inner {
    font-size: clamp(2.45rem, 10.5vw, 4.25rem);
    column-gap: 0.12em;
  }

  .hero.hero-intro .names--lockup .names__amp {
    font-size: 0.38em;
    transform: translateY(0.22em);
  }

  #intro-heading .names__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-shadow: 0 8px 10px rgba(0, 0, 0, 0.8);
  }
}

.hero.hero-intro::after {
  content: "";
  position: absolute;
  left: -14%;
  right: -14%;
  bottom: -64px;
  height: clamp(150px, 21vw, 210px);
  z-index: 2;
  background: linear-gradient(180deg, #ffffff 0%, var(--ivory) 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.06);
  pointer-events: none;
}

/* Áudio: botão dourado com ícone claro (referência) */
body:has(.hero-intro) .audio-toggle {
  background: linear-gradient(
    145deg,
    #e8c547,
    var(--gold) 45%,
    var(--gold-dark)
  );
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

body:has(.hero-intro) .audio-toggle:hover {
  background: linear-gradient(145deg, #f0dc82, var(--gold) 40%, #c9a227);
  border-color: rgba(255, 255, 255, 0.65);
}

/* Seção de Localização */
.location-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.venue-card--premium {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(255, 255, 255, 0.99) 45%,
    rgba(250, 247, 242, 0.95) 100%
  );
  border-radius: 28px;
  padding: 44px 38px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 22px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 0 80px rgba(212, 175, 55, 0.06);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition:
    box-shadow 0.45s ease,
    border-color 0.35s ease,
    transform 0.35s ease;
}

.venue-card--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35),
    var(--gold),
    rgba(212, 175, 55, 0.35),
    transparent
  );
  pointer-events: none;
}

.venue-card--premium::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 55%;
  height: 80%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.09) 0%,
    transparent 68%
  );
  pointer-events: none;
}

.venue-card--premium:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 28px 56px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 0 100px rgba(212, 175, 55, 0.1);
}

.venue-header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: none;
}

.venue-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 55%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.45),
    rgba(184, 148, 31, 0.55),
    rgba(212, 175, 55, 0.45),
    transparent
  );
}

.venue-card--premium .venue-header h3 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.2rem, 4vw, 2.85rem);
  font-weight: 400;
  color: var(--gold-dark);
  margin: 0 0 14px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.9);
}

.venue-card--premium .venue-header h3 .venue-icon {
  width: 26px;
  height: 26px;
  vertical-align: -0.15em;
  margin-right: 8px;
  opacity: 0.9;
}

.venue-type {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.14),
    rgba(255, 255, 255, 0.5)
  );
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 2px 12px rgba(212, 175, 55, 0.12);
}

.venue-details {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.venue-card--premium .venue-details--essential {
  margin-bottom: 4px;
}

.venue-card--premium .venue-details--essential .detail-item {
  align-items: flex-start;
  padding: 22px 24px;
}

.venue-card--premium .venue-address-lines {
  font-family: "Philosopher", serif;
  font-size: 1.06rem;
  line-height: 1.7;
  color: var(--dark);
  letter-spacing: 0.025em;
  font-weight: 500;
  margin: 0;
  opacity: 0.9;
}

.venue-card--premium .venue-schedule {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(212, 175, 55, 0.14);
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-light);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.venue-card--premium .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.65);
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.venue-card--premium .detail-item:last-child {
  margin-bottom: 0;
}

.venue-card--premium .detail-item:hover {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 55, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.venue-card--premium .detail-item .icon,
.venue-card--premium .detail-item [data-lucide] {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  padding: 10px;
  margin-top: 2px;
  box-sizing: content-box;
  border-radius: 12px;
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.18),
    rgba(212, 175, 55, 0.06)
  );
  color: var(--gold-dark);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.venue-card--premium .detail-item strong {
  display: block;
  font-family: "Philosopher", serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.venue-card--premium .detail-item p {
  color: var(--text-light);
  line-height: 1.55;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 400;
}

.venue-card--premium .detail-item p + p {
  margin-top: 4px;
}

/* Transporte */
.transport-options {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.venue-card--premium .transport-options h4 {
  font-family: "Philosopher", serif;
  color: var(--dark);
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.transport-options h4 {
  color: var(--gold-dark);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.transport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.transport-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: white;
  border: 2px solid var(--ivory);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.venue-card--premium .transport-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.14);
  border-radius: 14px;
  padding: 14px 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.04);
}

.transport-item:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.venue-card--premium .transport-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.1);
}

.transport-icon {
  font-size: 1.8rem;
  min-width: 30px;
}

.transport-item strong {
  color: var(--dark);
  font-size: 0.95rem;
}

.transport-item p {
  color: #666;
  font-size: 0.85rem;
  margin: 0;
}

/* Estacionamento */
.parking-info {
  position: relative;
  z-index: 1;
}

.parking-info h4 {
  color: var(--gold-dark);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.venue-card--premium .parking-info h4 {
  font-family: "Philosopher", serif;
  color: var(--dark);
  margin-bottom: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.parking-details {
  display: grid;
  gap: 15px;
}

.parking-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: linear-gradient(135deg, var(--ivory), white);
  border-radius: 12px;
  border-left: 4px solid var(--gold);
}

.venue-card--premium .parking-item {
  background: linear-gradient(
    90deg,
    rgba(212, 175, 55, 0.08) 0%,
    rgba(255, 255, 255, 0.9) 12px,
    rgba(255, 255, 255, 0.92) 100%
  );
  border-left: 3px solid var(--gold);
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.12);
  border-left-width: 3px;
  border-left-color: var(--gold);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.parking-type {
  background: var(--gold);
  color: white;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  min-width: 80px;
  text-align: center;
}

.parking-item p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* Botões de Navegação */
.navigation-buttons {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.nav-btn {
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.venue-card--premium .nav-btn {
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.nav-btn.google-maps {
  background: #4285f4;
  color: white;
}

.venue-card--premium .nav-btn.google-maps {
  background: linear-gradient(180deg, #5a95f5 0%, #3b78f0 100%);
}

.nav-btn.waze {
  background: #334cc8;
  color: white;
}

.venue-card--premium .nav-btn.waze {
  background: linear-gradient(180deg, #4a5ed4 0%, #2e3eb8 100%);
}

.nav-btn.directions {
  background: var(--gold);
  color: white;
}

.venue-card--premium .nav-btn.directions {
  background: linear-gradient(
    135deg,
    #e4c76b 0%,
    var(--gold) 45%,
    var(--gold-dark) 100%
  );
  color: rgba(255, 255, 255, 0.98);
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.venue-card--premium .nav-btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

/* Mapa */
.location-map {
  position: relative;
}

.map-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  background: white;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      45deg,
      #f0f0f0 25%,
      transparent 25%,
      transparent 75%,
      #f0f0f0 75%,
      #f0f0f0
    ),
    linear-gradient(
      45deg,
      #f0f0f0 25%,
      transparent 25%,
      transparent 75%,
      #f0f0f0 75%,
      #f0f0f0
    );
  background-size: 20px 20px;
  background-position:
    0 0,
    10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

#map.map-embed-root {
  display: block;
  padding: 0;
}

#map.map-embed-root .map-content {
  width: 100%;
  height: 100%;
  min-height: 360px;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

#map.map-embed-root .map-content iframe {
  display: block;
}

.map-loading {
  text-align: center;
  color: #666;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--ivory);
  border-top: 4px solid var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.map-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  gap: 8px;
}

.map-btn {
  width: 40px;
  height: 40px;
  border: none;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#444;
}

.map-btn:hover {
  background: var(--gold);
  color: white;
  transform: scale(1.1);
}

.map-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.info-item {
  background: white;
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.info-label {
  display: block;
  color: #666;
  font-size: 0.85rem;
  margin-bottom: 5px;
}

.info-value {
  display: block;
  color: var(--gold);
  font-weight: 700;
  font-size: 1.1rem;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}

/* Locais Próximos */
.nearby-places {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid var(--ivory);
}

.nearby-places h3 {
  color: var(--gold-dark);
  margin-bottom: 25px;
  font-size: 1.5rem;
  text-align: center;
}

.places-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.place-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid var(--ivory);
}

.place-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.place-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}

.place-info h4 {
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.place-info p {
  color: #666;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.place-type {
  background: var(--ivory);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Seções Premium com Melhor Visibilidade */
section {
  padding: 100px 0;
  position: relative;
  background: var(--ivory);
}

section:nth-child(even) {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
}

/* «Com amor» — fundo claro com texto legível (evita branco/dourado pálido sobre creme) */
section.love-section {
  background:
    radial-gradient(
      ellipse 85% 55% at 50% 0%,
      rgba(212, 175, 55, 0.09),
      transparent 55%
    ),
    linear-gradient(165deg, #fdfbf7 0%, var(--cream) 42%, var(--ivory) 100%);
}

section.love-section .section-title {
  color: var(--gold-dark);
  text-shadow: none;
}

section.love-section .section-title::after {
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-dark),
    var(--gold),
    var(--gold-dark),
    transparent
  );
  box-shadow: 0 1px 8px rgba(184, 148, 31, 0.25);
}

section.love-section .script-title {
  color: var(--dark);
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85),
    0 2px 20px rgba(212, 175, 55, 0.12);
  margin-bottom: 28px;
}

section.love-section .lead {
  color: var(--text);
  font-size: clamp(1.05rem, 2.2vw, 1.22rem);
  font-weight: 500;
  line-height: 1.75;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 0.95rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  box-shadow: 0 0 20px var(--gold-glow);
}

.script-title {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--dark);
  text-align: center;
  margin: 0 0 40px;
  font-weight: 400;
  line-height: 1.2;
  text-shadow: 0 2px 10px var(--shadow-soft);
}

.lead {
  text-align: center;
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.8;
  font-weight: 400;
}

.mini-lead {
  text-align: center;
  font-size: 1.05rem;
  color: var(--accent);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 500;
  font-style: italic;
}

.quote-section {
  background: linear-gradient(135deg, var(--champagne) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.quote-section::before,
.quote-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.quote-section::before {
  top: -150px;
  left: -150px;
}

.quote-section::after {
  bottom: -150px;
  right: -150px;
}

.quote {
  font-family: "Philosopher", serif;
  font-size: 1.4rem;
  font-style: italic;
  text-align: center;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 30px;
  line-height: 1.8;
  position: relative;
  padding: 0 40px;
}

.quote::before,
.quote::after {
  content: '"';
  position: absolute;
  font-size: 4rem;
  color: var(--gold);
  font-family: "Great Vibes", cursive;
  opacity: 0.3;
}

.quote::before {
  top: -20px;
  left: 0;
}

.quote::after {
  bottom: -40px;
  right: 0;
}

.quote-ref {
  text-align: center;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.couple-section {
  position: relative;
  padding: clamp(40px, 7vw, 96px) 0 clamp(32px, 5vw, 64px);
  overflow: hidden;
}

.couple-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 15%;
  transform: translateX(-50%);
  width: min(90%, 720px);
  height: 320px;
  background: radial-gradient(
    ellipse at 50% 30%,
    rgba(212, 175, 55, 0.12),
    transparent 65%
  );
  pointer-events: none;
}

.couple-section__title {
  position: relative;
  z-index: 1;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.couple-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 52px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.14) 0%, transparent 42%),
    linear-gradient(
      168deg,
      #b8941f 0%,
      #c9a132 22%,
      var(--gold) 48%,
      #c4a028 78%,
      #a67f12 100%
    );
  color: rgba(255, 255, 255, 0.98);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 28px 64px rgba(0, 0, 0, 0.12),
    0 12px 32px rgba(184, 148, 31, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.couple-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 248, 230, 0.35) 25%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 248, 230, 0.35) 75%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.couple-wrap::after {
  content: "";
  position: absolute;
  top: -35%;
  right: -25%;
  width: 58%;
  height: 85%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 68%
  );
  pointer-events: none;
  z-index: 0;
}

.couple-wrap__inner {
  position: relative;
  z-index: 1;
  padding: clamp(44px, 6.5vw, 72px) clamp(22px, 4.5vw, 52px);
}

.couple-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(128px, 210px) minmax(0, 1fr);
  gap: clamp(24px, 4.5vw, 48px);
  align-items: center;
  text-align: center;
}

.couple-card {
  position: relative;
  padding: 8px 12px;
}

.couple-card--bride {
  text-align: center;
}

.couple-card--groom {
  text-align: center;
}

.couple-card h3 {
  font-family: "Great Vibes", cursive;
  font-size: clamp(2.75rem, 5.8vw, 3.6rem);
  margin: 0 0 4px;
  font-weight: 400;
  line-height: 1.08;
  color: #fffefd;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.25),
    0 4px 24px rgba(0, 0, 0, 0.15);
}

.couple-card h3::after {
  content: "";
  display: block;
  width: min(72px, 40%);
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.25);
}

.couple-lineage {
  margin: 20px 0 0;
  font-family: "Philosopher", serif;
  font-size: clamp(0.84rem, 1.55vw, 0.98rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.055em;
  color: rgba(255, 255, 255, 0.94);
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.couple-amp {
  display: inline-block;
  padding: 0 0.1em;
  font-family: "Philosopher", serif;
  font-weight: 700;
  font-size: 0.95em;
  opacity: 0.98;
  color: rgba(255, 248, 230, 0.98);
}

.couple-photo-column {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.couple-photo {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 208px;
  aspect-ratio: 2 / 5;
  max-height: min(540px, 58vh);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 1px rgba(184, 148, 31, 0.35),
    0 20px 48px rgba(0, 0, 0, 0.22),
    0 8px 20px rgba(0, 0, 0, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.55s ease;
}

.couple-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
  pointer-events: none;
  z-index: 2;
}

.couple-wrap:hover .couple-photo {
  transform: translateY(-3px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 28px 56px rgba(0, 0, 0, 0.24),
    0 12px 28px rgba(0, 0, 0, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .couple-wrap:hover .couple-photo {
    transform: none;
  }
}

.couple-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  position: relative;
  z-index: 1;
}

.events-grid,
.gallery-grid,
.info-grid {
  display: grid;
  gap: 24px;
}

.events-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.event-card {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  min-height: 440px;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.85)),
    url(images/religiosa.jpg) 45% 80% no-repeat;
  background-size: 160%;
  color: white;
  box-shadow: var(--shadow);
  display: flex;
  align-items: end;
}

.event-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.85)),
    url("images/civil.jpg") 50% 40% no-repeat;
}

.event-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18), rgba(10, 10, 10, 0.85)),
    url("images/copo_agua.jpg") 43% 30% no-repeat;
}

.event-content {
  width: 100%;
  padding: 30px 24px;
  text-align: center;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
}

.event-title {
  font-family: "Great Vibes", cursive;
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: white;
}

.event-meta {
  font-size: 0.96rem;
  margin-bottom: 8px;
  color: #f3dd9e;
}

.journey {
  background: #f7f4ef;
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.gallery-card {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(204, 178, 107, 0.24);
}

.gallery-card img {
  height: 440px;
  width: 100%;
  object-fit: cover;
}

.gallery-card span {
  display: block;
  text-align: center;
  padding: 14px;
  font-family: "Great Vibes", cursive;
  color: var(--gold-dark);
  font-size: 2rem;
  background: #fffdfa;
}

.count-section {
  background: linear-gradient(135deg, var(--dark) 0%, #2c2c2c 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.count-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, var(--gold-glow) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, var(--gold-glow) 0%, transparent 50%),
    radial-gradient(circle at 50% 20%, var(--gold-glow) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, var(--gold-glow) 0%, transparent 40%);
  pointer-events: none;
}

.count-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.count-image {
  position: relative;
}

.count-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s ease;
}

.count-image:hover img {
  transform: scale(1.05);
}

.count-panel {
  text-align: center;
}

.count-panel .section-title {
  color: var(--gold-light);
  margin-bottom: 30px;
}

.count-panel .script-title {
  color: white;
  margin-bottom: 20px;
}

.count-panel .mini-lead {
  color: var(--gold-light);
  font-style: normal;
  margin-bottom: 40px;
}

.count-grid-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.mini-box {
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 25px 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.mini-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.mini-box strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
  text-shadow: 0 0 20px var(--gold-glow);
}

.mini-box span {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  font-weight: 500;
}

/* Base só quando não for o card premium ao lado do mapa */
.venue-card:not(.venue-card--premium) {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
  padding: 40px;
  box-shadow:
    0 15px 40px var(--shadow-soft),
    0 8px 25px var(--gold-glow);
  transition: all 0.3s ease;
}

.venue-card:not(.venue-card--premium):hover {
  transform: translateY(-5px);
  box-shadow:
    0 25px 60px var(--shadow-medium),
    0 12px 35px var(--gold-glow);
}

.venue-header h3 {
  font-size: 1.8rem;
  color: var(--dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.venue-type {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.detail-item strong {
  color: var(--dark);
  font-weight: 600;
  font-size: 1rem;
}

.detail-item p {
  color: var(--text-light);
  line-height: 1.6;
  margin: 5px 0 0 0;
  font-weight: 400;
}

.place-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px var(--shadow-soft);
}

.place-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px var(--shadow-medium);
  border-color: rgba(212, 175, 55, 0.3);
}

.place-card h4 {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.place-card p {
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 5px;
}

.place-type {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.heart-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.venue-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  color: var(--gold);
  vertical-align: middle;
}

.nav-icon {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}

.places-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: var(--gold);
  vertical-align: middle;
}

.gift-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  color: var(--gold);
  vertical-align: middle;
}

/* Lucide Icons Styles */
.method-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: var(--gold);
  vertical-align: middle;
}

.btn-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
  color: white;
}

.transport-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  color: var(--gold);
  vertical-align: middle;
}

.parking-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  color: var(--gold);
  vertical-align: middle;
}

/* Estilos Premium para Introdução do Formulário */
.rsvp-intro {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 40px;
  text-align: center;
  font-weight: 400;
}

.rsvp-intro strong {
  color: var(--gold);
  font-weight: 600;
}

.form-divider {
  position: relative;
  text-align: center;
  margin: 40px 0 30px;
}

.form-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-light),
    transparent
  );
}

.divider-text {
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid var(--gold-light);
  display: inline-block;
  position: relative;
  z-index: 2;
}

.rsvp-alternatives {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rsvp-method {
  padding: 25px;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 18px;
  border: 1px solid rgba(212, 175, 55, 0.15);
  transition: all 0.3s ease;
}

.rsvp-method:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.15);
}

.rsvp-method h4 {
  margin: 0 0 12px 0;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.rsvp-method p {
  margin: 0 0 20px 0;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.phone-buttons {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
}

.phone-note {
  font-size: 0.85rem !important;
  color: var(--gold) !important;
  font-style: italic;
  margin: 15px 0 0 0 !important;
  text-align: center;
}

/* Alternativas de Confirmação RSVP */
.phone-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  background: linear-gradient(135deg, var(--gold), #b8941f);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
  min-width: 140px;
  text-align: center;
}

.phone-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #b8941f, var(--gold));
}

.phone-btn:active {
  transform: translateY(-1px);
}

.phone-number {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 0.5px;
}

.phone-label {
  font-size: 0.85rem;
  opacity: 0.9;
  font-weight: 500;
}

/* Cores WhatsApp / chamada: .phone-btn--whatsapp e .phone-btn--call na secção RSVP */

/* Responsividade dos botões de telefone */
@media (max-width: 640px) {
  .phone-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .phone-btn {
    min-width: auto;
    padding: 12px 15px;
  }

  .phone-number {
    font-size: 0.95rem;
  }

  .phone-label {
    font-size: 0.8rem;
  }

  .rsvp-method {
    padding: 15px;
  }

  .rsvp-method h4 {
    font-size: 1rem;
  }
}

.rsvp-gifts {
  background: linear-gradient(135deg, var(--cream) 0%, var(--ivory) 100%);
  position: relative;
  overflow: hidden;
}

.rsvp-gifts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 30% 70%, var(--gold-glow) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, var(--gold-glow) 0%, transparent 50%);
  pointer-events: none;
}

.rsvp-gifts .section-title,
.rsvp-gifts .script-title {
  position: relative;
  z-index: 2;
}

.rsvp-lead {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.rsvp-lead strong {
  color: var(--gold-dark);
  font-weight: 600;
}

.rsvp-info-grid {
  margin-top: 0;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas: "rsvp right";
  gap: 22px;
  align-items: start;
}

.panel--rsvp-layout {
  grid-area: rsvp;
}

.right-column-stack--layout {
  grid-area: right;
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 22px;
}

/* .panel--fotos-layout: grid-area removido - card agora dentro da right-column-stack */

.panel--presentes-layout,
.panel--bebidas-layout {
  height: auto;
}

.panel--rsvp {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 22px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 0 80px rgba(212, 175, 55, 0.06);
  background: linear-gradient(
    165deg,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(255, 255, 255, 0.99) 45%,
    rgba(250, 247, 242, 0.95) 100%
  );
}

.panel--rsvp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35),
    var(--gold),
    rgba(212, 175, 55, 0.35),
    transparent
  );
  pointer-events: none;
}

.rsvp-card-heading {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 22px;
  position: relative;
}

.rsvp-card-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(200px, 55%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.45),
    rgba(184, 148, 31, 0.55),
    rgba(212, 175, 55, 0.45),
    transparent
  );
}

.panel--rsvp .rsvp-card-heading h3 {
  font-family: "Philosopher", serif;
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  margin-bottom: 12px;
  color: var(--dark);
}

.rsvp-card-subline {
  margin: 0 auto;
  max-width: 420px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 400;
}

.rsvp-main-block {
  position: relative;
  z-index: 1;
}

.rsvp-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 28px;
}

.rsvp-form-label {
  text-align: center;
  margin: 0 0 20px;
  position: relative;
}

.rsvp-form-label span {
  display: inline-block;
  font-family: "Philosopher", serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.panel--rsvp .submit {
  border-radius: 16px;
  letter-spacing: 0.08em;
}

.rsvp-confirmation {
  text-align: center;
  padding: 36px 28px;
  border-radius: 20px;
  margin: 8px 0 24px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.rsvp-confirmation--yes {
  background: linear-gradient(
    145deg,
    rgba(212, 175, 55, 0.18) 0%,
    rgba(255, 255, 255, 0.95) 55%,
    rgba(250, 247, 242, 0.98) 100%
  );
  color: var(--dark);
}

.rsvp-confirmation--no {
  background: linear-gradient(
    145deg,
    rgba(120, 120, 120, 0.08) 0%,
    rgba(255, 255, 255, 0.96) 100%
  );
  color: var(--dark);
}

.rsvp-confirmation__title {
  font-family: "Philosopher", serif;
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--gold-dark);
  line-height: 1.25;
}

.rsvp-confirmation--no .rsvp-confirmation__title {
  color: var(--dark);
}

.rsvp-confirmation__text {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-light);
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.rsvp-confirmation__note {
  margin: 16px 0 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-light);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.presentes-detalhes {
  text-align: left;
  margin: 20px 0 16px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(212, 175, 55, 0.14);
}

.presentes-placeholder {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-light);
}

.presentes-placeholder:last-child {
  margin-bottom: 0;
}

.presentes-lista-btn {
  margin-top: 8px;
}

.presentes-edit-hint {
  margin-top: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0.85;
}

.rsvp-error {
  background: linear-gradient(135deg, #c45c5c 0%, #a84848 100%);
  color: white;
  padding: 14px 18px;
  border-radius: 14px;
  margin: 0 0 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 6px 20px rgba(196, 92, 92, 0.3);
}

.rsvp-status {
  padding: 14px 18px;
  border-radius: 14px;
  margin: 0 0 16px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
}

.rsvp-status--info {
  background: linear-gradient(135deg, #5e79d7 0%, #4f67bf 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(79, 103, 191, 0.28);
}

.rsvp-status--success {
  background: linear-gradient(135deg, #3fa86f 0%, #2f8d5a 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(47, 141, 90, 0.28);
}

.rsvp-status--warning {
  background: linear-gradient(135deg, #a0812f 0%, #836823 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(131, 104, 35, 0.32);
}

.rsvp-status--error {
  background: linear-gradient(135deg, #c45c5c 0%, #a84848 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(196, 92, 92, 0.3);
}

.phone-btn--whatsapp {
  background: linear-gradient(180deg, #2fe080 0%, #25d366 40%, #128c7e 100%);
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.28);
}

.phone-btn--whatsapp:hover {
  background: linear-gradient(180deg, #128c7e 0%, #25d366 100%);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.phone-btn--call {
  background: linear-gradient(180deg, #4f8fef 0%, #346ec9 45%, #2a5cb0 100%);
  box-shadow: 0 4px 18px rgba(52, 110, 201, 0.28);
}

.phone-btn--call:hover {
  background: linear-gradient(180deg, #2a5cb0 0%, #346ec9 100%);
  box-shadow: 0 8px 24px rgba(52, 110, 201, 0.35);
}

.rsvp-contact-row .phone-btn {
  flex: 1 1 160px;
  max-width: 220px;
  min-height: 108px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.rsvp-contact-row .btn-icon {
  margin-bottom: 6px;
}

@media (max-width: 640px) {
  .rsvp-contact-row .phone-btn {
    max-width: none;
  }

  .panel--rsvp {
    padding: 36px 22px;
  }
}

.info-grid {
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.panel {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  padding: 50px;
  box-shadow:
    0 20px 60px var(--shadow-soft),
    0 10px 30px var(--gold-glow),
    inset 0 0 60px rgba(212, 175, 55, 0.05);
  transition: all 0.4s ease;
}

.panel:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 80px var(--shadow-medium),
    0 15px 40px var(--gold-glow),
    inset 0 0 80px rgba(212, 175, 55, 0.08);
}

.panel.panel--rsvp:hover {
  transform: translateY(-4px);
  box-shadow:
    0 8px 16px rgba(0, 0, 0, 0.04),
    0 28px 56px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 0 100px rgba(212, 175, 55, 0.1);
}

.panel h3 {
  font-family: "Philosopher", serif;
  font-size: 2.1rem;
  color: var(--dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.panel p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1rem;
  font-weight: 400;
}

.form-group {
  margin-bottom: 20px;
}

label {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark);
  font-family: "Montserrat", sans-serif;
}

input,
select,
textarea {
  width: 100%;
  border: 2px solid rgba(212, 175, 55, 0.3);
  outline: none;
  border-radius: 12px;
  padding: 18px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-weight: 500;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 25px var(--gold-glow);
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-1px);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light);
  opacity: 1;
  font-style: normal;
  font-weight: 500;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 22px;
  padding-right: 55px;
  font-weight: 500;
}

.submit {
  width: 100%;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  padding: 18px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
  margin-top: 20px;
}

.submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.submit:active {
  transform: translateY(0);
}

.btn {
  display: inline-block;
  color: #2f2f2f;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 8px;
  text-decoration: none;
  padding: 12px 24px;
  border: 2px solid var(--gold);
  border-radius: 50px;
  background: transparent;
  transition: all 0.3s ease;
}

.btn:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.rsvp-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  text-align: center;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 15px;
  border-radius: 12px;
  color: white;
}

.stat-item strong {
  display: block;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 5px;
}

.stat-item span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.gift-box {
  min-height: 100%;
  display: grid;
  align-items: center;
  text-align: center;
}

.gift-box--enhanced {
  position: relative;
  overflow: hidden;
}

.gift-box--enhanced::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35),
    var(--gold),
    rgba(212, 175, 55, 0.35),
    transparent
  );
  pointer-events: none;
}

.gift-box__intro {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.gift-box .btn {
  min-width: 220px;
  background: white;
  color: #7d652b;
  box-shadow: none;
}

/* Gift Method Cards */
.gift-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 0;
}

.gift-method-card {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.18);
  border-radius: 18px;
  padding: 22px 16px 18px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.gift-method-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

.gift-method-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
}

.gift-method-card__icon-wrap--mpesa {
  background: linear-gradient(135deg, #e8413c 0%, #c72c2c 100%);
  box-shadow: 0 4px 12px rgba(232, 65, 60, 0.25);
}

.gift-method-card__icon-wrap--bank {
  background: linear-gradient(135deg, #346ec9 0%, #2a5cb0 100%);
  box-shadow: 0 4px 12px rgba(52, 110, 201, 0.25);
}

.gift-method-card__icon {
  width: 22px;
  height: 22px;
  color: #fff;
}

.gift-method-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  margin: 0 0 8px;
}

.gift-method-card__number {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--dark);
  margin: 0 0 2px;
  letter-spacing: 0.04em;
}

.gift-method-card__detail {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0 0 2px;
  line-height: 1.5;
  word-break: break-all;
}

.gift-method-card__name {
  font-size: 0.8rem;
  color: var(--gold-dark);
  margin: 0;
  font-weight: 500;
}

/* Gift Divider */
.gift-divider {
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.gift-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35),
    transparent
  );
}

.gift-divider span {
  display: inline-block;
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 4px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.1em;
  text-transform: lowercase;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

/* Gift button with icon */
.presentes-lista-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  cursor: pointer;
}

.presentes-btn-icon {
  width: 18px;
  height: 18px;
}

/* ==========================================
   DRESS CODE / DETALHES SECTION
   ========================================== */

.dresscode-section {
  background: linear-gradient(
    180deg,
    var(--ivory) 0%,
    #f7f4ef 50%,
    var(--ivory) 100%
  );
  position: relative;
  overflow: hidden;
}

.dresscode-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 25% 40%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 60%,
      rgba(212, 175, 55, 0.08) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.dresscode-lead {
  text-align: center;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.dresscode-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 2;
}

.dresscode-card {
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 22px;
  padding: 36px 28px 32px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.6) inset;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.dresscode-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(212, 175, 55, 0.2) inset;
}

.dresscode-card__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.dresscode-card__icon {
  width: 26px;
  height: 26px;
  color: #fff;
}

.dresscode-card h3 {
  font-family: "Philosopher", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 10px;
}

.dresscode-card__label {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0 0 16px;
  font-weight: 500;
  line-height: 1.5;
}

.dresscode-card__detail {
  font-size: 0.92rem;
  color: var(--text-light);
  margin: 0 0 6px;
  line-height: 1.6;
}

.dresscode-card__detail strong {
  color: var(--gold-dark);
  font-weight: 700;
}

.dresscode-card__note {
  font-size: 0.84rem;
  color: var(--gold-dark);
  margin: 14px 0 0;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

/* Dress code color palette */
.dresscode-colors {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 4px;
}

.dresscode-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
  cursor: default;
}

.dresscode-color:hover {
  transform: scale(1.15);
}

/* Hashtag tag */
.hashtag-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  color: var(--gold-dark);
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.12) 0%,
    rgba(212, 175, 55, 0.06) 100%
  );
  border: 1.5px solid rgba(212, 175, 55, 0.28);
  padding: 10px 22px;
  border-radius: 999px;
  margin: 4px 0;
  -webkit-user-select: all;
  user-select: all;
  cursor: pointer;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
}

.hashtag-tag:hover {
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.2) 0%,
    rgba(212, 175, 55, 0.1) 100%
  );
  transform: scale(1.03);
}

/* Responsive - Dress Code */
@media (max-width: 900px) {
  .dresscode-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .gift-methods {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gift-method-card {
    padding: 18px 14px 16px;
  }

  .dresscode-card {
    padding: 28px 22px 26px;
  }
}

.premium-footer {
  position: relative;
  min-height: 62vh;
  padding: 56px 0 72px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: var(--gold-light);
  background: #0f0d0a;
  border-top: 0;
  overflow: hidden;
}

.premium-footer::before {
  content: "";
  position: absolute;
  inset: -14px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.78)),
    url("images/principal.jpg") center/cover no-repeat;
  filter: blur(5px) saturate(0.92);
  transform: scale(1.04);
}

.premium-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.52) 66%,
    rgba(0, 0, 0, 0.82) 84%,
    #000 100%
  );
  opacity: 1;
  pointer-events: none;
}

.premium-footer__inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.premium-footer__line {
  margin: 0 0 14px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.premium-footer__names {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 5.2vw, 3.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.premium-footer__date {
  margin: 14px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #d4af37;
}

.premium-footer__blessing {
  margin: 30px 0 0;
  max-width: 700px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: clamp(1.08rem, 2.6vw, 1.38rem);
  line-height: 1.65;
  color: rgba(255, 248, 240, 0.94);
}

.premium-footer__verse {
  margin: 12px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #d4af37;
}

.premium-footer__closing {
  margin: 28px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
}

.premium-footer__credits {
  width: 100%;
  margin-top: 44px;
  padding: 30px 20px 16px;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(0, 0, 0, 0.72);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 30px rgba(0, 0, 0, 0.35);
}

.premium-footer__creator-label,
.premium-footer__signature-label {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.premium-footer__creator-name {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ff6f1f;
}

.premium-footer__copyright,
.premium-footer__music {
  margin: 10px 0 0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

.premium-footer__signature {
  margin-top: 14px;
}

.premium-footer__signature img {
  margin: 4px auto 0;
  width: min(220px, 62vw);
  height: auto;
  display: block;
  opacity: 0.9;
  filter: brightness(1.05) contrast(1.04)
    drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

@media (max-width: 980px) {
  .events-grid,
  .gallery-grid,
  .info-grid,
  .count-grid,
  .couple-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .couple-wrap {
    border-radius: 36px;
  }

  .couple-wrap__inner {
    padding: 36px 20px;
  }

  .couple-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .couple-photo-column {
    order: -1;
    min-height: 0;
  }

  .couple-photo {
    max-width: min(240px, 72vw);
    max-height: 420px;
    margin: 0 auto;
  }

  .count-panel .script-title {
    text-align: center;
  }

  .mini-lead {
    text-align: center;
  }

  /* Localização responsiva */
  .transport-grid {
    grid-template-columns: 1fr;
  }

  .navigation-buttons {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .map-info {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .places-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .venue-card:not(.venue-card--premium) {
    padding: 30px 20px;
  }

  .venue-card--premium {
    padding: 36px 26px;
  }
}

@media (max-width: 640px) {
  .premium-footer {
    min-height: 56vh;
    padding: 42px 0 52px;
  }

  .premium-footer__line {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .premium-footer__date,
  .premium-footer__verse {
    letter-spacing: 0.12em;
  }

  .premium-footer__blessing {
    margin-top: 24px;
    line-height: 1.58;
  }

  .premium-footer__closing {
    margin-top: 24px;
    font-size: 0.92rem;
  }

  .premium-footer__creator-name {
    font-size: 1rem;
  }

  .premium-footer__copyright,
  .premium-footer__music {
    font-size: 0.66rem;
    letter-spacing: 0.06em;
  }

  .premium-footer__credits {
    margin-top: 34px;
    padding: 24px 14px 14px;
    border-radius: 12px;
  }

  .premium-footer__signature img {
    width: min(180px, 68vw);
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding-bottom: 110px;
  }

  .btn {
    min-width: 100%;
  }

  .count-grid-boxes {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel {
    padding: 24px;
  }

  .gallery-card img {
    height: 360px;
  }

  .audio-toggle {
    left: 16px;
    bottom: 16px;
  }

  /* Capa Luxuosa Mobile */
  .golden-border-top,
  .golden-border-bottom,
  .golden-border-left,
  .golden-border-right {
    display: none;
  }

  .monogram-circle {
    width: 80px;
    height: 80px;
  }

  .monogram-text {
    font-size: 1.8rem;
  }

  .names {
    font-size: 2.5rem;
  }

  .name-wrapper {
    flex-direction: column;
    gap: 5px;
  }

  .ampersand {
    font-size: 1rem;
  }

  .date-container {
    gap: 10px;
  }

  .date-line {
    width: 30px;
  }

  .date {
    font-size: 1rem;
  }

  .countdown-number {
    font-size: 3rem;
  }

  .countdown-label {
    font-size: 0.9rem;
  }

  .countdown-text {
    font-size: 1rem;
  }

  .btn-luxury {
    padding: 15px 35px;
    font-size: 1rem;
  }

  .romantic-quote {
    font-size: 1.1rem;
    margin: 20px 10px;
  }

  .heart {
    font-size: 1.2rem;
  }

  .particle {
    width: 3px;
    height: 3px;
  }
}

/* ==========================================
   MODAL — Artigos / Lista de Presentes
   ========================================== */

.artigos-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
}

.artigos-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.artigos-modal {
  position: relative;
  width: min(520px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 24px;
  padding: 48px 36px 36px;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(212, 175, 55, 0.12);
  transform: translateY(24px) scale(0.97);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease;
  opacity: 0;
}

.artigos-modal-overlay.is-open .artigos-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Close button */
.artigos-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-light);
  cursor: pointer;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.artigos-modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
  color: var(--dark);
}

/* Title */
.artigos-modal__title {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--gold);
  margin: 0 0 18px;
  line-height: 1.15;
}

/* Intro text */
.artigos-modal__intro {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-light);
  margin: 0 0 28px;
}

/* Store card */
.artigos-modal__store-card {
  background: linear-gradient(145deg, #c9a227 0%, #b89a30 50%, #c9a227 100%);
  border-radius: 18px;
  padding: 32px 28px 28px;
  text-align: center;
  color: #fff;
  border: 2px solid rgba(212, 175, 55, 0.35);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  margin-bottom: 24px;
}

.artigos-modal__store-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: #fff;
}

.artigos-modal__store-address {
  font-size: 0.92rem;
  margin: 0 0 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
}

.artigos-modal__store-phone {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  margin: 0 0 18px;
  color: #fff;
}

.artigos-modal__call-btn {
  display: inline-block;
  padding: 10px 34px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.2s ease;
  cursor: pointer;
}

.artigos-modal__call-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
  color: #fff;
}

/* Botões de ação no card */
.artigos-modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.artigos-modal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
  cursor: pointer;
}

.artigos-modal__btn:hover {
  transform: translateY(-2px);
}

/* Botão primário - dourado sólido */
.artigos-modal__btn--primary {
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  border: none;
}

.artigos-modal__btn--primary:hover {
  background: linear-gradient(135deg, #b8941f 0%, #d4af37 100%);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.45);
}

/* Botão secundário - outline branco */
.artigos-modal__btn--secondary {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.artigos-modal__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Articles section */
.artigos-modal__articles {
  margin-bottom: 24px;
}

.artigos-modal__articles-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin: 0 0 10px;
}

.artigos-modal__articles-list {
  margin: 0;
  padding-left: 24px;
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.artigos-modal__articles-list li {
  padding: 2px 0;
}

/* Map button */
.artigos-modal__map-btn {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, #b8941f 100%);
  color: #fff;
  text-align: center;
  border-radius: 14px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.artigos-modal__map-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.38);
  filter: brightness(1.05);
  color: #fff;
}

/* Scrollbar inside modal */
.artigos-modal::-webkit-scrollbar {
  width: 6px;
}

.artigos-modal::-webkit-scrollbar-track {
  background: transparent;
}

.artigos-modal::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.3);
  border-radius: 3px;
}

/* Body scroll-lock when modal is open */
body.artigos-modal-open {
  overflow: hidden;
}

/* Responsive */
@media (max-width: 640px) {
  .artigos-modal {
    padding: 40px 22px 28px;
    border-radius: 20px;
  }

  .artigos-modal__store-card {
    padding: 24px 18px 22px;
  }

  .artigos-modal__store-name {
    font-size: 1rem;
    letter-spacing: 0.16em;
  }

  .artigos-modal__map-btn {
    padding: 14px 20px;
    font-size: 0.82rem;
  }

  .artigos-modal__actions {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .artigos-modal__btn {
    padding: 14px 20px;
    font-size: 0.78rem;
  }

  .photo-box--premium .photo-gallery-info {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 12px;
  }

  .photo-box--premium .info-item {
    padding: 10px 12px;
  }

  .photo-box--premium .info-item span {
    font-size: 0.75rem;
  }
}

/* ==========================================
   PREMIUM UPGRADE: GALERIA, PRESENTES, BEBIDAS
   ========================================== */

.journey--premium {
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(212, 175, 55, 0.12),
      transparent 42%
    ),
    radial-gradient(
      circle at 88% 84%,
      rgba(212, 175, 55, 0.1),
      transparent 40%
    ),
    linear-gradient(180deg, #faf7f2 0%, #f6f1e9 100%);
}

.gallery-grid--premium {
  gap: 24px;
}

.gallery-card--premium {
  position: relative;
  border-radius: 24px;
  border: 1px solid rgba(212, 175, 55, 0.26);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  transition:
    transform 0.36s ease,
    box-shadow 0.36s ease,
    border-color 0.3s ease;
  overflow: hidden;
}

.gallery-card--premium::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 50%,
    rgba(0, 0, 0, 0.34) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.gallery-card--premium:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(212, 175, 55, 0.28) inset;
}

.gallery-card--premium img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  object-position: center 28%;
  transition: transform 0.6s ease;
}

.gallery-photo--sonho {
  object-position: center 18%;
}

.gallery-photo--amor {
  object-position: center 24%;
}

.gallery-card--premium:hover img {
  transform: scale(1.06);
}

.gallery-card--premium span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 18px 16px 20px;
  font-size: clamp(1.8rem, 4vw, 2.25rem);
  color: #fff;
  background: transparent;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.gift-box--premium {
  border-radius: 28px;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(252, 248, 240, 0.98) 60%,
    rgba(247, 239, 225, 0.94) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow:
    0 24px 52px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.9) inset;
  position: relative;
  overflow: hidden;
}

.gift-box--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35),
    var(--gold),
    rgba(212, 175, 55, 0.35),
    transparent
  );
  pointer-events: none;
}

.gift-box--premium > div {
  padding: 34px 28px;
}

.gift-box--premium h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-bottom: 10px;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  flex-wrap: wrap;
  text-align: center;
  line-height: 1.3;
}

.gift-box--premium > div > p {
  max-width: 500px;
  font-size: clamp(0.9rem, 1.8vw, 0.96rem);
  line-height: 1.58;
  margin-left: auto;
  margin-right: auto;
  padding: 0 8px;
}

.gift-box--premium .presentes-detalhes {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.gift-box--premium .presentes-lista-btn {
  margin-top: 8px;
  min-width: 178px;
}

.drink-box--premium {
  margin-top: 30px;
  border-radius: 22px;
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(255, 255, 255, 0.99) 45%,
    rgba(250, 247, 242, 0.95) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 22px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 0 80px rgba(212, 175, 55, 0.06);
}

.drink-box--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35),
    var(--gold),
    rgba(212, 175, 55, 0.35),
    transparent
  );
  pointer-events: none;
}

.drink-box--premium > div {
  padding: 26px 22px 22px;
}

.drink-box--premium h3,
.drink-box--premium p,
.drink-box--premium label {
  color: var(--dark);
}

.drink-box--premium p {
  margin-bottom: 14px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-light);
}

.drink-box--premium h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  font-family: "Philosopher", serif;
  font-size: clamp(1.6rem, 3vw, 1.9rem);
  font-weight: 700;
}

.drink-box--premium h3 i,
.drink-box--premium h3 svg {
  flex: 0 0 auto;
}

.drink-box--premium > div > p {
  margin-bottom: 18px;
  max-width: 520px;
}

.drink-box--premium .drink-form {
  margin-top: 6px;
}

.drink-box--premium .drink-form .form-row {
  margin-bottom: 14px;
}

.drink-box--premium .drink-form .form-row:last-of-type {
  margin-bottom: 0;
}

.drink-box--premium .drink-multiselect {
  margin-top: 8px;
}

/* Card de Fotos Premium - Compacto */
.photo-box--premium {
  margin-top: 0;
  border-radius: 22px;
  padding: 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    rgba(255, 253, 248, 0.98) 0%,
    rgba(255, 255, 255, 0.99) 45%,
    rgba(250, 247, 242, 0.95) 100%
  );
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.02),
    0 22px 48px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.75) inset,
    0 0 80px rgba(212, 175, 55, 0.06);
}

.photo-box--premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.35),
    var(--gold),
    rgba(212, 175, 55, 0.35),
    transparent
  );
  pointer-events: none;
}

.photo-box--premium > div {
  padding: 20px 18px 18px;
}

.photo-box--premium h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
  font-family: "Philosopher", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: var(--dark);
}

.photo-box--premium h3 i,
.photo-box--premium h3 svg {
  flex: 0 0 auto;
}

.photo-box--premium > div > p {
  margin-bottom: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-light);
}

/* Upload zone compacta */
.photo-box--premium .upload-zone {
  border: 2px dashed rgba(212, 175, 55, 0.45);
  border-radius: 16px;
  padding: 24px 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.photo-box--premium .upload-zone:hover {
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(212, 175, 55, 0.06);
}

.photo-box--premium .upload-zone i {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.photo-box--premium .upload-zone h4 {
  color: var(--dark);
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: "Philosopher", serif;
}

.photo-box--premium .upload-zone p {
  color: var(--text-light);
  margin-bottom: 12px;
  font-size: 0.82rem;
}

.photo-box--premium .upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
  color: white;
  border: none;
  border-radius: 999px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.photo-box--premium .upload-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

/* Status de upload */
.upload-status {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  min-height: 20px;
}

.upload-status.success {
  background: rgba(76, 175, 80, 0.15);
  color: #2e7d32;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.upload-status.error {
  background: rgba(244, 67, 54, 0.15);
  color: #c62828;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.upload-status.complete {
  background: rgba(212, 175, 55, 0.15);
  color: #b8941f;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-weight: 600;
}

/* Info grid compacto para tema claro */
.photo-box--premium .photo-gallery-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.photo-box--premium .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.25);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.photo-box--premium .info-item i {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.photo-box--premium .info-item span {
  color: var(--text-light);
  font-size: 0.78rem;
  font-family: "Montserrat", sans-serif;
  line-height: 1.3;
  font-weight: 500;
}

.drink-multiselect {
  position: relative;
}

.drink-multiselect__trigger {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.85);
  color: var(--dark);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drink-multiselect__trigger:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.drink-multiselect__trigger::after {
  content: "";
  width: 10px;
  height: 10px;
  margin-left: 12px;
  border-right: 2px solid rgba(0, 0, 0, 0.45);
  border-bottom: 2px solid rgba(0, 0, 0, 0.45);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.drink-multiselect.is-open .drink-multiselect__trigger::after {
  transform: rotate(-135deg);
}

.drink-multiselect__panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 5;
  max-height: 240px;
  overflow: auto;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
}

.drink-multiselect.is-open .drink-multiselect__panel {
  display: grid;
  gap: 6px;
}

.drink-multiselect__option {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
}

.drink-multiselect__option:hover {
  border-color: rgba(212, 175, 55, 0.25);
  background: rgba(212, 175, 55, 0.08);
}

.drink-multiselect__option.is-selected {
  border-color: rgba(212, 175, 55, 0.55);
  background: rgba(212, 175, 55, 0.12);
}

.drink-multiselect__option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.drink-multiselect__option span {
  color: var(--dark);
  font-size: 0.92rem;
}

.drink-multiselect.validation-error .drink-multiselect__trigger {
  border-color: rgba(196, 92, 92, 0.55);
  box-shadow: 0 0 0 3px rgba(196, 92, 92, 0.12);
}

.drink-multiselect.validation-error {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(196, 92, 92, 0.35);
  background: rgba(196, 92, 92, 0.06);
}

.drink-box--premium input[type="text"],
.drink-box--premium textarea,
.drink-box--premium select {
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(255, 255, 255, 0.85);
  color: var(--dark);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 0.9rem;
}

.drink-box--premium input[type="text"]::placeholder,
.drink-box--premium textarea::placeholder {
  color: rgba(0, 0, 0, 0.55);
  font-weight: 500;
}

.drink-box--premium textarea {
  min-height: 110px;
  resize: vertical;
}

.drink-box--premium .drink-form .form-group {
  margin-bottom: 12px;
}

.drink-box--premium .contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drink-box--premium .contact-radio {
  min-height: 46px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.drink-box--premium .drink-submit {
  margin-top: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.drink-box--premium .drink-submit {
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.drink-form--clean {
  margin-top: 14px;
}

.drink-form--clean .form-row--two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.drink-form--clean .drink-options--clean {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.drink-form--clean textarea {
  min-height: 92px;
}

.drink-select-list {
  min-height: 170px;
  padding-right: 14px;
}

.drink-select-list {
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 26px rgba(0, 0, 0, 0.08);
}

.drink-select-list:focus {
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.drink-select-list option {
  background: rgba(255, 255, 255, 0.98);
  color: var(--dark);
  padding: 8px 10px;
  font-size: 0.9rem;
}

.drink-select-help {
  display: block;
  margin-top: 8px;
  color: rgba(0, 0, 0, 0.55);
  font-size: 0.78rem;
  line-height: 1.35;
}

/* ==========================================
   BEAUTY POLISH - RSVP / PRESENTE / BEBIDAS
   ========================================== */

.rsvp-gifts .script-title {
  letter-spacing: 0.01em;
}

.rsvp-gifts .rsvp-lead {
  font-size: 1.02rem;
  line-height: 1.72;
}

.panel--presentes-layout,
.panel--bebidas-layout,
.panel--fotos-layout {
  border-radius: 26px;
}

.panel--presentes-layout,
.panel--bebidas-layout {
  position: relative;
  overflow: hidden;
}

.panel--presentes-layout::after,
.panel--bebidas-layout::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.gift-box--premium .presentes-lista-btn {
  padding: 10px 22px;
  border-radius: 999px;
  letter-spacing: 0.12em;
  font-size: 0.84rem;
}

.drink-box--premium h3 {
  margin-bottom: 10px;
}

.drink-box--premium .drink-form label {
  font-family: "Philosopher", serif;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.72);
}

.drink-select-list {
  min-height: 176px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 10px 26px rgba(0, 0, 0, 0.08);
}

.drink-select-list:focus {
  border-color: rgba(212, 175, 55, 0.62);
  box-shadow:
    0 0 0 3px rgba(212, 175, 55, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.drink-select-list option {
  background: rgba(255, 255, 255, 0.98);
  color: var(--dark);
}

.drink-select-help {
  font-size: 0.74rem;
  opacity: 0.9;
  color: rgba(0, 0, 0, 0.55);
}

@media (max-width: 980px) {
  .panel--presentes-layout,
  .panel--bebidas-layout,
  .panel--fotos-layout {
    border-radius: 22px;
  }
}

@media (max-width: 980px) {
  .rsvp-info-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "rsvp"
      "right";
    gap: 18px;
  }

  .right-column-stack--layout {
    grid-template-rows: auto auto auto;
    gap: 18px;
  }

  .drink-form--clean .form-row--two {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .drink-form--clean .drink-options--clean {
    grid-template-columns: 1fr;
  }

  .gallery-grid--premium {
    gap: 18px;
  }

  .gallery-card--premium img {
    height: 380px;
  }

  .gift-box--premium > div {
    padding: 24px 16px;
  }

  .gift-box--premium h3 {
    font-size: 1.25rem;
    gap: 8px;
  }

  .gift-box--premium > div > p {
    font-size: 0.88rem;
    line-height: 1.5;
    padding: 0 4px;
  }

  .gift-box--premium .presentes-lista-btn {
    min-width: 160px;
    padding: 10px 18px;
    font-size: 0.85rem;
  }

  .drink-box--premium > div {
    padding: 24px 18px 20px;
  }
}

/* Mobile extra pequeno */
@media (max-width: 360px) {
  .gift-box--premium > div {
    padding: 20px 12px;
  }

  .gift-box--premium h3 {
    font-size: 1.15rem;
    gap: 6px;
  }

  .gift-box--premium > div > p {
    font-size: 0.85rem;
  }

  .gift-box--premium .presentes-lista-btn {
    min-width: 140px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }
}

#intro-heading .names__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-shadow: 0 8px 10px rgba(0, 0, 0, 0.8);
/* =========================================================
   RSVP / Presentes / Bebidas / Fotos - Premium refinement
   ========================================================= */

.rsvp-gifts .container {
  max-width: 1180px;
}

.rsvp-gifts .section-title {
  letter-spacing: 0.18em;
  margin-bottom: 10px;
}

.rsvp-gifts .script-title {
  margin-bottom: 14px;
}

.rsvp-lead {
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.72;
  margin-bottom: 40px;
  color: #6d6558;
}

.rsvp-info-grid {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 26px;
}

.panel--rsvp {
  border-radius: 26px;
}

.panel--rsvp,
.gift-box--premium,
.drink-box--premium,
.photo-box--premium {
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.85) inset,
    0 0 62px rgba(212, 175, 55, 0.07);
}

.panel--rsvp .rsvp-main-block,
.gift-box--premium > div,
.drink-box--premium > div,
.photo-box--premium > div {
  padding-left: clamp(18px, 2.2vw, 28px);
  padding-right: clamp(18px, 2.2vw, 28px);
}

.rsvp-card-heading {
  margin-bottom: 24px;
  padding-bottom: 18px;
}

.panel--rsvp .rsvp-card-heading h3,
.gift-box--premium h3,
.drink-box--premium h3,
.photo-box--premium h3 {
  font-size: clamp(1.28rem, 2vw, 1.74rem);
  letter-spacing: 0.01em;
  line-height: 1.26;
}

.rsvp-card-subline,
.gift-box--premium > div > p,
.drink-box--premium > div > p,
.photo-box--premium > div > p {
  font-size: clamp(0.92rem, 1.2vw, 0.99rem);
  line-height: 1.62;
  color: #6e675b;
}

.rsvp-contact-row {
  gap: 12px;
  margin-bottom: 24px;
}

.rsvp-contact-row .phone-btn {
  min-height: 96px;
  border-radius: 14px;
  padding: 14px 12px;
}

.rsvp-contact-row .phone-number {
  font-size: 0.92rem;
  font-weight: 700;
}

.rsvp-contact-row .phone-label {
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.rsvp-form-label {
  margin: 0 0 16px;
}

.rsvp-form-label span {
  font-size: 0.74rem;
}

.rsvp-gifts .form-group {
  margin-bottom: 14px;
}

.rsvp-gifts label,
.drink-box--premium .drink-form label {
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #3f392f;
}

.rsvp-gifts input,
.rsvp-gifts select,
.rsvp-gifts textarea,
.drink-box--premium .drink-form input[type="text"],
.drink-box--premium .drink-form select,
.drink-box--premium .drink-form textarea {
  border-radius: 11px;
  border-width: 1.5px;
  padding: 12px 14px;
  font-size: 0.88rem;
  line-height: 1.35;
  color: #2f2a22;
  background: rgba(255, 255, 255, 0.94);
}

.rsvp-gifts input::placeholder,
.rsvp-gifts textarea::placeholder,
.drink-box--premium .drink-form input::placeholder,
.drink-box--premium .drink-form textarea::placeholder {
  color: #8f8779;
  font-size: 0.82rem;
}

.rsvp-gifts textarea,
.drink-box--premium .drink-form textarea {
  min-height: 82px;
}

.rsvp-gifts input:focus,
.rsvp-gifts select:focus,
.rsvp-gifts textarea:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
  border-color: rgba(184, 148, 31, 0.65);
  transform: none;
}

.drink-box--premium .drink-select-help {
  font-size: 0.72rem;
  line-height: 1.45;
  color: #8a826f;
}

.drink-multiselect__trigger {
  min-height: 44px;
  font-size: 0.86rem;
  border-radius: 11px;
}

.panel--rsvp .submit,
.drink-box--premium .submit,
.photo-box--premium .upload-btn,
.gift-box--premium .presentes-lista-btn {
  min-height: 44px;
  font-size: 0.79rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  border-radius: 12px;
}

.panel--rsvp .submit,
.drink-box--premium .submit {
  margin-top: 14px;
  padding: 12px 16px;
}

.photo-box--premium .upload-btn {
  padding: 11px 16px;
}

.gift-box--premium .presentes-lista-btn {
  min-width: 142px;
  padding: 10px 16px;
}

.photo-box--premium .upload-zone {
  border-radius: 14px;
  padding: 18px 14px;
}

.photo-box--premium .upload-zone h4 {
  font-size: 0.9rem;
}

.photo-box--premium .upload-zone p {
  font-size: 0.78rem;
  line-height: 1.45;
}

.photo-box--premium .photo-gallery-info {
  margin-top: 12px;
  gap: 8px;
}

.photo-box--premium .photo-gallery-info .info-item {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.photo-box--premium .photo-gallery-info .info-item span {
  font-size: 0.73rem;
  line-height: 1.4;
  color: #5f584b;
}

@media (max-width: 1180px) {
  .rsvp-info-grid {
    gap: 20px;
  }

  .right-column-stack--layout {
    gap: 18px;
  }

  .panel--rsvp .rsvp-main-block,
  .gift-box--premium > div,
  .drink-box--premium > div,
  .photo-box--premium > div {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@media (max-width: 980px) {
  .rsvp-gifts .script-title {
    font-size: clamp(2rem, 6vw, 2.7rem);
  }

  .rsvp-info-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "rsvp"
      "right";
    gap: 16px;
  }

  .right-column-stack--layout {
    gap: 16px;
  }

  .panel--rsvp,
  .gift-box--premium,
  .drink-box--premium,
  .photo-box--premium {
    border-radius: 20px;
  }

  .panel--rsvp .rsvp-main-block,
  .gift-box--premium > div,
  .drink-box--premium > div,
  .photo-box--premium > div {
    padding-left: 16px;
    padding-right: 16px;
  }

  .drink-form--clean .form-row--two {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 720px) {
  .rsvp-gifts .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .rsvp-lead {
    margin-bottom: 28px;
    font-size: 0.93rem;
  }

  .rsvp-contact-row .phone-btn {
    min-height: 86px;
    flex: 1 1 calc(50% - 8px);
  }

  .rsvp-gifts .form-group {
    margin-bottom: 12px;
  }

  .rsvp-gifts input,
  .rsvp-gifts select,
  .rsvp-gifts textarea,
  .drink-box--premium .drink-form input[type="text"],
  .drink-box--premium .drink-form select,
  .drink-box--premium .drink-form textarea {
    font-size: 0.84rem;
    padding: 11px 12px;
  }
}

@media (max-width: 480px) {
  .rsvp-gifts .section-title {
    letter-spacing: 0.14em;
  }

  .panel--rsvp .rsvp-card-heading h3,
  .gift-box--premium h3,
  .drink-box--premium h3,
  .photo-box--premium h3 {
    font-size: 1.16rem;
  }

  .rsvp-card-subline,
  .gift-box--premium > div > p,
  .drink-box--premium > div > p,
  .photo-box--premium > div > p {
    font-size: 0.86rem;
    line-height: 1.54;
  }

  .rsvp-contact-row {
    gap: 8px;
  }

  .rsvp-contact-row .phone-btn {
    min-height: 78px;
    border-radius: 12px;
    padding: 10px;
  }

  .rsvp-contact-row .phone-number {
    font-size: 0.8rem;
  }

  .rsvp-contact-row .phone-label {
    font-size: 0.68rem;
  }

  .panel--rsvp .submit,
  .drink-box--premium .submit,
  .photo-box--premium .upload-btn,
  .gift-box--premium .presentes-lista-btn {
    min-height: 40px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    padding: 10px 12px;
  }

  .photo-box--premium .photo-gallery-info .info-item span {
    font-size: 0.68rem;
  }
}