/* ILPI Alegria de Viver — "Um dia na casa" (Fable 5)
   Reinterpretação clara e quente da versão grok: mesma jornada
   (casa → dia → passeio → respostas → chegada), outra luz. */

:root {
  color-scheme: light;

  --paper: #fbf5ec;
  --cream: #fffdf8;
  --sand: #f3e8d8;
  --ink: #33291f;
  --ink-soft: #7a6c5c;
  --line: rgba(51, 41, 31, 0.12);

  --clay: #c26d4f;
  --clay-deep: #a85539;
  --clay-soft: rgba(194, 109, 79, 0.14);
  --sage: #6f8b78;
  --sage-deep: #43584a;
  --night: #2b2119;
  --night-soft: #3a2e23;
  --light: #fdf8f0;
  --light-soft: rgba(253, 248, 240, 0.75);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, sans-serif;

  --size-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --size-1: clamp(1.2rem, 1.05rem + 0.7vw, 1.6rem);
  --size-2: clamp(1.9rem, 1.4rem + 2.2vw, 3.2rem);
  --size-hero: clamp(2.8rem, 1.6rem + 6vw, 6.2rem);

  --radius: 20px;
  --radius-arch: 999px 999px 22px 22px;
  --shadow: 0 16px 44px rgba(51, 41, 31, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: min(1120px, calc(100% - 3rem));
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--size-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 460;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0;
}

h2 { font-size: var(--size-2); }
h2 em, h1 em { font-style: italic; color: var(--clay-deep); }

.kicker {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 1rem;
}

.kicker--light { color: #b9cbbf; }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 300;
  padding: 0.75rem 1.1rem;
  background: var(--night);
  color: var(--light);
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; top: 0; }

/* ——— Progress ——— */

.progress {
  position: fixed;
  inset: 0 0 auto 0;
  height: 3px;
  z-index: 120;
  background: rgba(51, 41, 31, 0.06);
}

.progress span {
  display: block;
  height: 100%;
  transform-origin: left;
  transform: scaleX(var(--p, 0));
  background: linear-gradient(90deg, var(--sage), var(--clay));
}

/* ——— Top bar ——— */

.top {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.7rem clamp(1rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.35s var(--ease);
}

.top.is-hide { transform: translateY(-110%); }

.top__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}

.top__brand img { border-radius: 10px; }

.top__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
}

.top__name small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.top__live {
  margin: 0 auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--sage-deep);
  padding: 0.35rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  white-space: nowrap;
}

.top__live::before {
  content: "●";
  color: var(--clay);
  margin-right: 0.45rem;
  font-size: 0.6rem;
  vertical-align: 0.1em;
}

/* ——— Buttons ——— */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: 600 0.95rem/1 var(--font-body);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s, border-color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn--sm { padding: 0.55rem 1.05rem; font-size: 0.85rem; }
.btn--lg { padding: 1rem 1.7rem; font-size: 1rem; }

.btn--clay {
  background: var(--clay);
  color: var(--cream);
  box-shadow: 0 10px 26px rgba(194, 109, 79, 0.35);
}
.btn--clay:hover { background: var(--clay-deep); }

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { border-color: var(--clay); color: var(--clay-deep); }

/* ——— Hero ——— */

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: clamp(6rem, 12vh, 8rem) 0 clamp(2.5rem, 6vh, 4rem);
  overflow: hidden;
}

