/* =========================================================
   Site de Casamento — João & Mariana · 12.09.2026
   Tokens e estilos extraídos do design handoff (alta fidelidade)
   ========================================================= */

:root {
  --creme:        #F7F4EC;
  --creme-escuro: #EDE9DB;
  --verde:        #3C4F2E;
  --verde-escuro: #2E3D24;
  --verde-medio:  #64764D;
  --tinta:        #2E3324;
  --texto-suave:  #6E6A58;
  --dourado:      #B3995F;
  --dourado-esc:  #8A7440;
  --dourado-claro:#C9B27E;
  --marfim:       #EDE6CF;
  --marfim2:      #F2EEDF;
  --serif: 'Cormorant Garamond', Georgia, serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; background: var(--creme); }

body {
  font-family: var(--serif);
  color: var(--tinta);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; }

a { color: inherit; }

/* ---------- Keyframes ---------- */
@keyframes ringDraw { to { stroke-dashoffset: 0; } }
@keyframes floatY  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes fadeUp  { from { opacity: 0; transform: translateY(36px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marqueeL { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Animação de entrada por scroll (fallback via IntersectionObserver) */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s ease, transform .9s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-rings, .marquee-track { animation: none !important; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 36px;
  background: rgba(247,244,236,0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(60,79,46,0.14);
}
.monogram {
  font-size: 17px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--verde); font-weight: 500;
}
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link {
  background: none; border: none; cursor: pointer; font-family: var(--serif);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--texto-suave); padding: 6px 2px; text-decoration: none;
  transition: color .25s ease;
}
.nav-link:hover { color: var(--verde); }
.btn-rsvp-nav {
  background: transparent; border: 1px solid var(--dourado); color: var(--dourado-esc);
  cursor: pointer; font-family: var(--serif); font-size: 13px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 10px 24px; border-radius: 999px;
  transition: all 0.25s ease; text-decoration: none; white-space: nowrap;
}
.btn-rsvp-nav:hover { background: var(--dourado); color: var(--creme); }
.nav-toggle {
  display: none; /* visível apenas no mobile (media ≤860px) */
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px; padding: 9px; box-sizing: border-box;
  background: transparent; border: none; cursor: pointer; z-index: 70;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; border-radius: 2px;
  background: var(--verde); transition: transform .3s ease, opacity .2s ease;
}
.site-header.menu-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
}
/* foco em 40% (não 50%): no mobile o recorte vertical do cover cortava o João à
   esquerda, sobrando só a Mariana — 40% mantém os dois rostos enquadrados. */
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 40% 50%; }
.hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to bottom, rgba(46,51,36,0.32), rgba(46,51,36,0.04) 38%, rgba(46,51,36,0.08) 56%, rgba(46,51,36,0.66) 100%);
}
.hero-content { position: relative; text-align: center; padding: 0 24px 72px; pointer-events: none; }
.hero-date {
  font-size: 20px; letter-spacing: 0.34em; text-indent: 0.34em; text-transform: uppercase; color: #fff;
  text-shadow: 0 1px 2px #000; animation: fadeUp .9s ease .1s both; font-weight: 400;
}
.hero h1 {
  font-weight: 500; font-size: min(76px, 7.2vw); letter-spacing: 0.16em; text-indent: 0.16em;
  text-transform: uppercase; line-height: 1.15; color: var(--creme);
  margin: 18px 0 8px; text-shadow: 0 2px 2px #000; animation: fadeUp .9s ease .25s both;
}
.hero h1 .amp { font-style: italic; font-weight: 400; text-transform: none; color: var(--dourado-claro); }
.hero-sub {
  font-style: italic; font-size: 23px; color: rgba(247,244,236,0.94);
  text-shadow: 0 1px 2px #000; animation: fadeUp .9s ease .4s both;
}
.hero-rings { overflow: visible; margin-top: 20px; animation: floatY 5.5s ease-in-out 2.8s infinite; }
.hero-rings .r1 { stroke-dasharray: 170; stroke-dashoffset: 170; animation: ringDraw 2s ease .5s forwards; }
.hero-rings .r2 { stroke-dasharray: 170; stroke-dashoffset: 170; animation: ringDraw 2s ease 1.1s forwards; }

/* =========================================================
   CONTAGEM REGRESSIVA
   ========================================================= */
.countdown { padding: 34px 24px 38px; text-align: center; background-color: var(--verde-medio); }
.eyebrow-light {
  font-size: 14px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--dourado-claro); margin-bottom: 20px; text-shadow: 0 2px 1px #0000004c;
}
.countdown-row { display: flex; align-items: baseline; justify-content: center; gap: 38px; flex-wrap: wrap; }
.cd-unit { display: flex; flex-direction: column; align-items: center; gap: 8px; min-width: 92px; }
.cd-num {
  font-size: 70px; font-weight: 300; color: var(--marfim2); line-height: 1;
  font-variant-numeric: tabular-nums; text-shadow: 0 4px 1px #00000037;
}
.cd-label { font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(242,238,223,0.6); }
.cd-sep { font-size: 40px; color: rgba(201,178,126,0.5); line-height: 1; }
.countdown-foot {
  margin-top: 20px; font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--dourado-claro); text-shadow: 0 2px 1px #0000004c;
}

/* =========================================================
   UTILITÁRIOS DE TIPOGRAFIA / DECORATIVOS
   ========================================================= */
