/* ColunaRS — Redesign Home
   Palette inspired by current site: deep navy + teal/aqua accent + warm white.
   Type: DM Sans (humanist sans).
*/

:root {
  --navy-900: #07223f;
  --navy-800: #0b2545;
  --navy-700: #133b6b;
  --navy-600: #1c4f8a;
  --teal-700: #0f6c48; /* Verde floresta menta profundo - para texto escuro sobre fundo claro (contraste AA) */
  --teal-600: #128258; /* Verde menta escuro - para ícones e links */
  --teal-500: #56c999; /* Verde menta vibrante - a cor principal do cliente (base) */
  --teal-400: #7be3b7; /* Verde menta claro - para hovers e fundos escuros */
  --teal-200: #bdf0d8; /* Verde menta suave - para bordas e divisores */
  --teal-100: #daf6e9; /* Verde menta sutil - para backgrounds secundários */
  --teal-50:  #f0fbf6; /* Verde menta muito suave - para fundos de seções */
  --teal-950: #031c14; /* Verde menta extremamente profundo - para fundos escuros de alta sofisticação */
  --bg:       #fbfaf7;
  --bg-soft:  #f3f1ec;
  --paper:    #ffffff;
  --ink:      #0a1a30;
  --ink-2:    #34465c;
  --ink-3:    #6d7c92;
  --line:     #e6e3dc;
  --line-2:   #d8d3c8;
  --whatsapp: #25d366;
  --whatsapp-d:#128c7e;

  --radius: 14px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 6px rgba(7,34,63,.06), 0 1px 2px rgba(7,34,63,.04);
  --shadow-md: 0 12px 28px -10px rgba(7,34,63,.18), 0 4px 10px rgba(7,34,63,.06);
  --shadow-lg: 0 30px 60px -20px rgba(7,34,63,.28), 0 10px 24px -6px rgba(7,34,63,.10);

  --maxw: 1200px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-feature-settings: 'ss01','cv11';
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy-800); color: #fff; padding: 10px 14px; z-index: 100;
}
.skip:focus { left: 12px; top: 12px; }

/* ---------------- NAV ---------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,250,247,.78);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-scrolled {
  border-color: var(--line);
  background: rgba(251,250,247,.92);
  box-shadow: 0 1px 0 rgba(7,34,63,.04);
}
.nav__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding: 14px 28px;
}
.logo {
  display: inline-flex;
  align-items: center;
  transition: opacity .25s var(--ease);
}
.logo img {
  display: block;
  height: 85px;
  width: auto;
  will-change: opacity;
  transition: height 0.3s var(--ease);
}
.nav.is-scrolled .logo img {
  height: 70px;
}
.logo:hover {
  opacity: 0.82;
}

.nav__links { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; }
.nav__links a {
  color: var(--ink-2);
  font-size: 15px; font-weight: 500;
  padding: 8px 12px; border-radius: 8px;
  position: relative;
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--navy-800); background: rgba(11,37,69,.04); }
.nav__links a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 2px; background: var(--teal-500); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav__links a:hover::after,
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--navy-800); }

.nav__cta { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--ink-2); font-weight: 600; font-size: 12.5px;
  padding: 0; letter-spacing: 0.02em;
  transition: color .2s;
}
.nav__phone:hover { color: var(--teal-600); }
.nav__phone svg { width: 13px; height: 13px; color: var(--teal-600); }

.nav__burger { display: none; background: none; border: 0; padding: 8px; gap: 5px; flex-direction: column; }
.nav__burger span { width: 22px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: transform .25s; }

/* ---------------- BUTTONS ---------------- */
.btn {
  --bg: var(--navy-800);
  --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; font-weight: 600; font-size: 14.5px;
  padding: 11px 20px; border-radius: 999px;
  background: var(--bg); color: var(--fg);
  border: 1.5px solid transparent;
  letter-spacing: .005em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn--primary {
  --bg: linear-gradient(135deg, #56c999, #35b580);
  --fg: var(--navy-900);
  border-color: #daf6e9;
  box-shadow: 
    0 4px 15px rgba(86, 201, 153, 0.35), 
    inset 0 1.5px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.05);
}
.btn--primary:hover {
  --bg: linear-gradient(135deg, #6ae0b0, #42c993);
  border-color: #ffffff;
  box-shadow: 
    0 8px 24px rgba(86, 201, 153, 0.50), 
    inset 0 2px 0 rgba(255, 255, 255, 0.6),
    inset 0 -1.5px 0 rgba(0, 0, 0, 0.08);
}
.btn--secondary { 
  --bg: var(--navy-800); 
  --fg: #fff; 
  border-color: rgba(255, 255, 255, 0.1);
}
.btn--secondary:hover { 
  --bg: var(--navy-900); 
  box-shadow: 0 6px 18px rgba(7, 34, 63, 0.15);
}
.btn--whatsapp { 
  --bg: linear-gradient(135deg, #25d366, #1ebd5c); 
  --fg: #053b27; 
  border-color: #d1f7dd;
  box-shadow: 
    0 4px 15px rgba(37, 211, 102, 0.3),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.5);
}
.btn--whatsapp:hover { 
  --bg: linear-gradient(135deg, #2cf577, #21cf65); 
  border-color: #ffffff;
  box-shadow: 
    0 8px 24px rgba(37, 211, 102, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.6);
}
.btn--ghost {
  --bg: transparent; --fg: var(--teal-700);
  border-color: var(--teal-500);
}
.btn--ghost:hover { --bg: var(--teal-50); border-color: var(--teal-600); --fg: var(--teal-700); }
.btn--outline-light {
  --bg: transparent; --fg: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn--outline-light:hover { --bg: rgba(255,255,255,.08); border-color: #fff; }
.btn--lg { padding: 14px 22px; font-size: 15.5px; }

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  padding: 64px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: -10% -10% auto -10%; height: 70%;
  background:
    radial-gradient(60% 80% at 20% 20%, rgba(86,201,153,.12), transparent 60%),
    radial-gradient(50% 60% at 90% 30%, rgba(11,37,69,.06), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  max-width: var(--maxw); margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 56px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal-700);
  margin: 0 0 18px;
}
.eyebrow--light { color: var(--teal-500); }
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(86,201,153,.22);
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(86,201,153,.22); }
  50% { box-shadow: 0 0 0 8px rgba(86,201,153,.06); }
}

.hero h1 {
  font-size: clamp(38px, 5.4vw, 64px);
  line-height: 1.02;
  letter-spacing: -.025em;
  font-weight: 600;
  margin: 0 0 22px;
  color: var(--navy-900);
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-700) 0%, var(--teal-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lede {
  font-size: 18px;
  color: var(--ink-2);
  max-width: 56ch;
  text-wrap: pretty;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 28px; }

.hero__chips {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: flex; flex-wrap: wrap; gap: 8px 12px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.hero__chips li {
  font-size: 13px; color: var(--ink-2);
  display: inline-flex; align-items: baseline; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
}
.hero__chips strong { color: var(--navy-800); font-weight: 600; }

.hero__media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.hero__photo {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 240px 240px 24px 24px;
  overflow: hidden;
  background: #e5f6ee;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero__photo img {
  width: 100%; height: 100%; object-fit: contain; object-position: center bottom;
  background-color: #e5f6ee;
  transform: scale(1.45);
  transform-origin: center bottom;
  transition: transform 1.2s var(--ease-out);
}
.hero__media:hover .hero__photo img { transform: scale(1.52); }
.hero__photo-glow {
  position: absolute; inset: auto -20% -30% -20%; height: 60%;
  background: radial-gradient(closest-side, rgba(86,201,153,.35), transparent 70%);
  filter: blur(20px); z-index: -1;
}
.hero__badge {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 13.5px;
  color: var(--ink-2);
}
.hero__badge--top { top: 18%; left: -28px; }
.hero__badge--bot { bottom: 8%; right: -22px; color: var(--teal-600); }
.hero__badge--bot span { color: var(--ink-2); font-weight: 500; }
.hero__badge-num {
  font-size: 22px; font-weight: 700; color: var(--navy-800); line-height: 1;
}
.hero__badge-num::after { content: '+'; color: var(--teal-600); margin-left: 2px; }

.hero__marquee {
  margin-top: 64px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  padding: 14px 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee__track {
  display: flex; gap: 36px; white-space: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
  color: var(--navy-800);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .04em;
}
.marquee__track span:nth-child(even) { color: var(--teal-500); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- CONVÊNIOS ---------------- */
.convenios {
  padding: 36px 28px 8px;
  max-width: var(--maxw); margin: 0 auto;
  text-align: center;
}
.convenios__label {
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin: 0 0 18px;
}
.convenios__list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 10px;
}
.convenios__list li {
  font-size: 13.5px; font-weight: 500; color: var(--navy-800);
  padding: 8px 14px; border-radius: 999px;
  background: var(--paper); border: 1px solid var(--line);
  transition: transform .25s var(--ease), border-color .25s, color .25s;
}
.convenios__list li:hover { transform: translateY(-2px); border-color: var(--teal-500); color: var(--teal-600); }

/* ---------------- SECTION HEADS ---------------- */
.section-head { max-width: 720px; margin: 0 0 36px; }
.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head--center .eyebrow { justify-content: center; }
h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.02em;
  font-weight: 600;
  margin: 0 0 14px;
  color: var(--navy-900);
  text-wrap: balance;
}
h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-700) 0%, var(--teal-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lede {
  color: var(--ink-2); font-size: 17px; margin: 0;
  text-wrap: pretty;
}

/* ---------------- ESPECIALIDADES ---------------- */
.especialidades { padding: 96px 0 80px; }
.cards {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px 28px;
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: auto 0 0 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--navy-700));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.card:hover { transform: translateY(-4px); border-color: transparent; box-shadow: var(--shadow-md); }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--teal-50); color: var(--teal-600);
  margin-bottom: 16px;
  transition: background .3s, color .3s;
}
.card:hover .card__icon { background: var(--teal-500); color: var(--navy-900); }
.card__icon svg { width: 22px; height: 22px; }
.card h3 {
  font-size: 18px; font-weight: 600; letter-spacing: -.01em;
  margin: 0 0 6px; color: var(--navy-800);
}
.card p { margin: 0; font-size: 14.5px; color: var(--ink-2); }
.cards__foot {
  margin: 28px auto 0; max-width: 700px; text-align: center;
  color: var(--ink-3); font-size: 14.5px;
}

/* ---------------- DOUTOR ---------------- */
.doutor { padding: 100px 0; background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.doutor__grid {
  display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 64px;
  align-items: center;
}
.doutor__photo { position: relative; margin: 0; }
.doutor__photo-inner {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--bg-soft);
}
.doutor__photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.doutor__seal {
  position: absolute; bottom: -28px; right: -28px;
  width: 120px; height: 120px;
  color: var(--navy-800);
  background: var(--bg);
  border-radius: 50%;
  display: grid; place-items: center;
  animation: spin 40s linear infinite;
  border: 1px solid var(--line);
}
@keyframes spin { to { transform: rotate(360deg); } }

.doutor__copy h2 { margin-bottom: 18px; }
.doutor__copy p { color: var(--ink-2); font-size: 16px; margin: 0 0 14px; }
.creds {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 14px 22px; margin: 28px 0;
  padding: 22px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line);
}
.creds > div { display: flex; flex-direction: column; gap: 2px; }
.creds dt {
  font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 500;
}
.creds dd { margin: 0; font-weight: 600; color: var(--navy-800); font-size: 15px; }

