/* ============================================================
   Dr. Osvaldo Barbosa — Landing Page
   Design language: "Calm Authority"
   Deep pine green · warm ivory · restrained brass
   Spectral (display serif) + Hanken Grotesk (humanist sans)
   ============================================================ */

:root {
  /* palette — brand teal #0F454D (sampled from logo) */
  --green-900: #07343A;
  --green-800: #0C3F46;
  --green-700: #0F454D;   /* primary / brand */
  --green-600: #176069;
  --green-500: #2A7882;
  --green-200: #BAD2D4;
  --green-100: #D6E4E5;
  --green-50:  #E9F1F1;

  --ivory:  #F8F4EB;      /* page bg */
  --sand:   #EFE5D4;      /* alt section bg */
  --sand-deep: #E7DAC2;
  --card:   #FFFFFF;

  --brass:      #B0863A;  /* accent */
  --brass-deep: #8C6A2C;
  --brass-soft: #E7D3A6;

  --ink:    #15201B;      /* headings */
  --body:   #3C4742;      /* body text */
  --muted:  #6B756E;      /* captions */
  --line:   rgba(20, 42, 34, 0.12);
  --line-strong: rgba(20, 42, 34, 0.20);

  --wa: #1FA855;

  /* type */
  --font-display: 'Spectral', Georgia, 'Times New Roman', serif;
  --font-sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* rhythm */
  --maxw: 1200px;
  --gut: clamp(20px, 5vw, 64px);
  --radius: 16px;
  --shadow-sm: 0 1px 2px rgba(14, 42, 34, .06), 0 2px 8px rgba(14, 42, 34, .05);
  --shadow-md: 0 8px 30px rgba(14, 42, 34, .09);
  --shadow-lg: 0 24px 60px rgba(14, 42, 34, .14);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  max-width: 100%;
  font-family: var(--font-sans);
  color: var(--body);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }
button { font-family: inherit; cursor: pointer; }

/* ---------- layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }
.section { padding-block: clamp(64px, 9vw, 130px); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--brass);
  display: inline-block;
}
.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head h2 {
  font-size: clamp(30px, 4.4vw, 50px);
  margin-top: 18px;
}
.section-head p { margin-top: 18px; font-size: 18px; color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn svg { width: 19px; height: 19px; }
.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(20, 74, 59, .26);
}
.btn-primary:hover { background: var(--green-800); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(20, 74, 59, .32); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(31, 168, 85, .28); }
.btn-wa:hover { background: #1b9249; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(31, 168, 85, .34); }
.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--green-700); background: rgba(26,74,59,.05); transform: translateY(-2px); }
.btn-lg { padding: 18px 34px; font-size: 17px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--ivory) 86%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(14,42,34,.05);
}
.nav {
  display: flex; align-items: center; gap: 24px;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; margin-right: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink); white-space: nowrap; }
.brand-sub { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brass-deep); font-weight: 600; white-space: nowrap; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { white-space: nowrap; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--body);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1.5px; width: 0;
  background: var(--brass); transition: width .25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; color: var(--ink); }

/* mobile drawer */
.mobile-menu { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; padding-top: clamp(40px, 6vw, 72px); padding-bottom: 0; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(1100px 520px at 78% -8%, var(--green-50), transparent 60%),
    radial-gradient(800px 500px at 0% 110%, var(--sand) , transparent 62%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.hero-copy { padding-bottom: clamp(48px, 7vw, 96px); }
.hero-credential {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  padding: 7px 15px; border-radius: 999px;
  margin-bottom: 26px;
}
.hero-credential .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brass); }
.hero h1 {
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--green-700); }
.hero-sub {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--body);
  margin-top: 22px;
  max-width: 30ch;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-reassure { margin-top: 22px; font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.hero-reassure svg { width: 16px; height: 16px; color: var(--green-600); }

/* portrait */
.hero-figure { position: relative; align-self: end; }
.portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 280px 280px 24px 24px;
  overflow: hidden;
  background: var(--green-100);
  box-shadow: var(--shadow-lg);
}
.portrait-frame image-slot { width: 100%; height: 100%; }
.hero-figure::before {
  content: "";
  position: absolute; inset: -14px -14px 0 -14px;
  border-radius: 294px 294px 30px 30px;
  border: 1px solid var(--brass-soft);
  z-index: -1;
}
.hero-badge {
  position: absolute; left: -18px; bottom: 48px;
  background: var(--card);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--line);
}
.hero-badge .num { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--green-700); line-height: 1; }
.hero-badge .lbl { font-size: 12.5px; color: var(--muted); line-height: 1.25; max-width: 14ch; }

