/* ============================================================
   CHÁ DE BEBÊ DO DAVI — Stylesheet
   Paleta: creme, sálvia, amarelo manteiga, terracota, azul petróleo.
   Tipografia: Outfit (display) + DM Sans (body).
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  /* Colors */
  --cream: #FFF8EC;
  --cream-deep: #F5EDD8;
  --sage: #A8C5A0;
  --sage-light: #C5DEC0;
  --sage-dark: #7A9E70;
  --butter: #F4CF67;
  --butter-light: #FBE8A6;
  --butter-dark: #D4A832;
  --terracotta: #D77A61;
  --terracotta-light: #E8A490;
  --terracotta-dark: #B85A42;
  --petrol: #1B4D5C;
  --petrol-light: #2A6E80;
  --petrol-dark: #0F3038;
  --text: #1A1A18;
  --text-muted: #5C5C56;
  --text-light: #8A8A80;
  --white: #FFFDF7;
  --border: #E8E2D4;
  --shadow-color: 30 20% 10%;

  /* Typography */
  --font-display: 'Bricolage Grotesque', 'Outfit', system-ui, -apple-system, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;

  /* Sizing */
  --container: 1140px;
  --container-narrow: 680px;
  --nav-height: 68px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px hsl(var(--shadow-color) / 0.04);
  --shadow-sm: 0 2px 8px hsl(var(--shadow-color) / 0.06), 0 1px 2px hsl(var(--shadow-color) / 0.04);
  --shadow-md: 0 4px 16px hsl(var(--shadow-color) / 0.07), 0 2px 4px hsl(var(--shadow-color) / 0.04);
  --shadow-lg: 0 12px 32px hsl(var(--shadow-color) / 0.09), 0 4px 8px hsl(var(--shadow-color) / 0.04);
  --shadow-xl: 0 24px 48px hsl(var(--shadow-color) / 0.11), 0 8px 16px hsl(var(--shadow-color) / 0.05);

  /* Motion */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-height) + 16px); }
body {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ── Skip Link ──────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  padding: 0.4rem 0.8rem; background: var(--petrol); color: var(--white);
  border-radius: var(--r-sm); z-index: 1000; font-size: 0.85rem; font-weight: 500;
}
.skip-link:focus { top: 0.5rem; }

/* ── Container ──────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container);
  margin-inline: auto; padding-inline: clamp(1rem, 0.8rem + 2vw, 2rem);
}

/* ── Typography ─────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.6rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--petrol);
  margin-bottom: 1rem;
  text-wrap: balance;
}
.section-title--center { text-align: center; }
/* Decorative flourish — a little tchan under centered titles */
.section-title--center::after {
  content: "";
  display: block;
  width: 78px; height: 9px;
  margin: 1.1rem auto 0;
  background-image:
    linear-gradient(var(--terracotta-light), var(--terracotta-light)),
    radial-gradient(circle, var(--terracotta) 0 4px, transparent 4.5px);
  background-repeat: no-repeat;
  background-position: center, center;
  background-size: 100% 2px, 9px 9px;
}

/* Section eyebrow — same language as the hero eyebrow */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--terracotta-dark);
  background: rgba(215, 122, 97, 0.12);
  padding: 0.3rem 0.85rem; border-radius: var(--r-full);
  margin-bottom: 0.9rem;
}
.section-eyebrow--center {
  display: table;
  margin-left: auto; margin-right: auto;
}
.section-title code {
  font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.85em;
  font-weight: 600;
  color: var(--terracotta);
  background: rgba(215, 122, 97, 0.08);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.75rem;
  border-radius: var(--r-full); font-family: var(--font-display);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--butter); outline-offset: 3px; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--petrol); color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--petrol-dark); }

.btn--secondary {
  background: transparent; color: var(--petrol);
  border: 2px solid var(--petrol);
}
.btn--secondary:hover { background: var(--petrol); color: var(--white); transform: translateY(-2px); }

.btn--ghost {
  background: transparent; color: var(--petrol); padding: 0.6rem 1.2rem;
}
.btn--ghost:hover { background: rgba(27, 77, 92, 0.06); }

.btn--terracotta {
  background: var(--terracotta); color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--terracotta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--terracotta-dark); }

.btn--butter {
  background: var(--butter); color: var(--petrol-dark);
  box-shadow: var(--shadow-sm);
}
.btn--butter:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); background: var(--butter-dark); color: var(--white); }

.btn--small { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn--full { width: 100%; }

.btn__spinner { animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-height);
  background: rgba(255, 248, 236, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease);
}
.nav--hidden { transform: translateY(-100%); }

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--container); margin-inline: auto;
  padding: 0 clamp(1rem, 0.8rem + 2vw, 2rem);
  height: 100%;
}

.nav__logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.2rem; color: var(--petrol);
}
.nav__logo-icon { font-size: 1.5rem; }

.nav__toggle {
  display: flex; flex-direction: column; gap: 5px;
  padding: 0.5rem; z-index: 10;
}
.nav__toggle-line {
  display: block; width: 22px; height: 2px;
  background: var(--petrol); border-radius: 2px;
  transition: transform var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__menu {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 1rem; box-shadow: var(--shadow-lg);
}
.nav__menu--open { display: flex; flex-direction: column; gap: 0.25rem; }

.nav__link {
  display: block; padding: 0.6rem 0.75rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.9rem;
  color: var(--petrol); border-radius: var(--r-sm);
  transition: background var(--dur-fast) var(--ease);
}
.nav__link:hover { background: rgba(27, 77, 92, 0.06); }

@media (min-width: 768px) {
  .nav__toggle { display: none; }
  .nav__menu {
    display: flex !important; position: static; flex-direction: row;
    gap: 0.25rem; padding: 0; background: none; border: none; box-shadow: none;
  }
  .nav__link { padding: 0.5rem 0.75rem; }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 72dvh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: calc(var(--nav-height) + 3rem) clamp(1rem, 0.8rem + 2vw, 2rem) clamp(3rem, 2rem + 3vw, 5rem);
  overflow: hidden;
  background: linear-gradient(170deg, var(--cream) 0%, var(--cream-deep) 100%);
}

.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__shape { position: absolute; border-radius: 50%; opacity: 0.12; }
.hero__shape--1 {
  width: clamp(200px, 40vw, 500px); height: clamp(200px, 40vw, 500px);
  background: var(--butter); top: -8%; right: -12%;
  animation: float1 22s ease-in-out infinite;
}
.hero__shape--2 {
  width: clamp(140px, 25vw, 320px); height: clamp(140px, 25vw, 320px);
  background: var(--terracotta); bottom: 12%; left: -8%;
  animation: float2 28s ease-in-out infinite;
}
.hero__shape--3 {
  width: clamp(80px, 14vw, 180px); height: clamp(80px, 14vw, 180px);
  background: var(--sage); top: 35%; left: 10%;
  animation: float3 20s ease-in-out infinite; opacity: 0.08;
}

@keyframes float1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-20px, 30px) scale(1.05); }
  66% { transform: translate(15px, -20px) scale(0.95); }
}
@keyframes float2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -15px) scale(1.08); }
}
@keyframes float3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-15px, 20px); }
}

.hero__content {
  position: relative; z-index: 1; width: 100%;
  max-width: var(--container); margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center; text-align: center;
}
@media (min-width: 880px) {
  .hero__content {
    grid-template-columns: 1.15fr 0.85fr;
    text-align: left;
  }
}

@media (max-width: 879px) {
  /* Let the hero children participate directly in the single-column grid so
     the visual can sit right after the title on mobile. */
  .hero {
    padding-top: calc(var(--nav-height) + 1.4rem);
    padding-bottom: 2.2rem;
  }
  .hero__content { gap: 0.35rem; }
  .hero__copy { display: contents; }
  .hero__title {
    order: 1;
    margin-bottom: 0.4rem;
  }
  .hero__visual {
    order: 2;
    margin: 0 auto 0.1rem;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__visual::after {
    content: "O bebê que quase se chamou Winkler.";
    display: block;
    margin-top: 0.1rem;
    max-width: 16ch;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.68rem;
    line-height: 1.05;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-light);
  }
  .hero__subtitle { display: none; }
  .hero__text {
    order: 3;
    margin-bottom: 0.75rem;
  }
  .hero__meta {
    order: 4;
    margin-bottom: 0.9rem;
  }
  .hero__highlight {
    order: 5;
    margin-bottom: 0.9rem;
  }
}

.hero__copy { max-width: 60ch; }

/* Event meta chips — when / what time / where */
.hero__meta {
  list-style: none;
  display: flex; flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}
@media (min-width: 880px) {
  .hero__meta { justify-content: flex-start; }
}
.hero__meta-item {
  display: flex; align-items: center; gap: 0.6rem;
  padding: 0.45rem 1rem 0.45rem 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  box-shadow: var(--shadow-xs);
}
.hero__meta-icon {
  display: grid; place-items: center;
  width: 2rem; height: 2rem; flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage-light); color: var(--sage-dark);
}
.hero__meta-icon svg { width: 1rem; height: 1rem; }
.hero__meta-item:nth-child(2) .hero__meta-icon { background: var(--butter-light); color: var(--butter-dark); }
.hero__meta-item:nth-child(3) .hero__meta-icon { background: var(--terracotta-light); color: var(--terracotta-dark); }
.hero__meta-body { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.hero__meta-label {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--text-light);
}
.hero__meta-value {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600; color: var(--petrol);
}
@media (max-width: 559px) {
  .hero__meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
    width: 100%;
  }
  .hero__meta-item {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
  }
  .hero__meta-icon {
    width: 2.35rem;
    height: 2.35rem;
  }
  .hero__meta-value {
    font-size: 0.88rem;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.5rem + 4vw, 4.2rem);
  font-weight: 800; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--petrol);
  margin-bottom: 0.9rem;
}
.hero__title em {
  font-style: italic; color: var(--terracotta);
}

.hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.9rem + 0.55vw, 1.3rem);
  font-weight: 500; color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.hero__text {
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.1rem);
  color: var(--text-muted); max-width: 52ch;
  margin-bottom: 1.25rem;
}
@media (max-width: 879px) {
  .hero__text {
    margin-bottom: 0.9rem;
  }
}

