/* ============================================================
   Andhressa & Alisson — v4 clean rebuild
   ============================================================ */
/* ===== centered frame ===== */
:root {
  --frame-w: min(1180px, calc(100vw - 60px));
  --frame-pad: max(30px, calc((100vw - 1180px) / 2));
  --bg: #f4efe2;
  --bg-soft: #ece6d5;
  --paper: #fbf7ea;
  --ink: #34301f;
  --ink-soft: #55513e;
  --ink-mut: #847d62;
  --line: #d8ceae;
  --accent: #8a9a75;       /* sálvia */
  --accent-deep: #5e6a4d;
  --gold: #b8925a;
  --gold-hi: #e7cf94;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sc: 'Cormorant Garamond', Georgia, serif;
  --font-calligraphy: 'Pinyon Script', cursive;
  --ease: cubic-bezier(.22,.65,.3,1);
  --max: 1180px;
}
[data-palette="ouro"]  { --accent:#b8925a; --accent-deep:#8b6b36; --line:#e2d0a6; }
[data-palette="rose"]  { --accent:#c48a78; --accent-deep:#92604f; --line:#e8cfc2; }

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: var(--font-serif);
  font-size: 19px; line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
em { font-style: italic; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ====== NAV ====== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(244,239,226,0.95), rgba(244,239,226,0.6) 70%, transparent);
  backdrop-filter: blur(6px);
}
.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 30px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
}
.brand img { height: 54px; width: auto; }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 14px; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 8px 0;
  transition: color .3s;
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a.cta {
  border: 1px solid var(--accent);
  padding: 10px 22px;
  color: var(--accent-deep);
}
.nav-links a.cta:hover { background: var(--accent); color: #fff; }
.menu { display: none; width: 40px; height: 40px; position: relative; }
.menu span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--ink); }
.menu span:nth-child(1) { top: 14px; }
.menu span:nth-child(2) { top: 20px; }
.menu span:nth-child(3) { top: 26px; }

/* ====== DRAWER ====== */
.drawer {
  position: fixed; inset: 0; z-index: 60;
  background: var(--bg);
  padding: 60px 40px; text-align: center;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.drawer.open { transform: none; }
.dx { position: absolute; top: 24px; right: 24px; font-size: 32px; color: var(--ink); }
.dm { width: 80px; margin-top: 20px; }
.dn { font-family: var(--font-calligraphy); font-size: 56px; color: var(--accent-deep); margin: 10px 0 20px; font-weight: 400; }
.drawer a {
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 16px; font-weight: 500; color: var(--ink-soft); padding: 10px;
}
.drawer a.dcta {
  border: 1px solid var(--accent); padding: 14px 32px;
  color: var(--accent-deep); margin-top: 14px;
}

/* ====== MUSIC BADGE (anchored to centered frame) ====== */
.music {
  position: fixed; bottom: 22px;
  left: var(--frame-pad);
  z-index: 40;
  display: flex; align-items: center; gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 10px 16px 10px 10px;
  box-shadow: 0 12px 30px rgba(60,60,30,0.12);
}
.music button {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent); color: #fff;
  display: grid; place-items: center;
}
.ico { width: 14px; height: 14px; }
.music .pause { display: none; }
body[data-playing="1"] .music .play { display: none; }
body[data-playing="1"] .music .pause { display: inline-block; }
.mt { display: flex; flex-direction: column; line-height: 1.1; }
.mt strong { font-family: var(--font-display); font-weight: 500; font-size: 16px; color: var(--ink); letter-spacing: 0.02em; }
.mt span { font-family: var(--font-sc); text-transform: uppercase; letter-spacing: 0.15em; font-size: 11px; font-weight: 500; color: var(--ink-mut); margin-top: 3px; }

