/* =============================================================
   Ana Paula Becker — Psicóloga Clínica
   Paleta rosé + taupe derivada do logo da marca
   ============================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* Cores */
  /* Paleta oficial — manual de identidade visual, pág. "Paleta de Cores" */
  --rose:        #E39F96;   /* rosa da marca */
  --rose-dark:   #BD6C6C;   /* rosa queimado da marca */
  --rose-soft:   #F5AB9B;   /* rosa claro da marca */
  --coral:       #E37F78;   /* coral da marca */
  --taupe:       #876B60;   /* taupe da marca (tronco do logo) */

  /* Tons derivados da paleta, para o texto passar em contraste AA.
     O taupe e o rosa da marca são claros demais para texto pequeno por cima
     ou por baixo: estes são os mesmos tons, escurecidos/clareados o mínimo. */
  --rose-deep:   #9E5350;   /* texto e botão sobre fundo claro (AA) */
  --rose-vel:    #FAD2C9;   /* rosa claro sobre faixa taupe (AA) */
  --taupe-band:  #6F564C;   /* faixas largas com texto por cima */
  --taupe-dark:  #6B5349;
  --creme:       #FDF7F5;
  --creme-2:     #F7EBE7;
  --creme-texto: #FBF2EE;   /* corpo de texto sobre faixa taupe */
  --texto:       #4A3B37;
  --texto-claro: #77615B;
  --branco:      #FFFFFF;

  /* Tipografia */
  /* Fontes oficiais: Cookie (assinatura) e Assistant (todo o resto) */
  --sans:    "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --titulo:  "Assistant", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Cookie", "Brush Script MT", cursive;

  /* Métricas */
  /* Todo o conteúdo — hero incluído — para de crescer em 1440px. */
  --container: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --radius: 28px;
  --nav-h: 100px;

  /* Sombras */
  --shadow-sm: 0 4px 16px rgba(122, 90, 82, .08);
  --shadow-md: 0 18px 48px rgba(122, 90, 82, .14);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--creme);
  color: var(--texto);
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1rem + .3vw, 1.1875rem);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; }
h1, h2, h3 { margin: 0; font-weight: 300; line-height: 1.14; letter-spacing: -.02em; font-family: var(--titulo); }
p   { margin: 0 0 1.15em; }
ul  { margin: 0; padding: 0; list-style: none; }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--taupe); color: var(--branco);
  padding: .75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--rose-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  position: relative;
  z-index: 1;
}
.container--narrow { max-width: 820px; }
.center { text-align: center; }

.section  { padding-block: clamp(4.5rem, 9vw, 8.5rem); }
.band     { position: relative; }
.band--creme  { background: var(--creme); }
.band--creme2 { background: var(--creme-2); }
.band--taupe  { background: var(--taupe-band); color: var(--creme-texto); }
.band--taupe .section__title { color: var(--branco); }
.band--taupe .eyebrow        { color: var(--rose-vel); }
.band--taupe .help-note      { color: var(--rose-vel); }
.band--taupe .rule           { background: var(--rose); }

.has-watermark { overflow: hidden; }

/* ---------- 4. Tipografia de seção ---------- */
.section__title {
  font-size: clamp(2.05rem, 1.45rem + 2.5vw, 3.35rem);
  font-weight: 200;
  letter-spacing: -.025em;
  color: var(--texto);
}
.section__title--left { text-align: left; }

.eyebrow {
  margin: 1rem 0 0;
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--texto-claro);
}

.rule {
  display: block;
  width: 120px;
  height: 1px;
  margin: 1.75rem auto 2.5rem;
  background: var(--rose);
  opacity: .7;
}
.rule--left  { margin-inline: 0; }
.eyebrow--left { text-align: left; }

.kicker {
  font-size: .82rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.5rem;
}

/* ---------- 5. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .95rem 1.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease),
              border-color .3s var(--ease), transform .3s var(--ease),
              box-shadow .3s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: .75rem 1.45rem; font-size: .79rem; }

.btn--primary {
  background: var(--rose-deep);
  color: var(--branco);
  box-shadow: 0 8px 22px rgba(201, 127, 114, .28);
}
.btn--primary:hover { background: #843F3D; box-shadow: 0 12px 28px rgba(158, 83, 80, .34); }

.btn--ghost, .btn--outline {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose-deep);
}
.btn--ghost:hover, .btn--outline:hover { background: var(--rose-deep); color: var(--branco); }

.btn--outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: var(--branco);
  margin-top: .75rem;
}
.btn--outline-light:hover { background: var(--branco); color: var(--taupe); border-color: var(--branco); }

/* Botao que leva ao Google: fundo branco e a logo original, para ser
   reconhecido de imediato e destacar dos demais botoes da pagina. */
