/* ============ Tokens ============ */
:root {
  --cream: #FBF7F0;
  --cream-2: #F4EBDC;
  --ink: #37322E;
  --ink-soft: #6E645A;
  --coral: #E9694A;
  --coral-deep: #D24E2C;
  --peach: #F2A87D;
  --sun: #F8DF7C;
  --sun-soft: #FCEFB9;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --step--1: clamp(0.83rem, 0.76rem + 0.35vw, 1rem);
  --step-0: clamp(1rem, 0.93rem + 0.4vw, 1.2rem);
  --step-1: clamp(1.25rem, 1.1rem + 0.7vw, 1.7rem);
  --step-2: clamp(1.6rem, 1.35rem + 1.2vw, 2.4rem);
  --step-3: clamp(2.1rem, 1.6rem + 2.3vw, 3.6rem);
  --step-4: clamp(2.8rem, 1.9rem + 4.5vw, 6rem);

  --space-s: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  --space-m: clamp(1.1rem, 0.9rem + 1vw, 2.25rem);
  --space-l: clamp(1.75rem, 1.5rem + 2.5vw, 4.5rem);
  --space-xl: clamp(2rem, 1.8rem + 5vw, 8rem);

  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 24px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============ Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--coral-deep);
  display: block;
  margin-bottom: var(--space-s);
}

.container {
  width: min(100% - 2 * var(--gutter), 1240px);
  margin-inline: auto;
}

:focus-visible {
  outline: 2px solid var(--coral-deep);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) { outline: none; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 12px 12px;
  z-index: 200;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ============ Header — bloco flutuante no canto (como na referência) ============ */
.site-header {
  position: fixed;
  top: clamp(1rem, 3.5vh, 2.5rem);
  right: var(--gutter);
  z-index: 160; /* acima do menu aberto: o burger vira X e continua clicável */
  display: flex;
  flex-direction: column;
  width: clamp(124px, 13vw, 164px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(30, 20, 14, 0.28);
  transition: top 0.3s ease, box-shadow 0.3s;
}
.site-header.is-scrolled { top: 0.85rem; }

/* Dois quadrados lado a lado: signet (logo) + burger */
.nav-cluster { display: flex; }
.nav-cluster > * { flex: 1; max-width: 50%; aspect-ratio: 1; }

.signet {
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: background 0.3s;
}
.signet img {
  width: 56%;
  transition: transform 0.4s var(--ease-out-expo);
}
.signet:hover img { transform: rotate(20deg) scale(1.08); }

/* Aba "Reservar" acoplada abaixo do bloco */
.reserve-tab {
  display: block;
  text-align: center;
  background: var(--ink);
  color: var(--cream);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.85rem 0.5rem;
  transition: background 0.3s, letter-spacing 0.3s;
}
.reserve-tab:hover { background: var(--coral-deep); letter-spacing: 0.24em; }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s, background 0.3s;
}
.pill:hover { transform: translateY(-2px); }
.pill:active { transform: translateY(0); }

.pill--solid {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 24px rgba(233, 105, 74, 0.35);
}
.pill--solid:hover { background: var(--coral-deep); }

.pill--ghost {
  background: color-mix(in srgb, var(--cream) 80%, transparent);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(55, 50, 46, 0.14);
}

/* Contorno para uso sobre fundo claro (ex.: par de botões na página de Contato) */
.pill--outline {
  background: transparent;
  box-shadow: inset 0 0 0 1.5px rgba(55, 50, 46, 0.35);
  color: var(--ink);
}
.pill--outline:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }

/* ============ Link social (Instagram no menu e no rodapé) ============ */
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: color 0.25s;
}
.social-link:hover { color: var(--sun); }
.social-link svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* Burger (como na referência: barras de larguras diferentes que viram X) */
.burger {
  position: relative;
  border: none;
  background: var(--coral);
  cursor: pointer;
  transition: background 0.5s ease-in-out;
}
.burger:hover { background: var(--coral-deep); }
.burger::before,
.burger::after {
  content: '';
  position: absolute;
  left: 50%;
  height: 3px;
  border-radius: 3px;
  background: #fff;
  transition: transform 0.5s ease-in-out, width 0.5s ease-in-out;
}
.burger::before { width: 52%; top: 50%; transform: translate(-50%, -7px); }
.burger::after { width: 36%; bottom: 50%; transform: translate(-65%, 7px); }

