/* =====================================================================
   Blue Senior Living — Landing
   Redesign editorial: revista premium de hospitalidade.
   Azul da marca (navy #1C4A6E + celeste #5CBFE5) sobre neutros quentes
   (papel/areia), tipografia Fraunces (display) + Plus Jakarta Sans (texto),
   hairlines no lugar de vidro/sombras, ritmo assimétrico entre seções.
   ===================================================================== */

/* ---- Fontes self-hosted (variáveis, subset latin) — sem dependência de CDN ---- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 650;
  font-display: swap;
  src: url('../fonts/fraunces.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 300 650;
  font-display: swap;
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans.woff2') format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-italic.woff2') format('woff2');
}

:root {
  /* ---- Marca & escala navy ---- */
  --navy-950: #08151f;
  --navy-900: #0c2233;
  --navy-800: #11314a;
  --navy-700: #173e5c;
  --navy-600: #1c4a6e;   /* navy da marca */
  --navy-500: #2a5e86;
  --navy-400: #3d7099;
  --celeste:  #5cbfe5;   /* celeste da marca */
  --celeste-300: #9ad8f0;
  --celeste-600: #2f9bcb;

  /* ---- Neutros quentes (calor humano de apoio ao azul) ---- */
  --paper:   #fbf9f5;    /* fundo principal — off-white quente */
  --paper-2: #f4f0e8;    /* apoio */
  /* Antigos tons "areia" agora em azul claro (paleta só azul + branco):
     usados nas seções de acolhimento, dias do calendário e placeholders. */
  --sand:    #e7f1f9;
  --sand-2:  #d9e9f4;

  /* ---- Tinta ---- */
  --ink:       #152532;
  --ink-soft:  #52616d;
  --ink-faint: #8a96a0;

  /* ---- Hairlines ---- */
  --line:       rgba(21, 37, 50, .16);
  --line-soft:  rgba(21, 37, 50, .09);
  --line-light: rgba(255, 255, 255, .18);
  --line-light-soft: rgba(255, 255, 255, .10);

  /* ---- Superfícies / sombras (contidas) ---- */
  --bg-page: var(--paper);
  --cloud: #ffffff;
  --haze:  var(--paper-2);         /* aliases legados (blog) */
  --haze-2: var(--paper);
  --glass-dark:  rgba(8, 21, 31, .35);
  --glass-light: rgba(251, 249, 245, .92);
  --blur: blur(12px);
  --shadow-float: 0 30px 70px -45px rgba(8, 21, 31, .55);

  /* ---- Tipografia: display com personalidade + humanista limpa ---- */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-brand:   'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-ui:      'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  /* ---- Espaçamento (base 4px) ---- */
  --s-4: 4px;  --s-8: 8px;   --s-12: 12px; --s-16: 16px; --s-20: 20px;
  --s-24: 24px; --s-32: 32px; --s-48: 48px; --s-64: 64px; --s-80: 80px; --s-120: 120px;
  --section-pad: clamp(72px, 10vw, 136px);
  --wrap: 1200px;

  /* ---- Raios: cantos suaves, botões pill ---- */
  --r-input: 10px;
  --r-btn: 999px;
  --r-img: 16px;
  --r-card: 20px;
  --r-pill: 999px;

  /* ---- Movimento sereno: um vocabulário só ----
     micro (hover/foco) 200ms · padrão (botões/cards/links) 250ms ·
     entrada (reveals/navbar/mensagens) 400ms · sempre ease-out, só transform/opacity */
  --ease: cubic-bezier(.25, .6, .25, 1);
  --dur-fast: 200ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;
}

/* ===================== Base ===================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { scroll-padding-top: 92px; }

body {
  font-family: var(--font-ui);
  font-size: clamp(16px, 1.1vw, 17px);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
/* The hidden attribute must always win over class-based display (e.g. booker__status). */
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--celeste);
  outline-offset: 3px;
  border-radius: 3px;
}

.wrap { width: min(100% - 48px, var(--wrap)); margin-inline: auto; }

.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--navy-600); color: #fff; padding: 10px 18px;
  border-radius: var(--r-pill); transform: translateY(-160%); transition: transform var(--dur-fast) var(--ease);
  font-weight: 600;
}
.skip-link:focus { transform: translateY(0); }

/* ===================== Tipografia ===================== */
.eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-ui);
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy-500); margin-bottom: var(--s-20);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .55; flex: none; }
.eyebrow--light { color: var(--celeste-300); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .55; flex: none; }

.section__title {
  font-family: var(--font-display);
  font-weight: 450; line-height: 1.1; letter-spacing: -0.012em;
  font-size: clamp(29px, 3.6vw, 46px);
  color: var(--ink);
  text-wrap: balance;
}
.section__title em { font-style: italic; font-weight: 430; }
.section--navy .section__title,
.section--concept .section__title,
.section--family .section__title { color: #fff; }

.section__lead {
  font-size: clamp(16.5px, 1.5vw, 19px); line-height: 1.7; color: var(--ink-soft);
  max-width: 58ch;
}
.section__lead--light { color: rgba(233, 241, 248, .82); }
.section__lead em { font-style: italic; color: var(--navy-600); }
.section__lead strong { color: inherit; font-weight: 600; }

/* ===================== Botões — hierarquia real ===================== */
.btn {
  --btn-bg: var(--navy-600); --btn-fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15.5px; line-height: 1;
  padding: 16px 28px; border-radius: var(--r-btn); border: 1px solid transparent;
  background: var(--btn-bg); color: var(--btn-fg); cursor: pointer;
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease),
    border-color var(--dur-base) var(--ease), transform var(--dur-base) var(--ease),
    box-shadow var(--dur-base) var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; transition: transform var(--dur-base) var(--ease); }