/* ====== PROGRESS (bottom of viewport, inside frame) ====== */
.progress {
  position: fixed;
  bottom: 28px;
  left: 50%; transform: translateX(-50%);
  z-index: 41;
  display: flex; align-items: center; gap: 14px;
  background: rgba(252,247,234,0.92);
  border: 1px solid var(--line);
  padding: 8px 18px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: auto;
  box-shadow: 0 12px 30px rgba(60,60,30,0.1);
}
.pdots { display: flex; gap: 10px; }
.pdots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: transparent; border: 1px solid var(--accent);
  transition: all .3s;
  padding: 0;
}
.pdots button.active { background: var(--accent); transform: scale(1.4); }
.plabel {
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 12px; font-weight: 500; color: var(--ink-mut);
  min-width: 80px;
}
body[data-scene-kind="cover"] .plabel { display: none; }
body[data-scene-kind="cover"] .progress { padding: 8px 16px; }
/* monograma do header some na capa (já há um grande no centro) */
body[data-scene-kind="cover"] .brand { opacity: 0; pointer-events: none; }

/* ====== JOURNEY ====== */
.journey {
  position: fixed; inset: 0;
  display: flex;
  overflow-x: auto; overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.journey::-webkit-scrollbar { display: none; }

.scene {
  position: relative;
  flex: 0 0 100vw;
  width: 100vw; height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 100px 40px 100px;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.scene .wrap {
  overflow: visible;
  position: relative;
}
.scene::-webkit-scrollbar { width: 0; }
.scene { scrollbar-width: none; }

/* Centralized container for wide monitors */
.wrap {
  width: 100%;
  max-width: var(--max);
  /* margin auto centra vertical e horizontalmente quando cabe,
     e permite rolagem interna sem cortar quando o conteúdo é alto */
  margin: auto;
  position: relative;
  z-index: 3;
}

/* Fixed watercolor background — mix-blend-multiply makes white paper invisible */
.bg-aquarela {
  position: fixed;
  inset: 0;
  background-image: url("assets/aquarela-cerimonia.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: min(1600px, 95vmin);
  opacity: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.6s var(--ease);
}
body[data-scene-kind="content"] .bg-aquarela,
body[data-scene-kind="finale"] .bg-aquarela { opacity: 0.55; }
body[data-scene-kind="cover"] .bg-aquarela { opacity: 0.18; }

/* Remove per-scene watercolor; ensure scene content sits above the fixed bg */
.scene.content::before,
.scene.finale::before { content: none; }
.scene { background: transparent; }

/* Paper texture on content scenes (kept subtle) */
.scene.content, .scene.finale {
  background:
    radial-gradient(ellipse at 15% 8%, rgba(138,154,117,.05), transparent 50%),
    radial-gradient(ellipse at 85% 92%, rgba(184,146,90,.04), transparent 50%);
}

.cover {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 100px 40px 80px;
  background:
    radial-gradient(ellipse at center, #faf6e8, var(--bg) 75%),
    var(--bg);
  display: flex; align-items: flex-start; justify-content: center;
}
.cover .wrap {
  height: auto;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
/* Hortênsia recortada (fundo transparente) — só na capa, um ramo em cada canto diagonal */
.cover-deco {
  position: absolute;
  width: min(440px, 38vw);
  pointer-events: none;
  z-index: 1;
  opacity: 0.95;
}
.cover-deco img { width: 100%; display: block; }
/* topo-esquerdo: simétrico ao de baixo (rotação 180 no centro) */
.cover-deco.tl {
  top: -28px; left: -28px;
  transform: rotate(180deg);
}
/* base-direita: ramo como está */
.cover-deco.br {
  bottom: -28px; right: -28px;
}
.cover-inner { text-align: center; position: relative; z-index: 3; padding: 0 40px; }
.mono { width: clamp(64px, 8vw, 86px); margin: 0 auto 10px; filter: drop-shadow(0 8px 20px rgba(184,146,90,0.18)); }
.eyebrow {
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.3em;
  font-size: 13px; font-weight: 600;
  color: var(--accent-deep);
  margin-bottom: 8px;
}
/* Names: solid color, no transparency — always readable */
.names {
  font-family: var(--font-calligraphy);
  font-weight: 400;
  color: var(--accent-deep);
  -webkit-text-fill-color: var(--accent-deep);
  font-size: clamp(44px, 6.6vw, 92px);
  line-height: 1.04;
  white-space: nowrap;
  padding: 0.06em 0 0.12em;
  position: relative; z-index: 5;
}
.names .amp {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  padding: 0 0.1em;
  vertical-align: 0.12em;
  font-size: 0.55em;
  -webkit-text-fill-color: var(--gold);
  background: none;
}
.divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 10px 0 12px; color: var(--accent); }
.divider span { width: 120px; max-width: 22vw; height: 1px; background: currentColor; opacity: .6; }
.divider svg { width: 14px; height: 14px; }
.divider.gold { color: var(--gold); }
.date {
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 17px; font-weight: 500; color: var(--ink);
  margin: 6px 0 4px;
}
.place {
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  margin: 4px 0;
}

.countdown {
  display: inline-flex; gap: 20px; align-items: center;
  padding: 0;
  margin: 16px 0 0;
  background: transparent;
  border: 0;
}
.countdown > div { display: flex; flex-direction: column; align-items: center; }
.countdown strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(32px, 4vw, 42px); color: var(--accent-deep); line-height: 1;
  letter-spacing: 0.02em;
}
.countdown em {
  font-family: var(--font-sc); font-style: normal; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 12px; color: var(--ink-mut); margin-top: 8px;
}
.countdown > span { font-size: 28px; color: var(--line); }

.btn-journey {
  display: block;
  margin: 24px auto 0;
  width: max-content;
}
.btn-journey .arrow { font-size: 18px; margin-left: 4px; transition: transform .4s var(--ease); }
.btn-journey:hover .arrow { transform: translateX(6px); }

.btn, .btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 13px; font-weight: 500;
  padding: 16px 32px;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  transition: all .35s var(--ease);
}
/* btn-journey overrides the inline-flex to break to its own line */
a.btn-journey,
.btn-journey.btn-ghost,
.btn-journey {
  display: inline-flex;
}
.cover-inner .btn-journey {
  display: flex;
  width: max-content;
  margin: 18px auto 0;
  justify-content: center;
}
.btn { background: var(--accent); color: #fff; }
.btn.outline { background: transparent; color: var(--accent-deep); }
.btn:hover { letter-spacing: 0.26em; }
.btn-ghost:hover { background: var(--accent); color: #fff; }

/* ====== CH HEAD (content sections) ====== */
.ch-head {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding: 20px 60px;
  background: rgba(251, 247, 234, 0.85);
  border-radius: 4px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 8px 24px rgba(60,60,30,0.06);
  width: max-content;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.scene.content .wrap { text-align: center; }
.ch-head .eyebrow { margin-bottom: 12px; }
.title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 4.5vw, 64px);
  color: var(--ink);
  margin: 8px 0;
  letter-spacing: 0.005em;
  line-height: 1.1;
}
.lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 640px;
  margin: 6px auto 0;
}
.title {
  /* shadow removed since ch-head has backdrop */
}

/* ====== TIMELINE ====== */
.timeline {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 20px;
  position: relative;
}
.timeline::before { display: none; }
.tl {
  background: rgba(251, 247, 234, 0.85);
  border: 1px solid var(--line);
  padding: 18px 20px;
  position: relative;
  box-shadow: 0 10px 24px rgba(60,60,30,.06);
  backdrop-filter: blur(2px);
}
.tl:nth-child(odd)  { margin-right: 0; }
.tl:nth-child(even) { margin-left: 0; }
.tl .yr {
  font-family: var(--font-display);
  font-size: 26px; font-weight: 500;
  color: var(--accent); line-height: 1;
  margin-bottom: 4px;
}
.tl h3 {
  font-family: var(--font-display);
  font-weight: 500; font-size: 19px;
  color: var(--ink); margin-bottom: 6px;
}
.tl p {
  font-size: 14px; color: var(--ink-soft); line-height: 1.5;
}

/* ====== CERIMÔNIA GRID ====== */
.cer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.cer-card {
  background: rgba(251, 247, 234, 0.85); border: 1px solid var(--line);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 12px 28px rgba(60,60,30,.06);
  backdrop-filter: blur(2px);
}
.roman {
  font-family: var(--font-display);
  font-size: 36px; font-weight: 500; color: var(--accent); line-height: 1;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.cer-card h3 {
  font-family: var(--font-display); font-weight: 500;
  font-size: 21px; color: var(--ink);
  line-height: 1.25;
}
.cer-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.cer-card .btn-ghost { align-self: flex-start; margin-top: 6px; font-size: 11px; padding: 10px 16px; }

/* ====== FESTA ====== */
.party {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pp {
  background: rgba(251, 247, 234, 0.85);
  border: 1px solid var(--line);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 8px;
  box-shadow: 0 12px 28px rgba(60,60,30,.06);
  backdrop-filter: blur(2px);
}
.icn { font-size: 28px; line-height: 1; }
.pp h3 { font-family: var(--font-display); font-weight: 500; font-size: 20px; color: var(--ink); line-height: 1.25; }
.pp p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }

/* ====== GALERIA ====== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 130px;
  gap: 10px;
}
.gi {
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 22px rgba(60,60,30,.08);
}
.gi::before {
  content: ""; position: absolute; top: -6px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 60px; height: 14px;
  background: rgba(231,207,148,.55);
  z-index: 2;
}
.gi.g-tall { grid-row: span 2; }
.gi.g-wide { grid-column: span 2; }
.gi .ph {
  width: 100%; height: 100%;
  background:
    repeating-linear-gradient(45deg, rgba(138,154,117,.12) 0 2px, transparent 2px 12px),
    linear-gradient(135deg, var(--bg-soft), var(--paper));
  display: grid; place-items: center;
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 13px; font-weight: 500; color: var(--ink-mut);
}

/* ====== INFO ====== */
.info {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
.ic {
  background: rgba(251, 247, 234, 0.85); border: 1px solid var(--line);
  padding: 18px 22px;
  display: flex; flex-direction: column; gap: 6px;
  box-shadow: 0 10px 24px rgba(60,60,30,.06);
  backdrop-filter: blur(2px);
}
.ic h3 { font-family: var(--font-display); font-weight: 500; font-size: 19px; color: var(--ink); line-height: 1.25; }
.ic p { font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.ic ul { list-style: none; display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.ic li { font-size: 13px; color: var(--ink-soft); padding: 6px 0; border-bottom: 1px dashed var(--line); line-height: 1.4; }
.ic li:last-child { border-bottom: 0; }
.ic strong { color: var(--ink); font-weight: 600; }

/* ====== FINALE ====== */
.finale {
  display: flex; align-items: flex-start; justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
}
.finale-deco {
  position: absolute;
  width: 420px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.78;
}
.finale-deco img { width: 100%; display: block; }
.finale-deco.tl {
  top: -120px; left: -180px;
  transform: rotate(200deg);
}
.finale-deco.br {
  bottom: -100px; right: -180px;
}
.finale-deco img { width: 100%; }
/* Finale text needs solid background behind it so it reads over aquarela */
.finale-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  padding: 50px 40px;
  background: rgba(251, 247, 234, 0.85);
  border: 1px solid var(--line);
  backdrop-filter: blur(2px);
}
.invite-text {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--ink-soft); line-height: 1.7;
  margin: 16px 0 20px;
}
.fbtns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin: 26px 0 14px; }
.rsvp-note {
  font-family: var(--font-sc);
  text-transform: uppercase; letter-spacing: 0.2em;
  font-size: 12px; font-weight: 500; color: var(--ink-mut);
  margin-top: 10px;
}

/* Ducks travel along centered frame */
.ducks {
  position: fixed;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%) translateX(calc(var(--duck-x, 0) * 1px));
  pointer-events: none;
  z-index: 35;
  transition: transform 1s var(--ease);
}
.duck-pair {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  filter: drop-shadow(0 8px 14px rgba(60,60,30,0.18));
  animation: bob 1.6s ease-in-out infinite alternate;
}
.duck {
  height: clamp(54px, 6.5vw, 74px);
  width: auto;
}
.duck.bride { transform: translateY(1px); }
.duck.groom { transform: translateY(0); }
@keyframes bob {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-3px); }
}
.feet .f {
  transform-origin: center top;
  animation: step 0.7s ease-in-out infinite alternate;
}
.feet .f2 { animation-delay: -0.35s; }
@keyframes step {
  0% { transform: translateY(0); }
  100% { transform: translateY(2px); }
}

