/* ==========================================================================
   Fábio Sigaud Furquim · Psicólogo em Águas Claras
   Folha de estilo da landing page
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --paper: #F6F2EC;
  --paper-2: #EFE8DE;
  --paper-3: #E5DCCF;
  --white: #FFFDF9;

  --ink: #1E2B29;
  --ink-soft: #44524F;
  --ink-mute: #5B6865;

  --green: #2F4B47;
  --green-2: #3D5E58;
  --green-deep: #1C302E;

  --sage: #9DB3A6;
  --sage-2: #C4D3C9;
  --sage-soft: #DFE7E1;

  --clay: #BE7F60;
  --clay-ink: #94573B;
  --clay-soft: #F2E2D7;

  --cream: #F3ECE1;

  --line: rgba(30, 43, 41, .12);
  --line-light: rgba(243, 236, 225, .16);

  --shadow-sm: 0 1px 2px rgba(30, 43, 41, .05), 0 4px 14px rgba(30, 43, 41, .05);
  --shadow-md: 0 2px 4px rgba(30, 43, 41, .04), 0 16px 36px -12px rgba(30, 43, 41, .16);
  --shadow-lg: 0 4px 10px rgba(30, 43, 41, .04), 0 36px 70px -24px rgba(30, 43, 41, .30);

  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 32px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.45, 0, .2, 1);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 76px;
  --section-y: clamp(88px, 11vw, 150px);
}

/* ---------- Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
}

/* Textura de papel bem sutil por cima de tudo */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

html.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -.015em;
  font-optical-sizing: auto;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 700; color: var(--ink); }

em { font-style: italic; }

::selection { background: var(--sage-2); color: var(--green-deep); }

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

[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

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

.section { position: relative; padding-block: var(--section-y); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  left: 16px; top: 12px;
  z-index: 200;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  transform: translateY(-150%);
  transition: transform .4s var(--ease-out);
}
.skip-link:focus { transform: none; }

.icon {
  width: 20px;
  height: 20px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--sm { width: 16px; height: 16px; }
.icon--fill { fill: currentColor; stroke: none; }

/* ---------- Tipografia de seção ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay-ink);
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}
.eyebrow--light { color: var(--sage-2); }

.h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  font-weight: 350;
  line-height: 1.06;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.h2 em,
.hero__main em,
.panel__title em,
.cta__title em {
  font-weight: 300;
  color: var(--green-2);
}

.section-head { max-width: 680px; }
.section-head .h2 { margin-top: 20px; }
.section-head .lead {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--ink-soft);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Botões ---------- */
.btn {
  --bg: var(--green);
  --fg: var(--white);
  --bd: transparent;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 26px;
  border: 1px solid var(--bd);
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg);
  font: inherit;
  font-size: .97rem;
  font-weight: 600;
  letter-spacing: .01em;
  line-height: 1.2;
  cursor: pointer;
  transition:
    transform .6s var(--ease-out),
    box-shadow .6s var(--ease-out),
    background-color .4s ease,
    border-color .4s ease,
    color .4s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .22), transparent 65%);
  opacity: 0;
  transition: opacity .5s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(47, 75, 71, .6); }
.btn:hover::before { opacity: 1; }
.btn:active { transform: translateY(0) scale(.98); }
.btn .icon-arrow { transition: transform .6s var(--ease-out); }
.btn:hover .icon-arrow { transform: translateX(4px); }

.btn--ghost {
  --bg: transparent;
  --fg: var(--green);
  --bd: rgba(47, 75, 71, .28);
}
.btn--ghost::before { background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(47, 75, 71, .10), transparent 65%); }
.btn--ghost:hover { box-shadow: none; --bd: rgba(47, 75, 71, .5); }

.btn--light { --bg: var(--cream); --fg: var(--green-deep); }
.btn--light::before { background: radial-gradient(140px circle at var(--mx, 50%) var(--my, 50%), rgba(190, 127, 96, .22), transparent 65%); }
.btn--light:hover { box-shadow: 0 16px 36px -14px rgba(0, 0, 0, .45); }

