/* =========================================================
   Instituto Íntimo — Dra. Carolina Amorim
   Identidade: Cinzel (títulos) + Montserrat (texto)
   Paleta oficial da marca
   ========================================================= */

:root {
  --rosa: #C17A84;
  --rosa-claro: #D8B4B0;
  --rosa-vinho: #A55F6A;
  --dourado: #C9A96B;
  --dourado-claro: #E0CBA0;
  --grafite: #3E3A39;
  --grafite-claro: #6B6462;
  --areia: #F7F3EE;
  --areia-escura: #EFE8DF;
  --branco: #FFFFFF;

  --serif: 'Cinzel', 'Times New Roman', serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max: 1220px;
  --gut: 24px;
  --radius: 2px;
  --shadow: 0 18px 50px -28px rgba(62, 58, 57, .38);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--grafite);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

/* ---------- utilitários ---------- */
.wrap { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--gut); }
.wrap-slim { max-width: 860px; }

.eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--rosa);
  margin-bottom: 22px;
  display: block;
}
.eyebrow--gold { color: var(--dourado); }
.eyebrow--light { color: var(--dourado-claro); }

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: .01em;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.95rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 1.7vw, 1.35rem); }

.lead {
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--grafite-claro);
  font-weight: 300;
  line-height: 1.85;
}

.rule {
  width: 54px; height: 1px;
  background: var(--dourado);
  margin: 26px 0;
}
.rule--center { margin-left: auto; margin-right: auto; }

section { padding: clamp(64px, 8vw, 118px) 0; }
.sec-areia { background: var(--areia); }
.sec-grafite { background: var(--grafite); color: var(--areia); }
.sec-grafite .lead { color: rgba(247, 243, 238, .74); }
.sec-grafite h2 { color: var(--areia); }

.head-center { text-align: center; max-width: 720px; margin: 0 auto clamp(44px, 5vw, 70px); }

/* ---------- botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 16px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .4s var(--ease);
  border: 1px solid transparent;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary { background: var(--rosa); color: #fff; }
.btn-primary:hover { background: var(--rosa-vinho); transform: translateY(-2px); }
.btn-outline { border-color: var(--dourado); color: var(--dourado); }
.btn-outline:hover { background: var(--dourado); color: #fff; }
.btn-ghost { border-color: rgba(62,58,57,.22); color: var(--grafite); }
.btn-ghost:hover { border-color: var(--grafite); background: var(--grafite); color: var(--areia); }
.btn-light { border-color: rgba(247,243,238,.35); color: var(--areia); }
.btn-light:hover { background: var(--areia); color: var(--grafite); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 600; color: var(--rosa);
  border-bottom: 1px solid rgba(193,122,132,.32);
  padding-bottom: 4px;
  transition: all .35s var(--ease);
}
.link-arrow:hover { color: var(--rosa-vinho); border-color: var(--rosa-vinho); gap: 15px; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(62,58,57,.08);
  transition: box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled { box-shadow: 0 6px 30px -20px rgba(62,58,57,.5); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding-top: 16px; padding-bottom: 16px;
}
.nav-logo img { height: 46px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .nav-logo img { height: 40px; }

.nav-menu { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-menu a {
  font-size: 11.5px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; color: var(--grafite-claro);
  position: relative; padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-menu a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--dourado);
  transition: width .4s var(--ease);
}
.nav-menu a:hover { color: var(--grafite); }
.nav-menu a:hover::after, .nav-menu a.is-active::after { width: 100%; }
.nav-menu a.is-active { color: var(--rosa); }

.nav-cta { display: inline-flex; }

.nav-toggle { display: none; width: 30px; height: 22px; position: relative; }
.nav-toggle span {
  position: absolute; left: 0; width: 100%; height: 1.5px;
  background: var(--grafite); transition: all .4s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 10px; }
.nav-toggle span:nth-child(3) { top: 20px; }
.nav-toggle.open span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* =========================================================
   HERO DE CAPA (full-width, foto panorâmica)
   ========================================================= */
