/* =========================================================
   Psi Allana Araújo — Landing Page
   Paleta preservada do site atual:
   #A05A5A rosé principal · #C98E92 rosé suave · #E37D7C coral
   #E6CADB blush · #EEE6DB areia · #FFFDF7 creme
   #262626 tinta · #6D6D6D tinta suave · #481602 marrom profundo
   ========================================================= */

:root{
  /* --- cores da identidade --- */
  --rose:        #A05A5A;
  --rose-deep:   #7E4547;
  --rose-soft:   #C98E92;
  --coral:       #E37D7C;
  --blush:       #E6CADB;
  --sand:        #EEE6DB;
  --sand-light:  #F7F1E9;
  --cream:       #FFFDF7;
  --paper:       #FFFFFF;
  --ink:         #262626;
  --ink-soft:    #6D6D6D;
  --espresso:    #481602;
  --footer-bg:   #3E2523;

  /* --- superfícies e traços --- */
  --line:        rgba(160, 90, 90, .16);
  --line-soft:   rgba(160, 90, 90, .09);
  --tint-rose:   rgba(160, 90, 90, .06);
  --tint-blush:  rgba(230, 202, 219, .38);
  --tint-sand:   rgba(238, 230, 219, .55);
  --shadow-sm:   0 2px 10px rgba(72, 22, 2, .04);
  --shadow-md:   0 18px 44px -28px rgba(72, 22, 2, .28);
  --shadow-lg:   0 40px 90px -50px rgba(72, 22, 2, .40);

  /* --- tipografia --- */
  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* --- ritmo --- */
  --gutter: clamp(20px, 5vw, 48px);
  --maxw: 1240px;
  --section-y: clamp(84px, 11vw, 168px);
  --radius: 20px;

  /* --- movimento --- */
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-soft: cubic-bezier(.33, .8, .3, 1);
  --dur: .7s;
}

/* ============ reset / base ============ */
*, *::before, *::after { box-sizing: border-box; }