/* ====== TWEAKS PANEL (removed — fonts/palette finalized) ====== */

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  :root { --frame-w: calc(100vw - 24px); --frame-pad: 12px; }
  .nav-links { display: none; }
  .menu { display: block; }
  .nav-inner { padding: 12px 0; }
  .brand img { height: 44px; }
  .music { bottom: 16px; left: 16px; padding: 8px 14px 8px 8px; }
  .music button { width: 34px; height: 34px; }
  .progress { bottom: 16px; }
  .plabel { display: none; }

  .scene { padding: 90px 20px 90px; }
  .names {
    font-size: clamp(34px, 10vw, 56px);
    white-space: normal;
    line-height: 1.05;
    max-width: 100%;
  }
  .title { font-size: clamp(36px, 9vw, 52px); }
  .countdown { gap: 10px; padding: 16px 18px; }
  .countdown strong { font-size: 30px; }
  .date  { font-size: 14px; letter-spacing: 0.14em; }
  .place { font-size: 13px; letter-spacing: 0.14em; }
  .cover-inner { padding: 0 16px; }

  .timeline { grid-template-columns: 1fr; gap: 16px; }
  .timeline::before { display: none; }
  .tl:nth-child(odd), .tl:nth-child(even) { margin: 0; }
  .cer-grid, .party, .info { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }

  .ducks { bottom: 70px; }
  .duck { width: 80px; height: 80px; }
  .cover-deco, .finale-deco { width: min(260px, 50vw); }
}