.hero__highlight {
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 0.92rem + 0.4vw, 1.22rem);
  font-weight: 600; line-height: 1.4;
  color: var(--terracotta-dark);
  background: rgba(215, 122, 97, 0.09);
  padding: 0.8rem 1.1rem;
  border-radius: var(--r-md);
  margin-bottom: 1.6rem;
}
.hero__highlight strong { color: var(--terracotta); }
@media (max-width: 879px) {
  .hero__highlight {
    padding: 0.7rem 0.9rem;
    line-height: 1.25;
  }
}
@media (min-width: 880px) {
  .hero__highlight {
    border-left: 4px solid var(--terracotta);
    border-radius: 0 var(--r-md) var(--r-md) 0;
  }
}

/* Visual column: baby illustration framed on a soft medallion */
.hero__visual {
  position: relative;
  display: grid; place-items: center;
  min-height: clamp(280px, 34vw, 360px);
}
@media (min-width: 880px) {
  .hero__visual { min-height: auto; }
}

.hero__stage {
  position: relative;
  display: grid; place-items: center;
  width: clamp(240px, 30vw, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

/* ── Baby Davi illustration (Cameron Fitzwilliam, adapted) ── */
.hero__stage .full-baby-container {
  position: absolute; inset: 0;
  border-radius: 50%;
  overflow: hidden;
  /* Quilted mattress behind the baby */
  background-color: var(--sage-light);
  background-image:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0) 62%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='46' height='46' viewBox='0 0 46 46'%3E%3Cpath d='M0 0L46 46M46 0L0 46' stroke='%237A9E70' stroke-opacity='0.3' stroke-width='2'/%3E%3Ccircle cx='23' cy='23' r='2.6' fill='%237A9E70' fill-opacity='0.55'/%3E%3Ccircle cx='0' cy='0' r='2.6' fill='%237A9E70' fill-opacity='0.55'/%3E%3Ccircle cx='46' cy='0' r='2.6' fill='%237A9E70' fill-opacity='0.55'/%3E%3Ccircle cx='0' cy='46' r='2.6' fill='%237A9E70' fill-opacity='0.55'/%3E%3Ccircle cx='46' cy='46' r='2.6' fill='%237A9E70' fill-opacity='0.55'/%3E%3C/svg%3E");
  background-size: cover, 46px 46px;
  background-position: center, center;
  box-shadow: inset 0 0 0 5px var(--sage), inset 0 -12px 26px rgba(122, 158, 112, 0.35);
}
.hero__stage .baby-container {
  position: absolute;
  top: 50%; left: 50%;
  height: 530px; width: 220px;
  transform: translate(-50%, -50%) rotate(-39deg) scale(0.5);
  transform-origin: center center;
}
.hero__stage .towel {
  position: relative;
  top: 5%; height: 90%; width: 90%;
  background-color: #e8dcd8;
  margin: auto;
  border-radius: 500px;
  box-shadow: -25px -25px 0px rgba(0, 0, 0, 0.1);
  animation: towel-anim 1s linear infinite;
}
@keyframes towel-anim {
  0% { left: -4%; }
  50% { left: 4%; }
  100% { left: -4%; }
}
.hero__stage .towel-band {
  position: absolute;
  height: 30px; width: 100%;
  top: 60%;
  background: #cdd3d7;
  animation: towel-band-anim 1s linear infinite;
}
@keyframes towel-band-anim {
  0% { transform: rotateY(0deg) skewY(-30deg); top: 50%; }
  50% { transform: rotateY(0deg) skewY(-30deg); top: 54%; }
  100% { transform: rotateY(0deg) skewY(-30deg); top: 50%; }
}
.hero__stage .baby-face {
  position: absolute;
  height: 150px; width: 150px;
  background-color: #f9c19f;
  top: 10%; left: 17%;
  border-radius: 500px;
  animation: face-anim 1s linear infinite;
}
@keyframes face-anim {
  0% { left: 7%; transform: rotateY(0deg); }
  20% { transform: rotateY(10deg); }
  50% { left: 27%; transform: rotateY(0deg); }
  60% { transform: rotateY(10deg); }
  100% { left: 7%; transform: rotateY(0deg); }
}
.hero__stage .eyes {
  position: absolute;
  height: 150px; width: 150px;
  animation: eyes-anim 1s linear infinite;
}
@keyframes eyes-anim {
  0% { left: -8px; }
  50% { left: 12px; }
  100% { left: -8px; }
}
.hero__stage .eye {
  position: absolute;
  height: 20px; width: 20px;
  border-radius: 100%;
  background: #1b414c;
}
.hero__stage .left-eye { top: 35%; left: 18%; }
.hero__stage .right-eye { top: 35%; left: 68%; }
.hero__stage .mouth {
  position: absolute;
  height: 70px; width: 70px;
  top: 55%; left: 35%;
}
.hero__stage .right-mouth-part {
  position: absolute;
  height: 35px; width: 50%;
  background: #7e2e33;
  margin: auto; float: left;
  top: 3px; left: 31px;
  transform: skewY(14deg) rotate(-13deg);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%;
  animation: right-mouth 0.3s linear infinite;
}
@keyframes right-mouth {
  0% { height: 30px; width: 41%; top: 7px; left: 15px;
       transform: skewY(11deg) rotate(-15deg);
       border-top-left-radius: 0%; border-bottom-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; }
  50% { height: 40px; width: 62%; top: -3px; left: 18px;
        transform: skewY(-11deg) rotate(-11deg);
        border-top-left-radius: 22%; border-bottom-left-radius: 102%; border-top-right-radius: 100%; border-bottom-right-radius: 70%; }
  100% { height: 30px; width: 41%; top: 7px; left: 15px;
         transform: skewY(11deg) rotate(-11deg);
         border-top-left-radius: 0%; border-bottom-left-radius: 100%; border-top-right-radius: 100%; border-bottom-right-radius: 100%; }
}
.hero__stage .left-mouth-part {
  position: absolute;
  height: 30px; width: 50%;
  background: #7e2e33;
  margin: auto; float: left;
  left: 10px;
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  animation: left-mouth 0.3s linear infinite;
}
@keyframes left-mouth {
  0% { top: 6px; left: -3px; transform: skewY(11deg) rotate(-11deg); border-radius: 100%; }
  50% { height: 31px; width: 61%; top: 3px; left: -11px;
        transform: skewY(8deg) rotate(-7deg);
        border-top-left-radius: 100%; border-bottom-left-radius: 67%; border-top-right-radius: 100%; border-bottom-right-radius: 5%; }
  100% { top: 6px; left: -3px; transform: skewY(11deg) rotate(-11deg); border-radius: 100%; }
}
.hero__stage .mouth-tongue {
  position: absolute;
  height: 22px; width: 16px;
  background-color: #ed5c56;
  left: 15px; top: 14px;
  border-top-left-radius: 100%;
  border-top-right-radius: 100%;
  border-bottom-left-radius: 40%;
  border-bottom-right-radius: 30%;
  animation: mouth-tongue-anim 0.3s linear infinite;
}
@keyframes mouth-tongue-anim {
  0% { top: 13px; transform: skew(0deg);
       border-top-left-radius: 50%; border-bottom-left-radius: 0%; border-top-right-radius: 100%; border-bottom-right-radius: 0%; }
  50% { top: 14px; transform: skew(-12deg);
        border-top-left-radius: 100%; border-bottom-left-radius: 0%; border-top-right-radius: 50%; border-bottom-right-radius: 0%; }
  100% { top: 13px; transform: skew(0deg);
         border-top-left-radius: 50%; border-bottom-left-radius: 0%; border-top-right-radius: 100%; border-bottom-right-radius: 0%; }
}
.hero__stage .chin {
  position: absolute;
  width: 30px; height: 12px;
  background-color: #f9c19f;
  top: 77%; right: 40%;
  border-radius: 100%;
}
.hero__stage .hair-container {
  position: relative;
  top: -430px;
  transform: rotate(0deg);
  animation: hair-anim 1s linear infinite;
}
@keyframes hair-anim {
  0% { left: -25px; transform: rotateY(0deg); }
  10% { transform: rotateY(0deg); }
  50% { left: 23px; transform: rotateY(0deg); }
  60% { transform: rotateY(0deg); }
  100% { left: -25px; transform: rotateY(0deg); }
}
.hero__stage .panel-container {
  position: absolute;
  width: 100%; height: 10px;
  margin: 0;
  left: -1%; top: 9.1%;
  transform: perspective(1500px) skew(-29deg) rotate(-9deg);
}
.hero__stage #rotate-x .panel {
  width: 87px; height: 100%;
  min-height: 42px; margin: auto;
  background: #f5a11c;
  background-size: 100%;
  transform: perspective(2329px) rotateX(-45deg) translate3d(0px, 0px, 0px);
  border-top-left-radius: 1258px;
  border-top-right-radius: 1258px;
  border-bottom-left-radius: 124px;
  border-bottom-right-radius: 127px;
}
.hero__stage .flick-down {
  position: absolute;
  height: 30px; width: 87px;
  background-color: #f5a11c;
  left: 31%; top: 168%;
  transform: skew(-2deg);
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%;
  border-top-left-radius: 67%;
  border-top-right-radius: 67%;
}
.hero__stage .flick-up {
  position: absolute;
  height: 11px; width: 52px;
  background-color: #f5a11c;
  left: 56%; top: 198%;
  transform: skew(-37deg) rotate(20deg);
  border-top-right-radius: 100%;
}
.hero__stage .flick-up-2 {
  position: absolute;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 48px 19px 16px;
  border-color: transparent transparent #f5a11c transparent;
  right: 16%; top: 230%;
  transform: rotate(180deg) skew(217deg);
}
.hero__stage .flick-up-2-round {
  position: absolute;
  height: 9px; width: 41px;
  background-color: #f5a11c;
  left: 62%; top: 277%;
  border-radius: 100%;
  transform: rotate(29deg);
}