.btn:hover { transform: translateY(-2px); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translateY(0); transition-duration: var(--dur-fast); }

.btn--lg { padding: 18px 32px; font-size: 16.5px; }
.btn--block { width: 100%; }

/* Primária — celeste da marca, sólida e serena */
.btn--primary { background: var(--celeste); color: var(--navy-950); }
.btn--primary:hover { background: var(--celeste-600); box-shadow: 0 12px 26px -14px rgba(47, 155, 203, .6); }

/* Escura — navy sólido (ações de apoio com peso) */
.btn--dark { background: var(--navy-600); color: #fff; }
.btn--dark:hover { background: var(--navy-700); }

/* Contorno sobre fundo escuro */
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .55); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }

/* Contorno sobre fundo claro */
.btn--ghost-ink { background: transparent; color: var(--navy-600); border-color: rgba(28, 74, 110, .38); }
.btn--ghost-ink:hover { background: rgba(28, 74, 110, .07); border-color: var(--navy-600); }

/* WhatsApp — reconhecível, sem gritar */
.btn--whatsapp { background: #25d366; color: #06351a; }
.btn--whatsapp:hover { background: #1fbd5a; }

/* Estado de envio (agendamento): spinner inline no próprio botão */
.btn.is-loading { pointer-events: none; opacity: .85; }
.btn.is-loading::before {
  content: ""; width: 1em; height: 1em; flex: none; border-radius: 50%;
  border: 2px solid rgba(8, 21, 31, .3); border-top-color: var(--navy-950);
  animation: spin .7s linear infinite;
}

/* Link editorial com seta — terciário */
.btn-line {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-ui); font-weight: 600; font-size: 15.5px;
  color: inherit; padding: 6px 2px;
  border-bottom: 1px solid currentColor;
  transition: gap var(--dur-base) var(--ease), opacity var(--dur-fast);
}
.btn-line svg { width: 1.05em; height: 1.05em; }
.btn-line:hover { gap: 16px; }

/* ===================== Marca ===================== */
.brand { display: inline-flex; align-items: center; gap: 13px; color: inherit; }
.brand__emblem { width: 34px; height: 44px; color: currentColor; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-brand); font-weight: 600; font-size: 20px;
  letter-spacing: .3em; padding-left: .3em; white-space: nowrap;
}
.brand__sub {
  font-family: var(--font-brand); font-weight: 500; font-size: 9px;
  letter-spacing: .44em; padding-left: .44em; margin-top: 5px; opacity: .8; white-space: nowrap;
}

/* ===================== Navbar — quieta, editorial ===================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  color: #fff;
  background: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  transition: background var(--dur-slow) var(--ease), color var(--dur-slow) var(--ease), border-color var(--dur-slow) var(--ease), box-shadow var(--dur-slow) var(--ease);
}
.nav.is-scrolled {
  color: var(--ink);
  background: var(--glass-light);
  backdrop-filter: var(--blur); -webkit-backdrop-filter: var(--blur);
  border-bottom-color: var(--line-soft);
  box-shadow: 0 14px 40px -32px rgba(12, 34, 51, .5);
}
.nav__inner {
  width: min(100% - 48px, 1280px); margin-inline: auto;
  display: flex; align-items: center; gap: var(--s-16);
  height: 78px;
}
.nav__links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav__links a {
  position: relative;
  font-weight: 600; font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 9px;
  color: inherit; opacity: .88; transition: opacity var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
  white-space: nowrap;
}
.nav__links a::after {
  content: ""; position: absolute; left: 9px; right: 9px; bottom: 5px; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-base) var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; align-items: center; gap: var(--s-12); margin-left: var(--s-8); }

.link-app {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: inherit; opacity: .82; padding: 8px 2px;
  transition: opacity var(--dur-fast) var(--ease); white-space: nowrap;
}
.link-app svg { width: 14px; height: 14px; }
.link-app:hover { opacity: 1; text-decoration: underline; text-underline-offset: 5px; }

.nav__cta { padding: 13px 24px; font-size: 14px; }
.nav__cta--mini { display: none; }

.nav__toggle {
  display: none; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: 0; background: transparent; color: inherit;
  border-radius: var(--r-btn); cursor: pointer;
}
.nav__toggle svg { width: 26px; height: 26px; }

/* ===================== Drawer mobile ===================== */
.drawer { position: fixed; inset: 0; z-index: 150; }
.drawer[hidden] { display: none; }
.drawer__backdrop { position: absolute; inset: 0; background: rgba(8, 21, 31, .55); }
.drawer__panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 380px);
  background: var(--paper); color: var(--ink);
  padding: calc(22px + env(safe-area-inset-top)) 26px calc(24px + env(safe-area-inset-bottom));
  display: flex; flex-direction: column; gap: 2px;
  box-shadow: -24px 0 70px -40px rgba(8, 21, 31, .7);
  transform: translateX(100%); transition: transform 300ms var(--ease);
  overflow-y: auto; overscroll-behavior: contain;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; color: var(--navy-600); }