.btn--outline-light { --bg: transparent; --fg: var(--cream); --bd: rgba(243, 236, 225, .32); }
.btn--outline-light:hover { --bd: rgba(243, 236, 225, .7); box-shadow: none; }

.btn--sm { padding: 12px 20px; font-size: .9rem; gap: 10px; }

/* ---------- Barra de progresso ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  height: 2px;
  background: linear-gradient(90deg, var(--sage), var(--clay));
  transform-origin: left;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition:
    transform .7s var(--ease-out),
    background-color .5s ease,
    box-shadow .5s ease;
}
.header.is-scrolled {
  background: rgba(246, 242, 236, .8);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line);
}
.header.is-hidden { transform: translateY(-100%); }
.header:focus-within { transform: none; }

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: -.01em;
}
.brand__role {
  margin-top: 3px;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  padding: 8px 14px;
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .3s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 1px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .6s var(--ease-out);
}
.nav a:hover,
.nav a.is-active { color: var(--ink); }
.nav a:hover::after,
.nav a.is-active::after { transform: scaleX(1); transform-origin: left; }

.header__actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 253, 249, .6);
  cursor: pointer;
}
.menu-toggle span {
  position: absolute;
  left: 14px; right: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .6s var(--ease-out);
}
.menu-toggle span:nth-child(1) { top: 18px; }
.menu-toggle span:nth-child(2) { top: 26px; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Menu mobile */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: calc(var(--header-h) + 28px) var(--gutter) 36px;
  background: var(--paper);
  visibility: hidden;
  clip-path: circle(0% at calc(100% - var(--gutter) - 23px) 38px);
  transition: clip-path .8s var(--ease-out), visibility 0s linear .8s;
}
.menu-open .mobile-menu {
  visibility: visible;
  clip-path: circle(150% at calc(100% - var(--gutter) - 23px) 38px);
  transition: clip-path .9s var(--ease-out), visibility 0s;
}
.mobile-menu__links a {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 7vw, 2.4rem);
  font-weight: 350;
  letter-spacing: -.02em;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s ease, transform .7s var(--ease-out);
}
.mobile-menu__links a span {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--ink-mute);
}
.menu-open .mobile-menu__links a {
  opacity: 1;
  transform: none;
  transition-delay: calc(.18s + var(--i, 0) * .06s);
}
.mobile-menu__foot {
  display: grid;
  gap: 16px;
  opacity: 0;
  transition: opacity .6s ease;
}
.menu-open .mobile-menu__foot { opacity: 1; transition-delay: .5s; }
.mobile-menu__foot p { font-size: .9rem; color: var(--ink-mute); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 48px) 0 110px;
  overflow: hidden;
}

.aura {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}
.aura--sage {
  width: 780px; height: 780px;
  left: -260px; top: -240px;
  background: radial-gradient(circle, rgba(157, 179, 166, .5), rgba(157, 179, 166, 0) 65%);
}
.aura--clay {
  width: 640px; height: 640px;
  right: -200px; bottom: -260px;
  background: radial-gradient(circle, rgba(190, 127, 96, .22), rgba(190, 127, 96, 0) 65%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 26px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clay-ink);
}
.hero__kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: .6;
}

.hero__main {
  display: block;
  font-size: clamp(2.7rem, 6.1vw, 5.25rem);
  font-weight: 350;
  line-height: 1.02;
  letter-spacing: -.03em;
}
.hero__main .w { display: inline-block; }

.hero__lead {
  max-width: 35rem;
  margin-top: 30px;
  font-size: 1.13rem;
  color: var(--ink-soft);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 40px;
  font-size: .9rem;
  color: var(--ink-mute);
}
.hero__meta li { display: flex; align-items: center; gap: 10px; }
.hero__meta .icon { color: var(--green-2); }

.hero__visual {
  position: relative;
  justify-self: center;
  width: min(100%, 450px);
}

.hero__blob {
  position: absolute;
  inset: -7% -11% -5% -9%;
  z-index: 0;
  background: linear-gradient(145deg, var(--sage-soft) 10%, var(--clay-soft) 90%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
}

.hero__arch {
  position: relative;
  z-index: 1;
  aspect-ratio: 37 / 50;
  overflow: hidden;
  border-radius: 999px 999px 28px 28px;
  box-shadow: var(--shadow-lg);
  background: var(--paper-3);
}
.hero__arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}