html{
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.78;
  letter-spacing: .002em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.is-locked{ overflow: hidden; }

img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

h1, h2, h3, blockquote, p{ margin: 0; }

h1, h2, h3{
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.005em;
  color: var(--ink);
}

h1{ font-size: clamp(2.15rem, 3.85vw, 3.4rem); }
h2{ font-size: clamp(1.9rem, 3.3vw, 2.9rem); }
h3{ font-size: clamp(1.25rem, 1.7vw, 1.5rem); line-height: 1.25; }

h1 em, h2 em{
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

::selection{ background: var(--blush); color: var(--espresso); }

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

.skip-link{
  position: fixed; top: 10px; left: 10px; z-index: 999;
  padding: 10px 16px; background: var(--rose); color: #fff;
  border-radius: 999px; font-size: .82rem; transform: translateY(-160%);
  transition: transform .3s var(--ease);
}
.skip-link:focus{ transform: none; }

.container{
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* overflow-x: clip contém os elementos decorativos sem criar
   contexto de rolagem (position: sticky continua funcionando) */
.section{ padding-block: var(--section-y); position: relative; overflow-x: clip; }

section[id]{ scroll-margin-top: 96px; }

/* ============ tipografia auxiliar ============ */
.eyebrow{
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.dot{
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--rose-soft); display: inline-block; flex: none;
}
@media (max-width: 479px){
  .eyebrow{ font-size: .66rem; letter-spacing: .15em; gap: 9px; }
}

.lead{
  font-size: clamp(1.0625rem, 1.35vw, 1.1875rem);
  color: var(--ink-soft);
  max-width: 46ch;
}

.section-head{ max-width: 44rem; margin-bottom: clamp(48px, 6vw, 80px); }
.section-sub{ color: var(--ink-soft); margin-top: 20px; max-width: 44ch; }

.section-head-center{ text-align: center; margin-inline: auto; }
.section-head-center .eyebrow{ justify-content: center; }

.section-head-split{
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: none;
  align-items: end;
}
.section-head-note p{ color: var(--ink-soft); font-size: .98rem; }
.section-head-note p + p{ margin-top: 14px; }

@media (min-width: 900px){
  .section-head-split{ grid-template-columns: 1fr 1fr; gap: 64px; }
}

.br-desktop{ display: none; }
@media (min-width: 860px){ .br-desktop{ display: inline; } }

/* em telas menores as quebras fixas atrapalham: o texto respira melhor solto */
@media (max-width: 767px){
  h1 br, h2 br{ display: none; }
  h1, h2{ text-wrap: pretty; }
}

/* ============ botões ============ */
.btn{
  --btn-bg: var(--rose);
  --btn-fg: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1;
  cursor: pointer;
  transition: transform .45s var(--ease), background-color .45s var(--ease),
              color .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
  will-change: transform;
}
.btn svg{ width: 17px; height: 17px; flex: none; }
.ico-arrow{ fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .45s var(--ease); }
.ico-wa{ fill: currentColor; }
.btn:hover .ico-arrow{ transform: translateX(4px); }

.btn-primary{
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 30px -18px rgba(160, 90, 90, .8);
}
.btn-primary:hover{
  background: var(--rose-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -18px rgba(126, 69, 71, .75);
}

.btn-ghost{
  color: var(--ink);
  border: 1px solid var(--line);
  background: transparent;
}
.btn-ghost:hover{
  background: var(--tint-rose);
  border-color: rgba(160, 90, 90, .3);
  transform: translateY(-2px);
}

.btn-outline{
  color: var(--rose-deep);
  border: 1px solid rgba(160, 90, 90, .28);
  background: rgba(255, 255, 255, .5);
}
.btn-outline:hover{
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-sm{ padding: 12px 22px; font-size: .82rem; }
.btn-lg{ padding: 18px 34px; font-size: .98rem; }
.btn-block{ display: flex; width: 100%; }

.link-underline{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--rose-deep);
  padding-bottom: 3px;
  background-image: linear-gradient(var(--rose), var(--rose));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: background-size .5s var(--ease), color .4s var(--ease);
}
.link-underline svg{ width: 15px; height: 15px; }
.link-underline:hover{ background-size: 100% 1px; color: var(--rose); }
.link-underline:hover .ico-arrow{ transform: translateX(4px); }

/* ============ molduras de fotografia ============ */
figure{ margin: 0; }

.photo-arch,
.photo-soft,
.photo-editorial,
.photo-inset{
  position: relative;
  overflow: hidden;
  background: var(--sand-light);
}
.photo-arch img,
.photo-soft img,
.photo-editorial img,
.photo-inset img{
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-soft);
}

.photo-arch{
  aspect-ratio: 3 / 4.05;
  border-radius: 999px 999px 22px 22px;
  box-shadow: var(--shadow-lg);
}
.photo-arch img{ object-position: 50% 22%; }

.photo-soft{
  border-radius: 160px 22px 160px 22px;
  box-shadow: var(--shadow-md);
}
.photo-editorial{
  aspect-ratio: 3 / 4;
  border-radius: 22px 190px 22px 190px;
  box-shadow: var(--shadow-lg);
}
.photo-inset{
  aspect-ratio: 4 / 3.4;
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--cream);
}

/* ============ revelações ============ */
.js .reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .95s var(--ease-soft), transform .95s var(--ease-soft);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .reveal.is-in{ opacity: 1; transform: none; }

.js .mask-reveal{
  clip-path: inset(0 0 100% 0 round var(--mask-radius, 22px));
  transition: clip-path 1.35s var(--ease-soft);
  transition-delay: calc(var(--d, 0) * 90ms);
}
.js .mask-reveal img{ transform: scale(1.12); }
.js .mask-reveal.is-in{ clip-path: inset(0 0 0 0 round var(--mask-radius, 22px)); }
.js .mask-reveal.is-in img{ transform: none; }

.photo-arch.mask-reveal{ --mask-radius: 999px 999px 22px 22px; }
.photo-soft.mask-reveal{ --mask-radius: 160px 22px 160px 22px; }
.photo-editorial.mask-reveal{ --mask-radius: 22px 190px 22px 190px; }
.photo-inset.mask-reveal{ --mask-radius: 18px; }

/* ============ header ============ */
.site-header{
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 18px;
  transition: padding .5s var(--ease), background-color .5s var(--ease),
              box-shadow .5s var(--ease), backdrop-filter .5s var(--ease);
}
.site-header::after{
  content: "";
  position: absolute; inset: 0;
  background: rgba(255, 253, 247, .78);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 8px 30px -22px rgba(72, 22, 2, .5);
  opacity: 0;
  transition: opacity .5s var(--ease);
  pointer-events: none;
}
.site-header.is-scrolled{ padding-block: 11px; }
.site-header.is-scrolled::after{ opacity: 1; }

.header-inner{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand{ flex: none; line-height: 0; }
.brand img{
  width: clamp(158px, 17vw, 205px);
  height: auto;
  transition: width .5s var(--ease);
}
.site-header.is-scrolled .brand img{ width: clamp(146px, 15vw, 182px); }

.nav-desktop{ margin-left: auto; display: none; }
.nav-desktop ul{ display: flex; align-items: center; gap: clamp(20px, 2.4vw, 38px); }
.nav-desktop a{
  position: relative;
  font-size: .875rem;
  letter-spacing: .04em;
  color: var(--ink);
  padding-block: 6px;
  transition: color .4s var(--ease);
}
.nav-desktop a::after{
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .5s var(--ease);
}
.nav-desktop a:hover{ color: var(--rose); }
.nav-desktop a:hover::after,
.nav-desktop a.is-active::after{ transform: scaleX(1); transform-origin: left; }
.nav-desktop a.is-active{ color: var(--rose); }

.header-cta{ display: none; flex: none; }

@media (min-width: 1024px){
  .nav-desktop{ display: block; }
  .header-cta{ display: inline-flex; margin-left: 8px; }
}

/* botão do menu mobile */
.menu-toggle{
  margin-left: auto;
  width: 46px; height: 46px;
  display: grid; place-content: center; gap: 6px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background-color .4s var(--ease), border-color .4s var(--ease);
}
.menu-toggle span{
  display: block; width: 18px; height: 1px; background: var(--ink);
  transition: transform .45s var(--ease), opacity .3s var(--ease);
}
.menu-toggle:hover{ background: var(--tint-rose); }
.menu-toggle[aria-expanded="true"] span:first-child{ transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child{ transform: translateY(-3.5px) rotate(-45deg); }
@media (min-width: 1024px){ .menu-toggle{ display: none; } }

/* ============ menu mobile ============ */
.mobile-menu{
  position: fixed; inset: 0; z-index: 99;
  background: var(--cream);
  padding: 104px var(--gutter) 40px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity .45s var(--ease);
}
.mobile-menu::before{
  content: "";
  position: absolute; top: -140px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--tint-blush), transparent 68%);
  pointer-events: none;
}
.mobile-menu.is-open{ opacity: 1; }
.mobile-menu-inner{
  position: relative;
  min-height: 100%;
  display: flex; flex-direction: column; justify-content: space-between; gap: 48px;
}
.mobile-menu nav li{ border-bottom: 1px solid var(--line-soft); }
.mobile-menu nav a{
  display: flex; align-items: baseline; gap: 16px;
  padding-block: 18px;
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), color .3s var(--ease);
}
.mobile-menu.is-open nav a{ opacity: 1; transform: none; }
.mobile-menu nav li:nth-child(1) a{ transition-delay: .06s; }
.mobile-menu nav li:nth-child(2) a{ transition-delay: .11s; }
.mobile-menu nav li:nth-child(3) a{ transition-delay: .16s; }
.mobile-menu nav li:nth-child(4) a{ transition-delay: .21s; }
.mobile-menu nav li:nth-child(5) a{ transition-delay: .26s; }
.mobile-menu nav li:nth-child(6) a{ transition-delay: .31s; }
.mobile-menu nav li:nth-child(7) a{ transition-delay: .36s; }
.mobile-menu nav a:active{ color: var(--rose); }
.mm-num{
  font-family: var(--sans);
  font-size: .68rem; letter-spacing: .18em;
  color: var(--rose-soft);
}
.mobile-menu-foot{ display: grid; gap: 16px; }
.mm-crp{
  text-align: center;
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft);
}