/* ---------------- TRATAMENTOS ---------------- */
.tratamentos {
  padding: 110px 0;
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(86, 201, 153, 0.22), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(25, 168, 168, 0.15), transparent 70%),
    var(--teal-50);
  color: var(--ink-2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tratamentos h2 { color: var(--navy-900); }
.tratamentos h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-700) 0%, var(--teal-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.tratamentos .section-lede { color: var(--ink-2); }

.tratamentos__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  margin: 36px 0;
}
.tratamentos__grid .treat:nth-child(5),
.tratamentos__grid .treat:last-child,
.treat--full {
  grid-column: span 2;
}
.treat {
  background: var(--paper);
  border: 1px solid var(--teal-200);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .4s var(--ease), background .3s, border-color .3s, box-shadow .3s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.treat::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,0%), rgba(86, 201, 153, 0.14), transparent 50%);
  opacity: 0; transition: opacity .35s;
  pointer-events: none;
}
.treat:hover { background: var(--paper); border-color: var(--teal-500); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.treat:hover::after { opacity: 1; }
.treat__num {
  font-size: 12px; letter-spacing: .2em; color: var(--teal-600);
  font-weight: 600; margin-bottom: 10px;
}
.treat h3 {
  font-size: 22px; line-height: 1.15; letter-spacing: -.01em; color: var(--navy-800);
  margin: 0 0 10px; font-weight: 600;
}
.treat p { margin: 0 0 14px; color: var(--ink-2); font-size: 15px; }
.treat ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 6px; }
.treat ul li {
  font-size: 14px; color: var(--ink-2);
  padding-left: 22px; position: relative;
}
.treat ul li::before {
  content: ''; position: absolute; left: 4px; top: 9px;
  width: 8px; height: 8px; border: 1.5px solid var(--teal-500);
  border-radius: 50%;
}

.treat__cta {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--teal-200);
  color: var(--navy-900);
  transition: background .3s, border-color .3s, transform .3s, box-shadow .3s;
  box-shadow: var(--shadow-sm);
}
.treat__cta:hover { background: var(--teal-50); border-color: var(--teal-500); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.treat__cta strong { display: block; font-size: 17px; color: var(--navy-900); }
.treat__cta span { display: block; font-size: 13.5px; color: var(--ink-2); }
.treat__cta-arrow {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--whatsapp);
  display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.treat__cta-arrow svg {
  width: 22px !important;
  height: 22px !important;
  fill: #ffffff !important;
  color: #ffffff !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}
.treat__cta:hover .treat__cta-arrow { transform: scale(1.1); }

/* ---------------- STATS ---------------- */
.stats { padding: 80px 0; }
.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.stat {
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}
.stat__n {
  display: block;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 700; letter-spacing: -.025em;
  color: var(--navy-800); line-height: 1;
}
.stat__n::after { content: '+'; color: var(--teal-500); }
.stat[data-suffix]+.stat .stat__n::after { content: '+'; }
.stat__l {
  display: block; margin-top: 8px;
  font-size: 13.5px; color: var(--ink-3); letter-spacing: .02em;
}
.stat__l[data-suffix]::before { content: ''; }
.stat:has(.stat__l[data-suffix='%']) .stat__n::after { content: '%'; color: var(--teal-500); }

/* ---------------- INSTALAÇÕES ---------------- */
.instalacoes { padding: 100px 0; background: var(--bg-soft); }
.instalacoes__grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center;
}
.instalacoes__list { list-style: none; padding: 0; margin: 22px 0 28px; display: grid; gap: 10px; }
.instalacoes__list li {
  display: grid; grid-template-columns: 130px 1fr; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--line);
  color: var(--ink-2); font-size: 15px;
}
.instalacoes__list li span:first-child {
  color: var(--ink-3); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; align-self: center;
}
.instalacoes__ctas { display: flex; flex-wrap: wrap; gap: 10px; }
.instalacoes__media {
  position: relative; height: 460px;
}
.instalacoes__media .ph {
  position: absolute;
  width: 75%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.instalacoes__media .ph:nth-child(1) { top: 0; left: 0; height: 65%; }
.instalacoes__media .ph--shift { top: 18%; right: 0; left: auto; height: 55%; width: 60%; }
.instalacoes__media .ph--shift2 { bottom: 0; left: 12%; height: 40%; width: 55%; }

/* ---------------- DEPOIMENTOS ---------------- */
.depoimentos { padding: 110px 0; }
.testi__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-top: 36px;
}
.testi {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  position: relative;
  transition: transform .35s var(--ease), border-color .3s;
}
.testi:hover { transform: translateY(-3px); border-color: var(--teal-500); }
.testi::before {
  content: '“';
  position: absolute; top: 8px; left: 20px;
  font-size: 80px; line-height: 1;
  color: var(--teal-500); opacity: .25;
  font-family: Georgia, serif;
}
.testi__stars {
  color: #ffb703;
  font-size: 16px;
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
}
.testi blockquote {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2); position: relative;
  font-style: italic;
}
.testi__name { display: block; font-weight: 600; color: var(--navy-800); font-size: 14.5px; }
.testi__meta { display: block; color: var(--ink-3); font-size: 12.5px; margin-top: 2px; }

