/* ============================================
   EQUILIBRE ESPAÇO TERAPÊUTICO
   Premium Therapeutic Wellness Site
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Manrope:wght@300;400;500;600&display=swap');

:root {
  --navy:         #20362A;
  --navy-mid:     #2B4738;
  --navy-light:   #3C5A49;
  --terra:        #A8786E;
  --terra-light:  #BC9188;
  --terra-faint:  #D2AAA2;
  --white:        #FFFFFF;
  --off-white:    #FCFAFA;
  --beige:        #F4ECEA;
  --beige-mid:    #E9D9D5;
  --warm-gray:    #F1E8E6;
  --text:         #20362A;
  --muted:        #52665A;
  --muted-light:  #849187;
  --card:         #FFFFFF;
  --border:       rgba(32,54,42,.12);
  --border-warm:  rgba(168,120,110,.18);
  --serif:        'Roboto Condensed', Arial, sans-serif;
  --sans:         'Poppins', Arial, sans-serif;
  --shadow:       0 2px 14px rgba(16,62,78,.07);
  --shadow-md:    0 8px 32px rgba(16,62,78,.12);
  --shadow-lg:    0 20px 60px rgba(16,62,78,.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
select { font-family: inherit; }

/* ─── Typography ─────────────────────────── */
.label {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--navy);
}
h3 {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
p { font-size: .93rem; line-height: 1.78; color: var(--muted); }

/* ─── Layout ─────────────────────────────── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(1.5rem,5vw,4rem); }
.section-pad { padding: clamp(5rem,8vw,8rem) 0; }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .9rem 2rem;
  border-radius: 100px;
  transition: background .3s, color .3s, transform .2s, box-shadow .3s;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-mid);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,62,78,.28);
}
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,.85);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}
.btn-outline-dark {
  border: 1.5px solid var(--border);
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover {
  border-color: var(--navy);
  background: rgba(16,62,78,.05);
  transform: translateY(-2px);
}
.btn-terra {
  background: var(--terra);
  color: var(--white);
}
.btn-terra:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(180,95,56,.28);
}

/* ─── HEADER ─────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: var(--navy);
  transition: background .4s, padding .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
#header.scrolled {
  background: var(--navy);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  padding: 0;
  border-color: rgba(255,255,255,.06);
  box-shadow: 0 2px 18px rgba(0,0,0,.12);
}
.header-inner {
  min-height: 50px;
  display: flex; align-items: center;
  justify-content: center; gap: 1.5rem;
}
.logo-light { height: 44px; width: auto; display: block; filter: brightness(0) invert(1); }
.logo-dark  { height: 44px; width: auto; display: none; }
#header.scrolled .logo-light { display: none; }
#header.scrolled .logo-dark  { display: block; }

nav.header-nav {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(3.5rem, 7vw, 8rem);
  width: 100%;
}
nav.header-nav > a {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 1rem; font-weight: 300;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: rgba(255,255,255,.96);
  transition: color .3s;
}
nav.header-nav > a:hover { color: var(--terra-light); }
#header.scrolled nav.header-nav > a { color: rgba(255,255,255,.96); }
#header.scrolled nav.header-nav > a:hover { color: var(--terra-light); }

.header-wa { display: none; }

@media(min-width:1025px) {
  .header-inner > a[aria-label="Início"] { display: none; }
}

.hamburger { display: none; flex-direction: column; justify-content:center; gap: 5px; width: 34px; height:34px; padding: 5px; position:relative; z-index:1002; }
.hamburger span { display: block; width:100%; height: 2px; background: var(--white); transition: all .3s; transform-origin: center; }
#header.scrolled .hamburger span { background: var(--white); }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── Mobile nav ─────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1.6rem;
  opacity: 0; pointer-events: none; transition: opacity .4s;
  overflow-y: auto; padding: 3rem 2rem;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav > a {
  font-family: var(--serif);
  font-size: clamp(1.6rem,5vw,2.4rem);
  font-weight: 300; color: rgba(255,255,255,.9); transition: color .3s;
}
.mobile-nav > a:hover { color: var(--white); }
.mobile-nav .mobile-cta {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--terra); color: var(--white);
  padding: .85rem 2rem; border-radius: 100px; margin-top: .5rem;
}

/* ─── HERO ───────────────────────────────── */
.hero-sequence { position: relative; height: 800vh; }
.hero-sequence::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(110px, 14vw, 190px);
  z-index: 20;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(168,120,110,0) 0%,
    rgba(168,120,110,.2) 30%,
    rgba(168,120,110,.72) 72%,
    var(--terra) 100%
  );
  filter: blur(8px);
  transform: translateY(18px);
}
.hero-sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-gradient {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to right, rgba(86,50,49,.76) 0%, rgba(168,120,110,.4) 46%, rgba(168,120,110,.08) 72%, transparent 90%),
    linear-gradient(to top, rgba(111,68,65,.7) 0%, rgba(168,120,110,.2) 52%, transparent 74%);
}

.hero-content {
  position: absolute;
  bottom: clamp(4.5rem, 8vh, 6.5rem);
  left: clamp(1.8rem, 3vw, 3.5rem);
  right: auto;
  max-width: 900px;
  z-index: 10;
}

.hero-label {
  display: flex; align-items: center; gap: .6rem;
  font-size: .62rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-bottom: 1.4rem;
}
.hero-label::before {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: var(--terra-light); flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Helvetica Neue', 'Roboto Condensed', Arial, sans-serif;
  font-size: clamp(2.4rem, 4.15vw, 4rem);
  font-weight: 300; line-height: 1.18;
  letter-spacing: -.035em;
  color: var(--white); margin-bottom: .75rem;
  text-shadow: 0 2px 28px rgba(0,0,0,.5), 0 1px 6px rgba(0,0,0,.35);
}
.hero-h1 em { font: inherit; display: inline; color: var(--white); }