body.menu-open .burger { background: var(--coral-deep); }
body.menu-open .burger::before { transform: translate(-50%, -50%) rotate(45deg); }
body.menu-open .burger::after { width: 52%; transform: translate(-50%, 50%) rotate(-45deg); }

/* ============ Onda líquida do menu (5 camadas SVG) ============ */
.menu-wave {
  position: fixed;
  inset: 0;
  z-index: 140;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: rotate(180deg); /* onda sobe do rodapé, como na referência */
}
.menu-wave path:nth-of-type(1) { fill: rgba(233, 105, 74, 0.25); }
.menu-wave path:nth-of-type(2) { fill: rgba(242, 168, 125, 0.20); }
.menu-wave path:nth-of-type(3) { fill: rgba(248, 223, 124, 0.25); }
.menu-wave path:nth-of-type(4) { fill: rgba(233, 105, 74, 0.40); }
.menu-wave path:nth-of-type(5) { fill: #2A2320; }

/* ============ Menu Overlay ============ */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* conteúdo só aparece depois da onda cobrir a tela (~1.25s no total) */
  transition: opacity 0.4s ease-in-out, visibility 0s linear 0.4s;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.5s 0.75s ease-in-out, visibility 0s;
}

.menu-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl) var(--gutter);
  gap: 0.2em;
}

.menu-nav a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-decoration: none;
  width: fit-content;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4em;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo), color 0.3s;
}
.menu-overlay.is-open .menu-nav a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.8s + var(--i) * 0.08s);
}
.menu-nav a:hover { color: var(--sun); }
.menu-nav a sup {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--peach);
}

.menu-aside {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: var(--space-m);
  padding: var(--space-xl) var(--gutter);
  border-left: 1px solid rgba(251, 247, 240, 0.15);
  font-size: var(--step--1);
  color: rgba(251, 247, 240, 0.65);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}
.menu-overlay.is-open .menu-aside {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 1.05s;
}
.menu-aside strong { color: var(--cream); font-weight: 500; }
.menu-aside .sun-mini { width: 56px; }

@media (max-width: 767px) {
  .menu-overlay { grid-template-columns: 1fr; grid-template-rows: 1fr auto; }
  .menu-aside { border-left: none; border-top: 1px solid rgba(251, 247, 240, 0.15); padding-block: var(--space-m); }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: #fff;
  padding: var(--space-xl) 0 var(--space-l);
  background-color: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 12s var(--ease-out-expo) both;
}
@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 20, 14, 0.72) 0%,
    rgba(30, 20, 14, 0.25) 45%,
    rgba(30, 20, 14, 0.18) 100%
  );
}

.hero-logo {
  height: clamp(64px, 8vw, 96px);
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.35));
  margin-bottom: var(--space-m);
}

.hero h1 {
  font-size: var(--step-4);
  font-weight: 300;
  max-width: 11ch;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--sun);
}

.hero p {
  max-width: 44ch;
  margin-top: var(--space-s);
  font-size: var(--step-1);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: var(--space-m);
}

.hero-reveal > * {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 1s var(--ease-out-expo) forwards;
}
.hero-reveal > *:nth-child(1) { animation-delay: 0.2s; }
.hero-reveal > *:nth-child(2) { animation-delay: 0.35s; }
.hero-reveal > *:nth-child(3) { animation-delay: 0.5s; }
.hero-reveal > *:nth-child(4) { animation-delay: 0.65s; }

@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .scroll-hint { display: none; }
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  translate: -50% 0;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.scroll-hint::after {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  animation: drip 2s var(--ease-out-expo) infinite;
}
@keyframes drip {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

/* ============ Marquee ============ */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--sun-soft);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-style: italic;
  white-space: nowrap;
}
.marquee-track span::after {
  content: '✺';
  margin-left: 3rem;
  font-style: normal;
  color: var(--peach);
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============ Reveal on scroll ============ */
/* Estado escondido só existe com JS ativo — sem JS, tudo fica visível */
html.js .reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
  transition-delay: var(--d, 0s);
}
html.js .reveal.in-view { opacity: 1; transform: translateY(0); }
/* Já estava no viewport ao carregar (ex.: âncora direta): aparece sem animar */
html.js .reveal.no-anim { transition: none; }