/* ---------------- CTA ---------------- */
.cta {
  padding: 100px 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(86, 201, 153, 0.2), transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(218, 246, 233, 0.6), transparent 50%),
    linear-gradient(135deg, #f2faf6 0%, #e3f7ed 100%);
  color: var(--ink-2);
  border-top: 1px solid var(--teal-200);
}
.cta__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 40px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(86, 201, 153, 0.25);
  border-radius: 24px;
  box-shadow: 
    0 20px 40px -15px rgba(7, 34, 63, 0.05),
    0 1px 3px rgba(86, 201, 153, 0.05);
  text-align: center;
}
.cta h2 { color: var(--navy-900); margin: 0 0 16px; }
.cta h2 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-700) 0%, var(--teal-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta__lede {
  color: var(--ink-2);
  max-width: 580px; margin: 0 auto 28px;
  font-size: 17px;
  line-height: 1.6;
}
.cta__buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .btn--outline-light {
  --bg: transparent; --fg: var(--navy-900);
  border-color: var(--navy-800);
}
.cta .btn--outline-light:hover {
  --bg: var(--navy-900);
  --fg: #fff;
  border-color: var(--navy-900);
}

/* ---------------- FOOTER ---------------- */
.foot {
  background: linear-gradient(180deg, #daf6e9 0%, #f0fbf6 100%);
  color: var(--ink-2);
  padding: 72px 0 28px;
  border-top: 1px solid var(--teal-200);
}
.foot__grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1fr; gap: 40px;
}
.foot__brand p { font-size: 13.5px; margin: 16px 0 0; color: var(--ink-2); line-height: 1.6; }
.foot__disclaimer { font-size: 11.5px !important; color: var(--ink-3) !important; margin-top: 12px !important; line-height: 1.5; }
.foot__col h4 {
  font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--navy-900); font-weight: 700; margin: 4px 0 16px;
}
.foot__col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.foot__col a { 
  color: var(--ink-2); 
  font-size: 14.5px; 
  display: inline-block;
  transition: transform .25s var(--ease), color .25s; 
}
.foot__col a:hover { 
  color: var(--teal-700); 
  transform: translateX(4px); 
}
.foot__col li { font-size: 14.5px; color: var(--ink-2); }
.foot__socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.foot__socials li {
  margin: 0 !important;
}
.foot__socials a {
  color: var(--navy-800, #07223f);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease, transform 0.3s ease;
}
.foot__socials a:hover {
  color: var(--teal-500, #56c999);
  transform: translateX(4px);
}
.foot__socials svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.foot__bottom {
  margin-top: 56px; padding-top: 24px;
  border-top: 1px solid rgba(86, 201, 153, 0.25);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--ink-3);
}

/* ---------------- WHATSAPP FLOAT ---------------- */
/* ---------------- WHATSAPP FLOAT & TOOLTIP ---------------- */
.wa-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}
.wa-float {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .3s var(--ease);
  pointer-events: auto;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float__pulse {
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(.95); opacity: .8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.wa-tooltip {
  width: 280px;
  background: rgba(7, 34, 63, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(86, 201, 153, 0.3);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 32px rgba(7, 34, 63, 0.28);
  position: relative;
  opacity: 0;
  transform: translateY(12px) scale(0.95);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(.34, 1.56, .64, 1), transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
  will-change: transform, opacity;
}
.wa-tooltip.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: rgba(7, 34, 63, 0.96);
  border-right: 1px solid rgba(86, 201, 153, 0.3);
  border-bottom: 1px solid rgba(86, 201, 153, 0.3);
  transform: rotate(45deg);
}
.wa-tooltip__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 8px;
}
.wa-tooltip__status {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--teal-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.wa-tooltip__dot {
  width: 7px;
  height: 7px;
  background-color: #25d366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.25);
  animation: waPulseDot 1.8s infinite;
}
@keyframes waPulseDot {
  0% { box-shadow: 0 0 0 0px rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0px rgba(37, 211, 102, 0); }
}
.wa-tooltip__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.4);
  font-size: 18px;
  line-height: 1;
  padding: 4px;
  margin-right: -4px;
  cursor: pointer;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wa-tooltip__close:hover {
  color: #fff;
  transform: scale(1.1);
}
.wa-tooltip__body h4 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}
.wa-tooltip__body p {
  margin: 0;
  font-size: 13.5px;
  color: #bdf0d8;
  line-height: 1.4;
}

@media (max-width: 360px) {
  .wa-tooltip {
    width: 250px;
  }
  .wa-tooltip__body h4 {
    font-size: 14px;
  }
  .wa-tooltip__body p {
    font-size: 12.5px;
  }
}

/* ---------------- PLACEHOLDER & PHOTOS ---------------- */
.ph {
  background:
    repeating-linear-gradient(135deg,
      rgba(11,37,69,.06) 0 6px,
      rgba(11,37,69,.10) 6px 12px);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.ph--portrait { aspect-ratio: 4 / 5; }
.ph--16x10 { aspect-ratio: 16 / 10; }
.ph__label {
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 12px; letter-spacing: .04em;
  color: var(--ink-3);
  background: rgba(255,255,255,.85);
  padding: 6px 10px; border-radius: 6px;
  z-index: 10;
}
.ph img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ph--crossfade {
  position: relative;
}
.ph--crossfade .crossfade__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1.2s ease-in-out;
}
.ph--crossfade .crossfade__img--1 {
  animation: crossfade1 9s infinite ease-in-out;
}
.ph--crossfade .crossfade__img--2 {
  animation: crossfade2 9s infinite ease-in-out;
}

@keyframes crossfade1 {
  0%, 45%, 100% { opacity: 1; z-index: 2; }
  55%, 90% { opacity: 0; z-index: 1; }
}
@keyframes crossfade2 {
  0%, 45%, 100% { opacity: 0; z-index: 1; }
  55%, 90% { opacity: 1; z-index: 2; }
}