.hero__sticker {
  position: absolute; z-index: 3;
  top: 4%; right: -3%;
  transform: rotate(7deg);
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 700;
  color: var(--petrol-dark);
  background: var(--butter);
  padding: 0.4rem 0.9rem;
  border-radius: var(--r-full);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════════════════ */
/* TITANIC CSS PUN ILLUSTRATION (SVG)                       */
/* ══════════════════════════════════════════════════════════ */
.titanic-scene {
  position: relative;
  width: clamp(160px, 28vw, 240px);
  flex-shrink: 0;
  overflow: hidden;
}
.titanic-svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Ship rocks side to side like the original */
.titanic-ship-grp {
  animation: titanicRock 3s ease-in-out infinite;
  transform-origin: center center;
}

/* Iceberg bobs subtly */
.titanic-iceberg {
  animation: icebergBob 3s ease-in-out infinite;
  transform-origin: center center;
}

/* Wave background slides right */
.titanic-wave-bg {
  animation: waveSlideBg 3s linear infinite;
}

/* Wave foreground slides left */
.titanic-wave-fg {
  animation: waveSlideFg 3s linear infinite;
}

/* CSS pun caption — centered below badge */
.titanic-pun {
  text-align: center;
  margin-top: 0.1rem;
  font-size: clamp(0.3rem, 0.8vw, 0.45rem);
  font-family: var(--font-mono, "Courier New", monospace);
  color: var(--terracotta);
  opacity: 0.5;
  line-height: 1.1;
  letter-spacing: -0.03em;
  width: 100%;
}
.titanic-pun code {
  background: transparent;
  padding: 0;
  font-size: inherit;
  color: inherit;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}

/* Rocking animation — matches original GSAP tween */
@keyframes titanicRock {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(-10deg); }
}

/* Subtle iceberg bob */
@keyframes icebergBob {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(2deg); }
}

/* Wave slide animations — opposite directions like original GSAP */
@keyframes waveSlideBg {
  from { transform: translateX(-323.766px); }
  to { transform: translateX(0); }
}
@keyframes waveSlideFg {
  from { transform: translateX(0); }
  to { transform: translateX(-323.766px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .titanic-ship-grp,
  .titanic-iceberg,
  .titanic-wave-bg,
  .titanic-wave-fg {
    animation: none !important;
  }
  .titanic-pun { opacity: 0.7; }
}

.hero__ctas {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-top: 0;
}
@media (min-width: 880px) {
  .hero__ctas { justify-content: flex-start; }
}

/* ── SECTION: VERDADE ───────────────────────────────────── */
.verdade {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: #FFF4EA;
}

.verdade__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .verdade__grid { grid-template-columns: 1.2fr 0.8fr; gap: 3rem; }
}

.verdade__text {
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.08rem);
  color: var(--text-muted); margin-bottom: 1.25rem;
  max-width: 60ch;
}

.verdade__quote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 0.95rem + 0.4vw, 1.2rem);
  font-weight: 600; font-style: italic; color: var(--terracotta);
  border-left: 3px solid var(--terracotta);
  padding-left: 1.25rem; margin-top: 1.5rem;
}

.verdade__visual {
  display: flex; justify-content: center; align-items: center;
}
.verdade__illustration { color: var(--petrol); opacity: 0.6; }
.verdade__illustration svg { width: clamp(200px, 35vw, 280px); height: auto; }

/* ── SECTION: COUNTDOWN ─────────────────────────────────── */
.countdown-section {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: var(--cream);
}
.countdown-section__text {
  text-align: center; color: var(--text-muted);
  max-width: 50ch; margin-inline: auto; margin-bottom: 2rem;
}

.countdown {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(0.5rem, 1vw, 1.5rem);
  padding: 2rem 1.5rem;
  background: var(--petrol); border-radius: var(--r-xl);
  color: var(--white); box-shadow: var(--shadow-xl);
  max-width: 520px; margin-inline: auto;
}

.countdown__unit {
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  min-width: clamp(50px, 12vw, 80px);
}

.countdown__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.2rem);
  font-weight: 800; line-height: 1; color: var(--butter);
}

.countdown__label {
  font-size: 0.7rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; opacity: 0.7;
}

.countdown__sep {
  font-family: var(--font-display); font-size: clamp(1.5rem, 1rem + 1.5vw, 2.5rem);
  font-weight: 300; opacity: 0.4; margin-top: -1rem;
}

.countdown-section__note {
  text-align: center; font-size: 0.85rem; font-style: italic;
  color: var(--text-light); margin-top: 1.25rem;
  max-width: 50ch; margin-inline: auto;
}

/* ── SECTION: RSVP ──────────────────────────────────────── */
.rsvp-section {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: var(--white);
}
.rsvp__container { max-width: var(--container-narrow); }
.rsvp-section__text {
  text-align: center; color: var(--text-muted);
  max-width: 50ch; margin-inline: auto; margin-bottom: 2rem;
}

.rsvp-form { margin-top: 0; }

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block; font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600;
  color: var(--petrol); margin-bottom: 0.4rem;
}

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.7rem 1rem;
  border: 2px solid var(--border); border-radius: var(--r-md);
  background: var(--cream); font-size: 0.95rem;
  transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--petrol);
  box-shadow: 0 0 0 3px rgba(27, 77, 92, 0.12);
}
.form-input--error { border-color: var(--terracotta); }
.form-textarea { resize: vertical; min-height: 80px; }

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231B4D5C' 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 0.75rem center;
  padding-right: 2.5rem;
}

.form-radio-group { display: flex; flex-direction: column; gap: 0.5rem; }

.form-radio {
  display: flex; align-items: center; gap: 0.6rem;
  cursor: pointer; padding: 0.5rem 0.75rem;
  border-radius: var(--r-sm); transition: background var(--dur-fast) var(--ease);
}
.form-radio:hover { background: rgba(27, 77, 92, 0.03); }

.form-radio__custom {
  width: 20px; height: 20px; border: 2px solid var(--border);
  border-radius: 50%; display: block; position: relative;
  transition: border-color var(--dur-fast) var(--ease); flex-shrink: 0;
}
.form-radio input:checked + .form-radio__custom { border-color: var(--petrol); }
.form-radio input:checked + .form-radio__custom::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); width: 10px; height: 10px;
  background: var(--petrol); border-radius: 50%;
}
.form-radio input:focus-visible + .form-radio__custom {
  outline: 3px solid var(--butter); outline-offset: 2px;
}
.form-radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.form-radio__label { font-size: 0.9rem; }

.form-error {
  display: block; font-size: 0.78rem; color: var(--terracotta);
  margin-top: 0.3rem; min-height: 1em;
}

.rsvp-success {
  text-align: center; padding: 2.5rem 1rem;
  animation: fadeUp 0.5s var(--ease);
}
.rsvp-success__icon { color: var(--sage-dark); margin-bottom: 1rem; }
.rsvp-success__title {
  font-family: var(--font-display); font-size: 1.4rem;
  font-weight: 700; color: var(--petrol); margin-bottom: 0.5rem;
}
.rsvp-success__text { color: var(--text-muted); }

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

/* ── SECTION: PRESENTES / PIX ───────────────────────────── */
.presentes {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: var(--cream);
}
.presentes__text {
  text-align: center; color: var(--text-muted);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.15rem);
  max-width: 54ch; margin-inline: auto; margin-bottom: 0.5rem;
  text-wrap: balance;
}
.presentes__subtext {
  text-align: center; color: var(--text-muted);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.15rem);
  max-width: 56ch; margin-inline: auto; margin-bottom: 2.5rem;
  text-wrap: balance;
}

/* Featured free-value contribution block */
.presente-livre {
  margin-top: 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.95rem 1.25rem;
  padding: clamp(1.35rem, 1.15rem + 1.2vw, 2rem) clamp(1.35rem, 1rem + 1.5vw, 2rem);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.14), transparent 36%),
    radial-gradient(circle at 92% 12%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(135deg, #d26c50 0%, var(--terracotta-dark) 100%);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 22px 48px rgba(215, 122, 97, 0.22), var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  text-decoration: none;
  overflow: hidden;
}
.presente-livre::before {
  content: '';
  position: absolute; inset: auto -24px -28px auto;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.presente-livre:hover {
  transform: translateY(-3px);
  box-shadow: 0 26px 56px rgba(215, 122, 97, 0.28), var(--shadow-xl);
  border-color: rgba(255, 255, 255, 0.18);
}
.presente-livre:focus-visible { outline: 3px solid var(--petrol); outline-offset: 3px; }
.presente-livre__icon {
  display: grid; place-items: center;
  width: 76px; height: 76px; flex-shrink: 0;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 10px 24px rgba(107, 47, 27, 0.16);
  backdrop-filter: blur(4px);
}
.presente-livre__body { min-width: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.presente-livre__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.28rem 0.7rem;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.presente-livre__title {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.9rem + 0.95vw, 1.55rem);
  font-weight: 800; line-height: 1.1; margin-bottom: 0;
}
.presente-livre__desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem; line-height: 1.55;
  max-width: 42ch;
}
.presente-livre__cta {
  display: inline-flex; align-items: center; gap: 0.45rem;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.94); color: var(--terracotta-dark);
  padding: 0.8rem 1.35rem; border-radius: var(--r-full);
  box-shadow: 0 12px 24px rgba(107, 47, 27, 0.14);
  white-space: nowrap;
}
@media (max-width: 640px) {
  .presente-livre {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 0.8rem;
    text-align: center;
    padding: 1.4rem 1.25rem 1.25rem;
  }
  .presente-livre__icon {
    justify-self: center;
    width: 68px;
    height: 68px;
    border-radius: 22px;
  }
  .presente-livre__body { align-items: center; }
  .presente-livre__eyebrow { margin-inline: auto; }
  .presente-livre__title {
    font-size: 1.2rem;
    line-height: 1.15;
  }
  .presente-livre__desc {
    font-size: 0.88rem;
    line-height: 1.45;
    max-width: 26ch;
  }
  .presente-livre__cta {
    justify-self: stretch;
    justify-content: center;
    margin-top: 0.1rem;
  }
}

.presentes__grid {
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 540px) { .presentes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .presentes__grid { grid-template-columns: repeat(3, 1fr); } }