/* ============ Intro editorial ============ */
.intro {
  padding: var(--space-xl) 0;
  text-align: center;
}
.intro h2 {
  font-size: var(--step-3);
  font-weight: 300;
  max-width: 24ch;
  margin-inline: auto;
}
.intro h2 em { font-style: italic; color: var(--coral-deep); }
.intro p {
  max-width: 58ch;
  margin: var(--space-m) auto 0;
  color: var(--ink-soft);
  font-size: var(--step-1);
}

/* ============ Experiências ============ */
.experiences { padding-bottom: var(--space-xl); }

.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: var(--space-m);
  margin-top: var(--space-l);
}

.exp-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
}
.exp-card img {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out-expo);
}
.exp-card:hover img { transform: scale(1.06); }
.exp-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to top, rgba(25, 17, 12, 0.78), transparent 60%);
}
.exp-card-body { padding: var(--space-m); }
.exp-card h3 { font-size: var(--step-2); font-weight: 400; }
.exp-card p {
  font-size: var(--step--1);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.4rem;
  max-width: 30ch;
}
.exp-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  background: color-mix(in srgb, var(--sun) 30%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  margin-bottom: 0.8rem;
}

/* ============ Números ============ */
.numbers {
  background: var(--cream-2);
  border-block: 1px solid rgba(55, 50, 46, 0.08);
  padding: var(--space-l) 0;
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
  gap: var(--space-m);
  text-align: center;
}
.numbers-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--step-3);
  font-weight: 300;
  color: var(--coral-deep);
  line-height: 1;
}
.numbers-grid span {
  display: block;
  margin-top: 0.5rem;
  font-size: var(--step--1);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}

/* ============ Galeria ============ */
.gallery { padding: var(--space-xl) 0; }
.gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-m);
  flex-wrap: wrap;
}
.gallery-head h2 { font-size: var(--step-3); font-weight: 300; }
.gallery-head p { color: var(--ink-soft); max-width: 40ch; }

.gallery-track {
  display: flex;
  gap: var(--space-s);
  margin-top: var(--space-l);
  padding-inline: var(--gutter);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track figure {
  flex: 0 0 auto;
  width: clamp(240px, 32vw, 420px);
  scroll-snap-align: center;
}
.gallery-track figure:nth-child(even) { margin-top: var(--space-m); }
.gallery-track img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
}
.gallery-track figcaption {
  font-size: var(--step--1);
  color: var(--ink-soft);
  margin-top: 0.6rem;
}

/* ============ Cardoso ============ */
.cardoso {
  position: relative;
  isolation: isolate;
  color: #fff;
  padding: var(--space-xl) 0;
  min-height: 82svh;
  display: flex;
  align-items: center;
}
.cardoso-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.cardoso-bg img { width: 100%; height: 100%; object-fit: cover; }
.cardoso-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(30, 20, 14, 0.72) 15%, rgba(30, 20, 14, 0.15) 70%);
}
.cardoso .eyebrow { color: var(--sun); }
.cardoso h2 { font-size: var(--step-3); font-weight: 300; max-width: 16ch; }
.cardoso p {
  max-width: 52ch;
  margin-top: var(--space-s);
  color: rgba(255, 255, 255, 0.88);
}
.cardoso .pill { margin-top: var(--space-m); }

/* ============ Boa estadia ============ */
.stay { padding: var(--space-xl) 0; }
.stay-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: var(--space-l);
  align-items: start;
}
.stay h2 { font-size: var(--step-3); font-weight: 300; max-width: 14ch; }
.stay h2 em { font-style: italic; color: var(--coral-deep); }
.stay-intro p { color: var(--ink-soft); margin-top: var(--space-s); max-width: 46ch; }

.stay-list { list-style: none; }
.stay-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(55, 50, 46, 0.12);
  font-size: var(--step-0);
}
.stay-list li::before {
  content: '✺';
  color: var(--coral);
  flex: 0 0 auto;
}
.stay-list strong { font-weight: 500; }
.stay-list span { color: var(--ink-soft); }