.eyebrow { font-size: 13px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dourado); }
.section-title {
  font-weight: 500; font-size: 42px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--verde); margin: 14px 0 0; line-height: 1.2;
}
.divider { display: flex; align-items: center; justify-content: center; gap: 14px; }
.divider .line { height: 1px; width: 56px; background: rgba(201,178,126,0.7); }
.divider .dot  { width: 7px; height: 7px; background: var(--dourado-claro); transform: rotate(45deg); }
.lozenge { width: 10px; height: 10px; background: var(--dourado); transform: rotate(45deg); }

/* =========================================================
   NOSSA HISTÓRIA
   ========================================================= */
.historia { background: var(--creme); padding: 110px 24px 90px; }
.historia-inner { max-width: 1040px; margin: 0 auto; position: relative; }
.quote-balloon {
  max-width: 520px; margin: 40px auto 0; background: var(--creme-escuro);
  border-radius: 22px 22px 22px 6px; padding: 24px 30px; text-align: left;
  box-shadow: 0 16px 36px -24px rgba(46,51,36,0.35);
}
.quote-balloon p { font-style: italic; font-size: 22px; line-height: 1.5; color: var(--tinta); text-align: center; margin: 0; }
.quote-balloon .attr {
  margin-top: 12px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--dourado-esc); text-align: center;
}

/* Colagem de fotos */
.collage { position: relative; max-width: 980px; margin: 84px auto 0; height: 840px; }
.collage .frame { position: absolute; padding: 10px; background: #fff; border: 1px solid rgba(179,153,95,0.45); }
.collage .frame img { width: 100%; height: 100%; object-fit: cover; }
.collage .f1 { left: 0;     top: 34px;  width: 381px; height: 546px; z-index: 1; box-shadow: 0 26px 48px -30px rgba(46,51,36,0.45); }
.collage .f2 { right: 0;    top: -25px; width: 455px; height: 595px; z-index: 2; box-shadow: 0 26px 48px -30px rgba(46,51,36,0.45); }
.collage .f3 { left: 300px; top: 303px; width: 371px; height: 507px; z-index: 3; box-shadow: 0 34px 60px -28px rgba(46,51,36,0.55); }
.collage .paw { position: absolute; left: 96px; top: 656px; width: 82px; height: 80px; transform: rotate(-14deg); opacity: 0.8; }

/* Timeline */
.timeline { position: relative; margin-top: 84px; }
.timeline-axis {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 1px;
  background: linear-gradient(to bottom, rgba(179,153,95,0), rgba(179,153,95,0.55) 8%, rgba(179,153,95,0.55) 92%, rgba(179,153,95,0));
}
.tl-item { display: grid; grid-template-columns: 1fr 64px 1fr; align-items: center; margin-bottom: 70px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-marker { display: flex; justify-content: center; }
.tl-marker .lozenge { width: 10px; height: 10px; }
.tl-marker .lozenge.big { width: 14px; height: 14px; background: var(--verde); outline: 1px solid var(--dourado); outline-offset: 4px; }
.tl-date { font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dourado); }
.tl-h { font-size: 29px; font-weight: 500; margin: 8px 0 8px; }
.tl-h.accent { color: var(--verde); }
.tl-text { font-size: 19px; line-height: 1.6; color: var(--texto-suave); max-width: 400px; text-wrap: pretty; }
.tl-text-side { text-align: right; }
.tl-text-side .tl-text { margin-left: auto; }
.tl-photo { display: flex; }
.tl-photo .frame {
  width: 390px; max-width: 100%; border: 1px solid rgba(179,153,95,0.45);
  padding: 9px; background: #fff; box-shadow: 0 24px 44px -30px rgba(46,51,36,0.45);
}
/* proporção na imagem -> a moldura branca acompanha (passe-partout uniforme em todo navegador) */
.tl-photo .frame img { width: 100%; height: auto; aspect-ratio: 2/3; object-fit: cover; }
.tl-photo.right { justify-content: flex-end; }
.tl-photo.left  { justify-content: flex-start; }
.historia-rings { position: absolute; left: 50%; transform: translateX(-50%); top: 336px; width: 144px; height: 104px; overflow: visible; opacity: 0.85; }

/* =========================================================
   RETRATO / FRASE
   ========================================================= */
.banner { position: relative; height: 76vh; min-height: 480px; overflow: hidden; }
.banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.banner-overlay { position: absolute; inset: 0; background: rgba(46,51,36,0.42); pointer-events: none; }
.banner-content {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  padding: 0 24px; pointer-events: none;
}
.banner-quote {
  font-style: italic; font-size: 33px; line-height: 1.5; color: var(--creme);
  text-shadow: 0 2px 22px rgba(0,0,0,0.4); text-wrap: pretty; max-width: 660px; text-align: center;
}

/* =========================================================
   PROGRAMAÇÃO DO DIA
   ========================================================= */
.programa { background: var(--verde); padding: 110px 24px 120px; text-align: center; }
.programa .section-title { color: var(--marfim2); letter-spacing: 0.24em; margin: 0; }
.programa-intro { font-style: italic; font-size: 21px; color: rgba(242,238,223,0.7); margin-top: 12px; }
.programa-grid {
  max-width: 1180px; margin: 80px auto 0; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 56px 32px;
}
.prog-card { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.prog-card h3 {
  font-size: 19px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--marfim2);
  font-weight: 500; line-height: 1.5; margin: 0;
}
.prog-card p { font-size: 18px; line-height: 1.6; color: rgba(242,238,223,0.72); max-width: 240px; text-wrap: pretty; margin: 0; }

/* =========================================================
   GALERIA (marquee)
   ========================================================= */
.galeria { background: var(--creme-escuro); padding: 104px 0 114px; overflow: hidden; }
.galeria-head { text-align: center; padding: 0 24px; }
.galeria-head .section-title { letter-spacing: 0.22em; margin: 14px 0 10px; }
.galeria-sub { font-style: italic; font-size: 20px; color: var(--texto-suave); }
.marquee { margin-top: 60px; }
.marquee-track {
  display: flex; align-items: center; gap: 30px; width: max-content;
  animation: marqueeL 55s linear infinite;
}
.gal-frame {
  width: 400px; border: 1px solid rgba(179,153,95,0.45);
  padding: 10px; background: #fff; flex: none;
}
.gal-frame img { width: 100%; height: auto; aspect-ratio: 2/3; object-fit: cover; }
.gal-cap-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.gal-cap { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--dourado-esc); }