.presente-card {
  position: relative; padding: 1.5rem;
  background: var(--white); border: 2px solid var(--border);
  border-radius: var(--r-lg); cursor: pointer;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.presente-card:hover {
  transform: translateY(-4px); border-color: var(--petrol);
  box-shadow: var(--shadow-lg);
}
.presente-card:focus-visible { outline: 3px solid var(--butter); outline-offset: 3px; }

.presente-card__illust {
  width: 64px; height: 64px;
  margin: 0 auto 0.5rem;
  display: block;
  transition: transform var(--dur-fast) var(--ease);
}
.presente-card:hover .presente-card__illust { transform: scale(1.1) rotate(-2deg); }

.presente-card__name {
  font-family: var(--font-display); font-size: 0.95rem;
  font-weight: 700; color: var(--petrol);
  text-align: center;
  min-height: 2.7rem;
  display: flex; align-items: center; justify-content: center;
}

.presente-card__value {
  font-family: var(--font-display); font-size: clamp(1.4rem, 1.2rem + 1vw, 1.8rem);
  font-weight: 800; color: var(--terracotta); line-height: 1;
  text-align: center;
}
.presente-card__value--livre {
  font-size: 1rem; color: var(--petrol);
}

.presente-card__desc {
  font-size: 0.85rem; color: var(--text-muted);
  line-height: 1.55; flex-grow: 1;
  text-align: center;
}

.presente-card__cta {
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  color: var(--petrol); display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  margin-top: auto;
}
.presente-card__cta svg { transition: transform var(--dur-fast) var(--ease); }
.presente-card:hover .presente-card__cta svg { transform: translateX(3px); }

/* ── SECTION: CUSTOM VALUE ──────────────────────────────── */
.custom-value {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: var(--white);
}
.custom-value__container { max-width: 480px; }

.custom-value__card {
  background: var(--cream); border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border: 1px solid var(--border);
}

.custom-value__title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  font-weight: 700; color: var(--petrol); margin-bottom: 0.5rem;
}

.custom-value__text {
  color: var(--text-muted); margin-bottom: 1.5rem;
  font-size: 0.92rem;
}

.custom-value__note {
  text-align: center; font-size: 0.85rem; font-style: italic;
  color: var(--sage-dark); margin-top: 1rem;
  animation: fadeUp 0.4s var(--ease);
}

/* ── SECTION: WINKLER ───────────────────────────────────── */
.winkler {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: var(--cream);
}

.winkler__grid {
  display: grid; grid-template-columns: 1fr; gap: 2.5rem;
  align-items: start;
}
@media (min-width: 768px) {
  .winkler__grid { grid-template-columns: 1.3fr 0.7fr; gap: 3rem; }
}

.winkler__text {
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.08rem);
  color: var(--text-muted); margin-bottom: 1rem; max-width: 55ch;
}
.winkler__text--emphasis em {
  font-family: var(--font-display); font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.2rem);
  font-weight: 700; color: var(--terracotta); font-style: italic;
}

.winkler__table-wrap {
  background: var(--white); border-radius: var(--r-lg);
  border: 1px solid var(--border); overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.winkler__table {
  width: 100%; border-collapse: collapse;
}
.winkler__table td {
  padding: 0.75rem 1.25rem; font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.winkler__table tr:last-child td { border-bottom: none; }

.winkler__table-label {
  font-weight: 500; color: var(--text-muted);
  white-space: nowrap;
}
.winkler__table-value {
  font-family: var(--font-display); font-weight: 600; color: var(--petrol);
  text-align: right;
}
.winkler__table-value--struck {
  text-decoration: line-through; color: var(--text-light); opacity: 0.6;
}
.winkler__table-value--win { color: var(--sage-dark); }

/* --- Winkler Lion Mascot + reproved seal --- */
.winkler__mascot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin-top: 3rem;
}

.winkler__seal {
  width: clamp(120px, 18vw, 170px);
  height: auto;
  color: var(--terracotta);
  opacity: 0.78;
  transform: rotate(-6deg);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease), opacity var(--dur-base) var(--ease);
}
.winkler__seal:hover {
  transform: rotate(-3deg) scale(1.04);
  opacity: 0.92;
}

/* --- Winkler Lion (original Mr. CSS Lion by Pandalion) --- */
.winkler__lion {
  text-align: center;
  flex-shrink: 0;
}

/* Original CodePen: thepandalion/pen/nNdBJr */
.winkler__lion .lion {
  width: 250px;
  height: 300px;
  position: relative;
  margin: 0 auto;
}
.winkler__lion .lion span {
  position: absolute;
}
.winkler__lion .lion .head {
  width: 140px;
  height: 105px;
  top: 50px;
  z-index: 2;
  background-color: #f5cd88;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.winkler__lion .lion .eye {
  width: 15px;
  height: 22px;
  top: 30px;
  z-index: 2;
  background-color: #604f31;
  border: solid 10px #fbebcf;
  border-radius: 50%;
  animation: lionBlink 8s infinite;
}
.winkler__lion .lion .eye.left { left: 10px; }
.winkler__lion .lion .eye.right { right: 10px; }
.winkler__lion .lion .nose {
  width: 18px;
  height: 12px;
  top: 70px;
  z-index: 2;
  background-color: #604f31;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.winkler__lion .lion .mane {
  width: 219px;
  height: 180px;
  top: 0;
  z-index: 1;
  background-color: #ed8641;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  animation: lionHeadTilt 6s infinite;
}
.winkler__lion .lion .mane:before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  bottom: -54px;
  left: 60px;
  border: 50px solid transparent;
  border-top: 100px solid #ed8641;
  border-bottom: 0;
  transform: scaleX(1.9);
}
.winkler__lion .lion .mane:after {
  content: "";
  display: block;
  position: absolute;
  width: 140px;
  height: 105px;
  bottom: 15px;
  left: 40px;
  background-color: #eb772a;
  border-radius: 50%;
}
.winkler__lion .lion .ear {
  width: 60px;
  height: 60px;
  top: 18px;
  z-index: 2;
  background-color: #f5cd88;
  border-radius: 60px;
}
.winkler__lion .lion .ear.left { left: -15px; }
.winkler__lion .lion .ear.right { right: -15px; }
.winkler__lion .lion .ear .inner {
  width: 39.6px;
  height: 39.6px;
  background-color: #fbebcf;
  border-radius: 39.6px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.winkler__lion .lion .ear:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: -30px;
  border: 15px solid transparent;
  border-bottom: 30px solid #ed8641;
  border-top: 0;
  transform: scaleX(1.5);
}
.winkler__lion .lion .ear.left:before {
  left: 60px;
  transform: scaleX(1.5) rotate(-20deg);
}
.winkler__lion .lion .ear.right:before {
  right: 120px;
  top: -35px;
  transform: scaleX(1.5) rotate(20deg);
}
.winkler__lion .lion .body {
  width: 120px;
  height: 260px;
  top: 30px;
  background-color: #f5cd88;
  border-radius: 40px;
  left: 50%;
  transform: translateX(-50%);
}
.winkler__lion .lion .body:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 200px;
  left: 20px;
  top: 40px;
  background-color: #fbebcf;
  border-radius: 40px;
}
.winkler__lion .lion .tail {
  font-size: 150px;
  right: 0;
  top: 160px;
  color: #f5cd88;
  transform: rotate(20deg);
  animation: lionSway 2s linear alternate infinite;
  transform-origin: 20px 80px;
}
.winkler__lion .lion .tail:after {
  content: "w";
  position: absolute;
  top: 49px;
  left: 43px;
  font-size: 40px;
  font-weight: 700;
  color: #ed8641;
  transform: rotate(110deg);
}
.winkler__lion .lion .leg {
  width: 50px;
  height: 100px;
  bottom: -30px;
  z-index: -1;
  background-color: #f5cd88;
  border-radius: 15px;
}
.winkler__lion .lion .leg.left { left: 0; }
.winkler__lion .lion .leg.right { right: 0; }
.winkler__lion .lion .leg:after {
  content: "m";
  display: block;
  position: absolute;
  font-size: 30px;
  bottom: -3px;
  color: #fbebcf;
  left: 50%;
  transform: translateX(-50%);
}
.winkler__lion .lion .paw {
  width: 60px;
  height: 35px;
  top: 133px;
  background-color: #f5cd88;
  border-radius: 15px;
}
.winkler__lion .lion .paw.left { left: -35px; }
.winkler__lion .lion .paw.left:after { left: 5px; }
.winkler__lion .lion .paw.right {
  right: -35px;
  animation: lionWave 0.5s 5s linear 3;
}
.winkler__lion .lion .paw.right:after { right: 5px; }
.winkler__lion .lion .paw:after {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  width: 20px;
  height: 20px;
  background-color: #fbebcf;
  border-radius: 20px;
}

/* Lion animation keyframes */
@keyframes lionBlink {
  0%, 50% { transform: scaleY(1); }
  51% { transform: scaleY(0.1); }
  52% { transform: scaleY(1); }
  100% { transform: scaleY(1); }
}
@keyframes lionHeadTilt {
  0% { transform: translateX(-50%) rotate(0deg); }
  50% { transform: translateX(-50%) rotate(-5deg); }
  100% { transform: translateX(-50%) rotate(0deg); }
}
@keyframes lionSway {
  from { transform: rotate(20deg); }
  to { transform: rotate(40deg); }
}
@keyframes lionWave {
  0% { transform: rotate(0deg); }
  50% { transform: rotate(-30deg); }
  100% { transform: rotate(0deg); }
}

/* ── Editorial copy system ─────────────────────────────── */
.hero__text {
  position: relative;
  max-width: 52ch;
  margin-bottom: 1.5rem;
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.85rem + 0.4vw, 1.08rem);
  font-weight: 450;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(232, 226, 212, 0.9);
  border-left: 4px solid var(--sage);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  box-shadow: var(--shadow-sm);
}
.hero__text strong {
  color: var(--petrol);
  font-weight: 700;
}

.verdade__text:first-of-type,
.winkler__text:first-of-type {
  padding-left: 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 0.94rem + 0.35vw, 1.14rem);
  font-weight: 550;
  line-height: 1.65;
  color: var(--petrol);
  border-left: 3px solid var(--butter);
}

.verdade__text:nth-of-type(2) {
  padding: 1rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.65;
  color: var(--petrol);
  background: rgba(255, 253, 247, 0.62);
  border: 1px solid rgba(215, 122, 97, 0.18);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}

.presentes__text,
.presentes__subtext,
.donation-animated__text,
.rsvp-section__text,
.mural__text,
.countdown-section__text {
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.65;
  color: var(--petrol);
  background: linear-gradient(135deg, rgba(244, 207, 103, 0.13), rgba(168, 197, 160, 0.12));
  border: 1px solid rgba(232, 226, 212, 0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xs);
}

.cta-section__text {
  padding: 1rem 1.15rem;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.65;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: var(--r-lg);
  background: rgba(255, 253, 247, 0.06);
}

/* ── SECTION: INFO ──────────────────────────────────────── */
.info-section {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: var(--white);
}

.info-grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 540px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .info-grid { grid-template-columns: repeat(3, 1fr); } }