.hero-cover {
  position: relative;
  margin-top: 78px;
  padding: 0;              /* é uma <section>: zera o padding herdado */
  min-height: clamp(520px, 74vh, 720px);
  display: flex;
  align-items: center;
  background: var(--areia);
  overflow: hidden;
}
.hero-cover-media { position: absolute; inset: 0; z-index: 0; }
.hero-cover-media picture { display: block; width: 100%; height: 100%; }
.hero-cover-media img {
  width: 100%; height: 100%;
  /* ancorado perto do topo: quando a tela é larga e baixa, o corte
     acontece embaixo e a cabeça nunca é cortada */
  object-fit: cover; object-position: 78% 12%;
}
.hero-cover-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(252,251,249,.96) 0%, rgba(252,251,249,.9) 32%, rgba(252,251,249,.35) 48%, rgba(252,251,249,0) 62%);
}
.hero-cover-inner { position: relative; z-index: 2; width: 100%; }
.hero-cover-text { max-width: 540px; }
.hero-cover-text h1 { margin-bottom: 4px; }
.hero-cover-text h1 em { font-style: normal; color: var(--rosa); display: block; }
.hero-cover-text .lead { max-width: 42ch; margin-top: 22px; }
.hero-cover-text .lead--curto { display: none; }
.hero-cover-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }

/* =========================================================
   HERO (variante em duas colunas)
   ========================================================= */
.hero {
  padding-top: 130px;
  background: var(--areia);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -14%; right: -8%;
  width: 46vw; height: 46vw; max-width: 640px; max-height: 640px;
  background: radial-gradient(circle, rgba(216,180,176,.34), transparent 68%);
  border-radius: 50%; pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
  position: relative; z-index: 2;
  padding-bottom: clamp(56px, 7vw, 96px);
}
.hero h1 { margin-bottom: 6px; }
.hero h1 em {
  font-style: normal; color: var(--rosa); display: block;
}
.hero .lead { max-width: 44ch; margin-top: 24px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }

.hero-figure { position: relative; }
.hero-figure img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: center 22%;
  border-radius: var(--radius);
}
.hero-figure::after {
  content: ''; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--dourado); z-index: -1; border-radius: var(--radius);
}

/* faixa de credenciais — ticker horizontal contínuo */
.creds {
  background: var(--grafite); color: var(--areia);
  overflow: hidden; position: relative;
}
.creds::before, .creds::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2;
  pointer-events: none;
}
.creds::before { left: 0; background: linear-gradient(to right, var(--grafite), transparent); }
.creds::after { right: 0; background: linear-gradient(to left, var(--grafite), transparent); }

.creds-track {
  display: flex; width: max-content;
  animation: creds-scroll 42s linear infinite;
}
.creds:hover .creds-track { animation-play-state: paused; }

.creds-list {
  display: flex; align-items: center;
  gap: 54px; padding: 24px 27px;
  list-style: none; margin: 0;
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 500; color: rgba(247,243,238,.82);
  white-space: nowrap;
}
.creds-list li { display: flex; align-items: center; gap: 14px; }
.creds-list li::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%;
  background: var(--dourado); flex-shrink: 0;
}

@keyframes creds-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SEÇÃO DO VÍDEO — fundo desfocado
   ========================================================= */
.sec-video {
  position: relative;
  background: var(--areia) url('../img/bg-video.jpg') center/cover no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}
.sec-video::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(247,243,238,.82) 0%, rgba(247,243,238,.3) 46%, rgba(247,243,238,.86) 100%),
    linear-gradient(90deg, rgba(216,180,176,.16), rgba(201,169,107,.1));
}
.sec-video > .wrap { position: relative; z-index: 2; }
.sec-video .video-frame {
  box-shadow: 0 40px 90px -42px rgba(62,58,57,.75);
  border: 1px solid rgba(255,255,255,.7);
}

/* =========================================================
   CARDS DE ÁREA
   ========================================================= */