/* trust strip */
.trust {
  position: relative; z-index: 1;
  border-top: 1px solid var(--line);
  margin-top: clamp(24px, 4vw, 40px);
  background: color-mix(in srgb, var(--ivory) 70%, var(--sand));
}
.trust-inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px 40px; padding-block: 26px;
}
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .tk { font-family: var(--font-display); font-size: 15px; font-weight: 600; color: var(--green-800); }
.trust-item .tv { font-size: 13.5px; color: var(--muted); }
.trust-item svg { width: 22px; height: 22px; color: var(--brass); flex: none; }

/* ============================================================
   SERVICES  (problemas)
   ============================================================ */
.services { background: var(--ivory); }
.serv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.serv-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px 28px;
  transition: transform .25s ease, box-shadow .3s ease, border-color .3s;
  position: relative; overflow: hidden;
}
.serv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--green-200); }
.serv-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center; margin-bottom: 20px;
  border: 1px solid var(--green-100);
}
.serv-icon svg { width: 28px; height: 28px; }
.serv-card h3 { font-size: 21px; }
.serv-card p { margin-top: 10px; font-size: 15.5px; color: var(--muted); line-height: 1.55; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--sand); }
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.about-figure { position: relative; }
.about-figure .portrait-frame { border-radius: 24px 24px 240px 240px; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); background: var(--green-100); }
.about-figure::after {
  content: ""; position: absolute; right: -16px; top: -16px; width: 120px; height: 120px;
  border-top: 1.5px solid var(--brass); border-right: 1.5px solid var(--brass);
  border-radius: 0 24px 0 0;
}
.about h2 { font-size: clamp(30px, 4.4vw, 48px); margin-top: 18px; }
.about-bio { margin-top: 22px; }
.about-bio p { color: var(--body); font-size: 16.5px; margin-top: 14px; }
.about-quote {
  font-family: var(--font-display); font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px); color: var(--green-800);
  margin: 28px 0; padding-left: 22px; border-left: 3px solid var(--brass);
  line-height: 1.3;
}
.cred-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cred-chip {
  font-size: 13px; font-weight: 600; color: var(--green-800);
  background: var(--card); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
}
.cred-chip span { color: var(--brass-deep); }

/* ============================================================
   APPROACH / treatments
   ============================================================ */