.btn--google {
  background: var(--branco);
  border-color: rgba(60, 64, 67, .22);
  color: #3C4043;
  box-shadow: 0 6px 18px rgba(60, 64, 67, .14);
}
.btn--google:hover {
  background: var(--branco);
  border-color: rgba(60, 64, 67, .45);
  box-shadow: 0 12px 26px rgba(60, 64, 67, .2);
}
.icon--google { width: 1.25em; height: 1.25em; }

.icon { width: 1.15em; height: 1.15em; flex: none; fill: currentColor; }
.icon--lg   { width: 1.9rem; height: 1.9rem; }
.icon--rose { color: var(--rose); }

.link-arrow {
  display: inline-block;
  color: var(--rose-dark);
  text-decoration: none;
  font-size: .89rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity .25s var(--ease);
}
.link-arrow:hover { opacity: .65; }
.link-arrow--light { color: var(--branco); }

/* ---------- 6. Navbar ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
}
/* O fundo mora num ::before, não na própria .nav: `backdrop-filter` cria um
   bloco de contenção e prenderia o menu mobile (position: fixed) dentro da
   altura da navbar. */
.nav::before {
  content: "";
  position: absolute;
  /* O véu desce alem da navbar: assim o degradê só começa a desaparecer
     abaixo dos links, que ficam sempre sobre a parte opaca. */
  inset: 0 0 -34px 0;
  z-index: -1;
  /* Véu degradê desde o topo: o hero tem foto à direita, e sem isto os últimos
     links do menu ficam ilegíveis. O degradê evita a borda dura de um blur. */
  background: linear-gradient(to bottom,
              rgba(253, 247, 244, .97) 0%,
              rgba(253, 247, 244, .95) 62%,
              rgba(253, 247, 244, .74) 84%,
              rgba(253, 247, 244, 0) 100%);
  transition: background .35s var(--ease), box-shadow .35s var(--ease);
}
.nav.is-scrolled::before {
  inset: 0;
  background: rgba(253, 247, 244, .95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(122, 90, 82, .1), var(--shadow-sm);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--gutter);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo { display: block; text-decoration: none; flex: none; }
.logo img {
  width: clamp(238px, 22vw, 312px);
  height: auto;
}

.nav__links { display: flex; align-items: center; gap: 1.85rem; }
.nav__links a {
  font-size: 1.02rem;
  letter-spacing: .06em;
  text-decoration: none;
  color: var(--texto);
  position: relative;
  padding-block: .4rem;
  transition: color .25s var(--ease);
}
.nav__links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .3s var(--ease);
}
.nav__links a:not(.btn):hover::after,
.nav__links a.is-active::after { width: 100%; }
.nav__links a:not(.btn):hover,
.nav__links a.is-active { color: var(--rose-deep); }
.nav__cta { color: var(--branco) !important; }

.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  border: 0; background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 26px;
  margin-inline: auto;
  background: var(--texto);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: min(100svh, 860px);
  background: var(--creme);
  position: relative;
  /* Sem o teto, a foto cresce sem limite em telas largas e desequilibra o hero.
     Como o fundo do hero é o mesmo creme da página, as sobras laterais somem. */
  max-width: var(--container);
  margin-inline: auto;
}
.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 3rem) clamp(1.5rem, 4vw, 3.5rem) 4rem var(--gutter);
  max-width: 680px;
  margin-left: auto;
  width: 100%;
}
.hero__title {
  font-size: clamp(3rem, 1.9rem + 4.4vw, 5.1rem);
  letter-spacing: -.02em;
  margin-bottom: 1.5rem;
}
.hero__lead {
  font-size: 1.2rem;
  max-width: 46ch;
  color: #5C4B45;
  margin-bottom: 2.25rem;
}
.hero__lead p { margin-bottom: .95em; }
.hero__lead p:last-child { margin-bottom: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.center-actions { justify-content: center; }

.hero__media { position: relative; overflow: hidden; }
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
}
.hero__wave {
  position: absolute;
  inset: 0 auto 0 -1px;
  height: 100%;
  width: 240px;
  max-width: 42%;
}
.hero__wave-h { display: none; }
.wave-fill { fill: var(--creme); }
.wave-band { fill: var(--rose); }
.wave-band--2 { opacity: .30; }
.wave-band--3 { opacity: .16; }