/* ---------------- COMO CHEGAR ---------------- */
.como-chegar {
  padding: 100px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.como-chegar__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 64px;
  align-items: center;
}
.como-chegar__media {
  display: flex;
  justify-content: center;
  position: relative;
}
.como-chegar__phone {
  width: 100%;
  max-width: 310px;
  filter: drop-shadow(0 20px 40px rgba(7, 34, 63, 0.12));
}
.como-chegar__info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.como-chegar__address-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: flex-start;
}
.como-chegar__address-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.como-chegar__address-icon svg {
  width: 22px;
  height: 22px;
}
.como-chegar__address-text h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--navy-800);
  font-weight: 600;
}
.como-chegar__address-text p {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
}
.como-chegar__address-text span {
  font-size: 13.5px;
  color: var(--ink-3);
  display: block;
}
.como-chegar__apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.como-chegar__app-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}
.como-chegar__app-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.como-chegar__app-card--maps:hover { border-color: #4285F4; }
.como-chegar__app-card--waze:hover { border-color: #33CCFF; }
.como-chegar__app-card--moovit:hover { border-color: #FF5A00; }

.como-chegar__app-logo {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.como-chegar__app-logo img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.como-chegar__app-card strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy-800);
  font-weight: 600;
  margin-bottom: 4px;
}
.como-chegar__app-card span {
  font-size: 11.5px;
  color: var(--ink-3);
}

/* GPS Phone SVG Animations */
.route-line-draw {
  animation: drawLine 4s infinite linear;
}
.route-line-dash {
  animation: dashMove 1s infinite linear;
}
@keyframes drawLine {
  0% { stroke-dashoffset: 100; }
  50% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; opacity: 0; }
}
@keyframes dashMove {
  to { stroke-dashoffset: -18; }
}
.pulse-ring-1 {
  transform-origin: 220px 200px;
  animation: pulseGps1 2s infinite ease-out;
}
.pulse-ring-2 {
  transform-origin: 220px 200px;
  animation: pulseGps2 2s infinite ease-out;
}
@keyframes pulseGps1 {
  0% { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}
@keyframes pulseGps2 {
  0% { transform: scale(0.4); opacity: 0.5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ---------------- REVEAL / MOTION ---------------- */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
html.js .reveal.is-in { opacity: 1; transform: translateY(0); }
.reveal[data-i="1"] { transition-delay: .08s; }
.reveal[data-i="2"] { transition-delay: .16s; }
.reveal[data-i="3"] { transition-delay: .24s; }
.reveal[data-i="4"] { transition-delay: .32s; }
.reveal[data-i="5"] { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track, .doutor__seal, .eyebrow .dot, .wa-float__pulse, .route-line-draw, .route-line-dash, .pulse-ring-1, .pulse-ring-2 { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 980px) {
  .logo img {
    height: 65px;
  }
  .nav.is-scrolled .logo img {
    height: 55px;
  }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__media { max-width: 460px; margin: 0 auto; }
  .nav__links { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__phone { display: none; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .doutor__grid, .instalacoes__grid { grid-template-columns: 1fr; gap: 36px; }
  .tratamentos__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .testi__grid { grid-template-columns: 1fr; }
  .foot__grid { grid-template-columns: 1fr 1fr; }
  .doutor__seal { right: 8px; bottom: 8px; }
  .hero__badge--top { left: 0; }
  .hero__badge--bot { right: 0; }
  
  .como-chegar__grid { grid-template-columns: 1fr; gap: 40px; }
  .como-chegar__media { order: 2; }
  .como-chegar__info { order: 1; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .hero { padding-top: 40px; }
  .hero__chips { gap: 6px; }
  .cards { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .foot__grid { grid-template-columns: 1fr; }
  .nav__inner { padding: 12px 18px; }
  .container, .hero__grid { padding-left: 18px; padding-right: 18px; }
  .convenios { padding-left: 18px; padding-right: 18px; }
  .treat__cta { flex-direction: column; align-items: flex-start; }
  
  .como-chegar__apps { grid-template-columns: 1fr; gap: 10px; }
  .como-chegar__app-card { flex-direction: row; text-align: left; padding: 14px 20px; gap: 16px; align-items: center; }
  .como-chegar__app-logo { margin-bottom: 0; height: 48px; width: 48px; flex-shrink: 0; }
  .como-chegar__app-card div { display: flex; flex-direction: column; }
}

/* ---------------- WATERMARK LOGO DECORATIONS ---------------- */
.watermark {
  position: absolute;
  pointer-events: none;
  z-index: 1;
  user-select: none;
  overflow: hidden;
}
.watermark img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.watermark--top-right {
  top: 10%;
  right: -150px;
  width: 480px;
  opacity: 0.08; /* Soft, highly elegant 8% opacity */
}
.watermark--bottom-left {
  top: 80px;
  left: -180px;
  width: 520px;
  opacity: 0.07; /* Soft, highly elegant 7% opacity on green bg */
}
.tratamentos .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 980px) {
  .watermark {
    display: none;
  }
}

/* ---------------- DR. FABIO BIOGRAPHY PAGE ---------------- */

/* Bio Hero Section */
.bio-hero {
  position: relative;
  padding: 64px 0 80px;
  overflow: hidden;
}
.bio-hero::before {
  content: '';
  position: absolute; inset: -10% -10% auto -10%; height: 70%;
  background:
    radial-gradient(60% 80% at 20% 20%, rgba(86,201,153,.12), transparent 60%),
    radial-gradient(50% 60% at 90% 30%, rgba(11,37,69,.06), transparent 70%);
  pointer-events: none;
}
.bio-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: flex-start;
}
.bio-hero__media {
  position: relative;
}
.bio-hero__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 240px 240px 24px 24px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--teal-50), var(--bg-soft));
  box-shadow: var(--shadow-lg);
  isolation: isolate;
  margin-bottom: 24px;
}
.bio-hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease-out);
}
.bio-hero__media:hover .bio-hero__photo img {
  transform: scale(1.05);
}
.bio-hero__photo-glow {
  position: absolute; inset: auto -20% -30% -20%; height: 60%;
  background: radial-gradient(closest-side, rgba(86,201,153,.35), transparent 70%);
  filter: blur(20px); z-index: -1;
}
.bio-hero__cta {
  display: flex;
  justify-content: center;
}
.btn--linkedin {
  --bg: #0077b5;
  --fg: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(0, 119, 181, 0.25);
}
.btn--linkedin:hover {
  --bg: #006396;
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 119, 181, 0.4);
}
.bio-hero__copy {
  padding-top: 20px;
}
.bio-hero__title {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--navy-900);
}
.bio-hero__cremers {
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-600);
  letter-spacing: 0.05em;
  margin: 0 0 28px;
  text-transform: uppercase;
}
.bio-hero__text p {
  color: var(--ink-2);
  font-size: 16.5px;
  line-height: 1.65;
  margin: 0 0 20px;
}
.bio-hero__highlight {
  font-size: 19px !important;
  line-height: 1.55 !important;
  font-weight: 500;
  color: var(--navy-800) !important;
  font-style: italic;
  border-left: 3px solid var(--teal-500);
  padding-left: 20px;
  margin: 32px 0 0 !important;
}

/* Trajetória Timeline */
.trajetoria {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}
.timeline {
  position: relative;
  max-width: 900px;
  margin: 64px auto 0;
  padding: 20px 0;
}
.timeline__track {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, var(--line), var(--teal-500) 15%, var(--teal-600) 85%, var(--line));
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(86, 201, 153, 0.15);
}
.timeline__item {
  position: relative;
  width: 50%;
  margin-bottom: 56px;
}
.timeline__item:last-child {
  margin-bottom: 0;
}
.timeline__item:nth-child(odd) {
  left: 0;
  padding-right: 48px;
}
.timeline__item:nth-child(even) {
  left: 50%;
  padding-left: 48px;
}
.timeline__node {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--teal-500);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  z-index: 5;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(86, 201, 153, 0.12), var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, color .3s, box-shadow .3s;
}
.timeline__item:nth-child(odd) .timeline__node {
  right: -20px;
}
.timeline__item:nth-child(even) .timeline__node {
  left: -20px;
}
.timeline__item:hover .timeline__node {
  transform: translateY(-50%) scale(1.12);
  border-color: var(--teal-600);
  color: var(--navy-800);
  box-shadow: 0 0 0 6px rgba(86, 201, 153, 0.22), var(--shadow-md);
}
.timeline__node svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease);
}
.timeline__item:hover .timeline__node svg {
  transform: scale(1.05) rotate(6deg);
}
.timeline__card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(86, 201, 153, 0.2);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
  position: relative;
}
.timeline__item:hover .timeline__card {
  transform: translateY(-4px);
  border-color: var(--teal-500);
  box-shadow: var(--shadow-md);
}
.timeline__year {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.timeline__card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-800);
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}
.timeline__card p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.55;
}

/* Alternate positioning details on desktop */
.timeline__item:nth-child(odd) .timeline__card {
  text-align: right;
}
.timeline__item:nth-child(even) .timeline__card {
  text-align: left;
}