.approach { background: var(--green-800); color: #DDE7E1; position: relative; overflow: hidden; }
.approach::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 90% 0%, rgba(176,134,58,.16), transparent 60%);
}
.approach .wrap { position: relative; z-index: 1; }
.approach .eyebrow { color: var(--brass-soft); }
.approach .eyebrow::before { background: var(--brass-soft); }
.approach h2 { color: #fff; font-size: clamp(30px, 4.4vw, 50px); }
.approach-lead { color: #B9CABF; font-size: 18px; margin-top: 18px; max-width: 60ch; }
.treat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: clamp(36px, 5vw, 56px); }
.treat-card {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 30px 26px;
  backdrop-filter: blur(2px);
  transition: background .3s, transform .25s, border-color .3s;
}
.treat-card:hover { background: rgba(255,255,255,.08); transform: translateY(-4px); border-color: rgba(231,211,166,.4); }
.treat-num { font-family: var(--font-display); font-size: 15px; color: var(--brass-soft); letter-spacing: .1em; }
.treat-card h3 { color: #fff; font-size: 22px; margin-top: 14px; }
.treat-card p { color: #B9CABF; font-size: 15.5px; margin-top: 12px; line-height: 1.55; }
.approach-cta { margin-top: clamp(40px, 5vw, 56px); display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.approach-cta .note { color: #98AEA2; font-size: 14px; }

/* ============================================================
   PARTICULAR / value
   ============================================================ */
.particular { background: var(--ivory); }
.particular-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 56px);
  display: grid; grid-template-columns: 1fr 1px 1fr; gap: clamp(28px, 4vw, 56px);
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.particular-card .divider { background: var(--line); width: 1px; height: 100%; }
.particular h2 { font-size: clamp(26px, 3.4vw, 40px); }
.particular p { margin-top: 16px; color: var(--muted); font-size: 16.5px; }
.value-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.value-list li { display: flex; gap: 14px; align-items: flex-start; }
.value-list .vk { width: 30px; height: 30px; border-radius: 50%; background: var(--green-50); color: var(--green-700); display: grid; place-items: center; flex: none; border: 1px solid var(--green-100); }
.value-list .vk svg { width: 16px; height: 16px; }

/* convênios strip */
.plans { margin-top: clamp(28px, 4vw, 44px); text-align: center; }
.plans-label {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}
.plans-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.plan-plate {
  min-width: 168px; min-height: 84px; padding: 16px 26px;
  background: var(--card); border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
}
.plan-plate img { max-height: 40px; max-width: 132px; width: auto; object-fit: contain; }
.plan-plate span { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--green-700); letter-spacing: .01em; }
.plan-plate small { font-size: 11.5px; color: var(--muted); }
.plan-plate.particular-plate { background: var(--green-50); border-color: var(--green-200); }
.plan-plate.particular-plate span { color: var(--green-800); }
.value-list strong { display: block; color: var(--ink); font-family: var(--font-display); font-size: 17px; font-weight: 600; }
.value-list span { font-size: 14.5px; color: var(--muted); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--sand); }

/* rating summary header */
.testi-summary {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px;
  margin-bottom: clamp(34px, 5vw, 52px);
  padding: 22px 26px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.testi-summary .g-logo { width: 40px; height: 40px; flex: none; }
.testi-summary .rate-num { font-family: var(--font-display); font-size: 34px; font-weight: 600; color: var(--ink); line-height: 1; }
.testi-summary .rate-block { display: flex; flex-direction: column; gap: 5px; }
.testi-summary .rate-block .stars svg { width: 17px; height: 17px; }
.testi-summary .rate-label { font-size: 13.5px; color: var(--muted); }
.testi-summary .summary-cta { margin-left: auto; }

.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; align-items: start; }
.testi-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: var(--shadow-sm); position: relative;
}
.testi-card .g-badge { position: absolute; top: 24px; right: 26px; width: 22px; height: 22px; }
.stars { display: flex; gap: 3px; color: #F4B400; }
.stars svg { width: 18px; height: 18px; }
.testi-card blockquote { margin: 0; font-size: 16px; color: var(--body); line-height: 1.6; font-family: var(--font-display); }
.testi-meta { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-weight: 700; font-size: 17px; color: #fff;
  font-family: var(--font-sans);
}
.testi-meta .nm { font-weight: 600; color: var(--ink); font-size: 15px; }
.testi-meta .tg { font-size: 12.5px; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; }
.testi-meta .tg svg { width: 13px; height: 13px; }
.placeholder-note {
  margin-top: 24px; font-size: 13.5px; color: var(--brass-deep);
  display: inline-flex; align-items: center; gap: 8px;
  background: #FBF3E2; border: 1px dashed var(--brass-soft); padding: 9px 16px; border-radius: 999px;
}
.placeholder-note svg { width: 15px; height: 15px; flex: none; }

/* ============================================================
   BLOG
   ============================================================ */
.blog { background: var(--ivory); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .3s;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-thumb { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-thumb.fit { display: grid; place-items: center; }
.post-thumb.fit img { object-fit: contain; }
.post-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-deep); }
.post-card h3 { font-size: 19px; margin-top: 10px; line-height: 1.2; }
.post-card p { font-size: 14.5px; color: var(--muted); margin-top: 10px; }
.post-meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); }
.post-meta .read { color: var(--green-700); font-weight: 600; }

/* ============================================================
   LOCATION + final CTA
   ============================================================ */