/* ---------- 8. Lista "Como posso ajudar" ---------- */
.help-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.15rem 3rem;
  max-width: 1000px;
  margin-inline: auto;
}
.help-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  line-height: 1.6;
}
.petal {
  width: 1.05rem; height: 1.05rem;
  flex: none;
  margin-top: .38rem;
  color: var(--rose);
  fill: currentColor;
}
.help-note {
  margin-top: 3rem;
  text-align: center;
  font-family: var(--titulo);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--texto-claro);
}

/* Marcas d'água decorativas */
.watermark {
  position: absolute;
  width: 460px; height: 460px;
  color: var(--rose);
  opacity: .07;
  pointer-events: none;
  z-index: 0;
  fill: currentColor;
}
.watermark--tl { top: -110px; left: -140px; transform: rotate(180deg); }
.watermark--br { bottom: -120px; right: -140px; }
.watermark--tr { top: -130px; right: -150px; transform: rotate(90deg); }

/* ---------- 9. Cartões (onde eu atendo) ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.card {
  margin: 0;
  background: var(--branco);
  border: 1px solid var(--rose-soft);
  border-radius: 20px;
  padding: 2.25rem 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.card::before {
  content: "";
  position: absolute;
  top: 1.5rem; left: 2rem;
  width: 34px; height: 1px;
  background: var(--rose);
  opacity: .5;
}
.card--info { text-align: center; align-items: center; padding-top: 2.75rem; }
/* O tracinho decorativo do topo vai para o centro nos cartões centralizados. */
.card--info::before { left: 50%; transform: translateX(-50%); }
.card__icon {
  width: 1.7rem; height: 1.7rem;
  flex: none;
  color: var(--rose);
  fill: currentColor;
}
.card--info h3 {
  font-family: var(--titulo);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: -.01em;
  color: var(--rose-deep);
  margin: 1rem 0 .65rem;
}
.card--info p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--texto-claro);
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

/* ---------- 10. Contato ---------- */
.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  max-width: 820px;
  margin-inline: auto;
}
.contact__col {
  padding-inline: clamp(1rem, 3vw, 2.75rem);
  text-align: center;
}
.contact__col + .contact__col { border-left: 1px solid rgba(255, 255, 255, .22); }
.contact__col .icon--lg { margin-inline: auto; color: var(--rose-vel); }
.contact__col h3 {
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 1.1rem 0 1rem;
  color: var(--branco);
}
.contact__col p { font-size: 1.04rem; color: var(--creme-texto); }
.contact__note {
  margin-top: 3.5rem;
  text-align: center;
  font-size: 1rem;
  color: var(--rose-vel);
}

/* ---------- 11. Rodapé ---------- */
/* Mesmo marrom da faixa de contato: o rodape emenda com a secao acima e a
   logo, agora com fundo transparente, pousa direto sobre ele. */
.footer {
  background: var(--taupe-band);
  color: rgba(255, 255, 255, .8);
  /* Folga extra embaixo para o botão flutuante do WhatsApp não cobrir o texto */
  padding-block: 3.5rem 5.5rem;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.footer__links { display: flex; flex-wrap: wrap; gap: 1.75rem; }
.footer__links a {
  font-size: .92rem;
  text-decoration: none;
  color: rgba(255, 255, 255, .86);
  transition: color .25s var(--ease);
}
.footer__links a:hover { color: var(--rose-vel); }
/* Logo empilhada (simbolo sobre o nome): mais alta que a horizontal do topo */
.footer .logo--rodape img { width: clamp(246px, 26vw, 328px); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem 2rem;
  padding-top: 1.75rem;
}
.footer__bottom p { margin: 0; font-size: .88rem; color: rgba(255, 255, 255, .72); }

/* ---------- 12. WhatsApp flutuante ---------- */
.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--branco);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .38);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(.9);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
}
.whatsapp-float.is-visible { opacity: 1; visibility: visible; transform: none; }
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 30px; height: 30px; fill: currentColor; }

/* ---------- 13. Animação de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 14. Formação e experiência ---------- */
/* Foto + texto lado a lado (formação e atendimento) */
.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: center;
  max-width: 1160px;
  margin: 3rem auto 0;
}
/* Foto à direita: a coluna do texto passa a ser a mais larga */
.split--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, .9fr);
  /* respiro antes dos cartoes de abrangencia, logo abaixo */
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}
.split--reverse .split__media { order: 2; }