.areas { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.area-card {
  background: var(--branco);
  border: 1px solid rgba(62,58,57,.1);
  padding: 44px 34px;
  transition: all .45s var(--ease);
  position: relative;
}
.area-card::before {
  content: ''; position: absolute; top: 0; left: 0; height: 2px; width: 0;
  background: var(--dourado); transition: width .5s var(--ease);
}
.area-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.area-card:hover::before { width: 100%; }
.area-num {
  font-family: var(--serif); font-size: 13px; color: var(--dourado);
  letter-spacing: .2em; display: block; margin-bottom: 20px;
}
/* ícone no lugar do número */
.area-icon {
  width: 36px; height: 36px; display: block; margin-bottom: 20px;
  stroke: var(--dourado); fill: none;
  stroke-width: 1.15; stroke-linecap: round; stroke-linejoin: round;
}

/* variante do card com foto no topo */
.area-card--foto { padding: 0; overflow: hidden; }
.area-card--foto figure { margin: 0; aspect-ratio: 4/3; overflow: hidden; }
.area-card--foto figure img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  transition: transform 1.1s var(--ease);
}
.area-card--foto:hover figure img { transform: scale(1.05); }
.area-card--foto .area-body { padding: 28px 30px 32px; }
.area-card h3 { margin-bottom: 14px; }
.area-card p { font-size: 15px; color: var(--grafite-claro); font-weight: 300; }
.area-card ul { list-style: none; margin-top: 20px; }
.area-card ul li {
  font-size: 13.5px; color: var(--grafite-claro); font-weight: 300;
  padding: 7px 0 7px 20px; position: relative;
  border-top: 1px solid rgba(62,58,57,.07);
}
.area-card ul li::before {
  content: ''; position: absolute; left: 0; top: 17px;
  width: 8px; height: 1px; background: var(--rosa-claro);
}

/* =========================================================
   BLOCO SPLIT (texto + imagem)
   ========================================================= */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(38px, 6vw, 84px); align-items: center;
}
.split--rev .split-media { order: -1; }
.split-media img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 22%;
  border-radius: var(--radius);
}
.split-media { position: relative; }
.split-media--framed::after {
  content: ''; position: absolute; inset: -16px -16px 16px 16px;
  border: 1px solid rgba(201,169,107,.55); z-index: -1;
}
.quote {
  font-family: var(--serif); font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.6; color: var(--grafite);
  padding-left: 24px; border-left: 2px solid var(--dourado);
  margin: 30px 0;
}

/* =========================================================
   VÍDEO
   ========================================================= */
.video-block { max-width: 480px; margin: 0 auto; }
.video-frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,.65);
  background: var(--grafite);
}
.video-frame video { width: 100%; display: block; aspect-ratio: 9/16; object-fit: cover; }

/* =========================================================
   PROCEDIMENTOS
   ========================================================= */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.proc-card {
  background: var(--branco); border: 1px solid rgba(62,58,57,.09);
  overflow: hidden; display: flex; flex-direction: column;
  transition: all .45s var(--ease);
}
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.proc-card figure { overflow: hidden; aspect-ratio: 4/3; }
.proc-card img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 32%;
  transition: transform 1.1s var(--ease);
}
.proc-card:hover img { transform: scale(1.06); }
.proc-body { padding: 30px 28px 34px; flex: 1; display: flex; flex-direction: column; }
.proc-tag {
  font-size: 9.5px; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 600; color: var(--dourado); margin-bottom: 14px;
}
.proc-card h3 { font-size: 1.12rem; margin-bottom: 12px; }
.proc-card p { font-size: 14.5px; color: var(--grafite-claro); font-weight: 300; }

/* lista longa de procedimentos (página interna) */
.proc-list { display: grid; gap: 0; border-top: 1px solid rgba(62,58,57,.12); }
.proc-item {
  display: grid; grid-template-columns: 60px 1fr;
  gap: 28px; padding: 34px 0;
  border-bottom: 1px solid rgba(62,58,57,.12);
  align-items: start;
}
.proc-item-num {
  font-family: var(--serif); font-size: 14px; color: var(--dourado);
  letter-spacing: .1em; padding-top: 5px;
}
.proc-item h3 { margin-bottom: 10px; }
.proc-item p { font-size: 15px; color: var(--grafite-claro); font-weight: 300; }

/* =========================================================
   DIFERENCIAIS
   ========================================================= */
.diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(247,243,238,.14); }
.diff-item { background: var(--grafite); padding: 42px 34px; }
.diff-icon { width: 26px; height: 26px; margin-bottom: 22px; stroke: var(--dourado); fill: none; stroke-width: 1.2; }
.diff-item h3 { font-size: 1.05rem; margin-bottom: 12px; color: var(--areia); }
.diff-item p { font-size: 14px; font-weight: 300; color: rgba(247,243,238,.66); }

/* =========================================================
   PASSOS
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 54px); }
.step { text-align: center; position: relative; }
.step-num {
  width: 62px; height: 62px; margin: 0 auto 26px;
  border: 1px solid var(--dourado); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.1rem; color: var(--dourado);
}
.step h3 { margin-bottom: 12px; font-size: 1.1rem; }
.step p { font-size: 14.5px; color: var(--grafite-claro); font-weight: 300; }

/* =========================================================
   GALERIA
   ========================================================= */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery figure { overflow: hidden; aspect-ratio: 3/4; border-radius: var(--radius); }