.info-card {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 1.25rem; background: var(--cream);
  border-radius: var(--r-md); border: 1px solid var(--border);
  transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.info-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.info-card--wide {
  grid-column: 1 / -1;
}
@media (min-width: 540px) {
  .info-card--wide { grid-column: auto; }
}
@media (min-width: 768px) {
  .info-card--wide { grid-column: span 1; }
}

.info-card__icon {
  flex-shrink: 0; color: var(--terracotta);
  padding: 0.4rem; background: rgba(215, 122, 97, 0.1);
  border-radius: var(--r-sm);
}

.info-card__title {
  font-family: var(--font-display); font-size: 0.8rem;
  font-weight: 600; color: var(--petrol); margin-bottom: 2px;
}

.info-card__text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* ── SECTION: MURAL ─────────────────────────────────────── */
.mural {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: var(--cream);
}
.mural__text {
  text-align: center; color: var(--text-muted);
  max-width: 55ch; margin-inline: auto; margin-bottom: 2rem;
}

.mural-form {
  max-width: 500px; margin-inline: auto; margin-bottom: 2.5rem;
  background: var(--white); padding: 1.5rem;
  border-radius: var(--r-lg); border: 1px solid var(--border);
}
.mural-form__row { margin-bottom: 0; }
.mural-form .form-group { margin-bottom: 1rem; }
.mural-form .form-group:last-of-type { margin-bottom: 1.25rem; }

.mural-success {
  text-align: center; font-size: 0.88rem; font-style: italic;
  color: var(--sage-dark); margin-bottom: 2rem;
  animation: fadeUp 0.4s var(--ease);
}

.mural__grid {
  display: grid; grid-template-columns: 1fr; gap: 1rem;
}
@media (min-width: 640px) { .mural__grid { grid-template-columns: repeat(2, 1fr); } }

.mural-card {
  padding: 1.25rem; background: var(--white);
  border-radius: var(--r-md); border: 1px solid var(--border);
  transition: transform var(--dur-fast) var(--ease);
}
.mural-card:hover { transform: translateY(-2px); }

.mural-card__text {
  font-size: 0.9rem; line-height: 1.6; color: var(--text);
  margin-bottom: 0.75rem; font-style: italic;
}

.mural-card__author {
  font-family: var(--font-display); font-size: 0.78rem;
  font-weight: 600; color: var(--petrol);
}

@keyframes buttonBounce {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

/* ── SECTION: CTA FINAL ─────────────────────────────────── */
.cta-section {
  position: relative;
  padding: clamp(4rem, 3rem + 5vw, 7rem) 0;
  background: var(--petrol);
  color: var(--white);
}
.cta__container { text-align: center; }
.cta-section .section-eyebrow {
  background: rgba(255, 253, 247, 0.12);
  color: rgba(255, 253, 247, 0.75);
}
.cta-section .section-title {
  color: var(--white);
}
.cta-section__text {
  color: rgba(255, 253, 247, 0.75);
  max-width: 52ch; margin-inline: auto; margin-bottom: 1.5rem;
  font-size: clamp(0.95rem, 0.88rem + 0.3vw, 1.08rem);
}
.cta-section__final {
  text-align: center; font-size: 0.88rem;
  color: rgba(255, 253, 247, 0.5); max-width: 50ch; margin-inline: auto;
  font-style: italic;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 2rem 0;
  background: var(--petrol-dark); color: rgba(255, 253, 247, 0.7);
}
.footer__inner { text-align: center; }

.footer__text {
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 600; margin-bottom: 0.3rem; color: var(--white);
}
.footer__subtext {
  font-size: 0.82rem; margin-bottom: 0.3rem; opacity: 0.7;
}
.footer__small {
  font-size: 0.75rem; opacity: 0.5; margin-bottom: 1rem;
}
.footer__top {
  font-family: var(--font-display); font-size: 0.75rem;
  font-weight: 600; opacity: 0.5;
  transition: opacity var(--dur-fast) var(--ease);
}
.footer__top:hover { opacity: 1; }

/* ── Floating Button (mobile) ───────────────────────────── */
.floating-btn {
  position: fixed; bottom: 1.25rem; right: 1.25rem;
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  background: var(--terracotta); color: var(--white);
  border-radius: var(--r-full); font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600; box-shadow: var(--shadow-lg);
  z-index: 50; transition: transform var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease);
}
.floating-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-xl); }

@media (min-width: 768px) { .floating-btn { display: none; } }

/* ── MODAL ──────────────────────────────────────────────── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  background: rgba(26, 26, 24, 0.5);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease), visibility var(--dur-base) var(--ease);
}
.modal-overlay--open { opacity: 1; visibility: visible; }
.modal-overlay[hidden] { display: none; }

.modal {
  background: var(--white); border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl); max-width: 420px; width: 100%;
  max-height: 90vh; overflow-y: auto;
  padding: 1.75rem; position: relative;
  transform: scale(0.95) translateY(10px);
  transition: transform var(--dur-slow) var(--ease);
}
.modal-overlay--open .modal { transform: scale(1) translateY(0); }

.modal__close {
  position: absolute; top: 0.75rem; right: 0.75rem;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background var(--dur-fast) var(--ease);
}
.modal__close:hover { background: rgba(26, 26, 24, 0.06); }

.modal__title {
  font-family: var(--font-display); font-size: 1.2rem;
  font-weight: 700; color: var(--petrol); margin-bottom: 0.4rem;
  text-align: center;
}

.modal__description {
  font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem;
  text-align: center;
}

.modal__value {
  font-family: var(--font-display); font-size: clamp(1.8rem, 1.4rem + 1.5vw, 2.4rem);
  font-weight: 800; color: var(--terracotta); margin-bottom: 1rem;
  text-align: center;
}

.modal__qr {
  display: flex; justify-content: center; margin-bottom: 1rem;
}
.modal__qr canvas, .modal__qr img {
  border-radius: var(--r-md); border: 4px solid var(--cream);
}

.modal__pix-info {
  display: flex; flex-direction: column; gap: 0.5rem;
  padding: 1rem; background: var(--cream);
  border-radius: var(--r-md); margin-bottom: 1rem;
}

.modal__pix-key { display: flex; flex-direction: column; gap: 2px; }
.modal__pix-label { font-size: 0.75rem; font-weight: 600; color: var(--petrol); }
.modal__pix-value {
  font-size: 0.72rem; color: var(--text-muted);
  word-break: break-all; font-family: 'SF Mono', 'Fira Code', 'Cascadia Code', monospace;
}

.modal__toast {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.8rem; background: var(--sage-dark);
  color: var(--white); border-radius: var(--r-sm);
  font-size: 0.78rem; font-weight: 600;
  animation: toastIn 0.3s var(--ease);
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal__note {
  font-size: 0.75rem; color: var(--text-light);
  text-align: center; font-style: italic;
}

/* ══════════════════════════════════════════════════════════
   DELIGHT LAYER - Animations, Illustrations, Micro-interactions
   ══════════════════════════════════════════════════════════ */

/* ── Scroll Reveal ──────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.08s; }
.reveal--delay-2 { transition-delay: 0.16s; }
.reveal--delay-3 { transition-delay: 0.24s; }
.reveal--delay-4 { transition-delay: 0.32s; }

/* ── Hero Entrance Animations ───────────────────────────── */
.hero__copy > *, .hero__visual {
  opacity: 0;
  transform: translateY(20px);
  animation: heroEnter 0.7s var(--ease) forwards;
}
.hero__copy > *:nth-child(1) { animation-delay: 0.1s; }
.hero__copy > *:nth-child(2) { animation-delay: 0.2s; }
.hero__copy > *:nth-child(3) { animation-delay: 0.3s; }
.hero__copy > *:nth-child(4) { animation-delay: 0.4s; }
.hero__copy > *:nth-child(5) { animation-delay: 0.5s; }
.hero__copy > *:nth-child(6) { animation-delay: 0.6s; }
.hero__visual { animation-delay: 0.45s; }

@keyframes heroEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Floating Baby Items (Hero) ─────────────────────────── */
.hero__floaters {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
  z-index: 0;
}
.hero__floater {
  position: absolute;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0.15;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.hero__floater--1 {
  top: 12%; left: 8%;
  animation: floater1 18s ease-in-out infinite;
}
.hero__floater--2 {
  top: 20%; right: 10%;
  animation: floater2 22s ease-in-out infinite;
  animation-delay: -4s;
}
.hero__floater--3 {
  bottom: 25%; left: 15%;
  animation: floater3 20s ease-in-out infinite;
  animation-delay: -8s;
}
.hero__floater--4 {
  bottom: 18%; right: 12%;
  animation: floater1 24s ease-in-out infinite;
  animation-delay: -12s;
}
.hero__floater--5 {
  top: 45%; left: 5%;
  animation: floater2 19s ease-in-out infinite;
  animation-delay: -6s;
}
.hero__floater--6 {
  top: 35%; right: 6%;
  animation: floater3 21s ease-in-out infinite;
  animation-delay: -10s;
}

@keyframes floater1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(12px, -18px) rotate(5deg); }
  50% { transform: translate(-8px, -28px) rotate(-3deg); }
  75% { transform: translate(15px, -10px) rotate(7deg); }
}
@keyframes floater2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-15px, 20px) rotate(-6deg); }
  66% { transform: translate(10px, -15px) rotate(4deg); }
}
@keyframes floater3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(20px, 15px) rotate(8deg); }
}