.drawer__close { width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 50%; color: var(--ink); cursor: pointer; }
.drawer__close svg { width: 20px; height: 20px; margin-inline: auto; }
.drawer__panel > a:not(.btn) {
  font-family: var(--font-display); font-weight: 500; font-size: 20px;
  padding: 15px 4px; border-bottom: 1px solid var(--line-soft); color: var(--ink);
  transition: color var(--dur-base) var(--ease), padding-left var(--dur-base) var(--ease);
}
.drawer__panel > a:not(.btn):hover { color: var(--navy-500); padding-left: 10px; }
.drawer__cta { margin-top: 22px; display: grid; gap: 10px; }
.drawer__cta .btn { gap: 8px; }

/* ===================== Hero — vídeo com composição editorial ===================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; flex-direction: column;
  /* Centralização via margin-block:auto no conteúdo (não justify-content:center):
     no Safari/iOS, flex + min-height + justify center transborda o conteúdo por
     baixo da navbar quando ele excede a altura; margens auto nunca ficam negativas. */
  padding: 130px 0 110px; overflow: hidden;
  color: #fff;
}
/* O pôster é o fundo do container: se o vídeo não tocar (autoplay bloqueado,
   Low Power Mode), vê-se a imagem parada — sem NENHUM botão de play, porque o
   controle nativo mora dentro do <video>, que fica invisível até tocar de fato. */
.hero__media {
  position: absolute; inset: 0; z-index: 0;
  background: var(--navy-950) url('../img/hero-poster.jpg') center / cover no-repeat;
}
.hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center; pointer-events: none;
  opacity: 0; transition: opacity .8s var(--ease);
  transform-origin: 50% 45%; backface-visibility: hidden; will-change: transform, opacity;
  animation: heroZoom 50s ease-in-out infinite alternate;
}
.hero__video.is-playing { opacity: 1; }   /* só aparece quando o vídeo realmente toca */
@keyframes heroZoom { from { transform: scale(1.03) translateZ(0); } to { transform: scale(1.08) translateZ(0); } }
/* Suprime qualquer chrome/overlay de "play" do WebKit no vídeo mudo de fundo */
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-overlay-play-button,
.hero__video::-webkit-media-controls-play-button,
.hero__video::-webkit-media-controls-start-playback-button {
  display: none !important; -webkit-appearance: none; opacity: 0;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(102deg, rgba(8, 21, 31, .78) 0%, rgba(8, 21, 31, .42) 46%, rgba(8, 21, 31, .12) 78%),
    linear-gradient(180deg, rgba(8, 21, 31, .42) 0%, rgba(8, 21, 31, 0) 26%, rgba(8, 21, 31, 0) 58%, var(--navy-950) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  width: min(100% - 48px, var(--wrap)); margin-inline: auto;
  max-width: min(100% - 48px, 1040px);
  margin-left: max(24px, calc((100vw - var(--wrap)) / 2));
  margin-block: auto; /* centra vertical sem transbordar (ver .hero acima) */
}
.hero__eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 12px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--celeste-300); margin-bottom: var(--s-24);
}
.hero__eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .6; flex: none; }
.hero__title {
  font-family: var(--font-display); font-weight: 450;
  font-size: clamp(40px, 5.8vw, 76px); line-height: 1.05; letter-spacing: -0.015em;
  margin-bottom: var(--s-24); text-wrap: balance;
  text-shadow: 0 2px 34px rgba(8, 21, 31, .5);
}
.hero__title em { font-style: italic; font-weight: 430; color: var(--celeste-300); }
.hero__subtitle {
  font-size: clamp(16.5px, 1.7vw, 20px); line-height: 1.65; max-width: 52ch;
  color: rgba(238, 245, 250, .88); margin-bottom: var(--s-48);
  text-shadow: 0 1px 16px rgba(8, 21, 31, .45);
}
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: clamp(18px, 3vw, 32px); }
.hero__cta .btn-line { color: rgba(255, 255, 255, .92); padding-block: 10px 8px; }
.hero__cta .btn-line:hover { color: #fff; }

/* Entrada serena — fade-up escalonado (desligado sob reduced-motion) */
@keyframes heroIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.hero__eyebrow { animation: heroIn var(--dur-slow) var(--ease) both; }
.hero__title { animation: heroIn var(--dur-slow) var(--ease) .08s both; }
.hero__subtitle { animation: heroIn var(--dur-slow) var(--ease) .16s both; }
.hero__cta { animation: heroIn var(--dur-slow) var(--ease) .24s both; }
.hero__scroll { animation: heroIn var(--dur-slow) var(--ease) .5s both; }

.hero__scroll {
  position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); z-index: 1;
  display: inline-flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(255, 255, 255, .72); font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  padding-bottom: 0;
}
.hero__scroll svg { display: none; }
.hero__scroll::after {
  content: ""; width: 1px; height: 64px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .75), rgba(255, 255, 255, 0));
  animation: scrollLine 2.6s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollLine { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* ===================== Seções — ritmo variado ===================== */
.section { padding-block: var(--section-pad); position: relative; }
.section__head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 72px); }
.section__head .section__lead { margin-top: var(--s-20); }