.float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px 14px 14px;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 18px;
  background: rgba(255, 253, 249, .84);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  line-height: 1.3;
}
.float-card__icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--green);
}
.float-card strong { display: block; font-size: .9rem; }
.float-card small { display: block; font-size: .78rem; color: var(--ink-mute); }
.float-card--a { left: -16%; bottom: 13%; }
.float-card--b { right: -10%; top: 14%; }

.pulse-dot {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5E9A7E;
}
.pulse-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: inherit;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 46px;
  overflow: hidden;
  background: var(--line);
}
.hero__scroll-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: -40%;
  width: 100%;
  height: 40%;
  background: var(--green);
}

/* ---------- Faixa de temas ---------- */
.marquee {
  position: relative;
  overflow: hidden;
  padding: 24px 0;
  border-block: 1px solid var(--line);
  background: var(--paper-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track { display: flex; width: max-content; }
.marquee__list {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.3vw, 1.85rem);
  font-style: italic;
  font-weight: 300;
  color: var(--green);
  white-space: nowrap;
}
.marquee__list li { display: flex; align-items: center; gap: 40px; }
.marquee__list li::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clay);
  opacity: .75;
}

/* ---------- Sobre ---------- */
.about__grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: start;
  gap: clamp(48px, 7vw, 110px);
}

/* A foto acompanha a leitura enquanto o texto rola */
.about__media {
  position: sticky;
  top: calc(var(--header-h) + 40px);
}
.about__frame {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-3);
  box-shadow: var(--shadow-lg);
}
.about__frame img {
  position: absolute;
  left: 0;
  top: -8%;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 50% 30%;
  will-change: translate;
}

.about__tag {
  position: absolute;
  right: -22px;
  bottom: 40px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px 12px 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  font-size: .85rem;
  font-weight: 600;
}
.about__tag .icon {
  box-sizing: content-box;
  padding: 8px;
  border-radius: 50%;
  background: var(--clay-soft);
  color: var(--clay-ink);
}

.badge-rotate {
  position: absolute;
  left: -44px;
  top: 44px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.badge-rotate > * { grid-area: 1 / 1; }
.badge-rotate svg { width: 100%; height: 100%; }
.badge-rotate text {
  font-family: var(--font-body);
  font-size: 9.2px;
  font-weight: 700;
  letter-spacing: .16em;
  fill: var(--green);
}
.badge-rotate__core {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #F3D9C9, var(--clay) 70%);
  box-shadow: 0 0 0 8px var(--clay-soft);
}

.about__text { margin-top: 30px; }
.about__text p { color: var(--ink-soft); }
.about__text p + p { margin-top: 18px; }

.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.pillar {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, .55);
  transition:
    transform .7s var(--ease-out),
    background-color .5s ease,
    box-shadow .7s var(--ease-out),
    border-color .5s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  border-color: transparent;
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.pillar__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--green);
  transition: transform .7s var(--ease-out), background-color .5s ease, color .5s ease;
}
.pillar:hover .pillar__icon { transform: scale(1.08) rotate(-6deg); background: var(--green); color: var(--white); }
.pillar h3 {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}
.pillar p {
  margin-top: 6px;
  font-size: .92rem;
  line-height: 1.6;
  color: var(--ink-mute);
}

.signature {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.signature__name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 300;
  color: var(--green);
}
.signature__role {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ---------- Citação ---------- */
.quote {
  position: relative;
  overflow: hidden;
  background: var(--paper-2);
  text-align: center;
}
.quote .aura--sage { left: auto; right: -300px; top: -300px; opacity: .8; }
.quote .aura--clay { right: auto; left: -260px; bottom: -320px; }
.quote__figure { position: relative; z-index: 1; max-width: 960px; margin: 0 auto; }
.quote__mark {
  display: block;
  height: .5em;
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 1;
  color: var(--clay);
  opacity: .55;
}
.quote blockquote { margin: 0; }
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.7rem);
  font-weight: 330;
  line-height: 1.18;
  letter-spacing: -.025em;
  text-wrap: balance;
}
.quote__text .qw { transition: opacity .7s var(--ease-soft); opacity: .16; }
.quote__text .qw.on { opacity: 1; }
.quote__cite {
  display: block;
  margin-top: 36px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.quote__cite cite { font-style: normal; color: var(--clay-ink); }

/* ---------- Como posso ajudar ---------- */
.care__layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: start;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 64px;
}