.gallery img { width: 100%; height: 100%; object-fit: cover; object-position: center 38%; transition: transform 1.2s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery--3 { grid-template-columns: repeat(3, 1fr); }
.gallery--tall figure:nth-child(2n) { aspect-ratio: 3/4; margin-top: 32px; }

/* =========================================================
   CARROSSEL DE FOTOS
   Três por vez no computador, uma no celular, com setas.
   Todas alinhadas na mesma linha, sem degrau.
   ========================================================= */
.carrossel { position: relative; }
.carrossel-trilho {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * 16px) / 3);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.carrossel-trilho::-webkit-scrollbar { display: none; }
.carrossel-trilho figure {
  margin: 0;
  scroll-snap-align: start;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius);
}
.carrossel-trilho img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
  transition: transform 1.1s var(--ease);
}
.carrossel-trilho figure:hover img { transform: scale(1.05); }

.carrossel-seta {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(62,58,57,.14);
  box-shadow: 0 8px 26px -12px rgba(62,58,57,.55);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 3;
  transition: all .3s var(--ease);
}
.carrossel-seta:hover { background: var(--rosa); border-color: var(--rosa); }
.carrossel-seta:hover svg { stroke: #fff; }
.carrossel-seta svg { width: 17px; height: 17px; stroke: var(--grafite); fill: none; stroke-width: 1.6; }
.carrossel-seta--ant { left: -20px; }
.carrossel-seta--prox { right: -20px; }
.carrossel-seta[disabled] { opacity: .3; pointer-events: none; }

.carrossel-pontos { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.carrossel-ponto {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(62,58,57,.22); padding: 0; cursor: pointer;
  transition: all .3s var(--ease);
}
.carrossel-ponto.ativo { background: var(--dourado); width: 22px; border-radius: 4px; }

@media (max-width: 1024px) {
  .carrossel-trilho { grid-auto-columns: calc((100% - 16px) / 2); }
  .carrossel-seta--ant { left: 6px; }
  .carrossel-seta--prox { right: 6px; }
}
@media (max-width: 640px) {
  .carrossel-trilho { grid-auto-columns: 84%; gap: 12px; }
  .carrossel-seta { width: 40px; height: 40px; }
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { border-top: 1px solid rgba(62,58,57,.13); }
.faq-item { border-bottom: 1px solid rgba(62,58,57,.13); }
.faq-q {
  width: 100%; text-align: left; padding: 26px 44px 26px 0;
  font-family: var(--serif); font-size: clamp(1rem, 1.4vw, 1.12rem);
  color: var(--grafite); position: relative; line-height: 1.4;
  transition: color .3s var(--ease);
}
.faq-q:hover { color: var(--rosa); }
.faq-q::after {
  content: ''; position: absolute; right: 6px; top: 50%;
  width: 13px; height: 1px; background: var(--dourado);
  transition: transform .4s var(--ease);
}
.faq-q::before {
  content: ''; position: absolute; right: 12px; top: 50%;
  width: 1px; height: 13px; background: var(--dourado);
  transform: translateY(-50%);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.faq-item.open .faq-q::before { opacity: 0; transform: translateY(-50%) rotate(90deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .55s var(--ease); }
.faq-a p { padding: 0 60px 28px 0; font-size: 15px; font-weight: 300; color: var(--grafite-claro); }

/* =========================================================
   CONTATO / MAPA
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; }
.contact-info { display: flex; flex-direction: column; justify-content: center; }
.info-row { padding: 22px 0; border-bottom: 1px solid rgba(62,58,57,.12); }
.info-row:first-of-type { border-top: 1px solid rgba(62,58,57,.12); }
.info-label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dourado); font-weight: 600; display: block; margin-bottom: 8px;
}
.info-value { font-size: 15.5px; font-weight: 400; line-height: 1.6; }
.info-value a:hover { color: var(--rosa); }
.map-frame {
  min-height: 400px; height: 100%; border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(62,58,57,.12); background: var(--areia-escura);
}
.map-frame iframe { width: 100%; height: 100%; min-height: 400px; border: 0; display: block; filter: grayscale(.35) contrast(1.02); }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final { background: var(--grafite); color: var(--areia); text-align: center; }
.cta-final h2 { color: var(--areia); margin-bottom: 20px; }
.cta-final .lead { max-width: 56ch; margin: 0 auto 38px; }

/* =========================================================
   PAGE HERO (páginas internas)
   ========================================================= */
.page-hero {
  padding-top: 158px; padding-bottom: clamp(48px, 6vw, 84px);
  background: var(--areia); position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; top: -20%; left: -6%;
  width: 34vw; height: 34vw; max-width: 460px; max-height: 460px;
  background: radial-gradient(circle, rgba(216,180,176,.3), transparent 70%);
  border-radius: 50%;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 760px; }
.crumb {
  font-size: 10.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--grafite-claro); margin-bottom: 24px; font-weight: 500;
}
.crumb a:hover { color: var(--rosa); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--grafite); color: rgba(247,243,238,.72); padding: 78px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 44px; padding-bottom: 56px; }
.footer-logo { height: 54px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1) opacity(.92); }
.footer-col h4 {
  font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--dourado); font-weight: 600; margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 11px; font-weight: 300; }
.footer-col ul li a:hover { color: var(--areia); }
.footer-col p { font-weight: 300; line-height: 1.8; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(247,243,238,.22);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: all .35s var(--ease);
}
.footer-social a:hover { background: var(--rosa); border-color: var(--rosa); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

.footer-legal {
  border-top: 1px solid rgba(247,243,238,.14);
  padding: 26px 0 30px;
  font-size: 12px; font-weight: 300; line-height: 1.8;
  color: rgba(247,243,238,.5);
}
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  padding-bottom: 34px; font-size: 11.5px; color: rgba(247,243,238,.45);
}
.footer-bottom a:hover { color: var(--dourado); }

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 950;
  display: flex; align-items: center; gap: 0;
  background: #25D366; color: #fff;
  border-radius: 40px; padding: 15px;
  box-shadow: 0 12px 34px -10px rgba(37, 211, 102, .6);
  transition: all .45s var(--ease);
  overflow: hidden;
}
.wa-float svg { width: 26px; height: 26px; fill: currentColor; flex-shrink: 0; }
.wa-float span {
  max-width: 0; opacity: 0; white-space: nowrap;
  font-size: 12px; font-weight: 600; letter-spacing: .06em;
  transition: all .45s var(--ease);
}
.wa-float:hover { padding-right: 24px; }
.wa-float:hover span { max-width: 200px; opacity: 1; margin-left: 11px; }