/* Fundo navy profundo, plano — sem brilhos genéricos */
.section--navy { background: var(--navy-900); color: #fff; }

/* Areia — momentos de acolhimento */
.section--sand { background: var(--sand); }
.section--band { padding-block: clamp(56px, 8vw, 96px); }

/* ---- Conceito (Blue Zones) — continua do hero, capítulo de abertura ---- */
.section--concept {
  background-color: var(--navy-900);
  background-image: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 34%, var(--navy-900) 100%);
  color: #fff;
  padding-top: clamp(56px, 8vw, 104px);
}
.concept { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6.5vw, 104px); align-items: start; }
.concept__head { max-width: 560px; }
.section--concept .section__lead em { color: var(--celeste-300); font-style: italic; }
.concept__bridge {
  font-family: var(--font-ui); font-weight: 600; font-size: 12px;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--celeste-300); margin-bottom: var(--s-20);
}
.zones { border-top: 1px solid var(--line-light-soft); }
.zone {
  display: grid; grid-template-columns: 44px 1fr; gap: 16px; align-items: baseline;
  padding: 19px 2px; border-bottom: 1px solid var(--line-light-soft);
}
.zone__num {
  font-family: var(--font-ui); font-weight: 500; font-size: 12.5px; letter-spacing: .08em;
  color: rgba(154, 216, 240, .8); padding-top: 5px;
}
.zone__k {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 1.8vw, 23px);
  color: #fff; line-height: 1.2; margin-bottom: 3px;
}
.zone__v { font-size: 14.5px; line-height: 1.5; color: rgba(233, 241, 248, .68); }

/* ---- Pilares de cuidado — índice editorial (nada de grade de caixinhas) ---- */
.pcare { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(44px, 6vw, 110px); align-items: start; }
.pcare__head { position: sticky; top: 118px; }
.pcare__list { counter-reset: pcare; border-top: 1px solid var(--line); }
.pcare__item {
  display: grid; grid-template-columns: 52px 1fr; gap: clamp(16px, 2.5vw, 34px);
  padding: clamp(24px, 3vw, 34px) 2px; border-bottom: 1px solid var(--line);
}
.pcare__num {
  font-family: var(--font-ui); font-weight: 500; font-size: 12.5px; letter-spacing: .08em;
  color: var(--navy-500); padding-top: 8px;
}
.pcare__item h3 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 1.9vw, 24px);
  line-height: 1.22; color: var(--ink); margin-bottom: 8px; letter-spacing: -0.008em;
  transition: color var(--dur-base) var(--ease);
}
.pcare__num { transition: color var(--dur-base) var(--ease); }
.pcare__item:hover h3 { color: var(--navy-500); }
.pcare__item:hover .pcare__num { color: var(--celeste-600); }
.pcare__item p { font-size: 15.5px; line-height: 1.65; color: var(--ink-soft); max-width: 54ch; }

/* ---- Método (navy) — linha do tempo, sem caixas de vidro ---- */
.method { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(44px, 6vw, 100px); align-items: start; }
.method__lead-2 { margin-top: var(--s-16); }
.method__intro strong { color: #fff; font-weight: 600; }
.method__tagline {
  margin-top: var(--s-32); font-family: var(--font-display); font-style: italic; font-weight: 430;
  font-size: clamp(20px, 2vw, 25px); color: var(--celeste-300); line-height: 1.42;
  max-width: 22ch;
}
.steps { position: relative; padding-left: 26px; }
.steps::before {
  content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px;
  background: var(--line-light);
}
.step { position: relative; padding: 0 0 34px 12px; }
.step:last-child { padding-bottom: 0; }
.step::before {
  content: ""; position: absolute; left: -30px; top: 9px;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--celeste); box-shadow: 0 0 0 5px rgba(92, 191, 229, .16);
}
.step h3 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 1.8vw, 22px);
  color: #fff; margin-bottom: 6px; line-height: 1.25;
}
.step p { font-size: 15px; line-height: 1.65; color: rgba(233, 241, 248, .74); max-width: 50ch; }
.step__icon { display: none; }

/* ---- Espaços — galeria assimétrica ---- */
.spaces { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(20px, 2.6vw, 34px) clamp(18px, 2.2vw, 30px); }
.space { min-width: 0; }
.space--featured { grid-column: 1 / 8; }
.space--tall { grid-column: 8 / 13; }
.space--half-a { grid-column: 1 / 6; }
.space--half-b { grid-column: 6 / 13; }
.space__media {
  border-radius: var(--r-img); overflow: hidden; background: var(--sand);
  border: 1px solid var(--line-soft);
}
.space__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.space--featured .space__media { aspect-ratio: 16 / 10.5; }
.space--tall .space__media { aspect-ratio: 4 / 3.6; }
.space--half-a .space__media { aspect-ratio: 4 / 2.9; }
.space--half-b .space__media { aspect-ratio: 16 / 9; }
.space:hover .space__media img { transform: scale(1.02); }
.space__cap { display: grid; grid-template-columns: auto 1fr; gap: 6px 22px; align-items: baseline; padding: 16px 2px 0; }
.space__cap h3 {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(19px, 1.8vw, 22px);
  color: var(--ink); white-space: nowrap;
}
.space__cap p { grid-column: 2; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.space__cap::before {
  content: attr(data-num); grid-row: 1; order: -1;
  font-family: var(--font-ui); font-weight: 500; font-size: 12.5px; letter-spacing: .08em;
  color: var(--navy-500); align-self: center;
}

.spaces__band {
  margin-top: clamp(40px, 6vw, 72px);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: clamp(26px, 3.5vw, 40px) 2px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s-24);
}
.spaces__band-text { min-width: 0; max-width: 62ch; }
.spaces__band-text > p:first-child {
  font-family: var(--font-display); font-weight: 450; font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45; color: var(--ink);
}
.rooms__scarcity {
  margin-top: 12px; display: flex; align-items: flex-start; gap: 9px;
  font-size: 14px; font-weight: 600; color: var(--navy-500);
}
.rooms__scarcity svg { width: 17px; height: 17px; flex: none; margin-top: 2px; color: var(--celeste-600); }