/* ============ hero ============ */
.hero{
  position: relative;
  padding-top: clamp(124px, 17vw, 190px);
  padding-bottom: clamp(72px, 9vw, 128px);
  overflow: hidden;
}

.hero-bg{ position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-bg .blob{ position: absolute; border-radius: 50%; filter: blur(10px); }
.blob-1{
  top: -18%; right: -12%;
  width: min(74vw, 760px); aspect-ratio: 1;
  background: radial-gradient(circle at 38% 36%, rgba(230, 202, 219, .55), rgba(230, 202, 219, 0) 66%);
}
.blob-2{
  bottom: -26%; left: -18%;
  width: min(62vw, 620px); aspect-ratio: 1;
  background: radial-gradient(circle at 60% 40%, rgba(238, 230, 219, .85), rgba(238, 230, 219, 0) 68%);
}
.hero-lines{
  position: absolute;
  right: -6%; bottom: -4%;
  width: min(86vw, 900px); height: min(60vh, 560px);
  color: rgba(160, 90, 90, .16);
  opacity: .8;
}

.hero-grid{
  position: relative; z-index: 1;
  display: grid;
  gap: clamp(52px, 7vw, 72px);
  align-items: center;
}

.hero-copy h1{ margin-bottom: 26px; }
.hero-copy .lead{ margin-bottom: 40px; }

.hero-actions{
  display: flex; flex-wrap: wrap; gap: 14px;
}

.hero-trust{
  display: grid;
  gap: 18px;
  padding-top: 30px;
  border-top: 1px solid var(--line-soft);
}
.hero-trust li{
  display: flex; flex-direction: column;
  font-size: .875rem;
  line-height: 1.5;
  color: var(--ink);
}
.hero-trust span{
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 4px;
}

.hero-media{ position: relative; }
.hero-media .photo-arch{ width: min(100%, 430px); margin-inline: auto; background: #fff; }
/* a foto já vem na proporção do arco; ancorar no topo garante o rosto inteiro */
.hero-media .photo-arch img{ object-position: 50% 0; }
/* a base da foto dissolve no creme da página — o recorte editorial termina suave, não numa borda dura */
.hero-media .photo-arch::after{
  content: "";
  position: absolute; inset: auto 0 0 0;
  height: 26%;
  background: linear-gradient(180deg, rgba(255, 253, 247, 0) 0%, rgba(255, 253, 247, .85) 70%, var(--cream) 100%);
  pointer-events: none;
}
.photo-inset{
  position: absolute;
  width: min(48%, 232px);
  left: max(0px, calc(50% - 262px));
  bottom: -34px;
  z-index: 2;
}
.hero-ring{
  position: absolute;
  top: 6%; right: max(0px, calc(50% - 268px));
  width: 128px; aspect-ratio: 1;
  border: 1px solid rgba(160, 90, 90, .28);
  border-radius: 50%;
  z-index: 2;
}
.hero-ring::after{
  content: "";
  position: absolute; inset: 16px;
  border: 1px solid rgba(227, 125, 124, .22);
  border-radius: 50%;
}

@media (min-width: 900px){
  .hero-grid{
    grid-template-columns: 1.14fr .86fr;
    grid-template-areas:
      "copy  media"
      "trust media";
    align-items: center;
    column-gap: clamp(52px, 6vw, 76px);
    row-gap: clamp(40px, 4.5vw, 56px);
  }
  .hero-copy{ grid-area: copy; align-self: end; }
  .hero-media{ grid-area: media; }
  .hero-trust{
    grid-area: trust;
    align-self: start;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .hero-media .photo-arch{ margin-inline: 0 auto; width: min(100%, 460px); }
  .photo-inset{ left: -8%; bottom: -46px; width: min(52%, 262px); }
  .hero-ring{ right: -2%; top: 4%; width: 150px; }
}

/* ============ especialidades ============ */
.especialidades{ background: linear-gradient(180deg, var(--cream) 0%, var(--sand-light) 62%, var(--cream) 100%); }

.bento{
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}

.card{
  grid-column: span 12;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(26px, 3vw, 42px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease),
              border-color .6s var(--ease), background-color .6s var(--ease);
}
.card::before{
  content: "";
  position: absolute; inset: auto -30% -55% auto;
  width: 260px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--tint-blush), transparent 68%);
  opacity: 0;
  transition: opacity .7s var(--ease), transform .9s var(--ease-soft);
  transform: translate3d(20px, 20px, 0);
  pointer-events: none;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(160, 90, 90, .24);
  box-shadow: var(--shadow-md);
}
.card:hover::before{ opacity: 1; transform: none; }

.card-ico{
  position: relative;
  width: 54px; height: 54px;
  display: grid; place-content: center;
  border-radius: 50%;
  background: var(--tint-sand);
  color: var(--rose);
  transition: background-color .6s var(--ease), transform .6s var(--ease), color .6s var(--ease);
}
.card-ico svg{ width: 27px; height: 27px; }
.card:hover .card-ico{ background: var(--blush); transform: translateY(-2px) rotate(-4deg); color: var(--rose-deep); }

.card h3{ position: relative; }
.card p{
  position: relative;
  font-size: .96rem;
  line-height: 1.8;
  color: var(--ink-soft);
}
.card .link-underline{ margin-top: 4px; }

.card-feature{ background: var(--sand); border-color: rgba(160, 90, 90, .13); }
.card-feature:hover{ background: #EFE7DC; }

.card-full{ align-items: flex-start; }
.card-full .card-full-body{ display: grid; gap: 12px; }

@media (min-width: 820px){
  .card-wide{ grid-column: span 7; }
  .card-narrow{ grid-column: span 5; }
  .card-full{
    grid-column: span 12;
    flex-direction: row;
    align-items: center;
    gap: clamp(24px, 3vw, 46px);
  }
  .card-full .card-ico{ flex: none; }
  .card-full .card-full-body{ flex: 1; }
  .card-full .link-underline{ margin-top: 0; flex: none; }
}

/* ============ transtornos alimentares ============ */
.ta{ background: var(--sand); }
.ta::before{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 70% at 80% 0%, rgba(255, 253, 247, .8), transparent 60%);
  pointer-events: none;
}
.ta-grid{
  position: relative;
  display: grid;
  gap: clamp(56px, 7vw, 84px);
  align-items: center;
}
.ta-media{ position: relative; }
.ta-media .photo-soft{ aspect-ratio: 4 / 3.1; }
.photo-soft-2{
  position: absolute;
  left: max(-32px, -11%); bottom: -17%;
  width: min(46%, 218px);
  aspect-ratio: 4 / 3;
  border-radius: 22px 110px 22px 110px;
  border: 6px solid var(--sand);
  z-index: 2;
}
.photo-soft-2.mask-reveal{ --mask-radius: 22px 110px 22px 110px; }
.ta-blob{
  position: absolute;
  top: -12%; left: -12%;
  width: 62%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 44% 44%, rgba(230, 202, 219, .7), transparent 66%);
  z-index: 0;
}
.ta-copy h2{ margin-bottom: 26px; }
.ta-copy p{ color: var(--ink-soft); max-width: 46ch; }
.ta-copy p + p{ margin-top: 18px; }