.hero__sky {
  position: absolute;
  inset: 0;
  transition: background 1.2s ease;
  background: linear-gradient(180deg, #dfe9dc 0%, #f6ead6 55%, var(--paper) 100%);
}

body[data-hour="dawn"] .hero__sky { background: linear-gradient(180deg, #f4d9c3 0%, #f9ecd9 55%, var(--paper) 100%); }
body[data-hour="day"] .hero__sky { background: linear-gradient(180deg, #dfe9dc 0%, #f6ead6 55%, var(--paper) 100%); }
body[data-hour="dusk"] .hero__sky { background: linear-gradient(180deg, #ecc9a8 0%, #f6e3cd 55%, var(--paper) 100%); }
body[data-hour="night"] .hero__sky { background: linear-gradient(180deg, #c7c4cf 0%, #ecdfd2 55%, var(--paper) 100%); }

.hero__photo {
  position: absolute;
  right: clamp(-4rem, -2vw, 0rem);
  bottom: 0;
  width: min(46vw, 620px);
  height: 78%;
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__copy {
  position: relative;
  z-index: 2;
  width: var(--wrap);
  margin-inline: auto;
  max-width: 100%;
}

.hero__greet {
  display: inline-block;
  margin: 0 0 1.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--line);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-deep);
}

.hero__title {
  font-size: var(--size-hero);
  max-width: 9ch;
  margin-bottom: 1.5rem;
}

.hero__word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em) rotate(1.5deg);
  animation: word-in 0.7s var(--ease) forwards;
  animation-delay: calc(0.15s + var(--d) * 0.12s);
}

@keyframes word-in {
  to { opacity: 1; transform: none; }
}

.hero__lede {
  max-width: 34rem;
  font-size: var(--size-1);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0 0 1.75rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__place {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* ——— Story (sticky capítulos) ——— */

.story { position: relative; }

.story__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  width: var(--wrap);
  margin-inline: auto;
  padding: clamp(4rem, 10vh, 6rem) 0;
}

.story__space { height: 260svh; }

.story__media {
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 74svh;
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
}

.story__shot {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.7s var(--ease), transform 0.9s var(--ease);
}

.story__shot.is-on { opacity: 1; transform: scale(1); }

.story__shot img { width: 100%; height: 100%; object-fit: cover; }

.story__count {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(43, 33, 25, 0.55);
  backdrop-filter: blur(6px);
  color: var(--light);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.story__text {
  position: relative;
  min-height: 16rem;
  display: grid;
}

.story__panel {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
  pointer-events: none;
}

.story__panel.is-on { opacity: 1; transform: none; pointer-events: auto; }

.story__p {
  max-width: 30rem;
  color: var(--ink-soft);
  font-size: var(--size-1);
  line-height: 1.5;
  margin: 1.25rem 0 0;
}

/* ——— Day (um dia na casa) ——— */

.day { position: relative; background: var(--sand); }

.day__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 4vh, 2.5rem);
  width: var(--wrap);
  margin-inline: auto;
  padding: clamp(4.5rem, 9vh, 6rem) 0 clamp(2rem, 5vh, 3rem);
}

.day__space { height: 420svh; }

.day__head h2 { max-width: 22ch; }

.day__stage {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}

.day__media {
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
}

.day__shot {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.6s var(--ease), transform 0.8s var(--ease);
}

.day__shot.is-on { opacity: 1; transform: scale(1); }
.day__shot img { width: 100%; height: 100%; object-fit: cover; }

.day__clock {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 2rem + 3vw, 4.2rem);
  font-weight: 300;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  color: var(--clay-deep);
  margin: 0 0 0.5rem;
}

.day__title { font-size: var(--size-1); margin-bottom: 0.5rem; }

.day__text {
  color: var(--ink-soft);
  max-width: 26rem;
  min-height: 3.2em;
  margin: 0 0 1.5rem;
}

.day__times {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.day__chip {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--cream);
  font: 600 0.85rem/1 var(--font-body);
  font-variant-numeric: tabular-nums;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.day__chip:hover { border-color: var(--clay); color: var(--clay-deep); }

.day__chip.is-on {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}

/* ——— Walk (passeio horizontal) ——— */

.walk { position: relative; }

.walk__sticky {
  position: sticky;
  top: 0;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 4vh, 2.5rem);
  padding: clamp(4.5rem, 9vh, 6rem) 0 clamp(2rem, 5vh, 3rem);
  overflow: hidden;
}

.walk__space { height: 240svh; }

.walk__head {
  width: var(--wrap);
  margin-inline: auto;
}

.walk__view { width: 100%; }

.walk__track {
  display: flex;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  padding-left: max(1.5rem, calc((100vw - 1120px) / 2));
  will-change: transform;
}

.walk__card {
  flex: 0 0 clamp(260px, 34vw, 420px);
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.walk__card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.walk__card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 1.2rem 1.2rem;
}

.walk__card strong { font-family: var(--font-display); font-size: 1.15rem; }
.walk__card span { font-size: 0.88rem; color: var(--ink-soft); }

.walk__card--cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--sage-deep);
  color: var(--light);
}

.walk__card--cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--size-1);
  line-height: 1.25;
}

/* ——— Care ——— */

.care {
  width: var(--wrap);
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.care__head { max-width: 34rem; margin-bottom: 2.5rem; }

.care__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

.care__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.4rem 1.3rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.care__item.is-in { opacity: 1; transform: none; }

.care__item > span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--clay);
  line-height: 1.2;
}