/* ---- Confiança (areia) — declaração editorial ---- */
.trust__head { max-width: 900px; }
.trust__body {
  margin-top: var(--s-24);
  columns: 2 340px; column-gap: clamp(32px, 4vw, 56px);
  font-size: clamp(16px, 1.4vw, 17.5px); line-height: 1.75; color: var(--ink-soft);
  max-width: 900px;
}
.assure {
  display: flex; flex-wrap: wrap; gap: 14px 0;
  margin-top: clamp(36px, 5vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 3vw, 30px);
}
.assure li {
  display: flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: 15px; color: var(--ink);
  padding-right: 28px; margin-right: 28px;
  border-right: 1px solid var(--line);
}
.assure li:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.assure svg { width: 20px; height: 20px; flex: none; color: var(--navy-500); }
.seal__icon { display: contents; }
.fineprint { margin-top: var(--s-24); font-size: 13px; line-height: 1.6; color: var(--ink-soft); opacity: .85; max-width: 80ch; }

/* ---- Família (navy) — imagem + declaração ---- */
.section--family { background-color: var(--navy-900); background-image: linear-gradient(180deg, var(--navy-900), var(--navy-800)); color: #fff; }
.family { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.family__media { border-radius: var(--r-img); overflow: hidden; border: 1px solid var(--line-light-soft); }
.family__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 4.4; }
.family__text p { color: rgba(238, 245, 250, .85); font-size: clamp(16px, 1.45vw, 17.5px); line-height: 1.7; max-width: 56ch; }
.family__text p + p { margin-top: var(--s-16); }
.family__highlight {
  margin-top: var(--s-32) !important;
  font-family: var(--font-display); font-style: italic; font-weight: 430;
  font-size: clamp(20px, 2vw, 25px) !important; line-height: 1.45 !important;
  color: #fff !important;
}
.family__highlight strong { color: var(--celeste-300); font-weight: 500; }
.family__text .btn { margin-top: var(--s-32); }

/* ---- Localização ---- */
.location { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5.5vw, 80px); align-items: center; }
.location__list { display: grid; gap: 18px; margin: var(--s-24) 0; }
.location__list li { display: flex; gap: 15px; align-items: flex-start; font-size: 16px; line-height: 1.55; }
.location__list svg {
  width: 38px; height: 38px; flex: none; color: var(--navy-500); padding: 8px;
  border: 1px solid var(--line); border-radius: 50%;
}
.location__hint { font-size: 14px; color: var(--ink-soft); }
.location__map { border-radius: var(--r-img); overflow: hidden; border: 1px solid var(--line-soft); }
.map-placeholder {
  position: relative; aspect-ratio: 4 / 3; background: linear-gradient(165deg, var(--sand), var(--paper-2));
  display: grid; place-items: center;
}
.map-placeholder__lines { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .8; }
.map-placeholder__pin {
  position: relative; z-index: 1; display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy-600); color: #fff;
  box-shadow: 0 18px 36px -16px rgba(28, 74, 110, .55);
}
.map-placeholder__pin svg { width: 26px; height: 26px; }
.map-placeholder__label {
  position: absolute; bottom: 16px; z-index: 1; font-size: 12.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--navy-700); background: rgba(251, 249, 245, .92); padding: 7px 14px; border-radius: var(--r-pill);
}

/* ---- Trabalhe conosco (areia, faixa curta) ---- */
.careers { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: clamp(28px, 4vw, 56px); }
.careers__text { flex: 1 1 460px; min-width: 0; max-width: 640px; }
.careers__text .section__lead { margin-top: var(--s-16); }
.careers__actions { display: flex; flex-direction: column; gap: 12px; flex: none; min-width: 260px; }
.careers__actions .btn { width: 100%; white-space: normal; text-align: center; }

/* ---- Agendamento ---- */
.section--cta { background-color: var(--navy-900); background-image: linear-gradient(180deg, var(--navy-900), var(--navy-950)); }
.schedule { display: grid; grid-template-columns: .94fr 1.06fr; gap: clamp(40px, 6vw, 96px); align-items: start; }
/* Itens de grid/flex podem encolher abaixo do min-content — evita overflow no mobile */
.concept > *, .method > *, .pcare > *, .spaces > *, .family > *,
.location > *, .schedule > *, .footer__inner > *, .nav__inner > * { min-width: 0; }

