/* ===========================================================
   Instituto InovaMente — Design System 2026 (premium)
   Dra. Déborah Pimentel · Saúde mental humanizada
   Marca: dourado #F3B27C→#B27849 · escuro #0E1012
   Fontes: Crimson Pro (display) + DM Sans (UI)
   =========================================================== */

:root {
  /* Dourado */
  --gold-soft: #FBEAD7;
  --gold-light: #F3B27C;
  --gold: #C68A4E;
  --gold-deep: #B27849;
  --gold-dark: #9A6234;
  --grad-gold: linear-gradient(120deg, #F3B27C 0%, #C68A4E 55%, #B27849 100%);

  /* Escuros / neutros quentes */
  --dark: #0E1012;
  --dark-2: #16191c;
  --dark-3: #1f2429;
  --ink: #1c2024;
  --ink-soft: #3a4045;
  --body: #5c6166;
  --muted: #8d9197;
  --line: #ece6dd;
  --line-2: #f3eee6;

  --bg: #ffffff;
  --bg-soft: #faf7f2;
  --bg-cream: #f6f0e7;

  --serif: "Crimson Pro", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Elevação suave em camadas */
  --e1: 0 1px 2px rgba(28,22,12,.04), 0 3px 10px rgba(28,22,12,.05);
  --e2: 0 6px 16px -6px rgba(28,22,12,.10), 0 14px 34px -12px rgba(28,22,12,.12);
  --e3: 0 12px 28px -10px rgba(70,46,16,.16), 0 36px 70px -24px rgba(70,46,16,.26);
  --glow-gold: 0 22px 60px -18px rgba(198,138,78,.55);

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --r-xl: 34px;
  --container: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){ html{scroll-behavior:auto} }
body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--bg);
  line-height: 1.72;
  font-size: 1.02rem;
  letter-spacing: -.002em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img,svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }
::selection { background: var(--gold-light); color: #fff; }

h1,h2,h3,h4 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.12; letter-spacing: -.015em; }

.container { width: min(100% - 2.6rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4rem, 8.5vw, 7rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 4.5rem) 0; }
.center { text-align: center; }

.eyebrow {
  font-family: var(--sans); font-weight: 700; font-size: .76rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep);
  display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem;
}
.eyebrow::before { content:""; width: 24px; height: 2px; background: var(--grad-gold); border-radius: 2px; }
.center .eyebrow::after { content:""; width: 24px; height: 2px; background: var(--grad-gold); border-radius: 2px; }

.section-head { max-width: 680px; margin: 0 auto clamp(2.6rem,5vw,3.8rem); }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.2rem); margin-bottom: 1rem; }
.section-head p { color: var(--body); font-size: 1.06rem; }

/* Botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: 1rem 1.9rem; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: .85rem;
  letter-spacing: .06em; text-transform: uppercase;
  position: relative; overflow: hidden; isolation: isolate;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), color .3s;
}
.btn svg { width: 17px; height: 17px; }
.btn--gold { background: var(--grad-gold); color: #fff; box-shadow: 0 10px 24px -10px rgba(178,120,73,.75); }
.btn--gold::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(120deg,#C68A4E,#9A6234); opacity:0; transition: opacity .4s; }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -12px rgba(178,120,73,.85); }
.btn--gold:hover::after { opacity: 1; }
.btn--gold::before { content:""; position: absolute; top:0; bottom:0; left:-90%; width: 55%; background: linear-gradient(115deg, transparent, rgba(255,255,255,.45), transparent); transform: skewX(-20deg); pointer-events: none; transition: left .75s var(--ease); }
.btn--gold:hover::before { left: 140%; }

/* barra de progresso de leitura */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 200; background: var(--grad-gold); box-shadow: 0 0 12px rgba(243,178,124,.6); transition: width .1s linear; }
.btn--outline { border: 1.5px solid rgba(255,255,255,.35); color: #fff; backdrop-filter: blur(4px); }
.btn--outline:hover { background: #fff; color: var(--ink); transform: translateY(-2px); }
.btn--lg { padding: 1.15rem 2.2rem; font-size: .9rem; }

/* ===================== TOP BAR ===================== */
.topbar { background: var(--dark); color: rgba(255,255,255,.66); font-size: .82rem; }
.topbar__in { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem 0; }
.topbar__addr { display: inline-flex; align-items: center; gap: .5rem; }
.topbar__addr svg { width: 15px; color: var(--gold-light); flex-shrink: 0; }
.topbar__social { display: flex; gap: .3rem; }
.topbar__social a { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 7px; color: rgba(255,255,255,.7); transition: all .3s; }
.topbar__social a:hover { background: var(--grad-gold); color: #fff; transform: translateY(-2px); }
.topbar__social svg { width: 15px; }

/* ===================== HEADER ===================== */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.86); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: box-shadow .35s, border-color .35s, background .35s; }
.site-header.scrolled { box-shadow: 0 8px 30px -16px rgba(0,0,0,.22); border-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: .8rem 0; }
.nav__logo img { height: 58px; width: auto; transition: height .35s; }
.scrolled .nav__logo img { height: 48px; }
.nav__menu { display: flex; align-items: center; gap: 2.2rem; }
.nav__links { display: flex; align-items: center; gap: 1.7rem; }
.nav__links > li > a { font-size: .93rem; font-weight: 500; color: var(--ink-soft); padding: .4rem 0; position: relative; display: inline-flex; align-items: center; gap: .25rem; transition: color .25s; }
.nav__links > li > a::after { content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px; background: var(--grad-gold); border-radius:2px; transition: width .3s var(--ease); }
.nav__links > li > a:hover { color: var(--ink); }
.nav__links > li > a:hover::after, .nav__links > li > a.active::after { width: 100%; }
.nav__has-sub { position: relative; }
.nav__sub { position: absolute; top: calc(100% + 12px); left: -.9rem; min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--e3); padding: .55rem; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .3s var(--ease); }
.nav__has-sub:hover .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sub a { display: block; padding: .65rem .9rem; border-radius: 9px; font-size: .9rem; color: var(--ink-soft); transition: all .25s; }
.nav__sub a:hover { background: var(--bg-soft); color: var(--gold-deep); padding-left: 1.15rem; }
.nav__toggle { display: none; width: 46px; height: 46px; color: var(--ink); }
.nav__toggle svg { width: 26px; height: 26px; }