/* =========================================================
   DRESS CODE
   ========================================================= */
.dress { padding: 110px 24px; text-align: center; background-color: var(--verde); }
.dress-inner { max-width: 780px; margin: 0 auto; }
.dress .eyebrow { color: var(--dourado-claro); }
.dress-title { font-size: 50px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--marfim2); margin-top: 16px; }
.dress-text { font-size: 21px; line-height: 1.7; color: rgba(242,238,223,0.82); margin-top: 18px; text-wrap: pretty; }
.dress-scale { position: relative; max-width: 620px; margin: 58px auto 0; }
.dress-scale .axis { position: absolute; top: 11px; left: 8%; right: 8%; height: 1px; background: rgba(201,178,126,0.45); }
.dress-points { position: relative; display: flex; justify-content: space-between; }
.dress-point { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 33%; }
.dress-point .dot-sm { width: 9px; height: 9px; border-radius: 50%; background: rgba(242,238,223,0.45); margin-top: 7px; }
.dress-point .dot-hi { width: 16px; height: 16px; background: var(--dourado-claro); transform: rotate(45deg); outline: 1px solid rgba(201,178,126,0.6); outline-offset: 5px; margin-top: 3px; }
.dress-point .pt-name { font-style: italic; font-size: 18px; color: rgba(242,238,223,0.55); }
.dress-point .pt-name.hi { font-size: 21px; color: var(--marfim2); }
.dress-point .pt-lab { font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(242,238,223,0.4); }
.dress-point .pt-lab.hi { color: var(--dourado-claro); }
.dress-foot { font-style: italic; font-size: 19px; color: rgba(242,238,223,0.65); margin-top: 50px; text-wrap: pretty; }

/* =========================================================
   LOCAL
   ========================================================= */
.local { background: var(--creme-escuro); padding: 110px 24px; }
.local-grid {
  max-width: 1080px; margin: 0 auto; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr)); gap: 56px; align-items: center;
}
.local .section-title { font-size: 38px; letter-spacing: 0.18em; margin: 12px 0 24px; }
.local-date { font-size: 33px; font-weight: 500; line-height: 1.25; }
.local-time { font-size: 14px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dourado); margin-top: 8px; }
.local-divider { display: flex; align-items: center; gap: 14px; margin: 26px 0; }
.local-divider .line { height: 1px; width: 64px; background: rgba(179,153,95,0.5); }
.local-divider .dot  { width: 7px; height: 7px; background: var(--dourado); transform: rotate(45deg); }
.local-venue { font-size: 26px; font-weight: 500; }
.local-addr { font-size: 19px; color: var(--texto-suave); margin-top: 6px; line-height: 1.55; text-wrap: pretty; }
.local-card { margin-top: 30px; background: var(--creme-escuro); border-radius: 18px; padding: 24px 28px; max-width: 460px; }
.local-card .label { font-size: 15px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dourado-esc); font-weight: 500; }
.local-card p { font-size: 19px; line-height: 1.6; color: var(--texto-suave); margin: 10px 0 0; text-wrap: pretty; }
.local-map { width: 100%; height: 440px; border: 1px solid rgba(179,153,95,0.4); border-radius: 6px; display: block; }
.local-maplink {
  display: inline-block; margin-top: 14px; font-size: 13px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--dourado-esc); text-decoration: none;
  border-bottom: 1px solid rgba(179,153,95,0.5); padding-bottom: 3px; transition: color .25s ease;
}
.local-maplink:hover { color: var(--verde); }

/* =========================================================
   RSVP
   ========================================================= */