.tabs {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px;
  border-radius: 24px;
  background: var(--paper-2);
}
.tabs__indicator {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: var(--w, 0);
  height: var(--h, 0);
  border-radius: 16px;
  background: var(--green);
  box-shadow: 0 10px 24px -12px rgba(28, 48, 46, .7);
  transform: translate(var(--x, 0), var(--y, 0));
  transition:
    transform .7s var(--ease-out),
    width .7s var(--ease-out),
    height .7s var(--ease-out);
}
.tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-size: .98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color .45s ease;
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { color: var(--cream); }
.tab__num {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  font-variant-numeric: tabular-nums;
  opacity: .55;
}

.panels { display: grid; }
.panel {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.panel + .panel { margin-top: 20px; }
.panel__title {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  font-weight: 350;
  letter-spacing: -.025em;
}
.panel__text {
  margin-top: 20px;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.panel__label {
  margin-top: 30px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.chips li {
  padding: 8px 15px;
  border-radius: 999px;
  background: var(--sage-soft);
  color: var(--green);
  font-size: .88rem;
  font-weight: 600;
}
.panel__alert {
  display: flex;
  gap: 12px;
  margin-top: 26px;
  padding: 14px 18px;
  border-radius: 14px;
  background: var(--clay-soft);
  color: #6B3D28;
  font-size: .9rem;
  line-height: 1.55;
}
.panel__alert .icon { margin-top: 2px; }
.panel__alert a { font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.panel__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 36px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.panel__note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  color: var(--ink-mute);
}
.panel__note .icon { color: var(--clay); }

/* Com JS, os painéis ficam empilhados e só o ativo aparece (crossfade) */
@media (scripting: enabled) {
  .panel {
    grid-area: 1 / 1;
    visibility: hidden;
    opacity: 0;
    transform: translateY(16px);
    filter: blur(4px);
    transition:
      opacity .35s ease,
      transform .5s var(--ease-out),
      filter .35s ease,
      visibility 0s linear .35s;
  }
  .panel + .panel { margin-top: 0; }
  .panel.is-active {
    visibility: visible;
    opacity: 1;
    transform: none;
    filter: none;
    transition:
      opacity .7s ease .15s,
      transform .9s var(--ease-out) .15s,
      filter .7s ease .15s,
      visibility 0s;
  }
  .panel.is-active .chips li { animation: chipIn .7s var(--ease-out) both; }
  .panel.is-active .chips li:nth-child(1) { animation-delay: .30s; }
  .panel.is-active .chips li:nth-child(2) { animation-delay: .36s; }
  .panel.is-active .chips li:nth-child(3) { animation-delay: .42s; }
  .panel.is-active .chips li:nth-child(4) { animation-delay: .48s; }
}

/* ---------- Pausa para respirar ---------- */
.breathe {
  position: relative;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
}
.breathe .aura--sage {
  left: 50%; top: 50%;
  width: 900px; height: 900px;
  margin: -450px 0 0 -100px;
  background: radial-gradient(circle, rgba(157, 179, 166, .16), rgba(157, 179, 166, 0) 62%);
}
.breathe__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 96px);
}
.breathe .h2 { color: var(--cream); margin-top: 20px; }
.breathe .h2 em { color: var(--sage-2); }
.breathe__text {
  margin-top: 24px;
  max-width: 30rem;
  color: rgba(243, 236, 225, .78);
  font-size: 1.05rem;
}
.breathe__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  margin-top: 36px;
}
.breathe__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .4s ease, background-color .4s ease;
}
.breathe__toggle:hover { border-color: rgba(243, 236, 225, .5); background: rgba(243, 236, 225, .06); }
.breathe__toggle .icon-pause { display: none; }
.breathe.is-running .breathe__toggle .icon-pause { display: block; }
.breathe.is-running .breathe__toggle .icon-play { display: none; }
.breathe__note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  max-width: 30rem;
  font-size: .95rem;
  color: rgba(243, 236, 225, .7);
}
.breathe__note a {
  color: var(--cream);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--clay);
  text-underline-offset: 4px;
  transition: text-decoration-color .3s ease;
}
.breathe__note a:hover { text-decoration-color: var(--cream); }