/* ── Section Decorative Dividers ────────────────────────── */
.section-divider {
  width: 100%; height: 48px; overflow: hidden; display: block;
  margin: -1px 0;
}
.section-divider path { fill: var(--cream); }
.section-divider--white path { fill: var(--white); }
.section-divider--verdade path { fill: #FFF4EA; }

/* ── Enhanced Button Micro-interactions ─────────────────── */
.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.btn--primary { position: relative; overflow: hidden; }
.btn--primary:active::after { opacity: 1; transition: opacity 0s; }

/* ── Card Tilt on Hover ─────────────────────────────────── */
.presente-card {
  transform-style: preserve-3d;
  perspective: 800px;
}
.presente-card:hover {
  transform: translateY(-6px) rotateX(2deg) rotateY(-1deg);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(27, 77, 92, 0.08);
}

/* ── Countdown Pulse ────────────────────────────────────── */
.countdown__number {
  transition: transform 0.15s var(--ease), color 0.15s;
}
.countdown__number--tick {
  animation: cdPulse 0.3s var(--ease);
}
@keyframes cdPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

/* ── Gift Card Popularity Badge ─────────────────────────── */
.presente-card__badge {
  position: absolute; top: -8px; right: 16px;
  background: var(--butter); color: var(--petrol-dark);
  font-family: var(--font-display); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--r-full);
  box-shadow: var(--shadow-sm);
  animation: badgeBounce 0.5s var(--ease) 1s both;
}
@keyframes badgeBounce {
  0% { transform: scale(0) translateY(10px); opacity: 0; }
  60% { transform: scale(1.15) translateY(-2px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* ── Mural Card Quote Decoration ────────────────────────── */
.mural-card {
  position: relative;
}
.mural-card::before {
  content: '\201C';
  position: absolute; top: 8px; left: 12px;
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 800; line-height: 1;
  color: var(--petrol); opacity: 0.06;
  pointer-events: none;
}

/* ── Info Card Icon Glow on Hover ───────────────────────── */
.info-card:hover .info-card__icon {
  background: rgba(215, 122, 97, 0.18);
  box-shadow: 0 0 12px rgba(215, 122, 97, 0.15);
}

/* ── RSVP Success Celebration ───────────────────────────── */
.rsvp-success__icon svg {
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: drawCheck 0.6s var(--ease) 0.2s forwards;
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.rsvp-success__confetti {
  position: fixed; inset: 0; pointer-events: none; z-index: 300;
}
.confetti-piece {
  position: absolute; width: 10px; height: 10px;
  border-radius: 2px;
  animation: confettiFall 2.5s ease-in forwards;
}
@keyframes confettiFall {
  0% { transform: translateY(-20vh) rotate(0deg) scale(1); opacity: 1; }
  100% { transform: translateY(105vh) rotate(720deg) scale(0.3); opacity: 0; }
}

/* ── Nav Active Link Indicator ──────────────────────────── */
.nav__link {
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--terracotta); border-radius: 1px;
  transition: width 0.25s var(--ease), left 0.25s var(--ease);
}
.nav__link:hover::after,
.nav__link--active::after {
  width: 60%; left: 20%;
}

/* ── Form Input Focus Glow ──────────────────────────────── */
.form-input:focus, .form-textarea:focus {
  box-shadow: 0 0 0 3px rgba(27, 77, 92, 0.12), 0 0 20px rgba(27, 77, 92, 0.04);
}

/* ── Radio Check Bounce ─────────────────────────────────── */
.form-radio input:checked + .form-radio__custom {
  animation: radioBounce 0.35s var(--ease);
}
@keyframes radioBounce {
  0% { transform: scale(1); }
  40% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* ── Footer Wave ────────────────────────────────────────── */
.footer-wave {
  width: 100%; display: block; margin-bottom: -2px;
}

/* ── CTA Section Floating Particles ─────────────────────── */
.cta-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.cta-particle {
  position: absolute;
  width: 4px; height: 4px;
  background: rgba(244, 207, 103, 0.3);
  border-radius: 50%;
  animation: particleFloat 12s ease-in-out infinite;
}
.cta-particle:nth-child(2n) {
  background: rgba(168, 197, 160, 0.25);
  animation-duration: 15s;
}
.cta-particle:nth-child(3n) {
  background: rgba(215, 122, 97, 0.2);
  animation-duration: 18s;
  width: 6px; height: 6px;
}
@keyframes particleFloat {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(30px, -40px) scale(1.2); opacity: 0.7; }
  50% { transform: translate(-20px, -80px) scale(0.8); opacity: 0.5; }
  75% { transform: translate(40px, -30px) scale(1.1); opacity: 0.6; }
}

/* ── Copy Button Success Feedback ───────────────────────── */
.btn--copied {
  background: var(--sage-dark) !important;
  color: var(--white) !important;
  border-color: var(--sage-dark) !important;
}

/* ── Gift Card Stagger Entrance ─────────────────────────── */
.presente-card {
  opacity: 0;
  transform: translateY(20px);
}
.presente-card--visible {
  animation: cardEnter 0.5s var(--ease) forwards;
}
@keyframes cardEnter {
  to { opacity: 1; transform: translateY(0); }
}

/* ── Mural Card Stagger ─────────────────────────────────── */
.mural-card {
  opacity: 0;
  transform: translateY(16px);
}
.mural-card--visible {
  animation: cardEnter 0.45s var(--ease) forwards;
}

/* ── Winkler Table Row Hover ────────────────────────────── */
.winkler__table tr {
  transition: background 0.2s;
}
.winkler__table tr:hover {
  background: rgba(27, 77, 92, 0.02);
}

/* ── Custom Value Card Floating Accent ──────────────────── */
.custom-value__card {
  position: relative;
  overflow: hidden;
}
.custom-value__card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--butter-light) 0%, transparent 70%);
  opacity: 0.3; border-radius: 50%;
  pointer-events: none;
}

/* ── SECTION: DOACAO ANIMADA ──────────────────────────── */
.donation-animated {
  padding: clamp(3rem, 2rem + 4vw, 5rem) 0;
  background: var(--cream);
}
.donation-animated__text {
  text-align: center; color: var(--text-muted);
  font-size: clamp(1rem, 0.92rem + 0.35vw, 1.15rem);
  max-width: 54ch; margin-inline: auto; margin-bottom: 2.5rem;
  text-wrap: balance;
}

.donation-animated__inner {
  display: grid; grid-template-columns: 1fr; gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .donation-animated__inner { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .donation-animated__inner { grid-template-columns: 1.1fr 0.9fr; }
}

.donation-animated__scene {
  display: flex; justify-content: center; align-items: center;
  min-height: 320px;
}

.donation-animated__panel { max-width: 480px; margin-inline: auto; width: 100%; }

.donation-animated__card {
  background: var(--white); border-radius: var(--r-xl);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
.donation-animated__card::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--butter-light) 0%, transparent 70%);
  opacity: 0.3; border-radius: 50%;
  pointer-events: none;
}

.donation-animated__heading {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.3rem);
  font-weight: 700; color: var(--petrol);
  margin-bottom: 1.25rem; text-align: center;
}

.donation-animated__note {
  text-align: center; font-size: 0.85rem; font-style: italic;
  color: var(--sage-dark); margin-top: 1rem;
  animation: fadeUp 0.4s var(--ease);
}

.d-range-container { margin-bottom: 1.5rem; }

.d-range-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem;
}
.d-range-label {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 600; color: var(--petrol);
}
.d-value {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 800; color: var(--terracotta);
  transition: transform 0.15s ease;
}
.d-value--pop {
  animation: dValuePop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes dValuePop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.d-range {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px;
  background: var(--border);
  border-radius: 4px; outline: none;
  transition: background 0.2s;
  cursor: pointer;
}
.d-range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15), 0 0 0 1px var(--terracotta);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.d-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2), 0 0 0 2px var(--terracotta);
}
.d-range::-webkit-slider-thumb:active {
  transform: scale(1.25);
}
.d-range::-moz-range-thumb {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 3px solid var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  cursor: pointer;
}
.d-range:focus-visible {
  box-shadow: 0 0 0 3px var(--butter);
}

.d-range-marks {
  display: flex; justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.7rem; color: var(--text-light);
}

#d-character {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  transform: scale(clamp(0.7, 0.5 + 0.4vw, 1));
  transform-origin: center center;
}