.rsvp { background: var(--creme); padding: 110px 24px; }
.rsvp-inner { max-width: 560px; margin: 0 auto; text-align: center; }
.rsvp .section-title { font-size: 36px; letter-spacing: 0.16em; margin: 14px 0 12px; line-height: 1.3; }
.rsvp-lead { font-size: 20px; color: var(--texto-suave); line-height: 1.6; text-wrap: pretty; }
.rsvp-lead .hl { color: var(--dourado-esc); }
.rsvp-card {
  margin-top: 40px; background: #fff; border: 1px solid rgba(179,153,95,0.4); border-radius: 8px;
  padding: 38px 40px; text-align: left; box-shadow: 0 26px 50px -34px rgba(46,51,36,0.35);
}
.rsvp-card label { display: block; font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dourado); }
.rsvp-card input {
  width: 100%; border: none; border-bottom: 1px solid rgba(179,153,95,0.55); background: transparent;
  font-family: var(--serif); font-size: 21px; color: var(--tinta); padding: 10px 2px; margin: 4px 0 30px; outline: none;
}
.rsvp-q { margin-bottom: 12px !important; }
.rsvp-toggle { display: flex; gap: 14px; }
.toggle-btn {
  flex: 1; cursor: pointer; font-family: var(--serif); font-size: 17px; letter-spacing: 0.08em;
  padding: 12px 10px; border-radius: 999px; border: 1px solid var(--verde);
  background: transparent; color: var(--verde); transition: all 0.2s ease;
}
.toggle-btn.active { background: var(--verde); color: var(--marfim2); }
.btn-send {
  width: 100%; margin-top: 30px; cursor: pointer; font-family: var(--serif); font-size: 15px;
  letter-spacing: 0.22em; text-transform: uppercase; padding: 16px 10px; border-radius: 999px;
  border: none; background: var(--verde); color: var(--marfim2); transition: background .25s ease;
}
.btn-send:hover { background: var(--verde-escuro); }
.btn-send:disabled { opacity: 0.55; cursor: default; }
.rsvp-done { margin-top: 30px; text-align: center; font-style: italic; font-size: 21px; color: var(--verde); }
.rsvp-error { margin-top: 16px; text-align: center; font-size: 16px; color: #9b3b2e; }

/* RSVP — confirmar mais de uma pessoa (uma resposta pela família toda) */
.rsvp-hint { margin: -22px 0 26px; font-size: 14.5px; font-style: italic; line-height: 1.45; color: var(--texto-suave); }
.rsvp-hint-add { margin: 11px 2px 30px; }

.rsvp-extras { display: flex; flex-direction: column; }
.rsvp-extra { display: flex; align-items: flex-end; gap: 8px; margin-bottom: 16px; }
.rsvp-extra-field { flex: 1 1 auto; min-width: 0; }
.rsvp-extra-label { display: block; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--dourado); }
.rsvp-card input.rsvp-extra-input { margin: 4px 0 0; }
.rsvp-remove {
  flex: none; width: 44px; height: 46px; display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer; font-family: var(--serif);
  color: var(--texto-suave); font-size: 28px; line-height: 1; transition: color .2s ease;
}
.rsvp-remove:hover { color: #9b3b2e; }

.rsvp-add {
  width: 100%; margin-top: 2px; cursor: pointer; font-family: var(--serif);
  font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--dourado-esc);
  background: transparent; border: 1px dashed rgba(179,153,95,0.75); border-radius: 999px; padding: 13px 12px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.rsvp-add:hover { background: rgba(179,153,95,0.10); border-color: var(--dourado); color: var(--verde); }
.rsvp-add-ico { font-size: 19px; line-height: 1; }

.hidden { display: none !important; }

/* =========================================================
   PRESENTES (teaser na home)
   ========================================================= */
.presentes-teaser { background: var(--creme); padding: 96px 24px; text-align: center; }
.presentes-teaser-inner { max-width: 620px; margin: 0 auto; }
.presentes-teaser .section-title { font-size: 32px; letter-spacing: 0.18em; margin: 16px 0; line-height: 1.3; }
.presentes-teaser p { font-size: 20px; color: var(--texto-suave); line-height: 1.65; text-wrap: pretty; margin: 0; }
.btn-block {
  display: inline-block; margin-top: 28px; font-family: var(--serif); font-size: 14px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--marfim2); background: var(--verde);
  text-decoration: none; padding: 15px 36px; transition: background .25s ease;
}
.btn-block:hover { background: var(--verde-escuro); }

/* =========================================================
   EM MEMÓRIA
   ========================================================= */
.memoria { background: var(--creme-escuro); padding: 100px 24px 96px; text-align: center; position: relative; }
.memoria-inner { max-width: 880px; margin: 0 auto; }
.memoria .section-title { font-size: 38px; margin: 16px 0 0; }
.memoria-quote { font-style: italic; font-size: 21px; line-height: 1.65; color: var(--texto-suave); max-width: 640px; margin: 22px auto 0; text-wrap: pretty; }
.memoria-divider { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.memoria-divider .line { width: 90px; height: 1px; background: rgba(179,153,95,0.6); }
.memoria-divider .dot { width: 10px; height: 10px; background: var(--dourado); transform: rotate(45deg); }
.memoria-cards { display: flex; justify-content: center; gap: 44px; flex-wrap: wrap; margin-top: 52px; }
.memoria-card { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.memoria-card .frame {
  width: 320px; padding: 10px; background: #fff; border: 1px solid rgba(179,153,95,0.45);
  box-shadow: 0 26px 48px -30px rgba(46,51,36,0.45);
}
.memoria-card .frame img { width: 100%; height: auto; aspect-ratio: 3/4; object-fit: cover; }
.memoria-card .nome { font-size: 24px; font-weight: 500; color: var(--tinta); }
.memoria-card .sub { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dourado-esc); }
.memoria-heart { display: block; color: var(--verde); font-size: 30px; margin: 40px auto 0; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--verde-escuro); padding: 80px 24px 64px; text-align: center; }
.footer-name { font-size: 26px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--marfim2); font-weight: 500; margin-top: 18px; line-height: 1.4; }
.footer-date { font-size: 12px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dourado-claro); margin-top: 12px; }
.footer-fred { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 36px; }
.footer-fred .txt { font-style: italic; font-size: 17px; color: rgba(242,238,223,0.7); }

/* =========================================================
   PÁGINA — LISTA DE PRESENTES
   ========================================================= */