.care__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.care__item p { margin: 0; font-size: 0.92rem; color: var(--ink-soft); }

/* ——— Ask (a casa responde) ——— */

.ask {
  background: var(--night);
  color: var(--light);
  padding: clamp(4.5rem, 10vw, 7.5rem) 1.5rem;
  text-align: center;
  border-radius: clamp(24px, 5vw, 56px) clamp(24px, 5vw, 56px) 0 0;
}

.ask__prompt {
  max-width: 20ch;
  margin-inline: auto;
  color: var(--light);
}

.ask__prompt em { color: #e0a184; }

.ask__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 2.25rem;
}

.ask__chips button {
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  border: 1.5px solid rgba(253, 248, 240, 0.28);
  background: transparent;
  color: var(--light);
  font: 600 0.9rem/1 var(--font-body);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ask__chips button:hover { border-color: var(--clay); color: #e0a184; }

.ask__chips button.is-on {
  background: var(--clay);
  border-color: var(--clay);
  color: var(--cream);
}

.ask__answer {
  max-width: 34rem;
  margin: 2rem auto 0;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  background: var(--night-soft);
  border: 1px solid rgba(253, 248, 240, 0.12);
  text-align: left;
}

.ask__answer p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--light-soft);
  min-height: 3.2em;
}

.ask__wa {
  display: inline-block;
  margin-top: 1rem;
  color: #e0a184;
  font-weight: 700;
  text-decoration: none;
}

.ask__wa:hover { text-decoration: underline; }

/* ——— People ——— */

.people {
  width: var(--wrap);
  margin-inline: auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.people__p { color: var(--ink-soft); max-width: 22rem; }

.people__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.people__card {
  margin: 0;
  text-align: center;
}

.people__card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-arch);
  border: 5px solid var(--cream);
  box-shadow: var(--shadow);
}

.people__card figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  padding-top: 0.9rem;
}

.people__card strong { font-family: var(--font-display); font-size: 1.1rem; }
.people__card span { font-size: 0.85rem; color: var(--ink-soft); }

.people__card:nth-child(even) { transform: translateY(1.75rem); }

/* ——— Voices ——— */

.voices {
  width: var(--wrap);
  margin-inline: auto;
  padding: 0 0 clamp(4rem, 9vw, 7rem);
}

.voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}