.location { background: var(--green-900); color: #CBD8D0; position: relative; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.loc-info { padding: clamp(48px, 6vw, 90px) clamp(28px, 5vw, 72px); }
.loc-info .eyebrow { color: var(--brass-soft); }
.loc-info .eyebrow::before { background: var(--brass-soft); }
.loc-info h2 { color: #fff; font-size: clamp(28px, 3.8vw, 46px); margin-top: 16px; }
.loc-info p { color: #A9BCB1; margin-top: 18px; font-size: 17px; max-width: 44ch; }
.loc-detail { margin-top: 30px; display: grid; gap: 18px; }
.loc-row { display: flex; gap: 14px; align-items: flex-start; }
.loc-row svg { width: 20px; height: 20px; color: var(--brass-soft); flex: none; margin-top: 3px; }
.loc-row .lk { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: #8AA095; }
.loc-row .lv { color: #E6EEE9; font-size: 16px; margin-top: 2px; }
.loc-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }
.loc-map { min-height: 380px; position: relative; }
.loc-map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(.2) contrast(1.02); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--ivory); }
.faq-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0;
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--ink);
}
.faq-q .ic { flex: none; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; transition: .3s; color: var(--green-700); }
.faq-q .ic svg { width: 15px; height: 15px; transition: transform .3s; }
.faq-item.open .faq-q .ic { background: var(--green-700); border-color: var(--green-700); color: #fff; }
.faq-item.open .faq-q .ic svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding-bottom: 24px; color: var(--muted); font-size: 16px; max-width: 60ch; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--green-900); color: #9FB3A8; padding-block: clamp(48px, 6vw, 72px) 36px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand-name { color: #fff; }
.footer-about { margin-top: 18px; font-size: 14.5px; max-width: 40ch; line-height: 1.6; }
.footer h4 { font-family: var(--font-sans); color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: #9FB3A8; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: var(--brass-soft); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 28px; font-size: 13px; color: #6F857A; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: #BFD0C6; transition: .25s; }
.footer-social a:hover { background: var(--brass); border-color: var(--brass); color: #fff; }
.footer-social svg { width: 18px; height: 18px; }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--wa); color: #fff; font-weight: 600; font-size: 15px;
  padding: 14px 20px 14px 16px; border-radius: 999px;
  box-shadow: 0 14px 34px rgba(31,168,85,.4);
  transition: transform .2s, box-shadow .25s;
}
.wa-float:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 44px rgba(31,168,85,.5); }
.wa-float svg { width: 26px; height: 26px; }
.wa-float .wa-label { white-space: nowrap; }

/* ---------- reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }
[data-reveal][data-delay="5"] { transition-delay: .40s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .serv-grid, .treat-grid, .testi-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 24px; }
  .hero-figure { max-width: 440px; margin-inline: auto; width: 100%; }
  .about-grid { grid-template-columns: 1fr; }
  .about-figure { max-width: 420px; }
  .particular-card { grid-template-columns: 1fr; }
  .particular-card .divider { display: none; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 320px; }
  .faq-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 30px; }

  /* mobile: show ONLY the compact WhatsApp pill button — no hamburger, no menu */
  .nav-links { display: none; }
  .nav-toggle { display: none; }
  .mobile-menu { display: none !important; }
  .nav-cta .btn-ghost { display: none; }
  .nav { gap: 10px; }
  .nav-cta .btn-wa { padding: 11px 16px; font-size: 14px; gap: 7px; }
  .nav-cta .btn-wa svg { width: 18px; height: 18px; }
  .mobile-menu {
    display: block; position: fixed; inset: 78px 0 auto 0; z-index: 55;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 18px var(--gut) 28px;
    transform: translateY(-120%); transition: transform .35s ease; box-shadow: var(--shadow-md);
  }
  .mobile-menu.open { transform: translateY(0); }
  .mobile-menu a { display: block; padding: 14px 0; font-size: 17px; border-bottom: 1px solid var(--line); color: var(--ink); }
  .mobile-menu .btn { margin-top: 18px; width: 100%; justify-content: center; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand-name { font-size: 16px; }
  .nav-cta .btn-wa { padding: 10px 14px; font-size: 13px; }
  .serv-grid, .treat-grid, .testi-grid, .blog-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 8px; bottom: 14px; padding: 12px 16px; }
  .wa-float .wa-label { display: none; }
  .wa-float { padding: 15px; }
  .trust-inner { gap: 16px 24px; }
}