.gift-nav {
  position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between;
  padding: 18px 36px; background: rgba(247,244,236,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(179,153,95,0.3);
}
.gift-back {
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dourado-esc);
  text-decoration: none; border: 1px solid var(--dourado); padding: 9px 18px; transition: all .25s ease;
}
.gift-back:hover { background: var(--dourado); color: var(--creme); }

.gift-hero { text-align: center; padding: 90px 24px 70px; background: var(--creme); }
.gift-hero .eyebrow { animation: fadeUp .8s ease both; }
.gift-hero h1 {
  font-weight: 500; font-size: min(58px, 8vw); letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--verde); margin: 18px auto 14px; line-height: 1.2; max-width: 800px; animation: fadeUp .8s ease .1s both;
}
.gift-hero .lead { font-style: italic; font-size: 21px; line-height: 1.6; color: var(--texto-suave); max-width: 660px; margin: 0 auto; text-wrap: pretty; animation: fadeUp .8s ease .2s both; }
.gift-hero .divider { margin-top: 34px; }
.gift-hero .divider .line { width: 90px; background: rgba(179,153,95,0.6); }
.gift-hero .divider .dot { width: 10px; height: 10px; background: var(--dourado); }

.gift-how { background: var(--verde); padding: 56px 24px; text-align: center; }
.gift-how-grid { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 36px; }
.gift-step { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.gift-step .num { font-size: 30px; font-weight: 300; color: var(--dourado-claro); }
.gift-step p { font-size: 18px; line-height: 1.5; color: rgba(242,238,223,0.9); max-width: 260px; margin: 0; }

.gift-section { padding: 80px 24px 100px; background: var(--creme); }
.gift-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 26px; }
.gift-card { display: flex; flex-direction: column; background: #fff; border: 1px solid rgba(179,153,95,0.45); overflow: hidden; }
.gift-card .photo { width: 100%; height: 200px; object-fit: cover; display: block; flex: none; }
.gift-card .photo-empty { width: 100%; height: 200px; background: var(--creme-escuro); display: flex; align-items: center; justify-content: center; flex: none; }
.gift-card .photo-empty span { font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(138,116,64,0.6); }
.gift-card .body { display: flex; flex-direction: column; gap: 12px; padding: 22px 28px 28px; flex: 1; }
.gift-card .cat { font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dourado); }
.gift-card .name { font-size: 27px; font-weight: 500; line-height: 1.2; }
.gift-card .desc { font-style: italic; font-size: 17px; line-height: 1.55; color: var(--texto-suave); text-wrap: pretty; }
.gift-card .foot {
  display: flex; align-items: center; justify-content: space-between; margin-top: auto;
  padding-top: 14px; border-top: 1px solid rgba(179,153,95,0.25);
}
.gift-card .price { font-size: 24px; font-weight: 600; color: var(--verde); }
.btn-gift {
  font-family: var(--serif); font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--verde); color: var(--marfim2); border: none; padding: 11px 22px; cursor: pointer;
  text-decoration: none; transition: background .25s ease;
}
.btn-gift:hover { background: var(--verde-escuro); }