.hero-sub {
  font-size: .9rem; line-height: 1.6;
  color: rgba(255,255,255,.82); margin-bottom: 1.5rem;
  max-width: 380px;
  text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.hero-micro {
  font-family: var(--serif);
  font-style: italic;
  font-size: .92rem;
  color: rgba(212,149,111,.9);
  margin-bottom: 1.6rem;
  text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero-microcopy {
  font-size: .65rem; letter-spacing: .1em;
  color: rgba(255,255,255,.5); text-transform: uppercase;
  margin-top: 1.2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

.hero-actions {
  display: flex; align-items: center;
  gap: .75rem; flex-wrap: nowrap;
}
.hero-actions .btn {
  padding: 1rem 1.8rem;
  border-radius: 0;
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: .78rem; font-weight: 300; letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.35); font-size: .58rem; letter-spacing: .18em;
  text-transform: uppercase; z-index: 10;
}
.scroll-line { width: 1px; height: 36px; background: rgba(255,255,255,.2); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--terra-light);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { 0%{top:-100%} 100%{top:100%} }

/* ─── MARQUEE ────────────────────────────── */
.marquee-section {
  background: var(--navy);
  padding: 1.1rem 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.marquee-outer { display: flex; overflow: hidden; }
.marquee-content {
  display: inline-flex; align-items: center; gap: 2.5rem;
  padding-right: 2.5rem; flex-shrink: 0;
  animation: marqueeScroll 55s linear infinite; white-space: nowrap;
}
.marquee-content.rev { animation-name: marqueeScrollRev; }
.marquee-content span { font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.75); }
.marquee-content .dot { color: var(--terra); font-size: .4rem; }
@keyframes marqueeScroll    { 0%{transform:translateX(0)}    100%{transform:translateX(-50%)} }
@keyframes marqueeScrollRev { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)}    }

/* ─── SOBRE (profile card over parallax pattern) ── */
.atend-section {
  position: relative;
  overflow: hidden;
  background: var(--terra);
  isolation: isolate;
}
.atend-section::before {
  content: '';
  position: absolute;
  inset: -18%;
  z-index: -1;
  background-image: url('../pattern.png');
  background-repeat: repeat;
  background-size: 1000px auto;
  background-position: center top;
  background-attachment: fixed;
  opacity: .24;
  filter: grayscale(1) brightness(2.15);
}
.atend-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem,4vw,4rem); align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(2rem,4vw,3.5rem);
  background: var(--white);
  box-shadow: 0 18px 55px rgba(32,54,42,.14);
}
.atend-text {
  font-family: 'Poppins', Arial, sans-serif;
}
.atend-text h2 {
  font-family: 'Helvetica Neue', 'Roboto Condensed', Arial, sans-serif;
  font-size: clamp(2rem,3vw,2.8rem);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -.025em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2.2rem;
}
.atend-text h2::after {
  content: '';
  display: block;
  width: 46px;
  height: 2px;
  margin: 1rem auto 0;
  background: var(--navy);
}
.atend-text p {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text);
}
.atend-text p + p { margin-top: .95rem; }
.atend-text strong { font-weight: 500; }
.impact-phrase {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-style: italic; color: var(--navy);
  margin: 1.8rem 0; line-height: 1.5;
}
.atend-cta { margin-top: 2rem; }
.profile-img {
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}
.profile-img img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

/* Sobre highlight cards */
.sobre-highlights {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem; margin-top: 1.8rem;
}
.sobre-highlight-card {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: .9rem 1.1rem;
  transition: border-color .25s, box-shadow .25s;
}
.sobre-highlight-card:hover {
  border-color: rgba(16,62,78,.25);
  box-shadow: var(--shadow);
}
.sobre-hl-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: rgba(16,62,78,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.sobre-highlight-card span {
  font-size: .78rem; font-weight: 600; color: var(--text); line-height: 1.3;
}

/* ─── ESPECIALIDADES ─────────────────────── */
.proc-section {
  background: var(--white);
  position: relative; overflow: hidden;
}
#proc-ripple-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: .4;
}
.proc-section .container { position: relative; z-index: 1; }
.proc-section .label { margin-bottom: 1rem; }
.proc-section h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-family: 'Helvetica Neue', 'Roboto Condensed', Arial, sans-serif;
  font-size: clamp(2.2rem,3.6vw,3.8rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.035em;
}
.proc-section > .container > p { max-width: 560px; margin-bottom: 3rem; }
.services-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1.2rem;
}
.services-controls { display: flex; gap: .55rem; flex-shrink: 0; }
.services-controls button {
  width: 44px;
  height: 44px;
  border: 1px solid var(--navy);
  border-radius: 0;
  color: var(--navy);
  background: transparent;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.services-controls button:hover { background: var(--navy); color: var(--white); }
.services-carousel {
  display: flex;
  gap: 1.6rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: .6rem;
}
.services-carousel::-webkit-scrollbar { display: none; }
.service-slide {
  flex: 0 0 calc((100% - 3.2rem) / 3);
  min-width: 0;
  scroll-snap-align: start;
}
.service-image {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-radius: 28px;
  background: var(--beige);
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(32,54,42,.5), transparent);
  pointer-events: none;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.service-slide:hover .service-image img { transform: scale(1.035); }
.service-tags {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.service-tags span {
  padding: .55rem .85rem;
  border-radius: 9px;
  background: rgba(168,120,110,.88);
  color: var(--white);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .68rem;
}
.service-slide h3 {
  margin-top: 1.4rem;
  color: var(--text);
  font-family: 'Helvetica Neue', 'Roboto Condensed', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 300;
}
.service-slide > p {
  margin-top: .55rem;
  min-height: 3.3rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.7;
}
.service-book {
  display: inline-block;
  margin-top: 1.25rem;
  padding-bottom: .2rem;
  border-bottom: 1px solid currentColor;
  color: var(--navy);
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .78rem;
  font-weight: 500;
}
.service-book:hover { color: var(--terra); }
.proc-grid {
  display: none; grid-template-columns: repeat(auto-fill, minmax(265px,1fr));
  gap: 1.2rem;
}
.proc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem 1.8rem;
  display: flex; flex-direction: column; gap: .75rem;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 10px rgba(16,62,78,.05);
}
.proc-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--terra));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(16,62,78,.2); }
.proc-card:hover::before { transform: scaleX(1); }
.proc-icon {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(16,62,78,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.proc-card h3 { margin-bottom: .1rem; color: var(--navy); }
.proc-card p { font-size: .83rem; flex: 1; }
.proc-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .52rem 1.2rem; border-radius: 100px;
  font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  border: 1.5px solid rgba(180,95,56,.35); color: var(--terra);
  background: rgba(180,95,56,.05);
  transition: all .25s; align-self: flex-start; margin-top: .3rem;
}
.proc-btn:hover {
  background: var(--terra);
  color: var(--white); border-color: var(--terra);
}

/* ─── CUIDADO INTEGRAL (dark navy section) ── */
.toque-section {
  background:
    radial-gradient(circle at 14% 16%, rgba(255,255,255,.06), transparent 32%),
    radial-gradient(circle at 86% 86%, rgba(180,95,56,.12), transparent 40%),
    linear-gradient(145deg, var(--navy) 0%, #1A5468 60%, #0D3240 100%);
}
.toque-inner .label { color: var(--terra-light); margin-bottom: 1rem; }
.toque-inner h2 { color: var(--white); max-width: 580px; margin-bottom: 1.4rem; }
.toque-inner h2 em { color: var(--terra-faint); font-style: italic; }
.toque-p { color: rgba(255,255,255,.82); max-width: 580px; margin-bottom: 3rem; font-size: .93rem; }
.toque-ethical {
  font-size: .76rem; color: rgba(255,255,255,.45);
  border-left: 2px solid rgba(180,95,56,.4);
  padding-left: 1rem; margin-top: 2rem;
  font-style: italic;
}

.neuro-features {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr));
  gap: 1rem; margin-bottom: 1rem;
}
.neuro-feat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; padding: 1.4rem 1.6rem;
  display: flex; align-items: flex-start; gap: .85rem;
  transition: background .25s, border-color .25s;
}
.neuro-feat:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(180,95,56,.3);
}
.neuro-feat-dot {
  width: 8px; height: 8px; border-radius: 50%; margin-top: .3rem;
  background: var(--terra-light); flex-shrink: 0;
}
.neuro-feat-title {
  font-size: .88rem; font-weight: 600;
  color: rgba(255,255,255,.92); display: block; margin-bottom: .3rem;
}
.neuro-feat-desc {
  font-size: .78rem; color: rgba(255,255,255,.62); line-height: 1.6;
}