.voices__card {
  margin: 0;
  padding: 1.75rem 1.5rem 1.5rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.voices__card::before {
  content: "\201C";
  display: block;
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 0.55;
  color: var(--clay);
  margin-bottom: 0.9rem;
}

.voices__card p {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}

.voices__card footer { font-size: 0.85rem; color: var(--ink-soft); }

/* ——— FAQ ——— */

.faq {
  width: min(760px, calc(100% - 3rem));
  margin-inline: auto;
  padding: 0 0 clamp(4rem, 9vw, 7rem);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: 2rem;
}

.faq details {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.4rem 1.25rem;
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2.5px solid var(--clay-deep);
  border-bottom: 2.5px solid var(--clay-deep);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  margin-top: -0.25rem;
}

.faq details[open] summary::after { transform: rotate(225deg); margin-top: 0.25rem; }

.faq summary:hover { color: var(--clay-deep); }

.faq details p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* ——— Arrive (contato) ——— */

.arrive {
  background: var(--night);
  color: var(--light);
  border-radius: clamp(24px, 5vw, 56px) clamp(24px, 5vw, 56px) 0 0;
  padding: clamp(4rem, 9vw, 7rem) clamp(1.5rem, 4vw, 4rem) clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.arrive h2 { color: var(--light); }
.arrive h2 em { color: #e0a184; }

.arrive address {
  font-style: normal;
  font-size: var(--size-1);
  line-height: 1.45;
  margin: 1.5rem 0;
  font-family: var(--font-display);
}

.arrive__links {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.arrive__links a {
  color: #e8c7b3;
  font-weight: 600;
  text-decoration: none;
}

.arrive__links a:hover { color: var(--light); text-decoration: underline; }

.arrive__hours {
  margin: 0 0 1.5rem;
  padding: 0.8rem 1.1rem;
  border-radius: 14px;
  background: var(--night-soft);
  border: 1px solid rgba(253, 248, 240, 0.12);
  font-size: 0.95rem;
  color: var(--light-soft);
  display: inline-block;
}

.arrive__hours strong { color: var(--light); }

.arrive__social {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: flex;
  gap: 0.6rem;
}

.arrive__social a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(253, 248, 240, 0.25);
  color: var(--light);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.arrive__social a:hover { border-color: var(--clay); color: #e0a184; }

.arrive__map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(253, 248, 240, 0.15);
}

.arrive__map iframe { width: 100%; height: 100%; border: 0; }

.arrive__form {
  background: var(--cream);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.arrive__form h3 { font-size: var(--size-1); margin-bottom: 1.25rem; }

.arrive__form label { display: block; margin-bottom: 1rem; }

.arrive__form label span {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.arrive__form input,
.arrive__form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: var(--paper);
  font: inherit;
  color: var(--ink);
}

.arrive__form input:focus,
.arrive__form textarea:focus {
  outline: none;
  border-color: var(--clay);
  box-shadow: 0 0 0 3px var(--clay-soft);
}

.arrive__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.arrive__note {
  margin: 1rem 0 0;
  font-size: 0.8rem;
  color: var(--ink-soft);
}

/* ——— Footer ——— */

.end {
  background: var(--night);
  color: rgba(253, 248, 240, 0.65);
  padding: 0 clamp(1.5rem, 4vw, 4rem) 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.88rem;
}

.end::before {
  content: "";
  display: block;
  border-top: 1px solid rgba(253, 248, 240, 0.12);
  padding-top: 0;
  margin-bottom: 1.5rem;
}

.end__brand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  align-items: baseline;
}

.end__brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--light);
}

.end__cnpj { margin: 0; line-height: 1.55; }

.end__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.75rem;
}

.end__row a { color: rgba(253, 248, 240, 0.65); text-decoration: none; }
.end__row a:hover { color: var(--light); }

/* ——— Reveal genérico ——— */

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].is-in { opacity: 1; transform: none; }

/* ——— Mobile ——— */

@media (max-width: 860px) {
  .top__live { display: none; }

  .hero { align-items: start; }

  .hero__photo {
    position: relative;
    inset: auto;
    width: min(100%, 30rem);
    height: auto;
    aspect-ratio: 4 / 3;
    margin: 2rem auto 0;
    order: 2;
  }

  .hero__copy { padding-top: 1rem; }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 5.5rem;
  }

  .story__sticky {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-content: center;
  }

  .story__media { max-height: 46svh; aspect-ratio: 4 / 3; }

  .story__text { min-height: 13rem; }

  .story__space { height: 300svh; }

  .day__stage { grid-template-columns: 1fr; gap: 1.25rem; }

  .day__media { aspect-ratio: 16 / 10; }

  .day__clock { font-size: 2.4rem; }

  .day__text { min-height: 4.2em; }

  .people { grid-template-columns: 1fr; }

  .people__card:nth-child(even) { transform: none; }

  .arrive { grid-template-columns: 1fr; }

  .arrive__form input,
  .arrive__form textarea { font-size: 16px; }
}

/* ——— Reduced motion ——— */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .hero__word { animation: none; opacity: 1; transform: none; }

  .story__space, .day__space, .walk__space { display: none; }

  .story__sticky, .day__sticky, .walk__sticky { position: relative; min-height: 0; }

  .story__shot, .story__panel, .day__shot {
    position: relative;
    opacity: 1;
    transform: none;
  }

  .story__media, .day__media { aspect-ratio: auto; }

  .story__shot:not(.is-on), .day__shot:not(.is-on) { display: none; }

  .walk__track { overflow-x: auto; transform: none !important; }

  [data-reveal], .care__item { opacity: 1; transform: none; transition: none; }
}