.ta-list{
  display: grid; gap: 14px;
  margin-block: 34px 38px;
  padding-top: 30px;
  border-top: 1px solid rgba(160, 90, 90, .16);
}
.ta-list li{
  display: flex; align-items: flex-start; gap: 14px;
  font-size: .96rem; line-height: 1.65; color: var(--ink);
}
.ta-list span{
  flex: none; margin-top: 9px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--rose-soft);
}

@media (max-width: 919px){
  /* no mobile a sobreposição fica contida, sem encostar na borda */
  .ta-media{ margin-bottom: 64px; }
  .photo-soft-2{ left: auto; right: 6px; bottom: -12%; width: min(42%, 178px); }
}

@media (min-width: 920px){
  .ta-grid{ grid-template-columns: 1.02fr .98fr; }
  .ta-media{ margin-right: clamp(12px, 3vw, 40px); }
}

/* ============ avaliação psicológica ============ */

/* chips no card de especialidades */
.chips{
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 4px;
}
.chips li{
  font-size: .74rem;
  letter-spacing: .06em;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--rose-deep);
  background: rgba(255, 255, 255, .7);
  transition: background-color .5s var(--ease), border-color .5s var(--ease);
}
.card:hover .chips li{ border-color: rgba(160, 90, 90, .3); background: #fff; }

/* grid com os tipos de avaliação */
.tipos{
  display: grid;
  gap: clamp(12px, 1.5vw, 18px);
  align-items: start; /* cards com e sem descrição convivem sem espaços vazios */
  margin-bottom: clamp(72px, 9vw, 120px);
}
.tipo{
  position: relative;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 14px;
  padding: clamp(24px, 2.6vw, 32px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .6s var(--ease), box-shadow .6s var(--ease),
              border-color .6s var(--ease), background-color .6s var(--ease);
}
.tipo::before{
  content: "";
  position: absolute; inset: auto -35% -60% auto;
  width: 220px; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--tint-blush), transparent 68%);
  opacity: 0; transform: translate3d(20px, 20px, 0);
  transition: opacity .7s var(--ease), transform .9s var(--ease-soft);
  pointer-events: none;
}
.tipo:hover{
  transform: translateY(-4px);
  border-color: rgba(160, 90, 90, .24);
  box-shadow: var(--shadow-md);
}
.tipo:hover::before{ opacity: 1; transform: none; }
.tipo:hover .card-ico{ background: var(--blush); transform: translateY(-2px) rotate(-4deg); color: var(--rose-deep); }