.gift-free {
  max-width: 900px; margin: 0 auto 60px; text-align: center; position: relative;
  background: var(--verde); color: var(--marfim2); padding: 56px 44px;
  border: 1px solid var(--dourado); box-shadow: 0 20px 54px rgba(46,61,36,0.20);
}
.gift-free .eyebrow { color: var(--dourado-claro); }
.gift-free .name { font-size: 34px; font-weight: 500; margin: 12px 0 14px; color: var(--marfim); }
.gift-free .desc { font-style: italic; font-size: 19px; line-height: 1.62; color: rgba(242,238,223,0.88); max-width: 620px; margin: 0 auto 28px; }
.gift-free .desc em { color: var(--dourado-claro); font-style: italic; }
.btn-gift-lg {
  font-family: var(--serif); font-size: 16px; letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--dourado-claro); color: var(--verde-escuro); border: none; padding: 16px 42px; cursor: pointer;
  text-decoration: none; display: inline-block; transition: background .25s ease, transform .25s ease;
}
.btn-gift-lg:hover { background: #fff; transform: translateY(-2px); }
.gift-free-or {
  margin-top: 28px; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(201,178,126,0.85);
}

/* Lembrete final de valor livre (depois de todos os presentes) */
.gift-free-end {
  max-width: 760px; margin: 76px auto 0; text-align: center;
  background: var(--creme-escuro); border: 1px solid rgba(179,153,95,0.5);
  padding: 54px 40px;
}
.gift-free-end-rings { width: 86px; height: auto; display: block; margin: 0 auto 18px; opacity: .9; }
.gift-free-end .eyebrow { color: var(--dourado-esc); }
.gift-free-end-title {
  font-family: var(--serif); font-size: 34px; font-weight: 500; line-height: 1.2;
  color: var(--verde); margin: 12px 0 14px;
}
.gift-free-end-title em { font-style: italic; color: var(--dourado-esc); }
.gift-free-end-text {
  font-family: var(--serif); font-style: italic; font-size: 19px; line-height: 1.62;
  color: var(--texto-suave); max-width: 560px; margin: 0 auto 28px;
}
@media (max-width: 520px) {
  .gift-free-end { padding: 40px 24px; margin-top: 56px; }
  .gift-free-end-title { font-size: 28px; }
  .gift-free-end-text { font-size: 17px; }
}

.gift-foot { background: var(--verde); padding: 56px 24px; text-align: center; }
.gift-foot .mono { font-size: 16px; letter-spacing: 0.34em; text-transform: uppercase; color: var(--dourado-claro); }
.gift-foot .msg { font-style: italic; font-size: 19px; color: rgba(242,238,223,0.8); margin-top: 12px; }
.gift-foot .date { font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(201,178,126,0.8); margin-top: 18px; }

/* Toast */
.toast {
  position: fixed; left: 50%; bottom: 34px; transform: translateX(-50%) translateY(20px);
  z-index: 100; background: var(--tinta); color: var(--marfim2); font-family: var(--serif);
  font-size: 17px; letter-spacing: 0.06em; padding: 14px 28px;
  box-shadow: 0 16px 36px -14px rgba(0,0,0,0.5); opacity: 0; pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* =========================================================
   POPUP DE PAGAMENTO — escolha "à vista" x "parcelar no cartão"
   ========================================================= */
.pay-modal {
  position: fixed; inset: 0; z-index: 120;
  display: flex; align-items: center; justify-content: center; padding: 22px;
  background: rgba(30,38,22,0.58);
  -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
  opacity: 0; transition: opacity .26s ease; overflow-y: auto;
}
.pay-modal[hidden] { display: none; }
.pay-modal.open { opacity: 1; }
.pay-modal-card {
  position: relative; width: 100%; max-width: 460px; margin: auto;
  background: var(--creme); border: 1px solid var(--dourado);
  box-shadow: 0 24px 60px -18px rgba(20,28,14,0.6);
  padding: 42px 34px 30px; text-align: center;
}
.pay-modal .eyebrow { color: var(--dourado-esc); }
.pay-modal-title {
  font-family: var(--serif); font-size: 30px; font-weight: 600; line-height: 1.2;
  color: var(--verde); margin: 12px 0 0; text-wrap: balance;
}
.pay-modal-sub {
  font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.5;
  color: var(--texto-suave); margin: 12px auto 22px; max-width: 360px;
}
.pay-opt {
  display: block; text-decoration: none; text-align: left;
  padding: 15px 20px; margin-top: 12px; cursor: pointer;
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.pay-opt-title { display: block; font-family: var(--serif); font-size: 18px; font-weight: 600; letter-spacing: 0.04em; }
.pay-opt-desc  { display: block; font-family: var(--serif); font-size: 14.5px; margin-top: 3px; opacity: .9; }
.pay-opt-vista { background: var(--verde); color: var(--marfim2); }
.pay-opt-vista:hover { background: var(--verde-escuro); transform: translateY(-1px); }
.pay-opt-parc  { background: #fff; color: var(--verde); border-color: var(--dourado); }
.pay-opt-parc .pay-opt-desc { color: var(--dourado-esc); opacity: 1; }
.pay-opt-parc:hover { background: var(--marfim2); transform: translateY(-1px); }
.pay-modal-close {
  position: absolute; top: 8px; right: 8px; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  font-size: 28px; line-height: 1; color: var(--dourado-esc); font-family: var(--serif);
}
.pay-modal-close:hover { color: var(--verde); }
.pay-modal-secure {
  margin-top: 18px; font-size: 12px; letter-spacing: 0.03em;
  color: var(--texto-suave); font-family: var(--serif);
}
body.modal-lock { overflow: hidden; }
@media (max-width: 520px) {
  .pay-modal-card { padding: 36px 22px 26px; }
  .pay-modal-title { font-size: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .pay-modal, .pay-opt { transition: none; }
}

/* =========================================================
   PLAYER DE MÚSICA (controles flutuantes: anterior · play/pause · próxima)
   ========================================================= */
.music-player {
  position: fixed; left: 22px; bottom: 22px; z-index: 90;
  display: flex; align-items: center; gap: 2px; padding: 5px;
  border-radius: 999px; background: rgba(60,79,46,0.92);
  border: 1px solid var(--dourado-claro); color: var(--marfim2);
  box-shadow: 0 10px 28px -10px rgba(46,51,36,0.6);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.mp-btn {
  width: 38px; height: 38px; border-radius: 50%; border: none; padding: 0;
  background: transparent; color: var(--marfim2); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.mp-btn:hover { background: rgba(201,178,126,0.22); }
.mp-btn svg { width: 17px; height: 17px; display: block; }
.mp-toggle { position: relative; width: 44px; height: 44px; }
.mp-toggle svg { width: 20px; height: 20px; }
.mp-toggle .icon-pause { display: none; }
.music-player.is-playing .mp-toggle .icon-play { display: none; }
.music-player.is-playing .mp-toggle .icon-pause { display: block; }
.music-player.is-playing .mp-toggle::after {
  content: ''; position: absolute; inset: -2px; border-radius: 50%;
  border: 1px solid rgba(201,178,126,0.75); animation: musicPulse 2.4s ease-out infinite;
}
@keyframes musicPulse { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

.music-hint {
  position: fixed; left: 150px; bottom: 30px; z-index: 90;
  background: rgba(46,51,36,0.92); color: var(--marfim2); font-family: var(--serif);
  font-size: 15px; letter-spacing: .03em; padding: 8px 16px; border-radius: 999px;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,.5); white-space: nowrap; pointer-events: none;
  opacity: 0; transform: translateX(-8px); transition: opacity .4s ease, transform .4s ease;
}
.music-hint.show { opacity: 1; transform: translateX(0); }
@media (prefers-reduced-motion: reduce) { .music-player.is-playing .mp-toggle::after { animation: none; } }

/* =========================================================
   TELA DE ENTRADA (splash) — libera a música no 1º toque
   ========================================================= */
body.splash-open { overflow: hidden; }
.splash {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; text-align: center; padding: 24px;
  background: #2E3D24; color: var(--marfim2); cursor: pointer;
  opacity: 1; transition: opacity .8s ease;
}
.splash::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(rgba(46,51,36,0.50), rgba(46,51,36,0.72)),
    url("../img/hero.jpg") 40% 50%/cover no-repeat;
}
.splash-inner { position: relative; z-index: 1; animation: fadeUp 1s ease both; }
.splash .splash-date { font-size: 15px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--dourado-claro); text-shadow: 0 1px 2px #000; }
.splash h2 { font-weight: 500; font-size: min(64px, 11vw); letter-spacing: 0.14em; text-transform: uppercase; margin: 16px 0 10px; line-height: 1.15; text-shadow: 0 2px 3px #000; }
.splash h2 .amp { font-style: italic; font-weight: 400; text-transform: none; color: var(--dourado-claro); }
.splash .splash-sub { font-style: italic; font-size: 20px; color: rgba(247,244,236,0.95); text-shadow: 0 1px 2px #000; margin-bottom: 34px; text-wrap: pretty; }
.splash-enter {
  font-family: var(--serif); font-size: 15px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--creme); background: transparent; border: 1px solid var(--dourado-claro);
  border-radius: 999px; padding: 14px 34px; cursor: pointer;
  display: inline-flex; align-items: center; gap: 10px; transition: background .25s ease, color .25s ease;
}
.splash-enter:hover { background: var(--dourado-claro); color: var(--verde); }
.splash.hide { opacity: 0; pointer-events: none; }

/* =========================================================
   CENTRALIZAÇÃO ÓTICA — compensa o "sobra" do letter-spacing
   em textos CENTRALIZADOS (text-indent = letter-spacing de cada um).
   NÃO inclui a seção "O local" (alinhada à esquerda de propósito).
   ========================================================= */
.gift-hero h1 { text-indent: 0.1em; }
.splash h2 { text-indent: 0.14em; }
.rsvp .section-title { text-indent: 0.16em; }
.presentes-teaser .section-title { text-indent: 0.18em; }
.historia .section-title,
.memoria .section-title,
.dress-title { text-indent: 0.2em; }
.galeria-head .section-title { text-indent: 0.22em; }
.programa .section-title,
.gal-cap { text-indent: 0.24em; }
.prog-card h3,
.memoria-card .sub { text-indent: 0.26em; }
.countdown-foot,
.gift-foot .date { text-indent: 0.28em; }
.cd-label,
.footer-name { text-indent: 0.3em; }
.historia .eyebrow,
.galeria .eyebrow,
.dress .eyebrow,
.rsvp .eyebrow,
.memoria .eyebrow,
.presentes-teaser .eyebrow,
.gift-hero .eyebrow,
.splash .splash-date,
.footer-date { text-indent: 0.32em; }
.eyebrow-light,
.gift-foot .mono { text-indent: 0.34em; }

/* =========================================================
   RESPONSIVIDADE (mobile — maioria dos convidados via WhatsApp)
   ========================================================= */
@media (max-width: 860px) {
  .site-header { padding: 14px 20px; }
  /* menu vira hambúrguer: o ícone aparece e os links viram um painel suspenso */
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(247,244,236,0.98);
    -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(60,79,46,0.14);
    box-shadow: 0 20px 30px -22px rgba(46,51,36,0.45);
    padding: 6px 0 12px;
    opacity: 0; transform: translateY(-8px); pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
  }
  .site-header.menu-open .nav-links { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links .nav-link { display: block; padding: 16px 24px; font-size: 14px; text-align: left; }
  .nav-links .btn-rsvp-nav { margin: 10px 24px 4px; padding: 12px 24px; text-align: center; font-size: 12px; }

  .hero-date { font-size: 15px; letter-spacing: 0.28em; text-indent: 0.28em; }
  .hero-sub { font-size: 19px; }

  /* Tela de entrada: "JOÃO & MARIANA" é uma linha só (&nbsp;) e não pode quebrar;
     reduz corpo/espaçamento para caber na viewport e não cortar o "J" e o "A". */
  .splash h2 { font-size: min(56px, 8.4vw); letter-spacing: 0.07em; text-indent: 0.07em; }
  /* a data cabe numa linha só no celular (sem deixar "PR" órfão) */
  .splash .splash-date { letter-spacing: 0.18em; text-indent: 0.18em; }

  .countdown-row { gap: 14px; }
  .cd-unit { min-width: 64px; }
  .cd-num { font-size: 48px; }
  .cd-sep { display: none; }

  .historia, .programa, .galeria, .dress, .local, .rsvp, .memoria { padding-left: 20px; padding-right: 20px; }
  .historia { padding-top: 80px; padding-bottom: 64px; }

  /* Colagem -> empilhamento simples.
     A proporção 2:3 vai na IMAGEM (height:auto) e a moldura branca se ajusta a ela,
     garantindo o passe-partout uniforme em qualquer navegador (no desktop os frames
     têm altura explícita; no mobile, sem isso, alguns navegadores deixavam sobra branca). */
  .collage { height: auto; margin-top: 48px; display: flex; flex-direction: column; gap: 18px; align-items: center; }
  .collage .frame { position: static; width: 100%; max-width: 360px; height: auto; aspect-ratio: auto; }
  .collage .frame img { height: auto; aspect-ratio: 2/3; }
  .collage .paw { display: none; }
  .historia-rings { display: none; }

  /* Timeline -> linha à esquerda, marcador + conteúdo empilhado à direita */
  .timeline-axis { left: 14px; }
  .tl-item { grid-template-columns: 28px 1fr; column-gap: 14px; margin-bottom: 48px; align-items: start; }
  .tl-marker { grid-column: 1; grid-row: 1; justify-content: center; padding-top: 6px; }
  /* todos os conteúdos vão para a coluna 2 e empilham na ordem do DOM */
  .tl-item > *:not(.tl-marker) { grid-column: 2; }
  .tl-item > div:empty { display: none; }
  .tl-text-side, .tl-text-side .tl-text { text-align: left; margin-left: 0; max-width: none; }
  .tl-text { max-width: none; }
  /* a foto sempre por último (abaixo do texto), em qualquer item */
  .tl-photo, .tl-photo.right, .tl-photo.left { order: 1; justify-content: flex-start; margin-top: 16px; }
  .tl-photo .frame { width: 100%; max-width: 300px; }

  .banner-quote { font-size: 24px; }
  .dress-title { font-size: 36px; }
  .gal-frame { width: 280px; }

  .memoria-cards { gap: 28px; }
  .memoria-card .frame { width: 260px; }

  .rsvp-card { padding: 28px 22px; }
  .gift-nav { padding: 16px 20px; }
  .gift-card .name { font-size: 24px; }
  /* alvo de toque do "Presentear" >= ~44px */
  .btn-gift { padding-top: 14px; padding-bottom: 14px; }
  /* mapa não precisa ser tão alto no celular */
  .local-map { height: 340px; }
  .gift-free { padding: 42px 24px; margin-bottom: 48px; }
  .gift-free .name { font-size: 28px; }
  .gift-free .desc { font-size: 17px; }
  .btn-gift-lg { padding: 15px 32px; font-size: 15px; }

  .music-player { left: 14px; bottom: 14px; padding: 4px; }
  .mp-btn { width: 36px; height: 36px; }
  .mp-toggle { width: 42px; height: 42px; }
  .music-hint { left: 14px; right: auto; bottom: 76px; font-size: 13px; max-width: calc(100vw - 28px); white-space: normal; }
}

@media (max-width: 520px) {
  .section-title { font-size: 32px; letter-spacing: 0.14em; }
  /* especificidade maior que .section-title — sem isso "PROGRAMAÇÃO" estoura a largura no mobile */
  .programa .section-title { letter-spacing: 0.08em; text-indent: 0.08em; }
  /* estes títulos têm seletor mais específico (0,2,0) e venceriam o .section-title acima;
     precisam encolher explicitamente para não ficarem apertados em telas pequenas. */
  .rsvp .section-title { font-size: 30px; letter-spacing: 0.1em; text-indent: 0.1em; }
  .local .section-title { font-size: 30px; }
  .memoria .section-title { font-size: 30px; }
  .presentes-teaser .section-title { font-size: 28px; }
  .cd-num { font-size: 40px; }
  .rsvp-toggle { flex-direction: column; }
  .banner-quote { font-size: 21px; }
}

/* Telas pequenas (≈320px): cabeçalho compacto e data do hero numa linha só */
@media (max-width: 360px) {
  .site-header { padding: 12px 16px; }
  .monogram { font-size: 15px; letter-spacing: 0.16em; }
  .hero-date { font-size: 12px; letter-spacing: 0.16em; text-indent: 0.16em; }
  /* mantém os 4 blocos da contagem numa linha só (sem quebrar em 2x2) */
  .countdown { padding-left: 14px; padding-right: 14px; }
  .countdown-row { gap: 10px; }
  .cd-unit { min-width: 56px; }
}

/* ===================== ABERTURA — A SUA PRESENÇA (o momento) ===================== */
.gift-intro {
  background: var(--verde);
  color: var(--marfim);
  text-align: center;
  padding: 124px 24px 116px;
  display: flex; align-items: center; justify-content: center;
  min-height: 52vh;
}
.gift-intro-inner { max-width: 720px; margin: 0 auto; }
.gift-intro .eyebrow { color: var(--dourado-claro); animation: fadeUp .8s ease both; }
.gift-intro-title {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: min(58px, 8.6vw); line-height: 1.15; letter-spacing: 0.004em;
  color: var(--marfim); margin: 24px auto 26px; max-width: 600px; text-wrap: balance;
  animation: fadeUp .8s ease .1s both;
}
.gift-intro-title em { font-style: italic; color: var(--dourado-claro); }
.gift-intro-text {
  font-size: 20px; line-height: 1.72; color: rgba(237,230,207,0.82);
  max-width: 580px; margin: 0 auto; text-wrap: pretty;
  animation: fadeUp .8s ease .2s both;
}
.gift-intro-rings {
  width: 78px; height: auto; display: block; margin: 42px auto 0; opacity: 0.9;
  animation: fadeUp .8s ease .3s both;
}

/* Lua de mel: 2o hero em fundo creme, titulo em caixa alta — contraste com a abertura verde */
.gift-hero { padding-top: 76px; }
.gift-hero .section-title {
  font-size: min(46px, 7vw); letter-spacing: 0.18em; margin: 16px auto 0;
  max-width: 760px; text-indent: 0.18em;
}

@media (max-width: 720px) {
  .gift-intro { padding: 94px 22px 84px; min-height: 0; }
  .gift-intro-title { font-size: min(44px, 10.5vw); }
  .gift-intro-text { font-size: 18px; }
  .gift-hero { padding-top: 56px; }
}