/* Videos Section */
.videos-section {
  padding: 100px 0;
  background:
    radial-gradient(50% 60% at 80% 0%, rgba(86, 201, 153, 0.22), transparent 70%),
    radial-gradient(50% 60% at 0% 100%, rgba(25, 168, 168, 0.15), transparent 70%),
    var(--teal-50);
  color: var(--ink-2);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.videos-section h2 {
  color: var(--navy-900);
}
.videos-section .section-lede {
  color: var(--ink-2);
}
.videos-section .eyebrow {
  color: var(--teal-700);
}
.videos-section .eyebrow .dot {
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(86, 201, 153, .22);
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.video-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--teal-200);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.video-card:hover {
  transform: translateY(-4px);
  border-color: var(--teal-500);
  box-shadow: var(--shadow-md);
}
.video-card__player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background: #000;
}
.video-card__player img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease);
}
.video-card:hover .video-card__player img {
  opacity: 0.95;
}
.video-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,34,63,0.9) 0%, rgba(7,34,63,0.15) 75%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px 24px;
  pointer-events: none;
}
.video-card__title {
  font-size: 16.5px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 4px rgba(7,34,63,0.5);
  margin-bottom: auto;
}
.video-card__play {
  align-self: center;
  margin-top: auto;
  margin-bottom: auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  transition: transform .3s var(--ease), background .3s, border-color .3s, box-shadow .3s;
  pointer-events: auto;
}
.video-card__play::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent #ffffff;
  margin-left: 4px;
}
.video-card:hover .video-card__play {
  transform: scale(1.1);
  background: var(--teal-500);
  border-color: var(--teal-400);
  box-shadow: 0 8px 24px rgba(86, 201, 153, 0.4);
}
.video-card:hover .video-card__play::after {
  border-color: transparent transparent transparent var(--navy-900);
}
.videos-cta {
  margin-top: 48px;
  text-align: center;
}
.btn--youtube {
  --bg: #ff0000;
  --fg: #fff;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 15px rgba(255, 0, 0, 0.25);
}
.btn--youtube:hover {
  --bg: #e60000;
  border-color: #ffffff;
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.40);
}

/* ---------------- BIO RESPONSIVE ADJUSTMENTS ---------------- */
@media (max-width: 980px) {
  .bio-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .bio-hero__media {
    max-width: 460px;
    margin: 0 auto;
  }
  .bio-hero__copy {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .timeline__track {
    left: 20px;
    transform: none;
  }
  .timeline__item {
    width: 100%;
    left: 0 !important;
    padding-left: 48px !important;
    padding-right: 0 !important;
    margin-bottom: 40px;
  }
  .timeline__item:nth-child(odd) .timeline__node,
  .timeline__item:nth-child(even) .timeline__node {
    left: 0px !important;
    right: auto !important;
  }
  .timeline__item:nth-child(odd) .timeline__card,
  .timeline__item:nth-child(even) .timeline__card {
    text-align: left !important;
    padding: 20px;
  }
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---------------- STANDALONE TREATMENTS PAGE STYLES ---------------- */
.treatments-hero {
  padding: 120px 0 80px;
  background: 
    radial-gradient(40% 50% at 90% 10%, rgba(86, 201, 153, 0.15), transparent 70%),
    radial-gradient(35% 45% at 10% 90%, rgba(25, 168, 168, 0.1), transparent 70%),
    var(--bg);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.treatments-hero__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.treatments-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--navy-900);
  line-height: 1.15;
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}
.treatments-hero h1 em {
  font-style: normal;
  color: var(--teal-700);
  background: linear-gradient(120deg, var(--teal-700), var(--teal-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.treatments-hero .lede {
  font-size: 18.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin-bottom: 32px;
}
.treatments-hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.treatments-hero__badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--teal-200);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy-800);
  box-shadow: var(--shadow-sm);
}
.treatments-hero__badges .badge svg {
  color: var(--teal-600);
  flex-shrink: 0;
}

.treatments-section {
  padding: 80px 0;
  background: var(--bg-soft);
}

.treatment-group {
  margin-bottom: 80px;
}
.treatment-group:last-child {
  margin-bottom: 0;
}
.treatment-group__header {
  max-width: 720px;
  margin-bottom: 40px;
}
.treatment-group__tag {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--teal-700);
  margin-bottom: 8px;
}
.treatment-group__header h2 {
  font-size: clamp(24px, 4vw, 32px);
  color: var(--navy-900);
  margin: 0 0 16px;
  letter-spacing: -0.015em;
}
.treatment-group__header p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.treatment-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.treatment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--teal-500);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.treatment-card:hover {
  transform: translateY(-5px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-md);
}
.treatment-card:hover::before {
  opacity: 1;
}

.treatment-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-50);
  border: 1px solid var(--teal-200);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: background .3s, color .3s;
}
.treatment-card:hover .treatment-card__icon {
  background: var(--teal-500);
  color: var(--navy-900);
  border-color: var(--teal-400);
}

.treatment-card__title {
  font-size: 19px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.treatment-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  flex-grow: 1;
}

.treatment-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.treatment-card:hover .treatment-card__link {
  color: var(--teal-600);
  transform: translateX(4px);
}

.cfm-disclaimer {
  background: rgba(255,255,255,0.4);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 60px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cfm-disclaimer__icon {
  color: var(--ink-3);
  flex-shrink: 0;
  margin-top: 2px;
}
.cfm-disclaimer p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
}
.cfm-disclaimer p strong {
  color: var(--navy-900);
}

@media (max-width: 768px) {
  .treatments-hero {
    padding: 100px 0 60px;
  }
  .treatments-section {
    padding: 60px 0;
  }
  .treatment-group {
    margin-bottom: 60px;
  }
  .treatment-card {
    padding: 24px;
  }
  .cfm-disclaimer {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }
}

/* ---------------------------------------------------- */
/*             PÁGINA ENTENDA SUA DOR & CTAS            */
/* ---------------------------------------------------- */

/* ---------------- PAIN HERO ---------------- */
.pain-hero {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(180deg, rgba(7,34,63,0.03) 0%, rgba(251,250,247,0) 100%);
  overflow: hidden;
}
.pain-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.pain-hero__copy {
  position: relative;
  z-index: 2;
}
.pain-hero__copy h1 {
  font-size: clamp(36px, 4.5vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
}
.pain-hero__copy h1 em {
  font-style: normal;
  color: var(--teal-600);
  position: relative;
  background: linear-gradient(120deg, var(--teal-600) 30%, var(--teal-500) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pain-hero__copy .lede {
  font-size: 19px;
  color: var(--ink-2);
  margin-bottom: 20px;
}
.pain-hero__copy p {
  font-size: 16.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pain-hero__copy p strong {
  color: var(--navy-800);
}
.pain-hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.pain-hero__photo-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--paper);
  background: var(--paper);
  aspect-ratio: 3/2;
}
.pain-hero__photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.pain-hero__photo-wrapper:hover img {
  transform: scale(1.03);
}
.pain-hero__photo-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(86,201,153,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}
.pain-hero__photo-chip {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(7,34,63,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  color: #fff;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(7,34,63,0.3);
  animation: floatChip 4s ease-in-out infinite;
}
.pain-hero__photo-chip strong {
  color: var(--teal-400);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.pain-hero__photo-chip span {
  font-size: 14px;
  font-weight: 500;
}
@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ---------------- PAIN NAVIGATOR ---------------- */
.pain-navigator-section {
  padding: 80px 0;
  background: var(--bg-soft);
}
.pain-navigator {
  background: var(--paper);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 40px;
  margin-top: 48px;
}
.pain-navigator__tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 40px;
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 16px;
}
.pain-navigator__tab {
  background: transparent;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s var(--ease);
  outline: none;
}
.pain-navigator__tab svg {
  transition: color 0.25s;
  color: var(--ink-3);
  flex-shrink: 0;
}
.pain-navigator__tab:hover {
  color: var(--teal-700);
  background: var(--teal-50);
}
.pain-navigator__tab.is-active {
  background: var(--teal-500);
  color: var(--navy-900);
  border-color: var(--teal-500);
  box-shadow: var(--shadow-sm);
}
.pain-navigator__tab.is-active svg {
  color: var(--navy-900);
}
.pain-navigator__pane {
  display: none;
  animation: paneFadeIn 0.4s var(--ease-out);
}
.pain-navigator__pane.is-active {
  display: block;
}
@keyframes paneFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.pane-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 48px;
  align-items: start;
}
.pane-info h3 {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 12px;
}
.pane-lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 500;
  margin-bottom: 28px;
}
.pane-symptoms, .pane-causes {
  margin-bottom: 28px;
}
.pane-symptoms h4, .pane-causes h4 {
  font-size: 14.5px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-700);
  margin: 0 0 12px;
  font-weight: 700;
}
.pane-symptoms ul {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}
.pane-symptoms li {
  color: var(--ink);
  font-size: 15.5px;
}
.pane-causes p {
  font-size: 15.5px;
  color: var(--ink-2);
  margin: 0;
}
.pane-causes a {
  color: var(--teal-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.pane-causes a:hover {
  color: var(--teal-700);
}
.pane-action {
  margin-top: 36px;
}
.pane-meta-card {
  background: var(--teal-50);
  border: 1.5px solid var(--teal-200);
  border-radius: var(--radius-sm);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.meta-card-head {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal-700);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.meta-card-head::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-500);
}
.pane-meta-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
}
.pane-meta-card p a {
  color: var(--teal-700);
  font-weight: 600;
  text-decoration: underline;
}
.meta-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-800);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, transform 0.2s;
}
.meta-card-cta:hover {
  background: var(--navy-900);
  transform: translateY(-1px);
}