/* ─── NOSSO CUIDADO (Split Card Premium) ─── */
.sobre-section {
  background: var(--off-white);
  overflow: hidden;
}
.sobre-card {
  display: flex;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 580px;
}
.sobre-photo-panel {
  flex: 0 0 44%;
  position: relative; overflow: hidden;
}
.sobre-photo-panel img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block; transition: transform .6s ease;
}
.sobre-photo-panel:hover img { transform: scale(1.03); }
.sobre-photo-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(16,62,78,.55) 0%, transparent 50%);
}
.sobre-photo-label {
  position: absolute; bottom: 1.8rem; left: 1.8rem; z-index: 2;
}
.sobre-photo-label strong {
  font-family: var(--serif);
  font-size: 1.05rem; font-weight: 500;
  color: #fff; display: block;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}
.sobre-photo-label span {
  font-size: .62rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.7); display: block;
}
.sobre-content-panel {
  flex: 1; background: #fff;
  padding: clamp(2.2rem, 4vw, 3.8rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.sobre-content-panel::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--terra));
}
.sobre-content-panel::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 20rem; line-height: .7;
  color: rgba(16,62,78,.04);
  position: absolute; top: -1rem; right: -1rem;
  pointer-events: none; user-select: none;
}
.sobre-content-panel .label { margin-bottom: 1.2rem; position: relative; z-index: 1; }
.sobre-content-panel h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.5rem);
  margin-bottom: .8rem; max-width: 400px;
  position: relative; z-index: 1;
}
.sobre-rows {
  display: flex; flex-direction: column;
  margin: 1.6rem 0; position: relative; z-index: 1;
}
.sobre-row {
  display: flex; align-items: flex-start; gap: 1.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(16,62,78,.08);
}
.sobre-row:first-child { border-top: 1px solid rgba(16,62,78,.08); }
.sobre-row-num {
  font-family: var(--serif);
  font-size: 1.55rem; font-weight: 300; line-height: 1;
  color: var(--terra); opacity: .6;
  flex-shrink: 0; width: 2.2rem; padding-top: .05rem;
}
.sobre-row-title {
  font-size: .83rem; font-weight: 600;
  color: var(--navy); display: block; margin-bottom: .18rem;
}
.sobre-row-desc {
  font-size: .75rem; color: var(--muted); line-height: 1.55;
}
.sobre-pullquote {
  font-family: var(--serif);
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  font-style: italic; color: var(--navy-light);
  line-height: 1.75; margin-bottom: 1.8rem;
  position: relative; z-index: 1;
  padding-left: 1.1rem;
  border-left: 2px solid rgba(180,95,56,.4);
}
.sobre-content-panel .btn { align-self: flex-start; position: relative; z-index: 1; }

/* ─── ESPECIALISTAS GRID ─────────────────── */
.especialistas-section { background: var(--beige); }
.especialistas-section .label { margin-bottom: 1rem; }
.especialistas-section h2 { max-width: 560px; margin-bottom: .8rem; }
.especialistas-section > .container > p { max-width: 520px; margin-bottom: 2.8rem; }
.especialistas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.esp-card {
  border-radius: 20px; overflow: hidden;
  position: relative; background: var(--white);
  border: 1px solid rgba(16,62,78,.1);
  box-shadow: 0 4px 18px rgba(16,62,78,.08);
  transition: transform .3s, box-shadow .3s;
}
.esp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.esp-card-photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top; display: block;
}
.esp-card-info {
  padding: 1.1rem 1.2rem 1.3rem;
  background: var(--white);
}
.esp-card-name {
  font-family: var(--serif);
  font-size: 1rem; font-weight: 400;
  color: var(--navy); display: block; margin-bottom: .25rem;
}
.esp-card-role {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--terra); display: block;
}
.esp-card-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--terra));
}

/* ─── CALENDAR / AGENDA ───────────────────── */
.calendar-section {
  background: var(--white);
  font-family: 'Poppins', Arial, sans-serif;
}
.calendar-section .label { margin-bottom: 1rem; }
.calendar-section h2 {
  max-width: 680px;
  margin-bottom: 1rem;
  font-family: 'Helvetica Neue', 'Roboto Condensed', Arial, sans-serif;
  font-size: clamp(2.1rem,3.2vw,3.4rem);
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: -.035em;
}
.calendar-section > .container > p {
  max-width: 620px;
  margin-bottom: 2.5rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .86rem;
  font-weight: 300;
}

.agenda-filterbar {
  display: flex; align-items: center;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.agenda-chips { display: flex; gap: .5rem; flex-wrap: wrap; }
.agenda-chip {
  padding: .42rem 1rem; border-radius: 100px;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .68rem; font-weight: 400; letter-spacing: .04em;
  border: 1.5px solid var(--border);
  background: var(--white); color: var(--muted);
  cursor: pointer; transition: all .2s;
}
.agenda-chip:hover { border-color: var(--navy); color: var(--navy); }
.agenda-chip.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

.agenda-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 2.5rem; align-items: start;
}