.d-ball {
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  margin: 270px auto;
  width: 70px; height: 70px;
  background: radial-gradient(ellipse at center, #499AEA 0%, #207CE5 100%);
  border-radius: 50%;
  border: 2px solid #333;
  z-index: 2;
  animation: dBounceBall 0.5s ease-in-out 1;
}
@keyframes dBounceBall {
  0% { transform: translate(0); }
  10%,30%,50%,70%,90% { transform: translateY(-5px); }
  20%,40%,60%,80% { transform: translateY(5px); }
  20%,60% { border-radius: 50% / 50% 50% 70% 70%; }
  40%,80% { border-radius: 50% / 50% 50% 60% 60%; }
}

.d-wrap {
  position: absolute; top: 0; right: 0; left: 0; bottom: 0;
  margin: 200px auto; width: 100%; height: 50px;
}
.d-book {
  position: absolute; top: 10%; left: 10px;
  margin-left: 120px;
  width: 15px; height: 50px;
  box-shadow: 2px 2px 2px rgba(51,51,51,0.5);
  border-radius: 50% / 5px 5px 2px 2px;
  background: #ededed;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.07) 50%, transparent 50%),
    linear-gradient(90deg, rgba(255,255,255,.13) 50%, transparent 50%),
    linear-gradient(90deg, transparent 50%, rgba(255,255,255,.17) 50%),
    linear-gradient(90deg, transparent 50%, rgba(255,255,255,.19) 50%);
  background-size: 13px, 29px, 37px, 53px;
  border: 2px solid #AD0927;
  border-bottom: none;
  z-index: 1;
}

.d-cap {
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  margin: 0 auto;
  width: 100px; height: 50px;
  background: #51C6ED;
  border-radius: 50% / 100% 100% 20% 20%;
  border: 2px solid #333;
  z-index: 1;
  box-shadow: inset 2px 2px 2px #26A6D1, 2px 2px 2px rgba(51,51,51,0.5);
}
.d-cap::before {
  content: '';
  position: absolute;
  width: 100%; height: 20%;
  border-radius: 50% / 100% 100% 0 0;
  border: 2px solid #333;
  background: #3AAFD6;
  bottom: 0;
  box-shadow: inset 2px 2px 2px #26A6D1;
}

.d-bag {
  position: absolute;
  top: 0; right: 0; left: 0; bottom: 0;
  margin: 250px auto;
  width: 100px; height: 100px;
  border: 2px solid #333;
  border-radius: 50% / 100% 100% 40% 40%;
  background: #AAE0F2;
  box-shadow: inset -5px 2px 2px #70C4E0, 3px 5px 5px rgba(51,51,51,0.5);
  z-index: 2;
  margin-right: 25px;
}
.d-bag::before {
  content: '';
  position: absolute;
  left: 35%; top: -12%;
  width: 25px; height: 12px;
  border-radius: 50% / 100% 100% 0 0;
  border: 2px solid #333;
}
.d-bag::after {
  content: '';
  position: absolute;
  bottom: 15%; left: 15%;
  width: 70%; height: 50%;
  background: inherit;
  box-shadow: inherit;
  border: inherit;
  border-radius: inherit;
}

.d-kid {
  position: relative;
  margin: 25px auto;
  width: 300px; height: 300px;
  z-index: 0;
}
.d-kid .d-head {
  position: relative;
  margin: 0 auto;
  width: 100px; height: 100px;
  border: 2px solid #333;
  background: #fec195;
  border-radius: 50%;
  box-shadow: inset -3px -3px #dc9564;
}

.d-dirt {
  position: absolute;
  top: 55%;
  width: 15px; height: 10px;
  background: #d2b799;
  border-radius: 50%;
}
.d-dirt.left { left: 15%; }
.d-dirt.right { right: 15%; }

.d-ears {
  position: absolute;
  top: 32%;
  width: 10px; height: 20px;
  background: #fec195;
  border: 2px solid #333;
}
.d-ears.left {
  left: -10px;
  box-shadow: inset -2px -2px #dc9564;
  z-index: 0;
  transform: rotate(10deg);
  border-radius: 50% / 100% 0 0 100%;
}
.d-ears.right {
  right: -10px;
  box-shadow: inset -2px -2px #dc9564;
  z-index: 0;
  transform: rotate(-10deg);
  border-radius: 50% / 0 100% 100% 0;
}

.d-eyes {
  position: absolute;
  top: 20%;
  width: 30%; height: 30%;
  background: #fff;
  border: 2px solid #333;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.d-eyes.left::before,
.d-eyes.right::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -5%;
  width: 120%; height: 100%;
  background: #fec195;
  border-radius: 50%;
  box-shadow: inset -3px -3px #dc9564;
  z-index: 1;
}
.d-eyes.left { left: 10%; }
.d-eyes.right { right: 10%; }
.d-eyes.left .d-pupil,
.d-eyes.right .d-pupil {
  position: absolute;
  bottom: 10%;
  width: 70%; height: 70%;
  border: 2px solid #333;
  background: #67340b;
  border-radius: 50%;
}
.d-eyes.left .d-pupil::before,
.d-eyes.right .d-pupil::before {
  content: '';
  position: absolute;
  top: 20%; left: 15%;
  width: 70%; height: 70%;
  background: #000;
  border-radius: 50%;
}
.d-eyes.left .d-pupil::after,
.d-eyes.right .d-pupil::after {
  content: '';
  position: absolute;
  top: 20%; right: 5%;
  width: 30%; height: 30%;
  background: #fff;
  border-radius: 50%;
}
.d-eyes.left .d-pupil { left: 20%; }
.d-eyes.right .d-pupil { right: 20%; }
.d-eyes.left.semi::before,
.d-eyes.right.semi::before {
  top: -100%;
  transition: all 0.25s ease-in-out;
}

.d-nose {
  position: absolute;
  top: 50%; left: 45%;
  width: 10px; height: 10px;
  border-radius: 50%;
  border-top: 2px solid rgba(51,51,51,0.5);
  z-index: 1;
}

.d-mouth {
  position: absolute;
  top: 70%; left: 30%;
  width: 35px; height: 15px;
  border-radius: 50%;
  border-top: 2px solid #8e5b39;
  transition: all 0.25s ease-in-out;
}
.d-mouth.semi {
  top: 55%;
  border-radius: 20%;
  border-top: 0;
  border-bottom: 2px solid #8e5b39;
  transition: all 0.25s ease-in-out;
}
.d-mouth.full {
  top: 65%; left: 32%;
  border-radius: 50% / 0 0 100% 100%;
  border-bottom: 2px solid #8e5b39;
  transition: all 0.25s ease-in-out;
  background: #fff;
}

.d-hair {
  position: absolute;
  top: -10px; right: 0; left: 0; bottom: 0;
  margin: 0 auto;
  width: 100px; height: 50px;
  background: #333;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
}
.d-part {
  position: absolute;
  width: 40px; height: 20px;
  border-radius: 50% / 100% 100% 0 0;
  background: #333;
  box-shadow: inset 2px 2px #1e1e1e;
  z-index: 2;
}
.d-part:nth-of-type(1) { left: 5%; transform: rotate(-45deg); }
.d-part:nth-of-type(2) { left: 15%; transform: rotate(-60deg); }
.d-part:nth-of-type(3) { left: 30%; transform: rotate(-30deg); }
.d-part:nth-of-type(4) { left: 50%; transform: rotate(-20deg); }

.d-body {
  position: absolute;
  top: 100px; right: 0; left: 0; bottom: 0;
  margin: 0 auto;
  width: 100%;
  height: calc(100% - 150px);
}

.d-neck {
  position: absolute;
  top: -10px; right: 0; left: 0; bottom: 0;
  margin: 0 auto;
  width: 30px; height: 30px;
  background: #fec195;
  border-radius: 50%;
  z-index: -1;
  border-bottom: 2px solid #333;
  box-shadow: inset -5px -2px 1px #dc9564;
}

.d-shirt {
  position: relative;
  margin: -2px auto;
  width: 90px; height: 110px;
  border: 2px solid #333;
  background: #F8FF1F;
  border-radius: 10%;
  box-shadow: inset -10px 5px #E1E81A;
  z-index: -1;
}
.d-shirt::before {
  content: '';
  position: absolute;
  top: 3.5px; left: -32%;
  width: 40px; height: 25px;
  background: #F8FF1F;
  border: 2px solid #333;
  border-radius: 50% / 20% 100% 0% 20%;
  transform: rotate(-80deg);
  border-bottom: none;
  box-shadow: inset -5px 5px #E1E81A;
}
.d-shirt::after {
  content: '';
  position: absolute;
  top: 3.5px; right: -32%;
  width: 40px; height: 25px;
  background: #F8FF1F;
  border: 2px solid #333;
  border-radius: 50% / 100% 20% 20% 20%;
  transform: rotate(80deg);
  border-bottom: none;
  box-shadow: inset 5px 5px #E1E81A;
}
.d-shirt.new {
  background: #7BD1ED;
  box-shadow: inset -10px 5px #51B5D6;
  transition: all 0.25s ease-in-out;
}
.d-shirt.new::before { background: #7BD1ED; box-shadow: inset -10px 5px #51B5D6; }
.d-shirt.new::after { background: #7BD1ED; box-shadow: inset -10px 5px #51B5D6; }

.d-shirt .d-patch {
  position: absolute;
  top: 50%;
  width: 15px; height: 35px;
  border: 2px solid #333;
  border-left: none;
}
.d-shirt .d-patch::before {
  content: '';
  position: absolute;
  top: 30%; left: 80%;
  width: 7px; height: 2px;
  background: #333;
  box-shadow: 0px 5px #333, 0px 10px #333;
}
.d-shirt .d-patch.left {
  left: 0;
  box-shadow: inset -2px 2px #6ACC7E;
  background: #91EBA3;
}
.d-shirt .d-patch.center {
  top: 35%; left: 50%;
  border-left: 2px solid #333;
  background: #F2B600;
  box-shadow: inset -2px 2px #D19E06;
  width: 20px; height: 30px;
  transform: rotate(20deg);
}
.d-shirt .d-patch.center::before {
  content: '';
  position: absolute;
  width: 7px; height: 2px;
  box-shadow: -15px -2px #333, -15px 10px #333, 0px 10px #333;
}

.d-hand {
  position: absolute;
  top: 90%; left: -7px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fec195;
  border: 2px solid #333;
  border-top: none;
}
.d-hand .d-toes {
  position: absolute;
  width: 7px; height: 15px;
  border: 2px solid #333;
  border-radius: 30%;
  border-top: 0;
  background: #fec195;
}
.d-hand .d-toes:nth-of-type(1) { top: 50%; left: 50%; }
.d-hand .d-toes:nth-of-type(2) { top: 50%; left: -10%; }
.d-hand .d-toes:nth-of-type(3) { top: 50%; left: 10%; }
.d-hand .d-toes:nth-of-type(4) { top: 50%; left: 30%; }

.d-arms {
  position: absolute;
  top: 10px;
  width: 10px; height: 90px;
  background: #fec195;
  border: 2px solid #333;
  border-bottom: none;
}
.d-arms.left {
  left: -20%;
  z-index: -1;
  transform: rotate(10deg);
  box-shadow: inset 2px 2px #dc9564;
}
.d-arms.left .d-hand { box-shadow: inset 2px 2px #dc9564; }
.d-arms.right {
  right: -20%;
  z-index: -1;
  transform: rotate(-10deg);
  box-shadow: inset -2px 2px #dc9564;
}
.d-arms.right .d-hand { box-shadow: inset -2px -2px #dc9564; }

.d-shorts {
  position: absolute;
  top: 80px; right: 0; left: 0; bottom: 0;
  margin: 0 auto;
  width: 90px; height: 40px;
  border: 2px solid #333;
  background: #37A344;
  border-radius: 50% / 20% 20% 10% 10%;
  z-index: -2;
  box-shadow: inset -2px 2px 2px #0D911D, inset 2px -2px #0D911D;
}
.d-shorts::before {
  content: '';
  position: absolute;
  bottom: -30%; left: -2px;
  width: 40%; height: 40%;
  border-radius: 50% / 0 0 20% 20%;
  border: 2px solid #333;
  background: #37A344;
  border-top: none;
  box-shadow: inset 2px -2px 2px #0D911D;
}
.d-shorts::after {
  content: '';
  position: absolute;
  bottom: -30%; right: -2px;
  width: 40%; height: 40%;
  border-radius: 50% / 0 0 20% 20%;
  border: 2px solid #333;
  background: #37A344;
  border-top: none;
  box-shadow: inset 2px -2px 2px #0D911D;
}
.d-shorts.new {
  background: #EBECFA;
  box-shadow: inset 2px -2px 2px #C1C6F5;
}
.d-shorts.new::before { background: #EBECFA; box-shadow: inset 2px -2px 2px #C1C6F5; }
.d-shorts.new::after { background: #EBECFA; box-shadow: inset 2px -2px 2px #C1C6F5; }
.d-shorts .d-patch {
  width: 20px; height: 20px;
  background: yellow;
  box-shadow: inset 2px 2px #DBF026;
  transform: rotate(10deg);
  border-left: 2px solid #333;
}
.d-shorts .d-patch::before {
  content: '';
  position: absolute;
  top: 10%;
  box-shadow: none;
  transform: rotate(10deg);
}

.d-foot {
  position: absolute;
  top: 90%;
  width: 50px; height: 25px;
  border-radius: 50%;
  background: #fec195;
  border: 2px solid #333;
  box-shadow: inset 5px -5px #d2b799;
}

.d-legs {
  position: absolute;
  top: 100%;
  width: 15px; height: 70px;
  border: 2px solid #333;
  background: #fec195;
  z-index: -3;
  border-bottom: none;
}
.d-legs.left {
  left: 10%;
  box-shadow: inset 2px 2px #dc9564;
}
.d-legs.left .d-foot {
  left: -35px;
  transform: rotate(-15deg);
  border-right: 0;
}
.d-legs.left .d-foot.shoe {
  background: #3EA1C2;
  box-shadow: none;
  transition: all 0.25s ease-in-out;
}
.d-legs.left .d-foot.shoe::before {
  content: '';
  position: absolute;
  width: 15px; height: 20px;
  background: #fff;
  top: -15px; right: -3px;
  transform: rotate(15deg);
  border: 2px solid #333;
  border-radius: 50% / 0 0 20% 20%;
}
.d-legs.right {
  right: 10%;
  box-shadow: inset -2px 2px #dc9564;
}
.d-legs.right .d-foot {
  right: -35px;
  transform: rotate(15deg);
  border-left: 0;
}
.d-legs.right .d-foot.shoe {
  background: #3EA1C2;
  box-shadow: none;
  transition: all 0.25s ease-in-out;
}
.d-legs.right .d-foot.shoe::before {
  content: '';
  position: absolute;
  width: 15px; height: 20px;
  background: #fff;
  top: -15px; left: -3px;
  transform: rotate(-15deg);
  border: 2px solid #333;
  border-radius: 50% / 0 0 20% 20%;
}

/* ── Transition classes for character ──────────────────── */
.dis-left {
  opacity: 0;
  transition: all 0.25s ease-in-out;
}
.ap-left {
  opacity: 1;
  transition: all 0.25s ease-in-out;
}

/* ── Random Fun Fact Ticker ─────────────────────────────── */
.fun-fact {
  text-align: center; font-size: 0.82rem;
  color: var(--text-light); font-style: italic;
  padding: 0.75rem 1rem;
  background: rgba(244, 207, 103, 0.08);
  border-radius: var(--r-md);
  margin-top: 1.5rem;
  max-width: 50ch; margin-inline: auto;
  animation: fadeUp 0.5s var(--ease);
}

/* ── Baby Animation (Misha Petrick, adapted) ────────────── */
.baby-scene {
  width: 200px; height: 180px;
  margin: 0;
  position: relative;
}

.baby {
  margin: 0; width: 60px; height: 160px;
  background: var(--cream-deep);
  border-radius: 30px;
  box-shadow: -10px -8px 0px var(--sage-light);
  overflow: hidden;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotate(-40deg);
  animation: babyMove 1.2s ease-in-out infinite;
}

.baby .face {
  margin: 8px 16px 0 6px;
  width: 42px; height: 46px;
  background: #f9c19f;
  border-radius: 50%;
  position: relative;
  animation: babyFace 1.2s ease-in-out infinite;
}

.baby .face:before {
  content: "";
  display: block;
  width: 14px; height: 7px;
  background: #edb256;
  border-bottom-left-radius: 400%;
  border-bottom-right-radius: 200%;
  position: absolute;
  top: 0; left: 40%;
  transform: rotate(-15deg);
}

.baby .face .eyes {
  margin-left: -30%;
  width: 60%; height: 7px;
  position: absolute;
  top: 14px; left: 50%;
}

.baby .face .eyes:before {
  content: "";
  width: 7px; height: 7px;
  background: var(--petrol-dark);
  border-radius: 50%;
  float: left;
}

.baby .face .eyes:after {
  content: "";
  width: 7px; height: 7px;
  background: var(--petrol-dark);
  border-radius: 50%;
  float: right;
}

.baby .face .mouth {
  margin-left: -12px;
  width: 24px; height: 14px;
  background: #7e2e33;
  border-radius: 8px;
  position: absolute;
  bottom: 8px; left: 50%;
  animation: babyMouth 0.3s ease-in-out infinite;
}

.baby .face .mouth .tongue {
  margin-left: -2px;
  width: 5px; height: 7px;
  background: #ed5c56;
  border-top-left-radius: 120%;
  border-top-right-radius: 50%;
  position: absolute;
  bottom: 0; left: 50%;
  z-index: 1;
  animation: babyTongue 0.3s ease-in-out infinite;
}

.baby .blanket {
  width: 200%; height: 11px;
  background: var(--sage-light);
  transform: rotate(-30deg);
  position: absolute;
  top: 45%; left: -22px;
  animation: babyBlanket 1.2s ease-in-out infinite;
}

.milk_bottle {
  margin: 0;
  position: absolute;
  top: 8%; left: 60%;
  transform: rotate(-130deg);
  animation: bottleMove 1.7s ease-in-out infinite;
}

.milk_bottle .bottle {
  margin-left: 3px;
  width: 22px; height: 30px;
  background: var(--cream-deep);
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  box-shadow: 4px 4px 0 var(--sage-light);
  position: relative;
  z-index: 4;
}

.milk_bottle .bottle:before {
  content: "";
  display: block;
  width: 9px; height: 2px;
  background: var(--border);
  position: absolute;
  top: 8px; left: 4px;
  animation: bottleDetail 1.7s ease-in-out infinite;
}

.milk_bottle .bottle:after {
  content: "";
  display: block;
  width: 9px; height: 2px;
  background: var(--border);
  position: absolute;
  top: 15px; left: 4px;
  animation: bottleDetail 1.7s ease-in-out infinite;
}

.milk_bottle .tube_bottom {
  width: 26px; height: 5px;
  background: var(--butter);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--sage-light);
  position: relative;
  z-index: 3;
}

.milk_bottle .tube_middle {
  margin: 0 auto;
  width: 22px; height: 5px;
  background: var(--butter-dark);
  border-top-left-radius: 400%;
  border-top-right-radius: 400%;
  box-shadow: 4px 4px 0 var(--sage-light);
}

.milk_bottle .tube_top {
  margin: 0 auto;
  width: 8px; height: 5px;
  background: var(--butter-dark);
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  box-shadow: 4px 4px 0 var(--sage-light);
}

.pacifier {
  position: absolute;
  top: 62%; left: 22%;
  z-index: 3;
  transform: rotate(20deg);
}

.pacifier .pacifier_top {
  width: 12px; margin: 0 auto;
  height: 16px;
  background: var(--cream-deep);
  background: radial-gradient(circle at -1px 6px, transparent 5px, var(--cream-deep) 4px),
              radial-gradient(circle at 9px 6px, transparent 5px, var(--cream-deep) 4px);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  position: relative;
}

.pacifier .pacifier_top:before {
  content: "";
  display: block;
  width: 12px; height: 12px;
  background: var(--cream-deep);
  border-radius: 50%;
  position: absolute;
  top: -8px; left: 0;
}

.pacifier_middle {
  width: 16px; height: 4px;
  background: var(--terracotta);
  border-radius: 4px;
  position: absolute;
  top: 8px; left: -2px;
  z-index: 2;
}

.pacifier_middle:after {
  content: "";
  display: block;
  margin: 4px auto 0;
  width: 5px; height: 5px;
  background: var(--terracotta);
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
}

.pacifier_bottom {
  width: 14px; height: 14px;
  border: 2px solid var(--butter);
  border-radius: 50%;
  position: absolute;
  top: 12px; left: -3px;
  z-index: 1;
}

.pacifier.shadow {
  top: 64%; left: 20%;
  z-index: 2;
  transform: rotate(20deg);
}

.pacifier.shadow .pacifier_top {
  background: var(--sage);
  background: radial-gradient(circle at -1px 6px, transparent 5px, var(--sage) 4px),
              radial-gradient(circle at 9px 6px, transparent 5px, var(--sage) 4px);
  background-size: 50% 50%;
  background-repeat: no-repeat;
}

.pacifier.shadow .pacifier_top:before,
.pacifier.shadow .pacifier_middle,
.pacifier.shadow .pacifier_middle:after {
  background: var(--sage);
}

.pacifier.shadow .pacifier_bottom {
  border: 2px solid var(--sage);
}

@keyframes babyMove {
  0%, 100% { transform: translate(-50%, -50%) rotate(-40deg); }
  50% { transform: translate(-49%, -51%) rotate(-40deg); }
}
@keyframes babyFace {
  0%, 100% { margin: 8px 16px 0 6px; }
  50% { margin: 8px 6px 0 16px; }
}
@keyframes babyMouth {
  0%, 100% { margin-left: -12px; width: 24px; height: 14px; }
  50% { margin-left: -8px; width: 16px; height: 15px; }
}
@keyframes babyTongue {
  0%, 100% { border-top-left-radius: 120%; border-top-right-radius: 50%; }
  50% { border-top-left-radius: 50%; border-top-right-radius: 120%; }
}
@keyframes babyBlanket {
  0%, 100% { top: 45%; }
  50% { top: 50%; }
}
@keyframes bottleMove {
  0%, 100% { top: 8%; transform: rotate(-130deg); }
  50% { top: 5%; transform: rotate(-115deg); }
}
@keyframes bottleDetail {
  0%, 100% { left: 4px; }
  50% { left: 11px; }
}

/* ── Reduced Motion ─────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .hero__copy > *, .hero__visual { opacity: 1; transform: none; }
  .presente-card, .mural-card { opacity: 1; transform: none; }
  .baby, .baby .face, .baby .face .mouth, .baby .face .mouth .tongue,
  .baby .blanket, .milk_bottle, .milk_bottle .bottle,
  .milk_bottle .bottle:before, .milk_bottle .bottle:after,
  .d-ball {
    animation: none !important;
  }
  .d-eyes, .d-eyes::before, .d-mouth,
  .d-shirt, .d-shirt::before, .d-shirt::after,
  .d-shorts, .d-shorts::before, .d-shorts::after,
  .d-foot.shoe, .d-legs .d-foot.shoe {
    transition: none !important;
  }
  /* Disable lion animations */
  .winkler__lion .lion .eye,
  .winkler__lion .lion .mane,
  .winkler__lion .lion .tail,
  .winkler__lion .lion .paw.right {
    animation: none !important;
  }
}