/* ---------------- RED FLAGS ---------------- */
.red-flags-section {
  padding: 60px 0;
  background: var(--bg);
}
.red-flags-card {
  background: #fff5f5;
  border: 1.5px solid #feb2b2;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.red-flags-card__icon {
  color: #e53e3e;
  background: #fff;
  border: 1.5px solid #feb2b2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.red-flags-card__icon svg {
  width: 28px;
  height: 28px;
}
.red-flags-card__content h3 {
  font-size: 24px;
  font-weight: 700;
  color: #9b2c2c;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.red-flags-card__content p {
  font-size: 16px;
  line-height: 1.6;
  color: #742a2a;
  margin: 0 0 24px;
}
.red-flags-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.red-flags-list li {
  font-size: 15px;
  line-height: 1.55;
  color: #742a2a;
}
.red-flags-list li strong {
  color: #9b2c2c;
  font-size: 15.5px;
}

/* ---------------- DIAGNOSTICO IMPORTANCIA ---------------- */
.diagnostico-importancia {
  padding: 80px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.diagnostico-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.diagnostico-copy h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15;
  font-weight: 700;
  color: var(--navy-900);
  margin: 16px 0 24px;
  letter-spacing: -0.02em;
}
.diagnostico-copy h2 em {
  font-style: normal;
  color: var(--teal-600);
}
.diagnostico-copy p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.diagnostico-doctor {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
}
.doctor-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.doctor-info {
  display: flex;
  flex-direction: column;
}
.doctor-info strong {
  font-size: 16px;
  color: var(--navy-900);
}
.doctor-info span {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.4;
}
.stat-box-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.stat-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.3s var(--ease);
}
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stat-box__num {
  font-size: 48px;
  font-weight: 800;
  color: var(--teal-600);
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-box p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-2);
  margin: 0;
}

/* ---------------- MOTION CTA BANNER ---------------- */
.motion-cta-section {
  padding: 80px 0 100px;
  background: var(--bg);
}
.motion-cta-banner {
  position: relative;
  background: linear-gradient(135deg, #0b452c, #126343, #083c26);
  background-size: 200% 200%;
  border: 2px solid var(--teal-500);
  border-radius: var(--radius);
  padding: 72px 40px;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg);
  animation: gradientMotion 12s ease infinite;
}
.motion-cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at var(--mx, 50%) var(--my, 50%), rgba(86,201,153,0.22), transparent 80%);
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.5s var(--ease);
  opacity: 0;
}
.motion-cta-banner:hover::before {
  opacity: 1;
}
@keyframes gradientMotion {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.motion-cta-banner__glow {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(86,201,153,0.18) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 1;
}
.motion-cta-banner__glow--2 {
  top: auto;
  left: auto;
  bottom: -150px;
  right: -150px;
  background: radial-gradient(circle, rgba(123,227,183,0.18) 0%, transparent 70%);
}
.motion-cta-banner__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.motion-cta-banner h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
.motion-cta-banner h2 em {
  font-style: normal;
  color: var(--teal-400);
}
.motion-cta-banner .lede {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
}
.motion-cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.motion-cta-banner__actions .btn--whatsapp {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
.motion-cta-banner__actions .btn--whatsapp:hover {
  box-shadow: 0 8px 30px rgba(37,211,102,0.6), inset 0 1.5px 0 rgba(255,255,255,0.5);
}
.active-pulse {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(255,255,255,0.4);
  animation: activeDotPulse 2s infinite;
}
@keyframes activeDotPulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ---------------- RESPONSIVE OVERRIDES ---------------- */
@media (max-width: 992px) {
  .pain-hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .pain-hero__badges {
    justify-content: center;
  }
  .pain-hero__photo-wrapper {
    max-width: 560px;
    margin: 0 auto;
  }
  .pain-navigator__tabs {
    grid-template-columns: 1fr 1fr;
  }
  .pane-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .diagnostico-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .diagnostico-doctor {
    justify-content: center;
  }
  .stat-box-container {
    grid-template-columns: 1fr 1fr;
    max-width: 640px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .pain-hero {
    padding: 100px 0 60px;
  }
  .pain-navigator {
    padding: 24px;
  }
  .pain-navigator__tabs {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .pane-symptoms ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .red-flags-card {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    padding: 28px;
  }
  .red-flags-card__icon {
    margin: 0 auto;
  }
  .stat-box-container {
    grid-template-columns: 1fr;
  }
  .motion-cta-banner {
    padding: 48px 24px;
  }
}

/* ---------------- PAGINA INSTALACOES ---------------- */
.instalacoes-hero {
  position: relative;
  padding: clamp(100px, 12vw, 150px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: radial-gradient(60% 80% at 20% 20%, rgba(86,201,153,.08), transparent 60%),
              radial-gradient(50% 60% at 80% 80%, rgba(11,37,69,.05), transparent 70%),
              var(--bg);
}
.installations-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.instalacoes-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.instalacoes-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-700) 0%, var(--teal-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.installations-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.installations-hero__badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--navy-800);
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.installations-hero__badges .badge svg {
  color: var(--teal-600);
  flex-shrink: 0;
}
.watermark {
  position: absolute;
  pointer-events: none;
  opacity: 0.03;
  z-index: 1;
}
.watermark--top-right {
  top: 10%;
  right: -5%;
  width: 450px;
}
.watermark img {
  width: 100%;
  height: auto;
}

.instalacoes-galeria {
  padding: 60px 0 100px;
  background: var(--bg);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.gallery-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.gallery-card--featured {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
}
.gallery-card__photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
  width: 100%;
}
.gallery-card:not(.gallery-card--featured) .gallery-card__photo {
  aspect-ratio: 4 / 3;
}
.gallery-card--featured .gallery-card__photo {
  aspect-ratio: 16 / 10;
}
.gallery-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  display: block;
}
.gallery-card__glow {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 40px rgba(86, 201, 153, 0);
  transition: box-shadow 0.4s var(--ease);
  pointer-events: none;
}
.gallery-card__info {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid var(--line);
}
.gallery-card--featured .gallery-card__info {
  border-left: 1px solid var(--line);
  border-top: none;
  padding: 40px;
}
.gallery-card__info h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 10px;
}
.gallery-card__info p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0;
}
.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-400);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(86, 201, 153, 0.15);
}
.gallery-card:hover .gallery-card__photo img {
  transform: scale(1.04);
}
.gallery-card:hover .gallery-card__glow {
  box-shadow: inset 0 0 40px rgba(86, 201, 153, 0.18);
}

.hospitais-parceiros {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--teal-50) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hospitais-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.hospital-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.hospital-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--teal-100);
  color: var(--teal-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s, color 0.3s;
}
.hospital-card__icon svg {
  width: 28px;
  height: 28px;
}
.hospital-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 8px;
}
.hospital-card__lede {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-700);
  margin-bottom: 18px;
}
.hospital-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  flex-grow: 1;
}
.hospital-card__tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.hospital-card__tags li {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy-800);
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: 999px;
}
.hospital-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-500);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(86, 201, 153, 0.08);
}
.hospital-card:hover .hospital-card__icon {
  background: var(--teal-500);
  color: var(--navy-900);
}