.agenda-list { display: flex; flex-direction: column; gap: .7rem; max-height: 640px; overflow-y: auto; padding-right: .3rem; }
.agenda-list::-webkit-scrollbar { width: 4px; }
.agenda-list::-webkit-scrollbar-track { background: transparent; }
.agenda-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.agenda-spec-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 1.2rem 1.4rem;
  display: flex; align-items: flex-start; gap: .9rem;
  cursor: pointer; transition: all .2s;
}
.agenda-spec-card:hover { border-color: rgba(16,62,78,.3); box-shadow: var(--shadow); }
.agenda-spec-card.selected { border-color: var(--navy); background: rgba(16,62,78,.03); box-shadow: 0 4px 16px rgba(16,62,78,.1); }
.agenda-spec-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(16,62,78,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; color: var(--navy);
  flex-shrink: 0; letter-spacing: .04em; overflow: hidden;
}
.agenda-spec-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.agenda-spec-info { flex: 1; min-width: 0; }
.agenda-spec-name { font-size: .88rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: .15rem; }
.agenda-spec-role { font-size: .75rem; color: var(--muted); display: block; margin-bottom: .5rem; }
.agenda-spec-tags { display: flex; gap: .35rem; flex-wrap: wrap; }
.agenda-spec-tag {
  font-size: .62rem; font-weight: 600; letter-spacing: .05em;
  padding: .18rem .55rem; border-radius: 100px;
  background: rgba(180,95,56,.1); color: var(--terra);
}

.agenda-right { display: flex; flex-direction: column; gap: 1.2rem; }

.agenda-selected-header {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 1.4rem 1.6rem;
  display: flex; align-items: center; gap: 1rem;
}
.agenda-sel-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(16,62,78,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--navy); flex-shrink: 0;
  overflow: hidden;
}
.agenda-sel-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.agenda-sel-name { font-size: 1rem; font-weight: 600; color: var(--navy); display: block; margin-bottom: .15rem; }
.agenda-sel-role { font-size: .78rem; color: var(--muted); display: block; margin-bottom: .5rem; }
.agenda-sel-modalities { display: flex; gap: .4rem; }
.agenda-sel-mod {
  font-size: .62rem; font-weight: 600; letter-spacing: .05em;
  padding: .2rem .6rem; border-radius: 100px;
  background: rgba(180,95,56,.1); color: var(--terra);
}

.agenda-placeholder {
  background: var(--off-white); border: 1.5px solid var(--border);
  border-radius: 14px; padding: 3rem 2rem; text-align: center;
}
.agenda-placeholder p { color: var(--muted); font-size: .88rem; }

.cal-box {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 16px; padding: 1.8rem;
}
.cal-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.4rem; }
.cal-month { font-family: var(--serif); font-size: 1.2rem; font-weight: 400; color: var(--navy); }
.cal-nav {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--border); background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: var(--muted); cursor: pointer;
  transition: all .25s;
}
.cal-nav:hover { border-color: var(--navy); color: var(--navy); background: rgba(16,62,78,.06); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; margin-bottom: .3rem; }
.cal-wd { text-align: center; font-size: .6rem; font-weight: 600; letter-spacing: .08em; color: var(--muted); padding: .3rem 0; text-transform: uppercase; }
.cal-days { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; }
.cal-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 500; border-radius: 8px; transition: all .2s;
  min-height: 36px;
}
.cal-day.empty { cursor: default; }
.cal-day.avail { background: var(--off-white); border: 1.5px solid var(--border); cursor: pointer; color: var(--text); }
.cal-day.avail:hover { border-color: var(--navy); background: rgba(16,62,78,.06); color: var(--navy); }
.cal-day.last { background: rgba(180,95,56,.08); border: 1.5px solid rgba(180,95,56,.3); color: var(--terra); cursor: pointer; font-style: italic; }
.cal-day.last:hover { border-color: var(--terra); }
.cal-day.busy { color: rgba(74,104,114,.3); cursor: not-allowed; text-decoration: line-through; }
.cal-day.sel { background: var(--navy); border-color: transparent; color: var(--white); transform: scale(1.06); box-shadow: 0 2px 10px rgba(16,62,78,.3); }
.cal-legend { display: flex; gap: .8rem; margin-top: 1rem; flex-wrap: wrap; }
.cal-leg { display: flex; align-items: center; gap: .35rem; font-size: .65rem; color: var(--muted); }
.cal-dot { width: 7px; height: 7px; border-radius: 50%; }
.cal-dot.a { background: var(--navy); }
.cal-dot.l { background: var(--terra); }
.cal-dot.b { background: rgba(74,104,114,.3); }
.slots-wrap { margin-top: 1.2rem; display: none; }
.slots-wrap.vis { display: block; }
.slots-lbl { font-size: .65rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.slots-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .4rem; }
.slot {
  padding: .65rem .4rem; border-radius: 8px; font-size: .78rem; font-weight: 500;
  text-align: center; border: 1.5px solid var(--border);
  background: var(--white); cursor: pointer; transition: all .2s; color: var(--text);
}
.slot:hover:not(.s-busy) { border-color: var(--navy); background: rgba(16,62,78,.05); color: var(--navy); }
.slot.s-busy { color: rgba(74,104,114,.3); cursor: not-allowed; text-decoration: line-through; }
.slot.s-last { color: var(--terra); border-color: rgba(180,95,56,.3); font-style: italic; }
.slot.s-sel { background: var(--navy); border-color: transparent; color: var(--white); }