.tipo-num{
  position: absolute; top: 22px; right: 26px;
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .08em;
  color: var(--rose-soft);
}
.tipo h3{ position: relative; font-size: 1.18rem; max-width: 20ch; }
.tipo p{ position: relative; font-size: .92rem; line-height: 1.75; color: var(--ink-soft); }
.tipo .link-underline{ position: relative; margin-top: auto; padding-top: 6px; font-size: .78rem; }

@media (min-width: 560px){ .tipos{ grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px){ .tipos{ grid-template-columns: repeat(3, 1fr); } }

/* sub-bloco: como funciona a avaliação para cirurgia bariátrica e reparadora */
.avaliacao-detalhe{
  padding-top: clamp(56px, 7vw, 88px);
  border-top: 1px solid var(--line-soft);
}
.avaliacao-detalhe[id]{ scroll-margin-top: 96px; }
.detalhe-head h3{
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  line-height: 1.12;
}

.avaliacao-grid{
  display: grid;
  gap: clamp(52px, 6vw, 76px);
  align-items: start;
}

.steps-wrap{ position: relative; }
.steps{ display: grid; gap: clamp(26px, 3vw, 38px); }
.steps-line{
  position: absolute;
  left: 26px; top: 12px; bottom: 12px;
  width: 1px;
  background: var(--line-soft);
  overflow: hidden;
}
.steps-line i{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--rose-soft), var(--coral));
  transform: scaleY(var(--p, 0));
  transform-origin: top;
  transition: transform .4s linear;
}