.schedule__contacts { margin-top: var(--s-32); border-top: 1px solid var(--line-light-soft); }
.contact-row {
  display: flex; align-items: center; gap: 16px; min-width: 0;
  padding: 17px 2px; border-bottom: 1px solid var(--line-light-soft);
  transition: padding-left var(--dur-base) var(--ease);
}
.contact-row:hover { padding-left: 10px; }
.contact-row svg { width: 21px; height: 21px; flex: none; color: var(--celeste-300); }
.contact-row span { display: flex; flex-direction: column; line-height: 1.35; min-width: 0; }
.contact-row small { font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(233, 241, 248, .55); }
.contact-row strong { font-size: 16px; color: #fff; font-weight: 600; overflow-wrap: anywhere; }

/* ---- Booker (calendário de visitas) ---- */
.booker {
  background: var(--paper); color: var(--ink);
  border-radius: 24px; padding: clamp(26px, 3.2vw, 40px);
  box-shadow: var(--shadow-float);
  border: 1px solid rgba(255, 255, 255, .5);
}
.form__title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(22px, 2vw, 25px);
  color: var(--ink); margin-bottom: var(--s-12); line-height: 1.2;
}
.form__intro { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: var(--s-16); }
.booker__status {
  animation: noteIn var(--dur-slow) var(--ease);
  margin-top: var(--s-16); padding: 14px 16px; border-radius: 14px;
  font-size: 14.5px; line-height: 1.55; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--paper-2); border: 1px solid var(--line-soft); color: var(--ink-soft);
}
.booker__status--error { background: rgba(214, 84, 96, .07); border-color: rgba(214, 84, 96, .35); color: #a23440; }
.booker__status--info { background: rgba(92, 191, 229, .1); border-color: rgba(47, 155, 203, .3); color: var(--navy-700); }
.booker__spin {
  width: 18px; height: 18px; flex: none; border-radius: 50%;
  border: 2px solid rgba(28, 74, 110, .22); border-top-color: var(--navy-600); animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes noteIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.booker__retry {
  font-family: var(--font-ui); font-weight: 600; font-size: 13px; cursor: pointer;
  padding: 7px 15px; border-radius: var(--r-pill); border: 1px solid currentColor; background: transparent; color: inherit;
}
.cal { margin-top: var(--s-20); }
.cal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.cal__month { font-family: var(--font-ui); font-weight: 600; font-size: 16.5px; color: var(--ink); text-transform: capitalize; }
.cal__nav {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--navy-600); font-size: 20px; line-height: 1; cursor: pointer;
  display: grid; place-items: center; transition: background var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), opacity var(--dur-fast) var(--ease);
}
.cal__nav:hover:not(:disabled) { background: var(--paper-2); border-color: var(--navy-500); }
.cal__nav:disabled { opacity: .28; cursor: default; }
.cal__weekdays { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-bottom: 8px; }
.cal__weekdays span { text-align: center; font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal__cell {
  aspect-ratio: 1; border: 0; background: transparent; border-radius: 50%; min-width: 0;
  font-family: var(--font-ui); font-size: 14px; font-weight: 600; color: #c3ccd4; display: grid; place-items: center;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.cal__cell--empty { visibility: hidden; }
.cal__cell.is-off { color: #c9d1d9; cursor: default; }
.cal__cell.is-open { color: var(--navy-700); cursor: pointer; background: var(--sand); }
.cal__cell.is-open:hover { background: rgba(92, 191, 229, .28); }
.cal__cell.is-selected { background: var(--navy-600); color: #fff; }
.slots { margin-top: var(--s-20); }
.slots__label { font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 10px; text-transform: capitalize; }
.slots__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(76px, 1fr)); gap: 8px; }
.slot {
  padding: 11px 6px; border-radius: var(--r-pill); border: 1px solid var(--line);
  background: transparent; color: var(--ink); font-family: var(--font-ui); font-weight: 600; font-size: 14px; cursor: pointer;
  transition: border-color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.slot:hover:not(.is-busy):not(.is-requested):not(.is-selected) { border-color: var(--navy-500); background: rgba(92, 191, 229, .12); }
.slot.is-selected { background: var(--navy-600); color: #fff; border-color: var(--navy-600); }
.slot.is-busy { color: #b6bfc7; background: #eef3f7; border-color: transparent; cursor: not-allowed; text-decoration: line-through; }
.slot.is-requested { color: var(--navy-600); background: rgba(92, 191, 229, .16); border-color: rgba(47, 155, 203, .4); cursor: default; }
.slot.is-requested::after { content: " ✓"; font-weight: 700; }
.booker__form { margin-top: var(--s-20); }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field__opt { font-weight: 400; color: var(--ink-soft); }
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 16px; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-input);
  padding: 13px 16px; transition: border-color var(--dur-fast) var(--ease), box-shadow var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
}
.field textarea { resize: vertical; min-height: 84px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa6b0; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--celeste-600);
  box-shadow: 0 0 0 4px rgba(92, 191, 229, .2);
}
.field--invalid input, .field--invalid textarea { border-color: #d65460; box-shadow: 0 0 0 4px rgba(214, 84, 96, .13); }
.booker__note { animation: noteIn var(--dur-slow) var(--ease); margin-top: 14px; padding: 15px 18px; border-radius: 14px; font-size: 14.5px; line-height: 1.6; }
.booker__note--ok { background: rgba(92, 191, 229, .13); border: 1px solid rgba(47, 155, 203, .35); color: var(--navy-700); }
.booker__note--error { background: rgba(214, 84, 96, .08); border: 1px solid rgba(214, 84, 96, .4); color: #a23440; }
.booker__note-link { display: inline-block; margin-top: 8px; font-weight: 600; color: var(--navy-600); }
.booker__note-sub { display: block; margin-top: 7px; font-size: 12.5px; opacity: .8; }
.booker__or { display: flex; align-items: center; gap: 14px; margin: 20px 0 14px; color: var(--ink-soft); font-size: 12.5px; letter-spacing: .04em; }
.booker__or::before, .booker__or::after { content: ""; height: 1px; flex: 1; background: var(--line-soft); }
.form__legal { margin-top: 14px; font-size: 12.5px; color: var(--ink-soft); text-align: center; }

/* ===================== Footer — assinatura editorial ===================== */
.footer { background: var(--navy-950); color: rgba(233, 241, 248, .78); }
.footer__hero {
  width: min(100% - 48px, var(--wrap)); margin-inline: auto;
  padding: clamp(64px, 9vw, 120px) 0 clamp(44px, 6vw, 72px);
  display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 5vw, 72px); align-items: end;
  border-bottom: 1px solid var(--line-light-soft);
}
.footer__statement {
  font-family: var(--font-display); font-weight: 450; line-height: 1.14; letter-spacing: -0.01em;
  font-size: clamp(28px, 3.6vw, 46px); color: #fff; text-wrap: balance;
}
.footer__statement em { font-style: italic; color: var(--celeste-300); }
.footer__hero-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; justify-self: end; }
.footer__hero-cta .btn { }
.footer__hero-note { font-size: 13.5px; color: rgba(233, 241, 248, .55); }

.footer__inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: clamp(32px, 4vw, 64px);
  padding: clamp(40px, 6vw, 64px) 0 clamp(40px, 5vw, 56px);
}
.footer__logo { display: inline-block; color: #fff; line-height: 0; }
.footer__logo svg { width: 190px; height: auto; }
.footer__tagline { margin-top: var(--s-20); font-size: 14.5px; line-height: 1.7; color: rgba(233, 241, 248, .62); max-width: 34ch; }
.footer__col h4 {
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--celeste-300); margin-bottom: var(--s-20); font-weight: 600;
}
.footer__col a:not(.btn) {
  display: flex; width: fit-content; align-items: center; gap: 8px;
  color: rgba(233, 241, 248, .78); font-size: 15px; padding: 6px 0;
  transition: color var(--dur-base) var(--ease), padding-left var(--dur-base) var(--ease); max-width: 100%;
}
.footer__col a span { overflow-wrap: anywhere; min-width: 0; }
[data-email-display] { overflow-wrap: anywhere; }
.footer__col a:not(.btn):hover { color: #fff; padding-left: 6px; }
.footer__col a:not(.btn) svg { width: 15px; height: 15px; }
.footer__address { margin-top: var(--s-12); font-size: 14px; color: rgba(233, 241, 248, .55); line-height: 1.65; }
.footer__app { font-weight: 500; }
.footer__cta { margin-top: var(--s-20); padding: 15px 30px; font-size: 16px; }
.footer__bar {
  border-top: 1px solid var(--line-light-soft);
  padding: 24px 0 calc(24px + env(safe-area-inset-bottom));
  width: min(100% - 48px, var(--wrap)); margin-inline: auto;
  display: flex; flex-wrap: wrap; gap: 6px 24px; justify-content: space-between; align-items: center;
}
.footer__bar p { font-size: 13px; color: rgba(233, 241, 248, .5); }
.footer__disc { max-width: 60ch; }

/* ===================== Botão flutuante ===================== */
.fab {
  position: fixed; z-index: 90;
  right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom));
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #06351a; font-weight: 600; font-size: 15px;
  padding: 15px 22px; border-radius: var(--r-pill);
  box-shadow: 0 18px 40px -16px rgba(7, 53, 26, .55);
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease),
    opacity var(--dur-slow) var(--ease);
}
.fab svg { width: 24px; height: 24px; }
.fab:hover { transform: translateY(-2px); box-shadow: 0 24px 48px -16px rgba(7, 53, 26, .6); }
/* Com JS: entra suave depois de um pequeno scroll; sem JS, fica sempre visível */
.has-fab .fab { opacity: 0; transform: translateY(14px); pointer-events: none; }
.has-fab .fab.is-in { opacity: 1; transform: translateY(0); pointer-events: auto; }
.has-fab .fab.is-in:hover { transform: translateY(-2px); }
/* micro-pulso MUITO sutil e espaçado (1 respiro a cada 7s), só no ícone */
.has-fab .fab.is-in svg { animation: fabPulse 7s var(--ease) 3s infinite; }
@keyframes fabPulse {
  0%, 92%, 100% { transform: scale(1); }
  95% { transform: scale(1.12); }
}