@media (prefers-reduced-motion: reduce) {
  .duck, .feet .f { animation: none; }
  .journey { scroll-behavior: auto; }
}

/* ============================================================
   AJUSTES — encaixe do último slide + legibilidade
   ============================================================ */

/* Último slide: nomes não podem vazar a caixa */
.finale .names {
  font-size: clamp(34px, 4.6vw, 60px);
  white-space: normal;
  line-height: 1.05;
}
.finale .mono { width: clamp(60px, 7vw, 78px); margin-bottom: 8px; }
.finale-inner {
  width: min(680px, 92vw);
  max-width: 92vw;
  padding: clamp(28px, 4vw, 46px) clamp(22px, 4vw, 44px);
}
.invite-text { font-size: clamp(17px, 2vw, 21px); margin: 14px 0 16px; }
.finale .date { margin-top: 4px; }

/* Legibilidade (públicos de todas as idades): corpo e cartões maiores */
.lead { font-size: clamp(16px, 1.8vw, 18px); }
.tl p, .cer-card p, .pp p, .ic p, .ic li { font-size: 15px; line-height: 1.55; }
.tl h3, .pp h3, .ic h3 { font-size: 20px; }
.cer-card h3 { font-size: 22px; }
.tl .yr { font-size: 28px; }
.rsvp-note { font-size: 13px; }

/* Altar floral no último slide — os patinhos chegam até ele */
.altar-deco {
  position: absolute;
  right: 4%;
  bottom: 52px;
  width: clamp(150px, 17vw, 220px);
  z-index: 1;
  opacity: 0.95;
  pointer-events: none;
}
.altar-deco .altar { width: 100%; height: auto; display: block; }
@media (max-width: 600px) {
  .altar-deco { right: 50%; transform: translateX(50%); bottom: 64px; width: 200px; opacity: 0.9; }
}