.como-chegar-detalhe {
  padding: 100px 0;
  background: var(--paper);
}
.como-chegar__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
}
.como-chegar__media {
  display: flex;
  justify-content: center;
  position: relative;
}
.como-chegar__phone {
  width: 100%;
  max-width: 320px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(7, 34, 63, 0.18));
}
.como-chegar__info {
  display: flex;
  flex-direction: column;
}
.como-chegar__address-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 28px 0 36px;
  box-shadow: var(--shadow-sm);
}
.como-chegar__address-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.como-chegar__address-icon svg {
  width: 24px;
  height: 24px;
}
.como-chegar__address-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 6px;
}
.como-chegar__address-text p {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 10px;
  font-weight: 500;
}
.como-chegar__address-text span {
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
  display: block;
}
.como-chegar-detalhe .como-chegar__apps,
.contato-secao .como-chegar__apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.como-chegar-detalhe .como-chegar__app-card,
.contato-secao .como-chegar__app-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.como-chegar-detalhe .como-chegar__app-card:hover,
.contato-secao .como-chegar__app-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.como-chegar-detalhe .como-chegar__app-card--maps:hover,
.contato-secao .como-chegar__app-card--maps:hover { border-color: #4285f4; }
.como-chegar-detalhe .como-chegar__app-card--waze:hover,
.contato-secao .como-chegar__app-card--waze:hover { border-color: #33ccff; }
.como-chegar-detalhe .como-chegar__app-card--moovit:hover,
.contato-secao .como-chegar__app-card--moovit:hover { border-color: #ff5000; }

.como-chegar-detalhe .como-chegar__app-logo,
.contato-secao .como-chegar__app-logo {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.como-chegar-detalhe .como-chegar__app-logo img,
.contato-secao .como-chegar__app-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.como-chegar-detalhe .como-chegar__app-card strong,
.contato-secao .como-chegar__app-card strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy-900);
  line-height: 1.2;
}
.como-chegar-detalhe .como-chegar__app-card span,
.contato-secao .como-chegar__app-card span {
  display: block;
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 2px;
  font-weight: 500;
}

/* GPS Phone Vector Animations */
.route-line-dash {
  animation: routeDash 30s linear infinite;
}
@keyframes routeDash {
  to { stroke-dashoffset: -1000; }
}

.route-line-draw {
  animation: routeDraw 4s var(--ease) forwards infinite;
}
@keyframes routeDraw {
  0% { stroke-dashoffset: 100; }
  45%, 100% { stroke-dashoffset: 0; }
}

.pulse-ring-1 {
  transform-origin: 220px 200px;
  animation: pulseRingGps 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulse-ring-2 {
  transform-origin: 220px 200px;
  animation: pulseRingGps 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation-delay: 0.5s;
}
@keyframes pulseRingGps {
  0% { transform: scale(0.4); opacity: 0; }
  5% { opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

.estacionamento-secao {
  padding: 60px 0 100px;
  background: var(--bg);
}
.parking-banner {
  position: relative;
  background: linear-gradient(135deg, var(--navy-900) 0%, #071f38 100%);
  border: 1px solid rgba(86, 201, 153, 0.15);
  border-radius: var(--radius);
  padding: 64px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.parking-banner__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 80% 50%, rgba(86, 201, 153, 0.07), transparent 80%);
  pointer-events: none;
}
.parking-banner__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.parking-banner__copy {
  color: #fff;
}
.parking-banner__copy h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 40px);
  margin-bottom: 20px;
}
.parking-banner__copy h2 em {
  font-style: normal;
  color: var(--teal-400);
}
.parking-banner__copy .lede {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.parking-banner__copy p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 32px;
}
.parking-banner__interactive {
  display: flex;
  justify-content: center;
  width: 100%;
}
.parking-card {
  background: rgba(11, 37, 69, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(86, 201, 153, 0.2);
  border-radius: var(--radius);
  width: 100%;
  max-width: 380px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
  cursor: pointer;
}
.parking-card__p-sign {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 44px;
  font-weight: 800;
  color: rgba(86, 201, 153, 0.12);
  line-height: 1;
}
.parking-card__badge {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal-400);
  background: rgba(86, 201, 153, 0.08);
  border: 1px solid rgba(86, 201, 153, 0.15);
  padding: 8px 12px;
  border-radius: 999px;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* Motion Car SVGs Animations */
.motion-car-svg {
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.35));
}
.car-body-group {
  transition: transform 0.5s var(--ease);
}
.wheel-group {
  transition: transform 0.5s var(--ease);
}
.wheel-spin {
  transform-origin: 0px 0px;
}
.headlight-beam {
  opacity: 0.15;
  transition: opacity 0.4s, fill 0.4s;
}

/* Speed Lines */
.speed-line {
  stroke-dasharray: 20 80;
  stroke-dashoffset: 0;
  animation: speedLineShift 2s linear infinite;
  opacity: 0.5;
  transition: stroke 0.4s;
}
.speed-line--2 {
  animation-delay: 0.5s;
  animation-duration: 1.5s;
}
.speed-line--3 {
  animation-delay: 1s;
  animation-duration: 2.5s;
}
@keyframes speedLineShift {
  0% { stroke-dashoffset: 100; }
  100% { stroke-dashoffset: 0; }
}

/* Hover States for Interactive Parking Card */
.parking-card:hover {
  border-color: var(--teal-500);
  box-shadow: 0 30px 60px rgba(86, 201, 153, 0.18), 0 0 30px rgba(86, 201, 153, 0.1);
  transform: translateY(-4px);
}
.parking-card:hover .car-body-group {
  animation: carDriveEffect 1s infinite alternate;
}
.parking-card:hover .wheel-spin {
  animation: spinWheel 0.4s linear infinite;
}
.parking-card:hover .speed-line {
  stroke: var(--teal-400);
  opacity: 1;
}
.parking-card:hover .headlight-beam {
  opacity: 0.85;
  fill: rgba(86, 201, 153, 0.65);
}

@keyframes spinWheel {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes carDriveEffect {
  0% { transform: translate(0, 0); }
  25% { transform: translate(4px, -0.5px); }
  50% { transform: translate(8px, 0.5px); }
  75% { transform: translate(12px, -0.5px); }
  100% { transform: translate(14px, 0); }
}

.cfm-disclaimer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 40px;
  align-items: center;
}
.cfm-disclaimer__icon {
  color: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cfm-disclaimer p {
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .gallery-card--featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .gallery-card--featured .gallery-card__info {
    border-left: none;
    border-top: 1px solid var(--line);
  }
  .hospitais-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .como-chegar__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .como-chegar__phone {
    max-width: 280px;
  }
  .como-chegar__apps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .parking-banner__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-card--featured {
    grid-column: span 1;
  }
  .installations-hero__badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .installations-hero__badges .badge {
    width: 100%;
  }
  .parking-banner {
    padding: 32px 24px;
  }
}

/* ---------------- PAGINA CONTATO ---------------- */
.contato-hero {
  position: relative;
  padding: clamp(100px, 12vw, 150px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
  background: radial-gradient(60% 80% at 20% 20%, rgba(86,201,153,.08), transparent 60%),
              radial-gradient(50% 60% at 80% 80%, rgba(11,37,69,.05), transparent 70%),
              var(--bg);
}
.contato-hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}
.contato-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal-700) 0%, var(--teal-500) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.contato-secao {
  padding: 60px 0 100px;
  background: var(--bg);
}

.grid-contato {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contato-info {
  display: flex;
  flex-direction: column;
}

.contato-details-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.contato-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contato-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  border: 1px solid var(--teal-200);
}

.contato-item__icon svg {
  width: 22px;
  height: 22px;
}

.contato-item__text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 6px;
}

.contato-item__text p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.6;
}

.contato-item__text a.link-hover {
  color: var(--teal-700);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contato-item__text a.link-hover:hover {
  color: var(--teal-500);
}

/* Form Container & Floating Labels */
.contato-form-container {
  position: relative;
}

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.form-card__header {
  margin-bottom: 32px;
}

.form-card__header h3 {
  font-size: 22px;
  color: var(--navy-900);
  margin: 0 0 8px;
  font-weight: 700;
}

.form-card__header p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-3);
}

.contato-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  position: relative;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-input {
  width: 100%;
  padding: 24px 16px 8px 16px;
  border: 1.5px solid var(--line-2);
  border-radius: var(--radius-sm);
  background: var(--paper);
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-input:focus {
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px var(--teal-100);
}

.form-label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-3);
  font-size: 15px;
  transition: all 0.25s var(--ease);
  pointer-events: none;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--teal-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-input.form-textarea:focus ~ .form-label,
.form-input.form-textarea:not(:placeholder-shown) ~ .form-label {
  top: 16px;
}