/* ===================== Imagens: fade-in ao carregar (gate via JS) ===================== */
.has-imgfade img { opacity: 0; transition: opacity var(--dur-slow) var(--ease); }
.has-imgfade img.is-loaded { opacity: 1; }

/* ===================== Reveal no scroll (ativado via JS; nunca esconde sem JS) ===================== */
.has-reveal [data-reveal] {
  opacity: 0; transform: translateY(12px);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}
.has-reveal [data-reveal].is-visible { opacity: 1; transform: none; }

/* ===================== Renders do empreendimento (perspectivas ilustrativas) =====================
   Arquivos em assets/img/renders — nomes estáveis para facilitar a troca futura por fotos reais. */
.render-note {
  position: absolute; right: 12px; bottom: 12px; z-index: 2;
  margin: 0; font-size: 10.5px; font-weight: 500; letter-spacing: .02em; line-height: 1;
  color: rgba(255, 255, 255, .85); background: rgba(8, 21, 31, .48);
  padding: 6px 11px; border-radius: var(--r-pill);
  pointer-events: none;
}
.spaces__note { margin-top: 16px; font-size: 12.5px; color: var(--ink-faint); }
.location__map { position: relative; }
.location__map img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.family__media { position: relative; }
/* Conceito: aérea do empreendimento sob véu navy — o texto continua protagonista */
.section--concept { position: relative; }
.concept__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.concept__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 62%; }
.concept__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--navy-950) 0%, rgba(8, 21, 31, .87) 36%, rgba(12, 34, 51, .8) 100%);
}
.section--concept > .wrap { position: relative; z-index: 1; }