/* Booking form */
.book-wrap { display: flex; flex-direction: column; gap: 1rem; }
.book-wrap h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 300; color: var(--navy); margin-bottom: .2rem; }
.book-wrap > p { margin-bottom: .5rem; }
.book-summary {
  background: rgba(16,62,78,.05); border: 1px solid rgba(16,62,78,.12);
  border-radius: 10px; padding: 1.1rem 1.3rem; font-size: .83rem; display: none;
}
.book-summary.vis { display: block; }
.book-summary strong { color: var(--navy); }
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-size: .65rem; font-weight: 600; letter-spacing: .1em; color: var(--muted); text-transform: uppercase; }
.form-field input,
.form-field select {
  padding: .82rem 1rem; border: 1.5px solid var(--border);
  border-radius: 10px; background: var(--white);
  font-family: var(--sans); font-size: .88rem;
  color: var(--text); outline: none; transition: border-color .25s;
  -webkit-appearance: none; appearance: none; width: 100%;
}
.form-field input:focus,
.form-field select:focus { border-color: var(--navy); }
.form-field input::placeholder { color: rgba(74,104,114,.45); }
.book-btn {
  display: flex; align-items: center; justify-content: center;
  gap: .5rem; padding: 1rem 2rem;
  background: var(--navy); color: var(--white);
  border-radius: 100px; font-size: .8rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; transition: filter .3s, transform .2s, box-shadow .3s;
  width: 100%; margin-top: .3rem;
}
.book-btn:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(16,62,78,.25); }
.book-btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }
.book-success {
  background: rgba(16,62,78,.04); border: 1px solid rgba(16,62,78,.12);
  border-radius: 14px; padding: 1.8rem; text-align: center; display: none;
}
.book-success.vis { display: block; }
.booking-success-icon { font-size: 2.2rem; margin-bottom: .6rem; }
.book-success h3 { font-family: var(--serif); font-size: 1.3rem; color: var(--navy); margin-bottom: .4rem; }
.book-success p { font-size: .83rem; }
.book-success .wa-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.1rem; background: #25D366; color: var(--white);
  padding: .75rem 1.6rem; border-radius: 100px; font-size: .8rem; font-weight: 600;
  transition: background .3s;
}
.book-success .wa-btn:hover { background: #1fb355; }
.book-micro { font-size: .68rem; color: var(--muted); margin-top: .5rem; opacity: .7; }

/* ─── MÉTODO ─────────────────────────────── */
.metodo-section {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  background: url('../terapia por pressão negativa.jpeg') center/cover fixed no-repeat;
  isolation: isolate;
}
.metodo-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to right, rgba(168,120,110,.94) 0%, rgba(168,120,110,.76) 42%, rgba(168,120,110,.5) 72%, rgba(168,120,110,.82) 100%),
    linear-gradient(to top, rgba(168,120,110,.92) 0%, rgba(168,120,110,.18) 58%, rgba(168,120,110,.44) 100%);
}
.metodo-shell {
  display: grid;
  grid-template-columns: minmax(280px,.82fr) minmax(520px,1.35fr);
  gap: clamp(3rem,6vw,7rem);
  align-items: center;
}
.metodo-intro { color: var(--white); }
.metodo-section .label {
  color: var(--terra-light);
  margin-bottom: 1.2rem;
}
.metodo-section .label::before {
  content: '✱';
  margin-right: .55rem;
}
.metodo-section h2 {
  font-family: 'Helvetica Neue', 'Roboto Condensed', Arial, sans-serif;
  font-size: clamp(2rem,3vw,3.15rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -.035em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 560px;
  margin-bottom: clamp(4rem,16vh,12rem);
}
.metodo-intro > p:not(.label) {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,.76);
  max-width: 420px;
  margin-bottom: 1.5rem;
}
.metodo-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .95rem 1.35rem;
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.metodo-btn:hover { background: var(--navy-mid); }
.metodo-btn span { font-size: 1.2rem; line-height: 1; }
.metodo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0;
  align-items: stretch;
}
.metodo-step {
  min-height: 315px;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  padding: clamp(1.7rem,3vw,2.4rem);
  text-align: left;
  box-shadow: none;
  transition: background .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.metodo-step:nth-child(2),
.metodo-step:nth-child(3) {
  background: rgba(168,120,110,.28);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
.metodo-step:hover {
  background: rgba(168,120,110,.34);
  border-color: rgba(255,255,255,.38);
}
.metodo-num {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 2.5rem; font-weight: 300; line-height: 1;
  color: var(--terra-light);
  margin-bottom: 1.45rem; display: block;
}
.metodo-step h3 {
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: .8rem;
}
.metodo-step p {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
}
.metodo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: auto;
  padding-top: 1.5rem;
}
.metodo-tags span {
  padding: .5rem .7rem;
  background: var(--navy);
  color: var(--white);
  font-family: 'Roboto Condensed', Arial, sans-serif;
  font-size: .65rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ─── BENEFÍCIOS ─────────────────────────── */
.benefits-section { background: var(--white); }
.benefits-section .label { margin-bottom: 1rem; }
.benefits-section h2 { max-width: 540px; margin-bottom: 2.8rem; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(235px,1fr));
  gap: 1.2rem;
}
.ben-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.8rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.ben-card:hover { border-color: rgba(16,62,78,.25); box-shadow: var(--shadow); transform: translateY(-3px); }
.ben-check {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: .85rem; font-weight: 700;
  margin-bottom: 1rem;
}
.ben-card h3 { font-size: .93rem; margin-bottom: .45rem; color: var(--navy); }
.ben-card p { font-size: .82rem; }
.ben-phrase {
  font-family: var(--serif); font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-style: italic; color: var(--navy); margin-top: 3.5rem;
  max-width: 620px; line-height: 1.6;
}

/* ─── CTA FINAL ──────────────────────────── */
.cta-final {
  background:
    radial-gradient(circle at 30% 10%, rgba(255,255,255,.1), transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(180,95,56,.2), transparent 45%),
    linear-gradient(145deg, var(--navy) 0%, #1A5468 50%, #0E3244 100%);
  text-align: center; position: relative; overflow: hidden;
}
#cta-particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; display: block;
}
.cta-final .container { position: relative; z-index: 1; }
.cta-final .label { color: var(--terra-light); margin-bottom: 1rem; }
.cta-final h2 { color: var(--white); max-width: 620px; margin: 0 auto 1.4rem; }
.cta-final p { color: rgba(255,255,255,.82); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-wa-btn { background: var(--terra); color: var(--white); font-size: .78rem; }
.cta-wa-btn:hover { background: var(--terra-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(180,95,56,.35); }
.cta-microcopy {
  font-size: .68rem; color: rgba(255,255,255,.55);
  margin-top: .9rem; letter-spacing: .08em;
  display: flex; align-items: center; justify-content: center; gap: .4rem;
}
.cta-microcopy::before {
  content: ''; display: inline-block;
  width: 16px; height: 1px; background: rgba(255,255,255,.35);
}

/* ─── VALIDAÇÕES GOOGLE ──────────────────── */
.validation-section {
  position: relative;
  overflow: hidden;
  background: var(--terra);
  isolation: isolate;
  text-align: center;
}
.validation-section::before {
  content: '';
  position: absolute;
  inset: -16%;
  z-index: -1;
  background-image: url('../pattern.png');
  background-repeat: repeat;
  background-size: 1000px auto;
  background-position: center top;
  background-attachment: fixed;
  opacity: .2;
  filter: grayscale(1) brightness(2.2);
}
.validation-section .label {
  color: var(--white);
  margin-bottom: 1rem;
}
.validation-section h2 {
  margin: 0 auto 1rem;
  max-width: 760px;
  font-family: 'Helvetica Neue', 'Roboto Condensed', Arial, sans-serif;
  font-size: clamp(2.1rem,3.5vw,3.7rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: -.035em;
  color: var(--white);
}
.validation-intro {
  max-width: 610px;
  margin: 0 auto 3rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .86rem;
  font-weight: 300;
  color: rgba(255,255,255,.82);
}
.validation-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 1.4rem;
  max-width: 900px;
  margin: 0 auto;
}
.validation-card {
  min-height: 310px;
  padding: clamp(1.7rem,3vw,2.5rem);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 0;
  background: var(--navy);
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 48px rgba(32,54,42,.2);
}
.validation-google {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
}
.validation-google img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.validation-google span {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .72rem;
  font-weight: 500;
}
.validation-rating {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1rem;
}
.validation-rating strong {
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .86rem;
  font-weight: 500;
  color: var(--white);
}
.validation-rating span {
  color: #FBBC04;
  font-size: 1rem;
  letter-spacing: .08em;
}
.validation-card-content {
  transition: opacity .3s ease, transform .3s ease;
}
.validation-card-content.is-changing {
  opacity: 0;
  transform: translateY(8px);
}
.validation-kicker {
  margin-top: 1.7rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--terra-light);
}
.validation-card h3 {
  margin-top: .55rem;
  font-family: 'Helvetica Neue', 'Roboto Condensed', Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--white);
}
.validation-text {
  margin-top: .85rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .8rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.76);
}
.validation-card > a {
  align-self: flex-start;
  margin-top: auto;
  padding-bottom: .18rem;
  border-bottom: 1px solid currentColor;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: .72rem;
  font-weight: 500;
  color: var(--white);
}
.validation-card > a:hover { color: var(--terra-light); }