.form-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Success Banner */
.form-success-banner {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 90%;
  max-width: 600px;
  background: var(--teal-50);
  border: 2px solid var(--teal-500);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 16px 24px;
  animation: slideDown 0.4s var(--ease-out) forwards;
}

.form-success-banner__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.form-success-banner__content svg {
  color: var(--teal-600);
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success-banner__content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  margin: 0 0 4px;
}

.form-success-banner__content p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
}

.form-success-banner__close {
  position: absolute;
  right: -8px;
  top: -8px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--ink-3);
  line-height: 1;
  padding: 4px;
  transition: color 0.2s ease;
}

.form-success-banner__close:hover {
  color: var(--navy-900);
}

@keyframes slideDown {
  from { top: -100px; opacity: 0; }
  to { top: 24px; opacity: 1; }
}

/* Travel Guide Section */
.travel-guide-section {
  padding: 100px 0;
  background: var(--bg-soft);
  position: relative;
}

.travel-guide-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.travel-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.travel-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-200);
}

.travel-card__icon {
  width: 48px;
  height: 48px;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.travel-card__icon svg {
  width: 24px;
  height: 24px;
}

.travel-card h3 {
  font-size: 18px;
  color: var(--navy-900);
  margin: 0 0 16px;
  font-weight: 700;
}

.travel-card p {
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 20px;
}

.travel-card__list {
  padding-left: 0;
  list-style: none;
  margin: 0 0 auto 0;
}

.travel-card__list li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  position: relative;
  padding-left: 14px;
  margin-bottom: 12px;
}

.travel-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--teal-500);
  border-radius: 50%;
}

.travel-card__tag {
  display: inline-flex;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-700);
  background: var(--teal-100);
  padding: 6px 12px;
  border-radius: 99px;
  margin-top: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Insurances Section */
.insurance-section {
  padding: 100px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}

.insurance-logos-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}

.insurance-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 24px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.insurance-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal-500);
}

.insurance-card__logo-mock {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-700) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
  transition: all 0.3s var(--ease);
}

.insurance-card:hover .insurance-card__logo-mock {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-500) 100%);
  color: var(--paper);
  transform: scale(1.05);
}

.insurance-card__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  text-align: center;
}

.insurance-note {
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 13.5px;
  color: var(--ink-3);
  text-align: center;
  line-height: 1.5;
}

.cfm-disclaimer {
  display: flex;
  gap: 16px;
  background: rgba(7, 34, 63, 0.03);
  border: 1px solid var(--line);
  padding: 20px 24px;
  border-radius: var(--radius-sm);
  margin-top: 40px;
}

.cfm-disclaimer__icon {
  color: var(--ink-3);
  flex-shrink: 0;
}

.cfm-disclaimer p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* Responsiveness for Contato */
@media (max-width: 1024px) {
  .travel-guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-contato {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contato-secao {
    padding: 40px 0 60px;
  }
  .travel-guide-section, .insurance-section {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-card {
    padding: 24px;
  }
  .travel-guide-grid {
    grid-template-columns: 1fr;
  }
  .insurance-logos-grid {
    gap: 12px;
  }
  .insurance-card {
    width: 45%;
  }
}

/* FAQ Accordion Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}

.faq-item[open] {
  border-color: var(--teal-400);
  box-shadow: var(--shadow-md);
}

.faq-item summary {
  padding: 24px 28px;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none; /* Oculta seta padrão no Chrome/Firefox */
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background-color 0.25s;
}

.faq-item summary::-webkit-details-marker {
  display: none; /* Oculta seta padrão no Safari */
}

.faq-item summary:hover {
  background-color: var(--bg-soft);
}

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 500;
  color: var(--teal-600);
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 28px 28px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-2);
  border-top: 1px solid transparent;
  animation: slideDown 0.3s ease-out forwards;
}

.faq-item[open] .faq-answer {
  border-top-color: var(--line);
  padding-top: 20px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Blog Page Styles */
.blog-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-950) 100%);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.blog-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--paper);
}

.blog-hero h1 em {
  font-style: normal;
  color: var(--teal-400);
}

.blog-hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--teal-100);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.blog-section {
  padding: 80px 0 100px;
  background: var(--bg);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
  cursor: pointer;
  position: relative;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-500);
  box-shadow: var(--shadow-lg), 0 10px 30px rgba(86, 201, 153, 0.08);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.blog-card__time {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 4px 10px;
  border-radius: 99px;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.4;
  margin: 0 0 14px;
  transition: color 0.25s;
}

.blog-card:hover h3 {
  color: var(--teal-600);
}

.blog-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 24px;
  flex-grow: 1;
}

.blog-card__cta {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s;
  margin-top: auto;
}

.blog-card:hover .blog-card__cta {
  gap: 10px;
}

/* Article Reader View Styles */
.blog-reader {
  display: none;
  padding: 80px 0 100px;
  background: var(--bg);
}

.blog-reader.is-active {
  display: block;
}

.blog-reader__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-700);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  margin-bottom: 40px;
}

.blog-reader__back:hover {
  background: var(--teal-50);
  color: var(--teal-600);
  transform: translateX(-4px);
}

.blog-reader__grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.blog-content {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}

.blog-content__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.blog-content h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.3;
  margin: 0 0 28px;
}

.blog-content__body {
  font-size: 16.5px;
  line-height: 1.8;
  color: var(--ink);
}

.blog-content__body p {
  margin: 0 0 24px;
}

.blog-content__body h2 {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 40px 0 20px;
}

.blog-content__body h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 32px 0 16px;
}

.blog-content__body ul, .blog-content__body ol {
  margin: 0 0 24px;
  padding-left: 20px;
}

.blog-content__body li {
  margin-bottom: 10px;
}

.blog-content__body blockquote {
  border-left: 4px solid var(--teal-500);
  background: var(--bg-soft);
  padding: 20px 28px;
  margin: 32px 0;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-2);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: sticky;
  top: 100px;
}

.blog-sidebar__widget {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.blog-sidebar__author {
  text-align: center;
}

.blog-sidebar__avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--teal-100);
  display: block;
}

.blog-sidebar__author h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--navy-900);
  margin: 0 0 4px;
}

.blog-sidebar__author span {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--teal-700);
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 16px;
}

.blog-sidebar__author p {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
  margin: 0 0 20px;
}

.blog-sidebar__cta {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--teal-950) 100%);
  color: var(--paper);
  border: none;
}

.blog-sidebar__cta h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 12px;
}

.blog-sidebar__cta p {
  font-size: 14.5px;
  color: var(--teal-100);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Responsiveness for Blog */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .blog-reader__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    padding: 100px 0 60px;
  }
  .blog-section, .blog-reader {
    padding: 60px 0;
  }
}

@media (max-width: 576px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card, .blog-content {
    padding: 24px;
  }
}

/* ---------------- ADOPTION AND RESPONSIVENESS FIXES ---------------- */

/* Fix treatments page grid squeeze on mobile */
@media (max-width: 768px) {
  .treatments-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

/* Fix home page treatments grid card span overlap on mobile */
@media (max-width: 980px) {
  .tratamentos__grid {
    grid-template-columns: 1fr !important;
  }
  .tratamentos__grid .treat:nth-child(5),
  .tratamentos__grid .treat:last-child,
  .treat--full {
    grid-column: span 1 !important;
  }
}

/* Fix contact page app links squishing and horizontal scrollbar on mobile */
@media (max-width: 768px) {
  .como-chegar-detalhe .como-chegar__apps,
  .contato-secao .como-chegar__apps {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .como-chegar-detalhe .como-chegar__app-card,
  .contato-secao .como-chegar__app-card {
    flex-direction: row !important;
    text-align: left !important;
    padding: 14px 20px !important;
    gap: 16px !important;
    align-items: center !important;
    width: 100% !important;
  }
  .como-chegar-detalhe .como-chegar__app-logo,
  .contato-secao .como-chegar__app-logo {
    margin-bottom: 0 !important;
    width: 48px !important;
    height: 48px !important;
  }
  .como-chegar-detalhe .como-chegar__app-card div,
  .contato-secao .como-chegar__app-card div {
    display: flex !important;
    flex-direction: column !important;
  }
}