/* ===================== Responsivo ===================== */
@media (max-width: 1024px) {
  .concept { grid-template-columns: 1fr; gap: 40px; }
  .pcare { grid-template-columns: 1fr; gap: 36px; }
  .pcare__head { position: static; }
  .method { grid-template-columns: 1fr; gap: 44px; }
  .family { grid-template-columns: 1fr; gap: 36px; }
  .family__media { order: 2; max-width: 560px; }
  .family__media img { aspect-ratio: 16 / 10; }
  .location { grid-template-columns: 1fr; gap: 36px; }
  .schedule { grid-template-columns: 1fr; gap: 44px; }
  .footer__hero { grid-template-columns: 1fr; align-items: start; }
  .footer__hero-cta { justify-self: start; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .spaces { grid-template-columns: 1fr 1fr; }
  .space--featured, .space--tall, .space--half-a, .space--half-b { grid-column: auto; }
  .space--featured { grid-column: 1 / -1; }
  .space--featured .space__media { aspect-ratio: 16 / 9; }
  .space--tall .space__media, .space--half-a .space__media, .space--half-b .space__media { aspect-ratio: 4 / 3; }
}

@media (max-width: 1280px) {
  .nav__links, .nav__actions .link-app { display: none; }
  .nav__toggle { display: inline-flex; }
  .nav__cta { padding: 12px 18px; font-size: 13.5px; }
  .nav__cta--full { display: none; }
  .nav__cta--mini { display: inline; }
  .nav__inner { height: 66px; }
  html { scroll-padding-top: 82px; }
  /* Mobile: barra rolada totalmente opaca — o vidro translúcido deixava o
     conteúdo vazar por trás do menu compacto. */
  .nav.is-scrolled {
    background: var(--paper);
    backdrop-filter: none; -webkit-backdrop-filter: none;
  }
}

/* Mobile/tablet: sem zoom no vídeo — só o loop, mais fluido (evita jank de
   transform contínuo competindo com o decode no celular). */
@media (max-width: 768px) {
  .hero__video { animation: none; transform: none; will-change: opacity; }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 36px, var(--wrap)); }
  .nav__inner { width: min(100% - 36px, 1280px); }
  .hero { padding-top: 104px; padding-bottom: 96px; }
  .hero__content { margin-left: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__cta .btn-line { align-self: center; }
  .zone { grid-template-columns: 44px 1fr; gap: 12px; }
  .pcare__item { grid-template-columns: 46px 1fr; }
  .spaces { grid-template-columns: 1fr; }
  .space__cap { grid-template-columns: auto 1fr; }
  .spaces__band { flex-direction: column; align-items: stretch; }
  .spaces__band .btn { width: 100%; white-space: normal; }
  .assure { flex-direction: column; gap: 0; }
  .assure li { border-right: 0; margin-right: 0; padding: 13px 0; border-bottom: 1px solid var(--line-soft); }
  .assure li:last-child { border-bottom: 0; }
  .family__text > .btn { width: 100%; white-space: normal; }
  .careers__actions { width: 100%; min-width: 0; }
  /* Rodapé centralizado e simétrico no mobile */
  .footer__hero { padding-top: 56px; text-align: center; }
  .footer__statement { margin-inline: auto; }
  .footer__hero-cta { align-items: center; justify-self: center; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .footer__logo { margin-inline: auto; }
  .footer__tagline { margin-inline: auto; }
  .footer__col a:not(.btn) { margin-inline: auto; justify-content: center; }
  .footer__col a:not(.btn):hover { padding-left: 0; }
  .footer__bar { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .btn--lg { white-space: normal; }
  .fab__label { display: none; }
  .fab { padding: 15px; }
  .fab svg { width: 27px; height: 27px; }
}

@media (max-width: 380px) {
  .brand__name { font-size: 18px; }
  .brand__emblem { width: 30px; height: 39px; }
  .nav .brand__sub { display: none; }
  .nav .brand__name { font-size: 20px; }
}

/* ===================== Reduced motion ===================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .hero__scroll::after { animation: none; }
  .has-fab .fab, .has-fab .fab.is-in { opacity: 1; transform: none; pointer-events: auto; }
  .has-fab .fab.is-in svg { animation: none; }
  .has-reveal [data-reveal] { opacity: 1; transform: none; }
  .has-imgfade img { opacity: 1; transition: none; }
}