.step{
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: clamp(16px, 2vw, 26px);
  align-items: start;
}
.step-num{
  position: relative; z-index: 1;
  width: 54px; height: 54px;
  display: grid; place-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--rose);
  font-size: .82rem; letter-spacing: .1em;
  transition: background-color .6s var(--ease), color .6s var(--ease), border-color .6s var(--ease);
}
.step.is-in .step-num{ background: var(--rose); border-color: var(--rose); color: #fff; }
.step h3{ margin-bottom: 8px; }
.step p{ font-size: .95rem; color: var(--ink-soft); max-width: 48ch; }

.avaliacao-aside{ display: grid; gap: 24px; }
.avaliacao-aside .photo-soft{ aspect-ratio: 3 / 3.5; }
.note-card{
  padding: clamp(24px, 3vw, 34px);
  background: var(--sand-light);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}
.note-card p{ font-size: .93rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 18px; }

@media (min-width: 980px){
  .avaliacao-grid{ grid-template-columns: 1.25fr .75fr; gap: clamp(56px, 6vw, 96px); }
}

/* ============ abordagem ============ */
.abordagem{ background: linear-gradient(180deg, var(--cream), var(--sand-light)); }
.abordagem-grid{
  display: grid;
  gap: clamp(56px, 7vw, 88px);
  align-items: start;
}
.abordagem-media{ position: relative; }
.photo-arch-sm{ width: min(100%, 400px); margin-inline: auto; }
.abordagem-blob{
  position: absolute;
  right: -8%; bottom: -8%;
  width: 58%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 46% 46%, rgba(238, 230, 219, .95), transparent 66%);
  z-index: -1;
}
.abordagem-copy h2{ margin-bottom: 26px; }
.abordagem-copy > p{ color: var(--ink-soft); max-width: 50ch; }
.abordagem-copy > p + p{ margin-top: 18px; }

.approach-list{
  display: grid;
  gap: 0;
  margin-top: clamp(40px, 5vw, 56px);
  border-top: 1px solid var(--line-soft);
}
.approach{
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: clamp(16px, 2vw, 28px);
  align-items: start;
  padding-block: clamp(24px, 3vw, 32px);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color .6s var(--ease);
}
.approach:hover{ background: rgba(255, 255, 255, .55); }
.approach-tag{
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: .04em;
  color: var(--rose);
  line-height: 1.1;
  padding-top: 2px;
  transition: color .5s var(--ease), transform .5s var(--ease);
}
.approach:hover .approach-tag{ color: var(--coral); transform: translateX(3px); }
.approach h3{ font-size: 1.1rem; margin-bottom: 8px; }
.approach p{ font-size: .93rem; color: var(--ink-soft); max-width: 44ch; }

@media (min-width: 980px){
  .abordagem-grid{ grid-template-columns: .8fr 1.2fr; }
  .photo-arch-sm{ position: sticky; top: 120px; margin-inline: 0; }
}

/* ============ como funciona ============ */
.processo{ background: var(--cream); }
.flow-wrap{ position: relative; }
.flow{
  display: grid;
  gap: clamp(34px, 4vw, 48px);
}
.flow-line{
  position: absolute;
  left: 21px; top: 18px; bottom: 18px; width: 1px;
  background: var(--line-soft);
  overflow: hidden;
}
.flow-line i{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--rose-soft), var(--coral));
  transform: scaleY(var(--p, 0));
  transform-origin: top;
  transition: transform .4s linear;
}
.flow-item{
  position: relative;
  padding-left: 64px;
}
.flow-num{
  position: absolute; left: 0; top: -2px;
  width: 44px; height: 44px;
  display: grid; place-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--rose);
  font-size: .78rem; letter-spacing: .1em;
  transition: background-color .6s var(--ease), color .6s var(--ease), border-color .6s var(--ease);
}
.flow-item.is-in .flow-num{ background: var(--rose); border-color: var(--rose); color: #fff; }
.flow-item h3{ font-size: 1.22rem; margin-bottom: 10px; }
.flow-item p{ font-size: .94rem; color: var(--ink-soft); max-width: 40ch; }

@media (min-width: 940px){
  .flow{ grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); }
  .flow-line{ left: 22px; right: 22px; top: 22px; bottom: auto; width: auto; height: 1px; }
  .flow-line i{ transform: scaleX(var(--p, 0)); transform-origin: left;
    background: linear-gradient(90deg, var(--rose-soft), var(--coral)); }
  .flow-item{ padding-left: 0; padding-top: 72px; }
  .flow-num{ top: 0; }
}

/* ============ sobre ============ */
.sobre{ background: var(--sand-light); }
.sobre-grid{
  display: grid;
  gap: clamp(56px, 7vw, 96px);
  align-items: center;
}
.sobre-media{ position: relative; }
.sobre-media .photo-editorial{ width: min(100%, 460px); margin-inline: auto; position: relative; z-index: 1; }
/* o rosto fica no terço superior da foto: ancorar o recorte ali preserva o enquadramento em qualquer proporção */
.sobre-media .photo-editorial img{ object-position: 50% 28%; }
.sobre-frame{
  position: absolute;
  inset: -18px auto -18px -18px;
  width: min(88%, 420px);
  border: 1px solid rgba(160, 90, 90, .22);
  border-radius: 22px 190px 22px 190px;
  z-index: 0;
}
.sobre-blob{
  position: absolute;
  right: -10%; top: -8%;
  width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 46% 46%, rgba(230, 202, 219, .75), transparent 68%);
  z-index: 0;
}