.mobile-menu { position: fixed; inset: 0; z-index: 110; background: #fff; padding: 5.5rem 2rem 2rem; display: flex; flex-direction: column; gap: .15rem; transform: translateX(100%); transition: transform .45s var(--ease); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); padding: .75rem 0; border-bottom: 1px solid var(--line); }
.mobile-menu .btn { margin-top: 1.5rem; }
.mobile-close { position: absolute; top: 1.4rem; right: 1.4rem; width: 46px; height: 46px; color: var(--ink); }
.mobile-close svg { width: 28px; height: 28px; }

/* ===================== HERO ===================== */
.hero { background: var(--dark); color: #fff; position: relative; overflow: hidden; padding-bottom: 5.5rem; }
.hero::before { content:""; position:absolute; inset:0; background:
  radial-gradient(820px 560px at 80% 22%, rgba(243,178,124,.22), transparent 60%),
  radial-gradient(600px 500px at 8% 90%, rgba(198,138,78,.12), transparent 60%); }
.hero::after { content:""; position:absolute; inset:0; opacity:.5; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 22px 22px; mask-image: radial-gradient(circle at 70% 30%, #000, transparent 75%); }
.hero__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; padding: clamp(3.5rem,7vw,5.5rem) 0 1rem; }
.hero__title { font-family: var(--serif); color: #fff; font-size: clamp(2.6rem, 5.4vw, 4.4rem); font-weight: 600; line-height: 1.06; letter-spacing: -.02em; margin: .5rem 0 1.4rem; }
.hero__title .hl { font-style: italic; background: linear-gradient(90deg, #C68A4E, #F8D9B8, #F3B27C, #F8D9B8, #C68A4E); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; animation: shimmer 5s linear infinite; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none; z-index: 0; }
.hero__orb--1 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(243,178,124,.5), transparent 70%); top: -80px; right: 12%; animation: orbFloat 14s ease-in-out infinite; }
.hero__orb--2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(198,138,78,.35), transparent 70%); bottom: -60px; left: -40px; animation: orbFloat 18s ease-in-out infinite reverse; }
.hero__lead { color: rgba(255,255,255,.74); font-size: clamp(1.05rem,1.4vw,1.2rem); max-width: 42ch; margin-bottom: 2.1rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.3rem; }
.hero__phone { display: inline-flex; align-items: center; gap: .7rem; }
.hero__phone .ic { width: 50px; height: 50px; border-radius: 50%; background: rgba(255,255,255,.07); border: 1px solid rgba(243,178,124,.3); display: grid; place-items: center; color: var(--gold-light); flex-shrink: 0; transition: all .3s; }
.hero__phone:hover .ic { background: var(--grad-gold); color: #fff; border-color: transparent; }
.hero__phone small { display: block; color: rgba(255,255,255,.55); font-size: .78rem; }
.hero__phone strong { font-size: 1.08rem; color: #fff; }
/* selo de confiança no hero */
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.4rem; padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero__trust div { display: flex; flex-direction: column; }
.hero__trust b { font-family: var(--serif); font-size: 1.6rem; color: #fff; line-height: 1; }
.hero__trust span { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .3rem; }
.hero__trust .gstars { color: var(--gold-light); font-size: 1.1rem; letter-spacing: .05em; }

.hero__media { position: relative; display: flex; justify-content: center; }
.hero__photo { position: relative; width: min(100%, 440px); aspect-ratio: 1; border-radius: 50%; padding: 10px; box-shadow: 0 30px 80px -24px rgba(0,0,0,.7), var(--glow-gold); }
.hero__photo::before { content:""; position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, #F3B27C, #B27849, #9A6234, #F3B27C); animation: spin 16s linear infinite; }
.hero__photo picture { display: contents; }
.hero__photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center top; border-radius: 50%; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes morph { 0%,100% { border-radius: 56% 44% 58% 42% / 52% 50% 50% 48%; } 50% { border-radius: 44% 56% 42% 58% / 48% 42% 58% 52%; } }
@keyframes orbFloat { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(30px,-26px) scale(1.12); } }
@keyframes shimmer { to { background-position: 200% center; } }
.hero__badge { position: absolute; left: -.5rem; bottom: 1.5rem; z-index: 2; display: flex; align-items: center; gap: .65rem; background: rgba(255,255,255,.95); backdrop-filter: blur(8px); border-radius: 14px; padding: .7rem .95rem; box-shadow: var(--e3); animation: floaty 4.5s ease-in-out infinite; }
.hero__badge .gg { width: 30px; height: 30px; flex-shrink: 0; }
.hero__badge b { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); line-height: 1; }
.hero__badge span { font-size: .72rem; color: var(--body); }
.hero__badge .s { color: #fbbc05; font-size: .72rem; letter-spacing: .04em; }

/* ===================== TRUST BAR (cartão sobreposto) ===================== */
.trustbar { background: linear-gradient(180deg, var(--dark) 0 50%, var(--bg) 50% 100%); }
.trustbar__card { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; background: #fff; border-radius: var(--r-lg); box-shadow: var(--e3); padding: 2.2rem 1.5rem; position: relative; z-index: 3; }
.trustbar__item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: .5rem; padding: .4rem 1rem; position: relative; }
.trustbar__item + .trustbar__item::before { content:""; position:absolute; left:0; top: 15%; height: 70%; width: 1px; background: var(--line); }
.trustbar__item .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; }
.trustbar__item .ic svg { width: 23px; }
.trustbar__item b { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); line-height: 1; }
.trustbar__item span { font-size: .86rem; color: var(--body); }

/* ===================== SOBRE ===================== */
.about__grid { display: grid; grid-template-columns: minmax(0,400px) 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.about__media { position: relative; width: min(100%, 300px); margin-inline: auto; }
.about__media img { position: relative; z-index: 1; display: block; width: 100%; height: auto; border-radius: 30px; box-shadow: var(--e3); }
/* painel deslocado atrás (cartão em camadas, premium) */
.about__media::before { content:""; position:absolute; z-index: 0; inset: 0; border-radius: 30px; background: var(--gold-soft); transform: translate(18px, 18px); }
/* pontos decorativos */
.about__media::after { content:""; position:absolute; z-index: 2; top: -16px; left: -16px; width: 70px; height: 70px; background-image: radial-gradient(var(--gold) 1.6px, transparent 1.6px); background-size: 12px 12px; opacity: .4; }
.about__badge { position: absolute; z-index: 3; right: -1.4rem; bottom: 1.4rem; background: #fff; border-radius: var(--r); box-shadow: var(--e3); padding: 1rem 1.2rem; display: flex; align-items: center; gap: .75rem; max-width: 230px; }
.about__badge .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--grad-gold); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.about__badge .ic svg { width: 22px; }
.about__badge b { display:block; font-family: var(--serif); font-size: 1.05rem; color: var(--ink); line-height: 1.15; }
.about__badge span { font-size: .76rem; color: var(--body); }
.about h2 { font-size: clamp(2.1rem,4.4vw,3rem); margin: .2rem 0 .15rem; }
.about__crm { color: var(--gold-deep); font-family: var(--serif); font-weight: 600; font-size: 1.4rem; margin-bottom: 1.3rem; }
.about p { margin-bottom: 1.1rem; }
.about__tags { display: flex; flex-wrap: wrap; gap: .6rem; margin: 1.5rem 0 .4rem; }
.about__tags li { font-size: .82rem; font-weight: 500; color: var(--gold-dark); background: var(--gold-soft); border-radius: 100px; padding: .45rem 1rem; }
.about .btn { margin-top: 1.4rem; }

/* ===================== TRATAMENTOS (cards modernos) ===================== */
.treat { background: var(--bg-soft); position: relative; }
.treat__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tcard { position: relative; display: flex; flex-direction: column; gap: .85rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 2.3rem 2rem; box-shadow: var(--e1); transition: transform .45s var(--ease), box-shadow .45s, border-color .3s; overflow: hidden; }
.tcard::before { content:""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--grad-gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.tcard:hover { transform: translateY(-8px); box-shadow: var(--e3); border-color: transparent; }
.tcard:hover::before { transform: scaleX(1); }
.tcard__icon { width: 62px; height: 62px; border-radius: 17px; background: linear-gradient(140deg, var(--gold-soft), #f4ddc4); display: grid; place-items: center; color: var(--gold-dark); transition: background .45s var(--ease), color .45s, transform .45s; }
.tcard:hover .tcard__icon { background: var(--grad-gold); color: #fff; transform: rotate(-6deg) scale(1.06); }
.tcard__icon svg { width: 30px; height: 30px; }
.tcard h3 { font-size: 1.5rem; color: var(--ink); margin-top: .3rem; }
.tcard p { color: var(--body); font-size: .96rem; flex: 1; }
.tcard__more { display: inline-flex; align-items: center; gap: .45rem; font-weight: 600; font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-deep); margin-top: .3rem; }
.tcard__more svg { width: 16px; transition: transform .3s var(--ease); }
.tcard:hover .tcard__more svg { transform: translateX(5px); }

/* ===================== SERVIÇOS (foto + accordion) ===================== */
.svc__grid { display: grid; grid-template-columns: minmax(0,400px) 1fr; gap: clamp(2.5rem,6vw,4.5rem); align-items: center; }
.svc__media { position: relative; width: min(100%, 300px); margin-inline: auto; }
.svc__media img { position: relative; z-index: 1; display: block; width: 100%; height: auto; border-radius: 30px; box-shadow: var(--e3); }
.svc__media::before { content:""; position:absolute; z-index: 0; inset: 0; border-radius: 30px; background: var(--gold-soft); transform: translate(-18px, 18px); }
.svc__media::after { content:""; position:absolute; z-index: 2; bottom: -16px; right: -16px; width: 70px; height: 70px; background-image: radial-gradient(var(--gold) 1.6px, transparent 1.6px); background-size: 12px 12px; opacity: .4; }
.svc h2 { font-size: clamp(2.1rem,4.4vw,3rem); margin: .2rem 0 1.1rem; }
.svc p.intro { margin-bottom: 1.7rem; }

.acc { display: flex; flex-direction: column; gap: .75rem; }
.acc-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; text-align: left; }
.acc-q .pm { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; line-height: 1; transition: transform .35s var(--ease), background .3s, color .3s; }
.acc-item.open .acc-q .pm { transform: rotate(135deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.acc-a ul li { display: flex; gap: .65rem; padding: .4rem 0; color: var(--body); font-size: .96rem; }
.acc-a ul li::before { content:""; flex-shrink:0; margin-top:.55rem; width:7px; height:7px; border-radius:50%; background: var(--grad-gold); }
/* accordion serviços */
.acc--svc .acc-item { border: 1px solid var(--line); border-radius: var(--r); background: #fff; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc--svc .acc-item.open { border-color: rgba(198,138,78,.45); box-shadow: var(--e1); }
.acc--svc .acc-q { padding: 1.2rem 1.4rem; font-family: var(--serif); font-size: 1.18rem; color: var(--ink); }
.acc--svc .acc-q .pm { background: var(--gold-soft); color: var(--gold-dark); }
.acc--svc .acc-item.open .acc-q .pm { background: var(--grad-gold); color: #fff; }
.acc--svc .acc-a__in { padding: 0 1.4rem 1.4rem; }

/* ===================== TESTEMUNHOS ===================== */
.tst { background: var(--bg-soft); }
.tstfix { max-width: 840px; margin: 0 auto clamp(3rem,6vw,4.5rem); }
.tstfix__viewport { overflow: hidden; }
.tstfix__track { display: flex; transition: transform .6s var(--ease); }
.tstfix__slide { flex: 0 0 100%; text-align: center; padding: 0 1rem; }
.tstfix__slide blockquote { font-family: var(--serif); font-style: italic; font-size: clamp(1.2rem,2.1vw,1.5rem); line-height: 1.55; color: var(--ink); }
.tstfix__slide blockquote::before { content:"\201C"; display: block; font-size: 3.4rem; color: var(--gold); line-height: .4; margin-bottom: .8rem; font-family: var(--serif); }
.tstfix__slide cite { display: block; margin-top: 1.3rem; font-style: normal; font-size: .88rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-deep); }
.tstfix__dots { display: flex; justify-content: center; gap: .55rem; margin-top: 2rem; }
.tstfix__dots button { width: 9px; height: 9px; border-radius: 50%; background: #d8cfc2; transition: all .35s var(--ease); }
.tstfix__dots button.active { background: var(--grad-gold); width: 28px; border-radius: 6px; }

.greviews__head { display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; margin-bottom: 2.4rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.3rem 1.8rem; box-shadow: var(--e1); max-width: 720px; margin-inline: auto; }
.greviews__brand { display: flex; align-items: center; gap: .9rem; }
.greviews__brand .g { width: 40px; height: 40px; flex-shrink: 0; }
.greviews__brand b { color: var(--ink); font-family: var(--serif); font-size: 1.12rem; display: block; line-height: 1.2; }
.greviews__brand .rate { display: flex; align-items: center; gap: .4rem; font-size: .88rem; color: var(--body); }
.greviews__brand .rate .stars { color: #fbbc05; letter-spacing: .06em; }
.tst__viewport { overflow: hidden; padding: .5rem; margin: -.5rem; }
.tst__track { display: flex; gap: 1.5rem; transition: transform .6s var(--ease); }
.tst-card { flex: 0 0 calc((100% - 3rem)/3); background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.9rem; box-shadow: var(--e1); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s; }
.tst-card:hover { transform: translateY(-5px); box-shadow: var(--e2); }
.tst-card__top { display: flex; align-items: center; gap: .7rem; margin-bottom: 1rem; }
.tst-card .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-gold); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; font-size: 1.1rem; }
.tst-card .who b { font-size: .92rem; color: var(--ink); display: block; }
.tst-card .stars { color: #fbbc05; font-size: .82rem; letter-spacing: .08em; }
.tst-card__g { width: 22px; height: 22px; margin-left: auto; }
.tst-card p { color: var(--body); font-size: .93rem; line-height: 1.65; }
.tst__nav { display: flex; justify-content: center; gap: .8rem; margin-top: 2.6rem; }
.tst__nav button { width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; display: grid; place-items: center; color: var(--ink); transition: all .3s; }
.tst__nav button:hover { background: var(--grad-gold); color: #fff; border-color: transparent; transform: translateY(-2px); }
.tst__nav svg { width: 19px; }

/* ===================== FAQ ===================== */
.faq__layout { max-width: 880px; margin: 0 auto; }
.faq .acc-item { border-radius: var(--r); overflow: hidden; background: #fff; border: 1px solid var(--line); transition: box-shadow .3s, border-color .3s; }
.faq .acc-item.open { box-shadow: var(--e2); border-color: rgba(198,138,78,.4); }
.faq .acc-q { padding: 1.3rem 1.5rem; font-family: var(--serif); font-size: 1.18rem; font-weight: 600; color: var(--ink); transition: color .3s; }
.faq .acc-item.open .acc-q { color: var(--gold-deep); }
.faq .acc-q .pm { background: var(--gold-soft); color: var(--gold-dark); }
.faq .acc-item.open .acc-q .pm { background: var(--grad-gold); color: #fff; }
.faq .acc-a__in { padding: 0 1.5rem 1.4rem; color: var(--body); }

/* ===================== CTA FINAL ===================== */
.cta { background: var(--bg); }
.cta__box { position: relative; overflow: hidden; border-radius: var(--r-xl); background: linear-gradient(120deg, #16191c, #0E1012); color: #fff; padding: clamp(2.8rem,6vw,4.5rem); display: grid; grid-template-columns: 1.3fr auto; align-items: center; gap: 2rem; box-shadow: var(--e3); }
.cta__box::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 400px at 90% 10%, rgba(243,178,124,.28), transparent 60%); }
.cta__box::after { content:""; position:absolute; right:-60px; bottom:-90px; width: 280px; height: 280px; border-radius:50%; background: var(--grad-gold); opacity: .12; }
.cta__text { position: relative; z-index: 1; }
.cta__text .eyebrow { color: var(--gold-light); }
.cta__text .eyebrow::before { background: var(--gold-light); }
.cta__text h2 { color: #fff; font-size: clamp(1.9rem,3.6vw,2.7rem); margin-bottom: .7rem; }
.cta__text p { color: rgba(255,255,255,.72); max-width: 46ch; }
.cta__actions { position: relative; z-index: 1; display: flex; flex-direction: column; gap: .9rem; }
.cta__actions .phone { display:inline-flex; align-items:center; gap:.6rem; justify-content:center; color: rgba(255,255,255,.8); font-size:.9rem; }
.cta__actions .phone svg { width:16px; color: var(--gold-light); }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--dark); color: rgba(255,255,255,.64); padding: clamp(3.5rem,6vw,5rem) 0 0; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1.2fr; gap: 2.6rem; padding-bottom: 3.2rem; }
.footer__brand img { height: 60px; width: auto; margin-bottom: 1.2rem; }
.footer__brand p { font-size: .92rem; max-width: 34ch; line-height: 1.7; }
.footer__social { display: flex; gap: .55rem; margin-top: 1.5rem; }
.footer__social a { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; color: #fff; transition: all .3s; }
.footer__social a:hover { background: var(--grad-gold); border-color: transparent; transform: translateY(-3px); }
.footer__social svg { width: 17px; }
.site-footer h3 { color: #fff; font-family: var(--serif); font-size: 1.4rem; margin-bottom: 1.4rem; }
.footer__addr li { display: flex; gap: .65rem; margin-bottom: .85rem; font-size: .9rem; line-height: 1.55; }
.footer__addr a:hover { color: var(--gold-light); }
.footer__addr svg { width: 16px; color: var(--gold-light); flex-shrink: 0; margin-top: .25rem; }
.footer__posts a { display: flex; gap: .85rem; margin-bottom: 1.2rem; align-items: center; }
.footer__posts img { width: 66px; height: 58px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.footer__posts b { color: #fff; font-size: .88rem; font-weight: 500; line-height: 1.35; display: block; transition: color .25s; }
.footer__posts a:hover b { color: var(--gold-light); }
.footer__posts small { color: var(--gold-light); font-size: .76rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.6rem 0; text-align: center; font-size: .84rem; color: rgba(255,255,255,.42); }

/* WhatsApp float */
.wa-float { position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 90; display: inline-flex; align-items: center; gap: .6rem; padding: .75rem 1.2rem .75rem .8rem; border-radius: 100px; background: var(--grad-gold); color: #fff; font-weight: 600; font-size: .9rem; box-shadow: 0 14px 32px -10px rgba(178,120,73,.6); transition: transform .35s var(--ease); }
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float svg { width: 24px; }

/* Scroll reveal */
[data-reveal]{ opacity:0; transform: translateY(30px); transition: opacity .85s var(--ease-out), transform .85s var(--ease-out); }
[data-reveal].in{ opacity:1; transform:none; }
[data-reveal][data-delay="1"]{transition-delay:.09s}[data-reveal][data-delay="2"]{transition-delay:.18s}[data-reveal][data-delay="3"]{transition-delay:.27s}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{opacity:1;transform:none;transition:none}
  .hero__photo::before, .hero__badge, .about__media::before, .svc__media::after, .hero__orb, .hero__title .hl, .wa-float::after { animation: none !important; }
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 1080px){
  .footer__grid { grid-template-columns: 1.2fr 1fr; gap: 2rem 3rem; }
}
@media (max-width: 980px){
  .nav__links, .nav__menu .btn, .topbar__addr { display: none; }
  .nav__toggle { display: grid; }
  .hero__grid, .about__grid, .svc__grid, .cta__box { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .about__media, .svc__media { max-width: 440px; margin: 0 auto; }
  .about__badge { right: 0; }
  .treat__grid { grid-template-columns: repeat(2,1fr); }
  .trustbar__card { grid-template-columns: repeat(2,1fr); gap: 2rem 1rem; }
  .trustbar__item:nth-child(3)::before { display:none; }
  .footer__grid { grid-template-columns: 1fr; }
  .tst-card { flex: 0 0 calc((100% - 1.5rem)/2); }
  .cta__box { text-align: center; }
  .cta__text .eyebrow { display:inline-flex; }
  .cta__actions { align-items: stretch; }
}
@media (max-width: 600px){
  .topbar__in { justify-content: center; }
  .treat__grid { grid-template-columns: 1fr; }
  .trustbar__card { grid-template-columns: 1fr 1fr; }
  .tst-card { flex: 0 0 100%; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__trust { gap: 1.2rem 2rem; }
  .about__badge { position: static; margin-top: 1rem; max-width: none; }
}

/* ===========================================================
   LANDING PAGES DE TRATAMENTO
   =========================================================== */
.lp-breadcrumb { position: relative; z-index: 1; display: flex; gap: .5rem; align-items: center; font-size: .82rem; color: rgba(255,255,255,.55); margin-bottom: 1.2rem; }
.lp-breadcrumb a { color: rgba(255,255,255,.7); transition: color .25s; }
.lp-breadcrumb a:hover { color: var(--gold-light); }
.lp-breadcrumb svg { width: 14px; opacity: .5; }

.lp-intro { max-width: 760px; margin: 0 auto; text-align: center; }
.lp-intro p { font-size: 1.1rem; color: var(--body); margin-bottom: 1.1rem; }

.lp-chips { display: flex; flex-wrap: wrap; gap: .7rem; justify-content: center; max-width: 820px; margin: 2.2rem auto 0; }
.lp-chips li { background: #fff; border: 1px solid var(--line); border-radius: 100px; padding: .6rem 1.25rem; font-size: .92rem; color: var(--ink); box-shadow: var(--e1); display: inline-flex; align-items: center; gap: .55rem; transition: transform .3s var(--ease), box-shadow .3s; }
.lp-chips li:hover { transform: translateY(-3px); box-shadow: var(--e2); }
.lp-chips li::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-gold); flex-shrink: 0; }

.lp-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.2rem; max-width: 920px; margin: 0 auto; }
.lp-feature { display: flex; gap: 1.1rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 1.5rem 1.6rem; box-shadow: var(--e1); transition: transform .4s var(--ease), box-shadow .4s, border-color .3s; }
.lp-feature:hover { transform: translateY(-5px); box-shadow: var(--e2); border-color: rgba(198,138,78,.4); }
.lp-feature .ic { width: 48px; height: 48px; border-radius: 13px; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; transition: background .4s, color .4s; }
.lp-feature:hover .ic { background: var(--grad-gold); color: #fff; }
.lp-feature .ic svg { width: 24px; }
.lp-feature b { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); margin-bottom: .2rem; }
.lp-feature span { font-size: .92rem; color: var(--body); line-height: 1.55; }

/* faixa de destaque (ex.: fibromialgia) */
.lp-banner { background: var(--ink); }
.lp-banner__box { text-align: center; max-width: 820px; margin: 0 auto; }
.lp-banner h2 { color: #fff; font-size: clamp(1.7rem,3.4vw,2.5rem); line-height: 1.2; }
.lp-banner h2 .hl { color: var(--gold-light); }
.lp-banner p { color: rgba(255,255,255,.72); font-size: 1.08rem; margin-top: 1rem; }

@media (max-width: 700px){
  .lp-features { grid-template-columns: 1fr; }
}
.hero__lead p { margin: 0 0 .9rem; }
.hero__lead p:last-child { margin-bottom: 0; }
.lp-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.8rem; max-width: 900px; margin: 0 auto; }
.lp-checklist li { display: flex; gap: .8rem; align-items: flex-start; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.5; }
.lp-checklist li .ic { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; margin-top: 1px; }
.lp-checklist li .ic svg { width: 16px; }
@media (max-width: 640px){ .lp-checklist { grid-template-columns: 1fr; } }

/* ===========================================================
   PÁGINA INTERNA (hero compacto) + PUBLICAÇÕES
   =========================================================== */
.page-hero { background: var(--dark); color: #fff; position: relative; overflow: hidden; text-align: center; padding: clamp(3.5rem,7vw,5.5rem) 0; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(700px 400px at 50% -10%, rgba(243,178,124,.20), transparent 60%); }
.page-hero::after { content:""; position:absolute; inset:0; opacity:.5; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 22px 22px; mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .lp-breadcrumb { justify-content: center; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem,5vw,3.6rem); }
.page-hero p { color: rgba(255,255,255,.72); max-width: 620px; margin: 1rem auto 0; font-size: 1.08rem; }

.pub-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(212px,1fr)); gap: 1.6rem; }
.pub-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 1.7rem 1.4rem 1.5rem; box-shadow: var(--e1); display: flex; flex-direction: column; text-align: center; transition: transform .4s var(--ease), box-shadow .4s, border-color .3s; }
.pub-card:hover { transform: translateY(-6px); box-shadow: var(--e3); border-color: transparent; }
.pub-card__cover { height: 230px; display: flex; align-items: flex-end; justify-content: center; margin-bottom: 1.3rem; }
.pub-card__cover img { max-height: 230px; max-width: 100%; width: auto; object-fit: contain; filter: drop-shadow(0 16px 22px rgba(40,30,15,.28)); transition: transform .45s var(--ease); }
.pub-card:hover .pub-card__cover img { transform: translateY(-5px) scale(1.04); }
.pub-card h3 { font-size: 1.02rem; line-height: 1.32; color: var(--ink); margin-bottom: 1.2rem; flex: 1; display: flex; align-items: center; justify-content: center; }
.pub-card .btn { width: 100%; }
.pub-card .btn svg { width: 16px; }
@media (max-width: 600px){ .pub-grid { grid-template-columns: 1fr 1fr; gap: 1rem; } .pub-card__cover { height: 190px; } .pub-card__cover img { max-height: 190px; } }

/* ===========================================================
   MODAL DE CAPTURA DE LEAD (download de livros)
   =========================================================== */
.modal { position: fixed; inset: 0; z-index: 300; display: none; align-items: center; justify-content: center; padding: 1.5rem; }
.modal.open { display: flex; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(20,16,10,.62); backdrop-filter: blur(5px); }
.modal__box { position: relative; z-index: 1; background: #fff; border-radius: var(--r-lg); box-shadow: var(--e3); max-width: 600px; width: 100%; padding: clamp(2rem,4vw,3rem); text-align: center; animation: modalIn .45s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(24px) scale(.97); } to { opacity: 1; transform: none; } }
.modal__close { position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; color: var(--gold-deep); background: var(--gold-soft); transition: all .3s var(--ease); }
.modal__close:hover { background: var(--grad-gold); color: #fff; transform: rotate(90deg); }
.modal__close svg { width: 22px; }
.modal__box h3 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.25rem,2.6vw,1.65rem); color: var(--ink); margin-bottom: .4rem; line-height: 1.35; }
.modal__box .sub { color: var(--body); font-size: .95rem; margin-bottom: 1.7rem; }
.modal__field { width: 100%; padding: 1rem 1.2rem; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; color: var(--ink); background: #fff; margin-bottom: 1rem; transition: border-color .25s, box-shadow .25s; }
.modal__field::placeholder { color: var(--muted); }
.modal__field:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(243,178,124,.18); }
.modal__box .btn { width: 100%; }
.modal__err { color: #c0392b; font-size: .86rem; min-height: 1.1rem; margin-bottom: .6rem; text-align: left; display: none; }
.modal__ok { color: var(--gold-dark); font-weight: 600; }

/* ===========================================================
   BLOG (tema WordPress próprio)
   =========================================================== */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.8rem; }
.blog-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--e1); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--e3); }
.blog-card__media { aspect-ratio: 16/10; overflow: hidden; background: linear-gradient(135deg, var(--gold-soft), #f4ddc4); display: block; }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 1.6rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-size: .73rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: .6rem; }
.blog-card__body h2 { font-size: 1.24rem; line-height: 1.3; margin-bottom: .6rem; }
.blog-card__body h2 a { transition: color .25s; }
.blog-card__body h2 a:hover { color: var(--gold-deep); }
.blog-card__excerpt { color: var(--body); font-size: .94rem; flex: 1; }
.blog-card__meta { margin-top: 1.3rem; font-size: .82rem; color: var(--muted); }

.pagination { display: flex; justify-content: center; gap: .5rem; margin-top: 3.2rem; flex-wrap: wrap; }
.pagination .page-numbers { display: grid; place-items: center; min-width: 46px; height: 46px; padding: 0 .85rem; border-radius: 12px; border: 1px solid var(--line); background: #fff; color: var(--ink); font-weight: 600; transition: all .3s; }
.pagination .page-numbers:hover, .pagination .page-numbers.current { background: var(--grad-gold); color: #fff; border-color: transparent; }

.post-single { max-width: 800px; margin: 0 auto; }
.post-back { display: inline-flex; align-items: center; gap: .5rem; color: var(--gold-deep); font-weight: 600; font-size: .9rem; margin-bottom: 1.6rem; }
.post-back svg { width: 16px; }
.post-single__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--e2); margin-bottom: 2.6rem; }
.post-single__media img { width: 100%; height: auto; display: block; }
.post-meta-row { display: flex; flex-wrap: wrap; gap: 1.2rem; justify-content: center; color: rgba(255,255,255,.62); font-size: .9rem; margin-top: 1.1rem; }
.post-meta-row span { display: inline-flex; align-items: center; gap: .4rem; }
.post-meta-row svg { width: 15px; color: var(--gold-light); }

.prose { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.8; }
.prose > * + * { margin-top: 1.3rem; }
.prose h2 { font-size: clamp(1.6rem,3vw,2.1rem); margin-top: 2.6rem; color: var(--ink); }
.prose h3 { font-size: 1.4rem; margin-top: 2rem; color: var(--ink); }
.prose a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose img { border-radius: var(--r); margin: 1.8rem 0; height: auto; max-width: 100%; }
.prose blockquote { border-left: 4px solid var(--gold); background: var(--bg-soft); padding: 1.2rem 1.6rem; border-radius: 0 12px 12px 0; font-family: var(--serif); font-style: italic; font-size: 1.2rem; color: var(--ink); }
.prose ul, .prose ol { padding-left: 1.4rem; }
.prose li { margin: .5rem 0; }
.prose ul li { list-style: none; position: relative; padding-left: 1.3rem; }
.prose ul li::before { content:""; position: absolute; left: 0; top: .65em; width: 7px; height: 7px; border-radius: 50%; background: var(--grad-gold); }
.prose ol { list-style: decimal; }
.prose figure { margin: 1.8rem 0; } .prose figcaption { font-size: .85rem; color: var(--muted); text-align: center; margin-top: .5rem; }

@media (max-width: 980px){ .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px){ .blog-grid { grid-template-columns: 1fr; } }

/* ===========================================================
   FORMULÁRIOS (agendamento / contato)
   =========================================================== */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--e2); padding: clamp(1.8rem,4vw,3rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field input, .field select, .field textarea { width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: 11px; font: inherit; color: var(--ink); background: #fff; transition: border-color .25s, box-shadow .25s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(243,178,124,.16); }
.field textarea { min-height: 120px; resize: vertical; }
.field .req { color: var(--gold-deep); }
.radio-group { display: flex; gap: 1.3rem; flex-wrap: wrap; padding-top: .35rem; }
.radio-group label { display: inline-flex; align-items: center; gap: .45rem; font-weight: 500; font-size: .95rem; color: var(--body); cursor: pointer; }
.radio-group input { accent-color: var(--gold-deep); width: 18px; height: 18px; }
.form-card .btn { margin-top: .6rem; }
.form-err { color: #c0392b; font-size: .86rem; display: none; }
.form-success { text-align: center; padding: 2.5rem 1rem; }
.form-success .ic { width: 66px; height: 66px; border-radius: 50%; background: var(--grad-gold); color: #fff; display: grid; place-items: center; margin: 0 auto 1.3rem; }
.form-success .ic svg { width: 32px; }
.form-success h3 { font-family: var(--serif); font-size: 1.7rem; color: var(--ink); margin-bottom: .6rem; }
.form-success p { color: var(--body); margin-bottom: 1.5rem; max-width: 42ch; margin-inline: auto; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1.1rem; text-align: center; }

.contact2 { display: grid; grid-template-columns: .82fr 1.18fr; gap: 2.5rem; align-items: start; }
.contact2__info .ci { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.contact2__info .ci:last-child { border-bottom: none; }
.contact2__info .ic { width: 46px; height: 46px; border-radius: 13px; background: var(--gold-soft); color: var(--gold-dark); display: grid; place-items: center; flex-shrink: 0; }
.contact2__info .ic svg { width: 22px; }
.contact2__info small { color: var(--muted); font-size: .76rem; text-transform: uppercase; letter-spacing: .06em; }
.contact2__info b { display: block; color: var(--ink); font-weight: 500; margin-top: .15rem; }
.contact2__map { border-radius: var(--r-lg); overflow: hidden; min-height: 280px; box-shadow: var(--e1); margin-top: 1.5rem; }
.contact2__map iframe { width: 100%; height: 100%; min-height: 280px; border: 0; filter: grayscale(.15) contrast(1.05); }
@media (max-width: 860px){ .contact2 { grid-template-columns: 1fr; } }
@media (max-width: 600px){ .form-grid { grid-template-columns: 1fr; } }