/* ============ CTA final ============ */
.cta-final {
  margin: 0 var(--gutter) var(--space-l);
  border-radius: calc(var(--radius) * 1.5);
  background:
    radial-gradient(at 80% -20%, var(--sun-soft) 0, transparent 55%),
    radial-gradient(at 10% 120%, var(--coral-deep) 0, transparent 60%),
    linear-gradient(120deg, var(--peach), var(--coral), var(--coral-deep), var(--coral), var(--peach));
  background-size: 220% 220%;
  animation: cta-drift 16s ease-in-out infinite;
  color: #fff;
  text-align: center;
  padding: var(--space-xl) var(--gutter);
  overflow: hidden;
  position: relative;
}
.cta-final h2 {
  font-size: var(--step-3);
  font-weight: 300;
  max-width: 18ch;
  margin-inline: auto;
  text-wrap: balance;
}
.cta-final p {
  max-width: 44ch;
  margin: var(--space-s) auto 0;
  color: rgba(255, 255, 255, 0.92);
}
.cta-final .pill {
  margin-top: var(--space-m);
  background: var(--ink);
  color: var(--cream);
  box-shadow: 0 12px 32px rgba(30, 20, 14, 0.3);
}
/* Degradê laranja em movimento lento */
@keyframes cta-drift {
  0%, 100% { background-position: 0% 20%; }
  50% { background-position: 100% 80%; }
}
.cta-final .sun-float {
  position: absolute;
  width: clamp(120px, 18vw, 220px);
  right: -3%;
  bottom: -18%;
  opacity: 0.35;
  animation: float 7s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* ============ Footer ============ */
.site-footer {
  background: var(--ink);
  color: rgba(251, 247, 240, 0.75);
  padding: var(--space-l) 0;
  font-size: var(--step--1);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: var(--space-m);
  align-items: start;
}
.site-footer img { height: 44px; width: auto; opacity: 0.9; }
.site-footer nav { display: flex; flex-direction: column; gap: 0.5rem; }
.site-footer a { text-decoration: none; transition: color 0.25s; }
.site-footer a:hover { color: var(--sun); }
.site-footer .credit {
  margin-top: var(--space-l);
  padding-top: var(--space-s);
  border-top: 1px solid rgba(251, 247, 240, 0.12);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============ Página interna — hero menor ============ */
.page-hero {
  position: relative;
  min-height: 62svh;
  display: flex;
  align-items: flex-end;
  isolation: isolate;
  color: #fff;
  padding: var(--space-xl) 0 var(--space-l);
  background-color: var(--ink);
}
.page-hero .hero-bg img { animation: hero-zoom 12s var(--ease-out-expo) both; }
.page-hero h1 { font-size: var(--step-4); font-weight: 300; max-width: 14ch; }
.page-hero h1 em { font-style: italic; font-weight: 400; color: var(--sun); }
.page-hero p { max-width: 50ch; margin-top: var(--space-s); font-size: var(--step-1); color: rgba(255, 255, 255, 0.88); }

/* ============ Blocos de detalhe (feature split) ============ */
.feature {
  padding: var(--space-xl) 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-l);
  align-items: center;
}
.feature.is-reverse .feature-grid { direction: rtl; }
.feature.is-reverse .feature-grid > * { direction: ltr; }
@media (max-width: 900px) {
  .feature-grid { grid-template-columns: 1fr; }
  .feature.is-reverse .feature-grid { direction: ltr; }
}
.feature-media {
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-body h2 { font-size: var(--step-3); font-weight: 300; max-width: 14ch; }
.feature-body h2 em { font-style: italic; color: var(--coral-deep); }
.feature-body > p { color: var(--ink-soft); margin-top: var(--space-s); max-width: 46ch; }

.feature-list { list-style: none; margin-top: var(--space-m); }
.feature-list li {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(55, 50, 46, 0.12);
}
.feature-list li::before {
  content: '✺';
  color: var(--coral);
  flex: 0 0 auto;
}
.feature-list strong { font-weight: 500; }
.feature-list span { color: var(--ink-soft); }

/* ============ Motion safety ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .hero-reveal > * { opacity: 1; transform: none; }
}

/* ============ Botão Voltar ao Topo ============ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: var(--coral);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s var(--ease-out-expo), visibility 0.3s, transform 0.3s var(--ease-out-expo), background-color 0.2s;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background-color: var(--coral-deep);
}
.back-to-top svg {
  transition: transform 0.2s;
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
  }
}