.sobre-copy h2{ margin-bottom: 10px; }
.sobre-role{
  display: flex; align-items: center; gap: 12px;
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 30px;
}
.sobre-copy > p:not(.sobre-role){ color: var(--ink-soft); max-width: 50ch; }
.sobre-copy > p:not(.sobre-role) + p{ margin-top: 18px; }

.pull-quote{
  position: relative;
  margin-top: clamp(36px, 4vw, 48px);
  padding: clamp(26px, 3vw, 36px) clamp(26px, 3vw, 38px);
  background: rgba(255, 255, 255, .68);
  border-left: 2px solid var(--rose-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.pull-quote p{
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.42;
  color: var(--espresso);
}

@media (min-width: 940px){
  .sobre-grid{ grid-template-columns: .92fr 1.08fr; }
  .sobre-media .photo-editorial{ margin-inline: 0; }
}

/* ============ depoimentos ============ */
.depoimentos{ background: var(--cream); overflow: hidden; }
.depoimentos .section-head-split{ align-items: center; }

.carousel-controls{ display: flex; gap: 12px; justify-self: start; }
@media (min-width: 900px){ .carousel-controls{ justify-self: end; } }

.carousel-btn{
  width: 50px; height: 50px;
  display: grid; place-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: background-color .45s var(--ease), color .45s var(--ease),
              border-color .45s var(--ease), transform .45s var(--ease), opacity .45s var(--ease);
}
.carousel-btn svg{ width: 18px; height: 18px; fill: none; stroke: currentColor;
  stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.carousel-btn:hover{ background: var(--rose); border-color: var(--rose); color: #fff; transform: translateY(-2px); }
.carousel-btn[disabled]{ opacity: .35; pointer-events: none; }

.carousel{
  margin-top: clamp(8px, 2vw, 20px);
  /* recuo lateral que mantém o depoimento principal centrado
     e deixa o próximo aparecendo de leve */
  --dep-w: min(86vw, 720px);
  --dep-pad: max(var(--gutter), calc((100vw - var(--dep-w)) / 2));
}
.carousel-track{
  display: flex;
  gap: clamp(16px, 2vw, 26px);
  overflow-x: auto;
  /* proximity: o snap obrigatório impede animar o scroll via JS */
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--dep-pad);
  /* a animação do carrossel é controlada via JS */
  scrollbar-width: none;
  padding: 10px var(--dep-pad) 30px;
}
.carousel-track::-webkit-scrollbar{ display: none; }
.carousel-track:focus-visible{ outline-offset: -4px; }

.dep-card{
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: var(--dep-w);
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
  padding: clamp(32px, 4vw, 48px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .6s var(--ease), border-color .6s var(--ease), opacity .6s var(--ease);
}
html.js .dep-card{ opacity: .45; }
html.js .dep-card.is-active{ opacity: 1; }
.dep-card.is-active{ box-shadow: var(--shadow-md); border-color: rgba(160, 90, 90, .2); }
.dep-mark{
  font-family: var(--serif);
  font-size: 4.5rem; line-height: .5;
  color: var(--blush);
  display: block;
}
.dep-card blockquote p{
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.45;
  color: var(--ink);
}
.dep-card footer{
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}
.stars{ color: var(--coral); letter-spacing: .16em; font-size: .82rem; }
.dep-card cite{
  font-style: normal;
  font-size: .84rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink);
}
.dep-card cite span{
  display: block;
  letter-spacing: .06em; text-transform: none;
  color: var(--ink-soft); font-size: .82rem; margin-top: 2px;
}

.carousel-dots{
  display: flex; justify-content: center; gap: 8px;
  margin-top: 6px;
}
.carousel-dots button{
  width: 22px; height: 2px; border-radius: 2px;
  background: var(--line);
  transition: background-color .45s var(--ease), width .45s var(--ease);
}
.carousel-dots button.is-active{ background: var(--rose); width: 38px; }

/* ============ faq ============ */
.faq{ background: var(--sand-light); }
.faq-grid{
  display: grid;
  gap: clamp(44px, 5vw, 72px);
  align-items: start;
}
.faq-head h2{ margin-bottom: 20px; }
.faq-head p{ color: var(--ink-soft); max-width: 34ch; margin-bottom: 22px; }

.accordion{ display: grid; }
.acc-item{ border-top: 1px solid var(--line-soft); }
.acc-item:last-child{ border-bottom: 1px solid var(--line-soft); }
.acc-item h3{ margin: 0; font-family: var(--sans); font-weight: 400; }

.acc-trigger{
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(22px, 2.6vw, 30px) 4px;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.6vw, 1.35rem);
  line-height: 1.35;
  color: var(--ink);
  transition: color .45s var(--ease);
}
.acc-trigger:hover{ color: var(--rose); }

.acc-ico{
  position: relative; flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  transition: background-color .5s var(--ease), border-color .5s var(--ease), transform .5s var(--ease);
}
.acc-ico::before,
.acc-ico::after{
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 12px; height: 1px;
  background: var(--rose);
  transform: translate(-50%, -50%);
  transition: transform .5s var(--ease), background-color .5s var(--ease);
}
.acc-ico::after{ transform: translate(-50%, -50%) rotate(90deg); }
.acc-trigger:hover .acc-ico{ background: var(--tint-rose); }
.acc-trigger[aria-expanded="true"] .acc-ico{ background: var(--rose); border-color: var(--rose); transform: rotate(180deg); }
.acc-trigger[aria-expanded="true"] .acc-ico::before{ background: #fff; }
.acc-trigger[aria-expanded="true"] .acc-ico::after{ transform: translate(-50%, -50%) rotate(0deg); background: #fff; }

.acc-panel{
  height: 0;
  overflow: hidden;
  transition: height .55s var(--ease);
}
.acc-panel-inner{
  padding: 0 clamp(40px, 6vw, 72px) clamp(26px, 3vw, 34px) 4px;
  color: var(--ink-soft);
  font-size: .97rem;
}
.acc-panel-inner p + p{ margin-top: 14px; }

@media (min-width: 940px){
  .faq-grid{ grid-template-columns: .8fr 1.2fr; gap: clamp(56px, 6vw, 100px); }
  .faq-head{ position: sticky; top: 120px; }
}

/* ============ cta final ============ */
.cta-final{
  position: relative;
  padding-block: var(--section-y);
  background: var(--sand);
  overflow: hidden;
}
.cta-blob{ position: absolute; border-radius: 50%; pointer-events: none; }
.cta-blob-1{
  top: -22%; left: -8%;
  width: min(64vw, 620px); aspect-ratio: 1;
  background: radial-gradient(circle at 46% 46%, rgba(230, 202, 219, .6), transparent 66%);
}
.cta-blob-2{
  bottom: -30%; right: -10%;
  width: min(58vw, 560px); aspect-ratio: 1;
  background: radial-gradient(circle at 46% 46%, rgba(255, 253, 247, .95), transparent 68%);
}
.cta-grid{
  position: relative; z-index: 1;
  display: grid;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.cta-copy h2{ margin-bottom: 24px; }
.cta-copy > p{ color: var(--ink-soft); max-width: 46ch; }
.cta-actions{
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px;
  margin-top: clamp(34px, 4vw, 46px);
}
.cta-note{
  font-size: .8rem; letter-spacing: .06em;
  color: var(--ink-soft);
}
.cta-media{ aspect-ratio: 1; width: min(100%, 460px); justify-self: center; }

@media (min-width: 940px){
  .cta-grid{ grid-template-columns: 1.1fr .9fr; }
  .cta-media{ justify-self: end; }
}

/* ============ footer ============ */
.site-footer{
  background: var(--footer-bg);
  color: rgba(255, 253, 247, .78);
  padding-top: clamp(56px, 7vw, 88px);
  font-size: .9rem;
}
.footer-grid{
  display: grid;
  gap: clamp(36px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer-brand img{ width: 210px; margin-bottom: 20px; }
.footer-brand p{ max-width: 34ch; line-height: 1.7; }

.footer-title{
  font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--rose-soft);
  margin-bottom: 16px;
}
.footer-nav li + li,
.footer-contact li + li{ margin-top: 10px; }
.site-footer a{
  position: relative;
  transition: color .4s var(--ease);
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  padding-bottom: 2px;
  transition: background-size .5s var(--ease), color .4s var(--ease);
}
.site-footer a:hover{ color: #fff; background-size: 100% 1px; }

.footer-bottom{
  display: flex; flex-wrap: wrap; gap: 8px 24px;
  justify-content: space-between;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 253, 247, .14);
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(255, 253, 247, .6);
}

@media (min-width: 780px){
  .footer-grid{ grid-template-columns: 1.6fr .7fr .7fr; }
}

/* ============ whatsapp flutuante ============ */
.wa-float{
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  width: 54px; height: 54px;
  display: grid; place-content: center;
  border-radius: 50%;
  background: var(--rose);
  color: #fff;
  box-shadow: 0 16px 34px -14px rgba(72, 22, 2, .5);
  transition: transform .5s var(--ease), background-color .5s var(--ease), opacity .5s var(--ease);
}
.wa-float svg{ width: 26px; height: 26px; fill: currentColor; }
.wa-float:hover{ background: var(--rose-deep); transform: translateY(-3px) scale(1.04); }

/* ============ 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;
    scroll-behavior: auto !important;
  }
  .reveal{ opacity: 1; transform: none; }
  .mask-reveal{ clip-path: none; }
  .mask-reveal img{ transform: none; }
  .carousel-track{ scroll-behavior: auto; }
}