@media(max-width:700px) {
  .validation-grid { grid-template-columns: 1fr; }
  .validation-card { min-height: 280px; }
}

/* ─── LOCALIZAÇÃO ────────────────────────── */
.local-section { background: var(--off-white); }
.local-section .label { margin-bottom: 1rem; }
.local-section h2 { max-width: 540px; margin-bottom: 1rem; }
.local-section > .container > p { max-width: 500px; margin-bottom: 3rem; }
.local-grid {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem; align-items: start;
}
.local-info { display: flex; flex-direction: column; gap: 1.2rem; }
.local-address-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.4rem 1.6rem;
  box-shadow: var(--shadow);
}
.local-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: rgba(16,62,78,.07);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
}
.local-address-card strong {
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--navy); display: block; margin-bottom: .35rem;
}
.local-address-card address, .local-address-card a {
  font-size: .88rem; color: var(--muted); font-style: normal; line-height: 1.6;
}
.local-address-card a:hover { color: var(--navy); }
.local-btns {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem;
}
.local-map {
  border-radius: 18px; overflow: hidden;
  min-height: 340px; position: relative;
  box-shadow: var(--shadow-md);
  background: var(--beige);
}
.local-map iframe { width: 100%; height: 100%; border: 0; min-height: 340px; display: block; }
.map-placeholder {
  width: 100%; min-height: 340px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--muted); text-align: center;
  padding: 2rem;
}
.map-placeholder svg { color: rgba(16,62,78,.3); }
.map-placeholder p { font-size: .9rem; font-weight: 500; color: var(--navy-light); }
.map-placeholder small { font-size: .75rem; color: var(--muted-light); max-width: 220px; line-height: 1.5; }

/* ─── FAQ ────────────────────────────────── */
.faq-section { background: var(--white); }
.faq-section .label { margin-bottom: 1rem; }
.faq-section h2 { max-width: 540px; margin-bottom: 1rem; }
.faq-section > .container > p { max-width: 500px; margin-bottom: 3rem; }
.faq-list { max-width: 760px; display: flex; flex-direction: column; gap: .6rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  background: var(--white);
  transition: box-shadow .25s;
}
.faq-item:has(.faq-question[aria-expanded="true"]) { box-shadow: var(--shadow); border-color: rgba(16,62,78,.2); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.3rem 1.6rem;
  font-size: .92rem; font-weight: 600; color: var(--navy);
  text-align: left; background: none; cursor: pointer;
  transition: background .2s;
}
.faq-question:hover { background: rgba(16,62,78,.03); }
.faq-arrow { flex-shrink: 0; color: var(--terra); transition: transform .3s; }
.faq-question[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 1.6rem;
}
.faq-answer.open { max-height: 240px; padding: 0 1.6rem 1.4rem; }
.faq-answer p { font-size: .88rem; line-height: 1.75; }