/* =========================================================
   ANIMAÇÃO DE ENTRADA
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  .creds-track { justify-content: center; width: 100%; }
  .creds-list { flex-wrap: wrap; justify-content: center; white-space: normal; }
  .creds-list[aria-hidden="true"] { display: none; }
}

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .areas, .proc-grid, .diff-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-menu {
    position: fixed; inset: 74px 0 auto 0;
    background: var(--branco);
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: 12px 24px 34px;
    border-bottom: 1px solid rgba(62,58,57,.1);
    box-shadow: 0 20px 40px -26px rgba(62,58,57,.5);
    transform: translateY(-130%); opacity: 0; visibility: hidden;
    transition: all .45s var(--ease);
  }
  .nav-menu.open { transform: none; opacity: 1; visibility: visible; }
  .nav-menu li { width: 100%; border-bottom: 1px solid rgba(62,58,57,.07); }
  .nav-menu li:last-child { border: 0; }
  .nav-menu a { display: block; padding: 16px 0; font-size: 12px; }
  .nav-menu a::after { display: none; }

  .hero-grid, .split { grid-template-columns: 1fr; }
  .hero { padding-top: 108px; }

  /* CAPA NO CELULAR
     Tela cheia: a foto fica de fundo, o texto no topo (sobre a parede,
     acima da cabeça) e os botões colados na base. Tudo na primeira dobra,
     sem precisar rolar. */
  .hero-cover {
    margin-top: 74px;
    min-height: calc(100vh - 74px);
    min-height: calc(100svh - 74px);
    /* coluna: só assim o min-height chega até os filhos e os botões
       conseguem grudar na base da tela */
    display: flex; flex-direction: column; align-items: stretch;
  }
  .hero-cover-media { position: absolute; inset: 0; }
  .hero-cover-media picture { display: block; width: 100%; height: 100%; }
  .hero-cover-media img { height: 100%; object-position: center top; }

  /* "Quem cuida de você": no celular a foto entra logo depois do nome dela,
     e o texto vem embaixo */
  .split--foto-apos-titulo { display: flex; flex-direction: column; }
  .split--foto-apos-titulo .split-text { display: contents; }
  .split--foto-apos-titulo .split-text > * { order: 4; }
  .split--foto-apos-titulo .split-text > .eyebrow { order: 1; }
  .split--foto-apos-titulo .split-text > h2 { order: 2; }
  .split--foto-apos-titulo .split-media { order: 3; margin: 4px 0 30px; }
  .split--foto-apos-titulo .split-text > .rule { order: 5; margin-top: 0; }
  .hero-cover-media::after {
    background:
      linear-gradient(180deg,
        rgba(252,251,249,.96) 0%,
        rgba(252,251,249,.93) 31%,
        rgba(252,251,249,.6) 41%,
        rgba(252,251,249,.1) 49%,
        rgba(252,251,249,0) 55%),
      linear-gradient(0deg,
        rgba(252,251,249,.8) 0%,
        rgba(252,251,249,.3) 14%,
        rgba(252,251,249,0) 27%);
  }
  .hero-cover-inner {
    display: flex; flex: 1; align-self: stretch;
    /* herda a altura do hero: assim o "margin-top:auto" dos botões tem
       contra o que empurrar e eles chegam na base sem estourar a tela */
    min-height: inherit;
    padding-top: 26px; padding-bottom: 24px;
  }
  .hero-cover-text {
    max-width: none; width: 100%;
    display: flex; flex-direction: column; flex: 1;
  }
  .hero-cover-text .eyebrow { margin-bottom: 14px; }
  .hero-cover-text h1 { font-size: clamp(1.55rem, 6.4vw, 2.1rem); }
  .hero-cover-text .lead {
    font-size: 14.5px; line-height: 1.66; margin-top: 14px; max-width: 34ch;
  }
  /* no celular o parágrafo longo empurra tudo para baixo e os botões
     acabam cobrindo o rosto. Aqui entra a versão curta. */
  .hero-cover-text .lead--completo { display: none; }
  .hero-cover-text .lead--curto { display: block; }

  /* botões logo abaixo do texto, sem o vão vazio até a foto */
  .hero-cover-actions {
    margin-top: 0; padding-top: 26px;
    flex-direction: row; align-items: center; gap: 18px;
  }
  .hero-cover-actions .btn-primary {
    width: auto; padding: 14px 22px; font-size: 10.5px; letter-spacing: .12em;
  }
  .hero-cover-actions .btn-primary svg { width: 15px; height: 15px; }
  /* o secundário vira link discreto: ocupa quase nada de altura */
  .hero-cover-actions .btn-ghost {
    width: auto; padding: 0; border: 0; background: none;
    font-size: 10.5px; letter-spacing: .12em; color: var(--grafite);
    border-bottom: 1px solid rgba(62,58,57,.3); border-radius: 0;
  }
  .hero-cover-actions .btn-ghost:hover { background: none; color: var(--rosa); border-color: var(--rosa); }

  /* celulares de tela baixa: o parágrafo sai de vez */
  @media (max-height: 720px) {
    .hero-cover-text h1 { font-size: 1.38rem; }
    .hero-cover-text .lead { display: none; }
    .hero-cover-text .eyebrow { font-size: 9.5px; margin-bottom: 10px; }
    .hero-cover-actions { padding-top: 16px; }
    .hero-cover-actions .btn-primary { padding: 12px 18px; font-size: 10px; }
  }
  .split--rev .split-media { order: 0; }
  .hero-figure { max-width: 460px; margin-left: auto; margin-right: auto; }
  .hero-figure::after { display: none; }
  .split-media--framed::after { display: none; }
  .page-hero { padding-top: 128px; }
}

@media (max-width: 640px) {
  body { font-size: 15.5px; }
  .areas, .proc-grid, .diff-grid, .steps, .gallery, .footer-grid { grid-template-columns: 1fr; }
  .gallery--tall figure:nth-child(2n) { margin-top: 0; }
  .proc-item { grid-template-columns: 1fr; gap: 8px; }
  .btn { width: 100%; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .wa-float span { display: none; }
  .footer-bottom { flex-direction: column; }
  .creds-list { gap: 34px; padding: 20px 17px; font-size: 10px; }
  .sec-video { background-attachment: scroll; }
}