.split__media {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.split__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__media--tall { aspect-ratio: 4 / 5; }
/* Enquadra mais alto que no hero, para não repetir o mesmo corte */
.split__media--tall img { object-position: center 10%; }
.split__media--wide { aspect-ratio: 4 / 3; }

/* O bloco de texto do atendimento herdou o respiro que era do .split--reverse */
.atendimento__texto { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.atendimento__texto > p:last-child { margin-bottom: 0; }

.split__text > p:first-child { margin-top: 0; }
.split__text > p:last-child  { margin-bottom: 0; }

.creds {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cred {
  display: flex;
  align-items: flex-start;
  gap: 1.05rem;
  padding: 1.3rem 0;
}
.cred + .cred { border-top: 1px solid rgba(122, 90, 82, .16); }
.cred__icon {
  width: 1.75rem; height: 1.75rem;
  flex: none;
  margin-top: .15rem;
  color: var(--rose);
  fill: currentColor;
}
.cred__label {
  margin: 0 0 .35rem;
  font-family: var(--sans);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--texto-claro);
}
.cred__title {
  margin: 0;
  font-family: var(--titulo);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.32;
  color: var(--taupe-dark);
}

/* ---------- 15. Dúvidas frequentes ---------- */
.faq {
  margin-top: 3rem;
  display: grid;
  gap: .85rem;
}
.faq__item {
  background: var(--branco);
  border: 1px solid rgba(122, 90, 82, .08);
  border-radius: 22px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease);
}
.faq__item[open] { box-shadow: var(--shadow-md); }
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.35rem 1.7rem;
  cursor: pointer;
  font-family: var(--titulo);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--taupe-dark);
  list-style: none;
  transition: color .25s var(--ease);
}
/* Esconde o triângulo nativo do <details> */
.faq__q::-webkit-details-marker { display: none; }
.faq__q::marker { content: ""; }
.faq__q:hover { color: var(--rose-dark); }
.faq__q:focus-visible {
  outline: 2px solid var(--rose-dark);
  outline-offset: -4px;
  border-radius: 22px;
}
.faq__chevron {
  width: 1.15rem; height: 1.15rem;
  flex: none;
  color: var(--rose);
  fill: currentColor;
  transition: transform .3s var(--ease);
}
.faq__item[open] .faq__chevron { transform: rotate(180deg); }
.faq__a { padding: 0 1.7rem 1.6rem; }
.faq__a p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--texto);
}
.faq__a p + p { margin-top: .85rem; }

/* ---------- 16. Avaliações (carrossel lateral infinito) ---------- */
.avals {
  --por-vez: 4;
  --aval-gap: 1.5rem;
  position: relative;
  margin-top: 3rem;
}
.avals__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.avals__viewport::-webkit-scrollbar { display: none; }
.avals__viewport:focus-visible { outline: 2px solid var(--rose-soft); outline-offset: 6px; }

/* A trilha ocupa a largura do viewport; os cartões transbordam para o lado. */
.avals__trilha {
  display: flex;
  gap: var(--aval-gap);
  margin: 0;
  padding: .25rem 0 1.25rem;
  list-style: none;
}
.aval {
  flex: 0 0 auto;
  width: calc((100% - (var(--por-vez) - 1) * var(--aval-gap)) / var(--por-vez));
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--branco);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem 1.8rem 1.7rem;
  text-align: left;
}
.aval__estrelas { display: flex; gap: .2rem; }
.aval__estrela {
  width: 1.05rem; height: 1.05rem;
  color: #E8A33D;
  fill: currentColor;
}
.aval p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--texto);
}
.aval p + p { margin-top: .8rem; }
.aval__quem {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(135, 107, 96, .14);
}
.aval__inicial {
  flex: none;
  width: 2.6rem; height: 2.6rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--rose-soft);
  color: #5F2E2C;
  font-weight: 600;
  font-size: 1.05rem;
}
.aval__id { display: flex; flex-direction: column; line-height: 1.3; }
.aval__nome { font-weight: 600; font-size: .98rem; color: var(--taupe-dark); }
.aval__quando { font-size: .82rem; color: var(--texto-claro); }

/* Setas */
.avals__nav {
  position: absolute;
  top: calc(50% - 1.25rem);
  z-index: 2;
  width: 2.9rem; height: 2.9rem;
  display: grid; place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--branco);
  color: var(--rose-dark);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.avals__nav:hover { background: var(--rose-dark); color: var(--branco); transform: scale(1.06); }
.avals__nav svg { width: 1.15rem; height: 1.15rem; fill: currentColor; }
.avals__nav--prev { left: -1.45rem; }
.avals__nav--prev svg { transform: rotate(90deg); }
.avals__nav--next { right: -1.45rem; }
.avals__nav--next svg { transform: rotate(-90deg); }