.orb {
  --b: 0;
  --c: 0;
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 440px);
  aspect-ratio: 1;
  margin-inline: auto;
}
.orb > * { grid-area: 1 / 1; }
.orb__glow {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 179, 166, .38), rgba(157, 179, 166, 0) 62%);
  opacity: calc(.35 + var(--b) * .65);
  transform: scale(calc(.8 + var(--b) * .3));
}
.orb__ring {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(196, 211, 201, .22);
  border-radius: 50%;
}
.orb__ring--1 { transform: scale(calc(.50 + var(--b) * .30)); }
.orb__ring--2 { transform: scale(calc(.56 + var(--b) * .36)); opacity: .7; }
.orb__ring--3 { transform: scale(calc(.62 + var(--b) * .38)); opacity: .4; }
.orb__progress {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
}
.orb__progress circle {
  fill: none;
  stroke-width: .5;
  stroke-linecap: round;
}
.orb__progress .track { stroke: rgba(196, 211, 201, .12); }
.orb__progress .bar {
  stroke: var(--clay);
  stroke-dasharray: 1;
  stroke-dashoffset: calc(1 - var(--c));
}
.orb__core {
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #EEF3EE 0%, #BCD0C2 32%, #7FA092 64%, #46695F 100%);
  box-shadow:
    inset 0 -12px 32px rgba(28, 48, 46, .35),
    0 24px 60px -12px rgba(0, 0, 0, .45);
  transform: scale(calc(.64 + var(--b) * .36));
}
.orb__text {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: var(--green-deep);
  pointer-events: none;
}
.orb__label {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
}
.orb__label.swap { animation: labelSwap .9s var(--ease-out); }
.orb__count {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  font-variant-numeric: tabular-nums;
  opacity: .6;
}

/* ---------- Como funciona ---------- */
.steps { --p: 0; position: relative; margin-top: 76px; }

.steps__wave {
  position: absolute;
  left: 0;
  top: -2px;
  width: 100%;
  height: 60px;
  overflow: visible;
  pointer-events: none;
}
.steps__wave path {
  fill: none;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}
.steps__wave--base path { stroke: var(--line); stroke-dasharray: 3 7; }
.steps__wave--fill { clip-path: inset(0 calc((1 - var(--p)) * 100%) 0 0); }
.steps__wave--fill path { stroke: var(--clay); }

.steps__vline { display: none; }

.steps__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}
.step { text-align: center; }
.step__dot {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-inline: auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink-mute);
  transition:
    background-color .6s ease,
    color .6s ease,
    border-color .6s ease,
    box-shadow .8s var(--ease-out),
    transform .8s var(--ease-out);
}
.step.is-active .step__dot {
  border-color: var(--green);
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 0 0 9px rgba(47, 75, 71, .09);
  transform: scale(1.04);
}
.step h3 { margin-top: 28px; font-size: 1.6rem; font-weight: 400; }
.step p {
  max-width: 22rem;
  margin: 12px auto 0;
  color: var(--ink-soft);
}
.steps__cta { display: flex; justify-content: center; margin-top: 64px; }

/* ---------- Consultório ---------- */
.place { background: var(--paper-2); }
.place__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  gap: clamp(40px, 6vw, 80px);
}
.place__text { margin-top: 24px; color: var(--ink-soft); }

.regions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.regions li {
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.info-list { margin-top: 32px; border-top: 1px solid var(--line); }
.info-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-list .icon {
  box-sizing: content-box;
  padding: 10px;
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
}
.info-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.info-list a { transition: color .3s ease; }
.info-list a:hover { color: var(--clay-ink); }

.place__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.map {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--paper-3);
  box-shadow: var(--shadow-lg);
}
.map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(.4) sepia(.12) contrast(.96);
  transition: filter 1s ease;
}
.map:hover iframe { filter: none; }