/* ─── INSTAGRAM ──────────────────────────── */
.instagram-section { background: #fff; color: #fff; overflow: hidden; }
.instagram-profile {
  max-width: 1240px; margin: 0 auto; padding: 1.5rem 1.75rem;
  display: grid; grid-template-columns: 74px 1fr auto; align-items: center; gap: 1.25rem;
  background: #183d31; border: 1px solid rgba(24,61,49,.2); border-radius: 28px 28px 0 0;
}
.instagram-profile > img { width: 74px; height: 74px; object-fit: contain; border-radius: 50%; padding: .45rem; background: #d8b7b0; }
.instagram-profile strong, .instagram-profile span, .instagram-profile small { display: block; }
.instagram-profile strong { font-size: 1rem; margin-bottom: .3rem; }
.instagram-profile span { font-size: .78rem; color: rgba(255,255,255,.8); }
.instagram-profile small { margin-top: .35rem; color: rgba(255,255,255,.48); }
.instagram-profile > a { background: #3358ff; color: #fff; padding: .75rem 1.55rem; border-radius: 9px; font-size: .75rem; font-weight: 600; }
.instagram-window { max-width: 1240px; margin: 0 auto; background: #183d31; border: 1px solid rgba(24,61,49,.2); border-top: 0; border-radius: 0 0 28px 28px; overflow: hidden; }
.instagram-tabs { height: 58px; display: flex; justify-content: center; gap: 5rem; align-items: center; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5); }
.instagram-tabs .active { color:#fff; border-bottom: 2px solid #fff; height: 58px; display:grid; place-items:center; }
.instagram-marquee { overflow: hidden; }
.instagram-track { display: flex; width: max-content; animation: instagramLoop 34s linear infinite; }
.instagram-track:hover { animation-play-state: paused; }
.instagram-track a { position: relative; width: 300px; height: 370px; flex: 0 0 300px; overflow: hidden; border-right: 2px solid #183d31; }
.instagram-track img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.instagram-track a:hover img { transform: scale(1.035); }
.instagram-footer { display:flex; justify-content:space-between; padding:1.15rem 1.5rem; font-size:.7rem; color:rgba(255,255,255,.5); }
.instagram-footer a { color:rgba(255,255,255,.9); }
@keyframes instagramLoop { to { transform: translateX(-50%); } }

/* ─── FOOTER ─────────────────────────────── */
footer {
  position: relative;
  background: #183d31;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 4rem 0 2rem;
}
#footer-particles {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; display: block;
}
.footer-content { position: relative; z-index: 1; }
.footer-grid { display: grid; grid-template-columns: .8fr 1.8fr; gap: 5rem; align-items:start; }
.footer-logo-img { height: 92px; max-width:240px; object-fit:contain; width: auto; margin-bottom: 1.1rem; opacity: 1; }
.footer-brand h2 { color:#fff; font-family:var(--sans); font-size:clamp(1.55rem,2.5vw,2.65rem); line-height:1.12; font-weight:300; letter-spacing:-.025em; }
.footer-contacts { display:grid; grid-template-columns:1fr 1fr; gap:1rem 2rem; padding-top:.5rem; }
.footer-contact { min-width:0; display:flex; gap:1rem; align-items:flex-start; color:#fff; padding:1rem 0; border-bottom:1px solid rgba(255,255,255,.15); }
.footer-contact-icon { width:42px; height:42px; flex:0 0 42px; border:1px solid rgba(255,255,255,.32); border-radius:50%; display:grid; place-items:center; }
.footer-contact-icon svg { width:20px; height:20px; fill:none; stroke:currentColor; stroke-width:1.7; stroke-linecap:round; stroke-linejoin:round; }
.footer-contact-icon svg path:first-child:not(:only-child), .footer-contact:first-child .footer-contact-icon svg { fill:currentColor; stroke:none; }
.footer-contact-icon .fill-dot { fill:currentColor; stroke:none; }
.footer-contact small,.footer-contact strong { display:block; }
.footer-contact small { color:rgba(255,255,255,.55); font-size:.62rem; text-transform:uppercase; letter-spacing:.12em; margin-bottom:.35rem; }
.footer-contact strong { color:#fff; font-size:.78rem; line-height:1.5; font-weight:500; overflow-wrap:anywhere; }
.footer-wa {
  display: inline-flex; align-items: center; gap: .5rem;
  margin-top: 1.2rem; background: #25D366; color: var(--white);
  padding: .6rem 1.2rem; border-radius: 100px; font-size: .75rem; font-weight: 600;
  transition: background .3s;
}
.footer-wa:hover { background: #1fb355; }
.footer-col h4 {
  font-size: .62rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 1.1rem;
}
.footer-col a, .footer-col address, .footer-col p {
  font-size: .8rem; color: rgba(255,255,255,.75);
  display: block; line-height: 1.9; font-style: normal; transition: color .25s;
}
.footer-col a:hover { color: var(--white); }
.footer-privacy {
  font-size: .8rem; color: rgba(255,255,255,.75);
  text-decoration: underline; text-decoration-color: rgba(255,255,255,.25);
  cursor: pointer; transition: color .25s;
}
.footer-privacy:hover { color: var(--white); }
.footer-legal { font-size: .7rem; color: rgba(255,255,255,.42); margin-top: .9rem; font-style: italic; line-height: 1.65; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .7rem; color: rgba(255,255,255,.5); flex-wrap: wrap; gap: .5rem;
}
.kore-credit { color:rgba(255,255,255,.55); transition:color .25s; }
.kore-credit:hover { color:#fff; }

/* ─── ASSISTENTE VIRTUAL ─────────────────── */
.virtual-assistant { position:fixed; right:1.5rem; bottom:1.5rem; z-index:1200; font-family:var(--sans); transition:opacity .3s ease, transform .3s ease; }
.virtual-assistant.at-footer { opacity:0; transform:translateY(18px); pointer-events:none; }
.assistant-toggle { margin-left:auto; display:flex; align-items:center; gap:.7rem; background:#183d31; color:#fff; padding:.55rem 1rem .55rem .55rem; border:1px solid rgba(255,255,255,.18); border-radius:999px; box-shadow:0 12px 38px rgba(0,0,0,.28); cursor:pointer; }
.assistant-toggle img { width:50px; height:50px; border-radius:50%; object-fit:contain; padding:.25rem; background:#183d31; }
.assistant-toggle span { font-size:.74rem; font-weight:600; }
.assistant-panel { width:min(360px,calc(100vw - 2rem)); height:500px; max-height:calc(100vh - 120px); margin-bottom:.8rem; background:#fff; border-radius:20px; overflow:hidden; box-shadow:0 18px 55px rgba(0,0,0,.28); display:none; grid-template-rows:auto 1fr auto auto; }
.assistant-panel.open { display:grid; }
.assistant-header { display:flex; align-items:center; gap:.75rem; padding:1rem; color:#fff; background:#183d31; }
.assistant-header img { width:42px; height:42px; border-radius:50%; object-fit:contain; background:#183d31; padding:.2rem; }
.assistant-header strong,.assistant-header span { display:block; }
.assistant-header strong { font-size:.82rem; }.assistant-header span { font-size:.65rem; opacity:.72; margin-top:.15rem; }
.assistant-header button { margin-left:auto; color:#fff; font-size:1.4rem; cursor:pointer; }
.assistant-messages { overflow-y:auto; padding:1rem; background:#f7f4f2; }
.assistant-message { width:fit-content; max-width:88%; padding:.72rem .85rem; margin-bottom:.7rem; border-radius:14px; font-size:.75rem; line-height:1.5; }
.assistant-message.bot { background:#fff; color:#28342f; border-bottom-left-radius:4px; }
.assistant-message.user { background:#183d31; color:#fff; margin-left:auto; border-bottom-right-radius:4px; }
.assistant-quick { display:flex; gap:.4rem; padding:.7rem; overflow-x:auto; border-top:1px solid #eee; }
.assistant-quick button { flex:none; color:#183d31; border:1px solid #183d31; border-radius:999px; padding:.42rem .65rem; font-size:.62rem; cursor:pointer; }
.assistant-form { display:grid; grid-template-columns:1fr 42px; gap:.45rem; padding:.7rem; border-top:1px solid #eee; }
.assistant-form input { min-width:0; border:1px solid #ddd; border-radius:999px; padding:.7rem .9rem; font:inherit; font-size:.72rem; outline:none; }
.assistant-form button { border-radius:50%; background:#183d31; color:#fff; cursor:pointer; }

/* ─── FLOATING CTA ───────────────────────── */
#float-cta {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 500;
  opacity: 0; transform: translateY(16px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
#float-cta.vis { opacity: 1; transform: translateY(0); pointer-events: all; }
.float-btn {
  display: flex; align-items: center; gap: .6rem;
  background: var(--terra); color: var(--white);
  padding: .82rem 1.5rem; border-radius: 100px;
  font-size: .74rem; font-weight: 600; letter-spacing: .06em;
  box-shadow: 0 4px 20px rgba(180,95,56,.4);
  transition: filter .3s, transform .2s, box-shadow .3s;
  white-space: nowrap;
}
.float-btn:hover { filter: brightness(.93); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(180,95,56,.38); }

/* ─── PRIVACY MODAL ──────────────────────── */
.privacy-modal {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  background: rgba(16,62,78,.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.privacy-modal.open { opacity: 1; pointer-events: all; }
.privacy-modal-inner {
  background: var(--white); border-radius: 20px;
  padding: 2.5rem; max-width: 540px; width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative; max-height: 80vh; overflow-y: auto;
}
.privacy-modal-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--off-white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: var(--muted); cursor: pointer; transition: background .2s;
}
.privacy-modal-close:hover { background: var(--border); }
.privacy-modal-inner .label { margin-bottom: .6rem; }
.privacy-modal-inner h3 {
  font-family: var(--serif); font-size: 1.6rem; font-weight: 300;
  color: var(--navy); margin-bottom: 1.2rem;
}
.privacy-modal-inner p { font-size: .86rem; line-height: 1.8; color: var(--muted); }

/* ─── RESPONSIVE ─────────────────────────── */
@media(max-width:1200px) {
  .metodo-shell { grid-template-columns: 1fr; }
  .metodo-section h2 { margin-bottom: 1.5rem; }
  .metodo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

@media(max-width:1024px){
  .atend-grid, .local-grid, .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  nav.header-nav { display: none; }
  .header-wa { display: none; }
  .header-inner { justify-content:space-between; }
  .header-inner > a[aria-label="Início"] { display:block; }
  .hamburger { display: flex; margin-left:auto; }
  .hero-content { max-width: 100%; }
  .agenda-layout { grid-template-columns: 1fr; }
  .agenda-list { max-height: none; flex-direction: row; overflow-x: auto; overflow-y: visible; flex-wrap: nowrap; padding-bottom: .5rem; padding-right: 0; }
  .agenda-spec-card { min-width: 240px; }
  .sobre-highlights { grid-template-columns: 1fr 1fr; }
}

@media(max-width:900px){
  .service-slide { flex-basis: calc((100% - 1.6rem) / 2); }
}

@media(max-width:820px){
  .atend-grid { grid-template-columns: 1fr; max-width: 620px; }
  .profile-img { aspect-ratio: 4/5; max-height: 520px; }
}

@media(max-width:920px){
  .sobre-card { flex-direction: column; min-height: auto; }
  .sobre-photo-panel { flex: 0 0 auto; min-height: 300px; max-height: 380px; }
  .sobre-content-panel { padding: 2rem; }
}

@media(max-width:768px){
  .instagram-section { padding-left:.75rem; padding-right:.75rem; }
  .instagram-profile { grid-template-columns:56px 1fr; padding:1rem; border-radius:18px 18px 0 0; }
  .instagram-profile > img { width:56px; height:56px; }
  .instagram-profile > a { grid-column:1/-1; text-align:center; }
  .instagram-track a { width:240px; height:300px; flex-basis:240px; }
  .footer-logo-img { height:78px; }
  .footer-contacts { grid-template-columns:1fr; gap:0; }
  .virtual-assistant { right:.75rem; bottom:.75rem; }
  .especialistas-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .sobre-highlights { grid-template-columns: 1fr; }
  #header { padding: .65rem 0; }
  #header.scrolled { padding: .65rem 0; }
  .header-inner { gap: .65rem; padding: 0 1rem; }
  .logo-light, .logo-dark { height: 36px; width: auto; max-height: 44px; object-fit: contain; }
  .hamburger { width: 34px; height:34px; flex-shrink: 0; }

  .hero-sequence { height: 260vh; }
  .hero-content {
    bottom: clamp(4.5rem, 8vh, 7rem);
    left: 1.5rem; right: 1.5rem; max-width: 100%;
  }
  .hero-label { font-size: .55rem; letter-spacing: .18em; margin-bottom: .8rem; }
  .hero-h1 { font-size: clamp(2rem, 6.8vw, 3rem); margin-bottom: .65rem; line-height: 1.16; }
  .hero-sub { display: block; font-size: .8rem; margin-bottom: 1.2rem; }
  .hero-micro { font-size: .82rem; margin-bottom: 1.2rem; }
  .hero-microcopy { display: none; }
  .hero-actions { flex-wrap: nowrap; gap: .5rem; }
  .hero-actions .btn { padding: .85rem 1.25rem; font-size: .68rem; letter-spacing: .08em; }

  .proc-grid, .benefits-grid { grid-template-columns: 1fr; }
  .neuro-features { grid-template-columns: 1fr; }
  .metodo-grid { grid-template-columns: 1fr; gap: 0; }
  .metodo-step { min-height: 250px; }

  .dep-card { width: 260px; }
  .slots-grid { grid-template-columns: repeat(3,1fr); }
  #float-cta { bottom: 1rem; right: 1rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-pad { padding: clamp(3.5rem,7vw,5rem) 0; }
  h2 { font-size: clamp(1.7rem, 5.5vw, 2.4rem); }
  .agenda-layout { gap: 1.5rem; }
  .agenda-chips { gap: .35rem; }
  .agenda-chip { font-size: .62rem; padding: .35rem .8rem; }
  .faq-list { max-width: 100%; }
  .local-grid { grid-template-columns: 1fr; }
  .local-map { min-height: 260px; }
  .map-placeholder { min-height: 260px; }
  .sobre-highlights { grid-template-columns: 1fr 1fr; }
}

@media(max-width:600px){
  .services-heading { align-items: flex-start; }
  .services-controls { margin-top: .3rem; }
  .service-slide { flex-basis: 88%; }
  .service-image { height: 300px; border-radius: 22px; }
  .sobre-photo-panel { min-height: 260px; max-height: 300px; }
  .sobre-row-num { font-size: 1.25rem; }
  .sobre-highlights { grid-template-columns: 1fr; }
}

@media(max-width:480px){
  .logo-light, .logo-dark { height: 32px; }
  .hero-actions .btn { padding: .58rem .72rem; font-size: .58rem; }
  .slots-grid { grid-template-columns: repeat(2,1fr); }
  .atend-grid { gap: 2rem; }
  .proc-card { padding: 1.5rem 1.3rem; }
  .especialistas-grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .local-btns { flex-direction: column; }
  .ben-card { padding: 1.5rem 1.3rem; }
}

/* ─── Reduced motion ─────────────────────── */
@media(prefers-reduced-motion:reduce){
  .marquee-content { animation: none; }
  .scroll-line::after { animation: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