/* ---------- 17. Responsivo ---------- */
@media (max-width: 1240px) {
  .nav__links { gap: 1.1rem; }
  .nav__links a { font-size: .9rem; }
}

@media (max-width: 1024px) {
  .nav__links { gap: .8rem; }
  .nav__links a { font-size: .84rem; }
  .nav__cta { padding: .68rem 1.05rem; }
  .hero__wave { width: 190px; }
}

@media (max-width: 900px) {
  /* Barra justa: a logo cresce e a folga em cima e embaixo dela encolhe */
  :root { --nav-h: 80px; }

  /* Sem degrade no mobile: a barra fica solida, do tamanho exato da navbar */
  .nav::before,
  .nav.is-scrolled::before {
    inset: 0;
    background: var(--creme);
  }

  /* Logo a esquerda, com o botao do menu flutuando na direita */
  .nav__inner { position: relative; justify-content: flex-start; }
  .nav .logo img { width: clamp(230px, 70vw, 350px); }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    background: var(--creme);
    padding: var(--nav-h) 2rem 3rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  }
  .nav__links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { font-size: 1.3rem; }
  /* Logo e botão ficam acima do overlay do menu */
  .nav .logo { position: relative; z-index: 2; }
  .nav__toggle {
    position: absolute;
    right: .6rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  body.menu-open { overflow: hidden; }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  /* Espaço para a navbar: sem isto o cabeçalho cobre o rosto na foto */
  /* Foto rente a navbar e alta o bastante para caber quase inteira: ancorada
     no topo, nada e cortado da cabeca. */
  .hero__media {
    order: -1;
    height: min(62vh, 515px);
    margin-top: var(--nav-h);
  }
  .hero__media img { object-position: center top; }
  .hero__wave { display: none; }
  .hero__wave-h {
    display: block;
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    width: 100%;
    height: 92px;
  }
  .hero__text {
    padding: 2.5rem var(--gutter) 4rem;
    margin-inline: auto;
    max-width: 640px;
    text-align: left;
  }


  /* Foto acima do texto nas duas seções em coluna única */
  .split,
  .split--reverse { grid-template-columns: 1fr; gap: 2.25rem; }
  .split--reverse .split__media { order: 0; }
  .split__media--tall { max-width: 420px; margin-inline: auto; }

  /* No mobile nao ha carrossel: as seis avaliacoes ficam empilhadas, na
     mesma ordem do desktop, sem setas e sem rolagem lateral. */
  .avals { --por-vez: 1; display: block; margin-top: 2.25rem; }
  .avals__viewport { overflow: visible; scroll-snap-type: none; }
  .avals__trilha {
    flex-direction: column;
    gap: 1.25rem;
    padding: .25rem 0 0;
  }
  .aval { width: 100%; scroll-snap-align: none; }
  /* Clones do carrossel (se o JS chegou a rodar antes do resize) ficam fora */
  .avals__trilha .aval[aria-hidden="true"] { display: none; }
  .avals__nav { display: none; }

  .contact { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__col + .contact__col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .22);
    padding-top: 2.5rem;
  }

  /* No mobile o rodape vira uma coluna centrada: logo, links e creditos */
  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer__links { justify-content: center; gap: 1rem 1.5rem; }
}

@media (max-width: 640px) {
  .help-list { grid-template-columns: 1fr; gap: 1rem; }
  .avals { --por-vez: 1; }
  .aval { padding: 1.7rem 1.4rem 1.4rem; }

  .cred { padding: 1.15rem 0; }
  .cred__title { font-size: 1.12rem; }
  .split__media--wide { aspect-ratio: 3 / 2; }
  .faq__q { padding: 1.15rem 1.3rem; font-size: 1.14rem; gap: .9rem; }
  .faq__a { padding: 0 1.3rem 1.3rem; }
  .watermark { width: 300px; height: 300px; }
  .hero__actions .btn,
  .center-actions .btn { flex: 1 1 100%; justify-content: center; }
  .logo__name { font-size: 1.45rem; }
  .logo__mark { width: 40px; height: 40px; }
  .card { padding: 2rem 1.5rem 1.5rem; }
  .footer__bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* ---------- 18. Preferências do usuário ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .nav, .whatsapp-float, .watermark, .hero__wave, .hero__wave-h { display: none !important; }
  .band--taupe { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
  .avals__viewport { overflow: visible; }
  .avals__trilha { flex-wrap: wrap; }
  .avals__nav { display: none; }
  .faq__item { box-shadow: none; }
  .faq__a { display: block !important; }
  .faq__chevron { display: none; }
}