/* ---------- Dúvidas ---------- */
.faq__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: start;
  gap: clamp(40px, 6vw, 96px);
}
.faq__aside { position: sticky; top: calc(var(--header-h) + 32px); }
.faq__aside .lead { margin-top: 20px; color: var(--ink-soft); }
.faq__aside .btn { margin-top: 30px; }

.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.9vw, 1.42rem);
  font-weight: 400;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
  transition: color .3s ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--green-2); }
.faq__icon {
  position: relative;
  flex: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  transition:
    background-color .5s ease,
    border-color .5s ease,
    color .5s ease,
    transform .7s var(--ease-out);
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 1.5px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform .6s var(--ease-out);
}
.faq__item[open]:not(.is-closing) .faq__icon {
  border-color: var(--green);
  background: var(--green);
  color: var(--cream);
  transform: rotate(180deg);
}
.faq__item[open]:not(.is-closing) .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__answer { overflow: hidden; }
.faq__answer p {
  padding: 0 64px 28px 0;
  color: var(--ink-soft);
}

/* ---------- Chamada final ---------- */
.cta-wrap { padding-bottom: var(--section-y); }
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(56px, 8vw, 110px) clamp(24px, 6vw, 90px);
  border-radius: 40px;
  background: var(--green);
  color: var(--cream);
  text-align: center;
}
.cta .aura { z-index: -1; }
.cta .aura--sage {
  left: -200px; top: -320px;
  background: radial-gradient(circle, rgba(196, 211, 201, .28), rgba(196, 211, 201, 0) 65%);
}
.cta .aura--clay {
  right: -180px; bottom: -340px;
  background: radial-gradient(circle, rgba(190, 127, 96, .35), rgba(190, 127, 96, 0) 65%);
}
.cta .eyebrow { justify-content: center; }
.cta__title {
  max-width: 16ch;
  margin: 22px auto 0;
  font-size: clamp(2.3rem, 5.2vw, 4.3rem);
  font-weight: 330;
  line-height: 1.04;
  letter-spacing: -.03em;
  color: var(--cream);
}
.cta__title em { color: var(--sage-2); }
.cta__text {
  max-width: 34rem;
  margin: 24px auto 0;
  font-size: 1.08rem;
  color: rgba(243, 236, 225, .8);
}
.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 40px;
}

/* ---------- Rodapé ---------- */
.footer {
  position: relative;
  overflow: hidden;
  padding-top: 72px;
  border-top: 1px solid var(--line);
  background: var(--paper-2);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
}
.footer__name { font-family: var(--font-display); font-size: 1.5rem; }
.footer__role {
  margin-top: 6px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer__desc { max-width: 22rem; margin-top: 16px; font-size: .95rem; color: var(--ink-soft); }
.footer__title {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer__list { display: grid; gap: 10px; margin-top: 16px; font-size: .95rem; color: var(--ink-soft); }
.footer__list a { transition: color .3s ease; }
.footer__list a:hover { color: var(--clay-ink); }

.footer__bottom {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 32px;
  margin-top: 56px;
  padding-block: 24px;
  font-size: .82rem;
  color: var(--ink-mute);
}
.footer__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  right: var(--gutter);
  height: 1px;
  background: var(--line);
}
.footer__sos { max-width: 44rem; }
.footer__sos strong { color: var(--ink-soft); }

.footer__mark {
  display: block;
  margin: 8px 0 -.08em;
  font-family: var(--font-display);
  font-size: clamp(3rem, 12.4vw, 11rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.045em;
  white-space: nowrap;
  text-align: center;
  color: var(--paper-3);
  user-select: none;
}

/* ---------- Botão flutuante do WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 253, 249, .22);
  opacity: 0;
  transform: translateY(24px) scale(.85);
  pointer-events: none;
  transition:
    opacity .5s ease,
    transform .8s var(--ease-out),
    gap .6s var(--ease-out),
    background-color .4s ease;
}
.wa-float.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--green);
  border-radius: inherit;
}
.wa-float .icon { width: 24px; height: 24px; }
.wa-float__label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: .92rem;
  font-weight: 600;
  transition: max-width .6s var(--ease-out);
}
.wa-float:hover { gap: 10px; background: var(--green-2); }
.wa-float:hover .wa-float__label,
.wa-float:focus-visible .wa-float__label { max-width: 200px; }
.wa-float:focus-visible { gap: 10px; }

/* ==========================================================================
   Animações
   ========================================================================== */
@keyframes wordIn { to { opacity: 1; filter: blur(0); transform: none; } }
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes archIn {
  from { clip-path: inset(100% 0 0 0 round 999px 999px 28px 28px); }
  to { clip-path: inset(0 0 0 0 round 999px 999px 28px 28px); }
}
@keyframes imgIn { from { transform: scale(1.18); } to { transform: scale(1); } }
@keyframes blobIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: scale(1); } }
@keyframes morph {
  0% { border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%; rotate: 0deg; }
  50% { border-radius: 42% 58% 46% 54% / 60% 42% 58% 40%; rotate: 4deg; }
  100% { border-radius: 55% 45% 40% 60% / 45% 55% 50% 50%; rotate: -3deg; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(60px, 40px, 0) scale(1.08); }
  100% { transform: translate3d(-30px, 80px, 0) scale(.96); }
}
@keyframes pulse {
  0% { transform: scale(1); opacity: .6; }
  70%, 100% { transform: scale(2.6); opacity: 0; }
}
@keyframes ripple {
  0% { transform: scale(1); opacity: .55; }
  70%, 100% { transform: scale(1.35, 1.6); opacity: 0; }
}
@keyframes scrollCue { to { top: 100%; } }
@keyframes marquee { to { transform: translateX(-50%); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes chipIn { from { opacity: 0; transform: translateY(8px) scale(.96); } }
@keyframes labelSwap { from { opacity: 0; filter: blur(6px); transform: translateY(6px); } }

@media (prefers-reduced-motion: no-preference) {
  /* Entrada do hero, sem depender de JS */
  .hero__main .w {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(.3em);
    animation: wordIn 1.2s var(--ease-out) forwards;
    animation-delay: calc(.25s + var(--i, 0) * 65ms);
  }
  [data-hero] {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 1.2s var(--ease-out) forwards;
    animation-delay: var(--delay, 0s);
  }
  .hero__blob {
    animation:
      blobIn 1.6s var(--ease-out) .2s both,
      morph 16s ease-in-out 1.8s infinite alternate;
  }
  .hero__arch { animation: archIn 1.6s var(--ease-out) .35s both; }
  .hero__arch img { animation: imgIn 2.2s var(--ease-out) .35s both; }
  .float-card--a { animation: fadeUp 1s var(--ease-out) 1.3s both, floatY 7s ease-in-out 2.3s infinite; }
  .float-card--b { animation: fadeUp 1s var(--ease-out) 1.5s both, floatY 8s ease-in-out 2.5s infinite; }
  .float-card--a, .float-card--b { opacity: 0; transform: translateY(22px); }
  .pulse-dot::after { animation: pulse 2.4s ease-out infinite; }
  .hero__scroll-line::after { animation: scrollCue 2.4s var(--ease-soft) infinite; }

  .aura--sage { animation: drift 26s ease-in-out infinite alternate; }
  .aura--clay { animation: drift 32s ease-in-out infinite alternate-reverse; }

  .marquee__track { animation: marquee 48s linear infinite; }
  .marquee:hover .marquee__track { animation-play-state: paused; }

  .badge-rotate svg { animation: spin 28s linear infinite; }

  .wa-float.is-visible::before { animation: ripple 3.6s var(--ease-soft) 1s infinite; }
}

/* Revelação ao rolar: só existe quando o JS está ativo e o usuário aceita movimento */
@media (scripting: enabled) and (prefers-reduced-motion: no-preference) {
  [data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition:
      opacity 1.1s var(--ease-out),
      transform 1.3s var(--ease-out),
      filter 1.1s var(--ease-out);
    transition-delay: var(--d, 0ms);
  }
  [data-reveal="fade"] { transform: none; }
  [data-reveal="scale"] { transform: scale(.94); }
  [data-reveal="left"] { transform: translateX(-36px); }
  [data-reveal="right"] { transform: translateX(36px); }
  [data-reveal].is-visible { opacity: 1; transform: none; filter: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* ==========================================================================
   Responsivo
   ========================================================================== */
@media (max-width: 1100px) {
  .float-card--a { left: -8%; }
  .float-card--b { right: -4%; }
  .badge-rotate { left: -24px; }
  .about__tag { right: -10px; }
}

@media (max-width: 900px) {
  :root { --header-h: 68px; }
  body { font-size: 16px; }

  .nav { display: none; }
  .menu-toggle { display: block; }

  .hero { min-height: auto; padding: calc(var(--header-h) + 40px) 0 80px; }
  .hero__grid { grid-template-columns: 1fr; gap: 64px; }
  .hero__visual { width: min(84%, 380px); }
  .hero__scroll { display: none; }
  .float-card { padding: 10px 14px 10px 10px; }
  .float-card__icon { width: 32px; height: 32px; }
  .float-card--a { left: -12%; bottom: 8%; }
  .float-card--b { right: -12%; top: 10%; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { position: relative; top: auto; max-width: 460px; width: 100%; margin-inline: auto; }
  .badge-rotate { left: -12px; top: -28px; width: 104px; height: 104px; }

  .care__layout { grid-template-columns: 1fr; margin-top: 44px; }
  .tabs {
    flex-direction: row;
    gap: 4px;
    margin-inline: calc(var(--gutter) * -1);
    padding: 6px var(--gutter);
    border-radius: 0;
    background: transparent;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-padding-inline: var(--gutter);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent);
    mask-image: linear-gradient(90deg, transparent, #000 var(--gutter), #000 calc(100% - var(--gutter)), transparent);
  }
  .tabs::-webkit-scrollbar { display: none; }
  .tab {
    flex: none;
    padding: 11px 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    white-space: nowrap;
    font-size: .92rem;
  }
  .tab[aria-selected="true"] { border-color: transparent; }
  .tab__num { display: none; }
  .tabs__indicator { border-radius: 999px; }

  .breathe__grid { grid-template-columns: 1fr; }
  .orb { width: min(86%, 380px); order: -1; }

  .steps__wave { display: none; }
  .steps__vline {
    display: block;
    position: absolute;
    left: 27px;
    top: 28px;
    width: 1.5px;
    height: calc(100% - 120px);
    background: var(--line);
  }
  .steps__vline span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--clay);
    transform-origin: top;
    transform: scaleY(var(--p));
  }
  .steps__list { grid-template-columns: 1fr; gap: 44px; }
  .step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 22px;
    text-align: left;
  }
  .step__dot { position: relative; margin: 0; }
  .step h3 { margin-top: 10px; }
  .step p { margin: 10px 0 0; }
  .steps__cta { justify-content: flex-start; margin-top: 48px; }

  .place__grid { grid-template-columns: 1fr; }
  .map { min-height: 360px; }

  .faq__grid { grid-template-columns: 1fr; }
  .faq__aside { position: static; }
  .faq__answer p { padding-right: 0; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .header__cta { display: none; }
  .brand__name { font-size: 1.1rem; }

  .hero__actions .btn { width: 100%; }
  .hero__meta { gap: 10px; flex-direction: column; }
  .float-card small { display: none; }
  .float-card--a { left: -8%; }
  .float-card--b { right: -8%; }

  .pillars { grid-template-columns: 1fr; }
  .about__tag { right: 12px; bottom: 16px; font-size: .8rem; }

  .panel__foot .btn { width: 100%; }
  .place__actions .btn,
  .cta__actions .btn { width: 100%; }

  .faq__icon { width: 36px; height: 36px; }

  .footer__grid { grid-template-columns: 1fr; }

  .wa-float { right: 16px; bottom: 16px; height: 56px; padding: 0 16px; }
}
