/* ==========================================================================
   DRA. GABRIELLI ZANOTTO — Pixel-perfect design system
   Source: Figma "Dra. Gabrielli Zanotto" — file c8x3loJQ1kDJq0bkIbfNQ9
   ========================================================================== */

/* ─── TOKENS ─────────────────────────────────────────────────────────────── */
:root {
  /* Brand palette */
  --bg:           #FDFBF8;   /* page background */
  --blush:        #F6EDE8;   /* hero bg, "por que" section, avatar bg */
  --brown:        #3F2927;   /* primary — headings, buttons, nav text */
  --brown-deep:   #6A4642;   /* CTA banner background */
  --brown-mid:    #583D38;   /* nutrologia accent card */
  --brown-muted:  #785551;   /* hero italic accent */
  --text:         #5D5E5E;   /* body text */
  --white:        #FFFFFF;
  --card-warm:    #FCF8F6;   /* warm white cards (pilares, testimonials) */
  --card-white:   #FDFDFD;   /* near-white cards (blog, location) */
  --grey-section: #F3F3F3;   /* grey section backgrounds */
  --nav-bg:       #FEFBF8;   /* navbar */
  --gold:         #B08D6A;   /* star ratings */
  --outline:      #3A2928;   /* outline button stroke */
  --near-black:   #282828;   /* testimonial quote text */
  --bg-gradient:  linear-gradient(to top, #f5ede9 50%, #fefbf9 80%);

  /* Typography */
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Raleway', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif; /* footer headings */

  /* Geometry */
  --radius:         19px;    /* cards, icon containers */
  --radius-btn:     28.5px;  /* section buttons */
  --radius-chip:    35px;    /* category chips, badges */
  --radius-nav-btn: 20px;  /* navbar CTA */

  --shadow-card: 0px 4px 24px 0px rgba(0,0,0,.08);
  --shadow-sm:   0px 4px 24px 0px rgba(0,0,0,.03);

  /* Layout */
  --container: 1200px;
  --nav-h:     110px;
  --section-y: clamp(72px, 9vw, 120px);
}

/* ─── BASE ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0 }
html { scroll-behavior: smooth }
body {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block }
a { text-decoration: none; color: inherit }
ul { list-style: none }
button { background: none; border: none; cursor: pointer; font: inherit }

/* ─── LAYOUT ──────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 40px;
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px }

.col-2 { display: grid; grid-template-columns: repeat(2, 1fr) }
.col-25 { display: grid; grid-template-columns: 400px 1fr; align-items: center; }
.col-52 { display: grid; grid-template-columns: 1fr 400px; align-items: center; }
.items-start { align-items: start }

/* spacing utilities */
.mt-3 { margin-top: 12px }
.mt-4 { margin-top: 24px }
.mt-5 { margin-top: 40px }
.mt-6 { margin-top: 64px }
.mx-auto { margin-inline: auto }
.maxw-720 { max-width: 720px }
.text-center { text-align: center }
.text-muted { color: var(--text); opacity: .7 }

/* ─── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
.display, h1 {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: .93;
  color: var(--brown);
}
em {
  color: var(--brown-muted);
}
.h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 400;
  line-height: 1.13;
  color: var(--brown);
}
h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.045;
  color: var(--brown);
}
h3, .h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 33px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
}
h4 {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  color: var(--brown);
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  /* line-height: 38px; */
  text-wrap-style: pretty;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
}
.eyebrow--light { color: rgba(253,251,248,.75) }

.lead {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.8vw, 23px);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
}
.more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown);
  transition: gap .2s;
}
.more:hover { gap: 14px }

/* ─── BUTTONS ─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-btn);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  padding: 17px 36px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88 }
.btn:active { transform: scale(.98) }
.btn-primary  { background: var(--brown); color: var(--bg) }
.btn-ghost    { background: transparent; border: none; color: var(--brown); padding: 0; }
.btn-outline  { background: transparent; border: 1px solid var(--brown); color: var(--brown); }
.btn-gold     { background: var(--brown); color: var(--bg) }
.btn-block    { width: 100%; justify-content: center }
.btn-lg       { padding: 17px 40px }
.btn-row {
  display: flex;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}
.btn-row--center {
  justify-content: center;
}

/* Navbar "Agendar" button (smaller pill) */
.btn-wa {
  background: var(--brown);
  color: var(--bg);
  border-radius: var(--radius-nav-btn);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  gap: 8px;
  line-height: 1;
}

/* ─── SECTION BASE ────────────────────────────────────────────────────────── */
.section       { padding-block: var(--section-y) }
.section--blush { background: var(--blush) }
.section--soft  { background: var(--grey-section) }
.section--tight { padding-block: calc(var(--section-y) * .6) }

.section-head           { max-width: 660px }
.section-head--center   { max-width: 860px; margin-inline: auto; text-align: center }

/* ─── NAVBAR ──────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  background: var(--nav-bg);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: box-shadow .3s;
}
.site-header.is-scrolled {
  box-shadow: 0 1px 0 rgba(63,41,39,.06), 0 4px 16px rgba(63,41,39,.04);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  width: 100%;
  height: 100%;
}
.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header__logo img { height: 69px; width: auto }
.logo--white { display: none }

.nav {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-left: 40px;
  margin-right: 40px;
}
.nav a {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--brown);
  transition: opacity .2s;
}
.nav a:hover, .nav a.is-active { opacity: .65 }

.header-actions { display: flex; align-items: center; gap: 16px }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg) }
.nav-toggle.is-open span:nth-child(2) { opacity: 0 }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg) }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(63,41,39,.35);
  backdrop-filter: blur(4px);
}
.mobile-menu.is-open { display: block }
.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 100vw);
  height: 100%;
  background: var(--bg);
  padding: calc(var(--nav-h) + 24px) 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__panel a {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 400;
  color: var(--brown);
  padding: 12px 0;
  border-bottom: 1px solid rgba(63,41,39,.08);
}
.mobile-menu__panel .btn { margin-top: 24px; font-size: 16px }

/* ─── HOME HERO ───────────────────────────────────────────────────────────── */
.home-hero {
  position: relative;
  background: var(--bg-gradient);
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
/* photo on the right, bleeds off edge */
.home-hero__img-col {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  height: calc(100% - 120px);
  pointer-events: none;
}
.home-hero__img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
/* gradient fade from blush left to transparent right (masks photo on left edge) */
.home-hero__img-col::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, var(--blush) 0%, rgba(246,237,232,0) 60%); */
  z-index: 1;
}
/* fade bottom of photo */
.home-hero__img-col::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  /* background: linear-gradient(180deg, rgba(246,237,232,0) 0%, rgba(246,237,232,.85) 100%); */
  z-index: 1;
}
.home-hero .btn-row {
  margin-top: 50px;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 80px;
  width: 100%;
}
.home-hero__content {
  max-width: 80%;
}
.home-hero__content h1 {
  margin-top: 8px;
  margin-bottom: 40px;
}

.home-hero__content p {
  max-width: 80%;
  font-size: 18px;
}

/* ─── BIO / QUEM É ELA ────────────────────────────────────────────────────── */
/* Image LEFT, text RIGHT (matches Figma) */
.bio-grid {
  display: grid;
  grid-template-columns: 430px 1fr;
  gap: 100px;
  align-items: center;
}
.bio-grid > :first-child { order: 2 }  /* text goes to right column */
.bio-grid__media { order: 1; align-self: flex-end; }          /* image goes to left column */
.bio-grid__media img {
  width: 100%;
  height: 100%;
  max-height: 990px;
  object-fit: cover;
  object-position: top center;
}

.bio-credentials {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bio-credentials li {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 8px;
  align-items: center;
}
.bio-credentials li .chk-circle {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  /* font-family: var(--font-sans); */
  font-weight: bold;
  font-size: 12px;
  color: var(--brown);
  line-height: 1;
}
.bio-credentials li span.cred-text {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 24px;
  color: var(--text);  
}
/* SVG check icon version (used in home.php) */
.bio-credentials li svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: var(--blush);
  border-radius: 50%;
  padding: 7px;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
  display: block;
}
.bio-credentials li:not(:has(svg)) {
  /* fallback for browsers without :has */
}

/* ─── CARDS ───────────────────────────────────────────────────────────────── */
.card {
  background: var(--card-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card-hover {
  transition: box-shadow .25s, transform .25s;
  color: inherit;
  text-decoration: none;
}
.card-hover:hover {
  box-shadow: 0px 8px 36px 0px rgba(0,0,0,.12);
  transform: translateY(-3px);
}

/* Icon badge (70×70, rounded square, blush bg) */
.icon-badge {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  background: var(--card-warm);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--brown);
}
.icon-badge svg { width: 37px; height: 37px }

/* ─── SPECIALTY CARDS ─────────────────────────────────────────────────────── */
.specialty-card {
  background: var(--card-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow .25s, transform .25s;
  color: var(--brown);
  text-decoration: none;
}
.specialty-card:hover {
  box-shadow: 0px 8px 36px 0px rgba(0,0,0,.12);
  transform: translateY(-3px);
}
.specialty-card__icon {
  width: 102px;
  height: 102px;
  border-radius: var(--radius);
  background: var(--blush);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--brown);
  opacity: .75;
}
.specialty-card__icon svg { width: 56px; height: 56px }
.specialty-card h3 {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
  margin-top: 4px;
  margin-bottom: 20px;
}
.specialty-card p {
  font-family: var(--font-sans);
  font-size: 18px;  
  color: var(--text);
  flex: 1;
}
.specialty-card .more { margin-top: auto }

/* ─── STATS ROW ───────────────────────────────────────────────────────────── */
.stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 100px;
}
.stat-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
}
.stat-sep {  
  width: 1px;
  height: 56px;
  background: rgba(0,0,0,.2);
}
.stat-mini__num {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 66px);
  font-weight: 600;
  line-height: 1;
  color: var(--brown);
}
.stat-mini__label {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ─── TESTIMONIAL GRID ────────────────────────────────────────────────────── */
.tgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

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

.tcard {
  background: var(--card-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tcard__stars {
  font-size: 18px;
  color: #C8975A;
  letter-spacing: 2px;
}

.tcard__quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.4vw, 21px);
  font-style: italic;
  line-height: 1.4;
  color: var(--near-black);
  flex: 1;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding-top: 8px;
  /* border-top: 1px solid rgba(63,41,39,.08); */
}

.tcard__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #E0D5D0;
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.tcard__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tcard__name {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--near-black);
}

.tcard__city {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text);
  opacity: .75;
}

@media (max-width: 700px) {
  .tgrid { grid-template-columns: 1fr }
  .tgrid.grid-3 { grid-template-columns: 1fr }
  .tcard { padding: 28px 24px }
}

/* ─── BLOG FEATURED (primeiro post em destaque) ───────────────────────────── */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--card-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  color: var(--brown);
  text-decoration: none;
  transition: box-shadow .25s, transform .25s;
  min-height: 420px;
}
.blog-featured:hover {
  box-shadow: 0px 8px 36px 0px rgba(0,0,0,.12);
  transform: translateY(-3px);
}
.blog-featured__img {
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blush);
}
.blog-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-featured:hover .blog-featured__img img { transform: scale(1.04) }
.blog-featured__body {
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.blog-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--brown);
}
.blog-featured__desc {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.65;
  color: var(--text);
}

/* ─── BLOG CARDS ──────────────────────────────────────────────────────────── */
.blog-card {
  background: var(--card-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--brown);
  text-decoration: none;
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover {
  box-shadow: 0px 8px 36px 0px rgba(0,0,0,.12);
  transform: translateY(-3px);
}
.blog-card__img {
  width: 100%;
  height: 257px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--blush);
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card__img img { transform: scale(1.04) }
.blog-card__img--ph { background: var(--blush) }

.blog-card__body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.blog-card__cat {
  display: inline-block;
  background: var(--blush);
  border-radius: var(--radius-chip);
  padding: 0 12px;
  height: 28px;
  line-height: 28px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown);
  white-space: nowrap;
}
.blog-card__time {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .7;
}
.blog-card__body h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--brown);
}
.blog-card__body p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}

/* ─── LOCATIONS GRID ──────────────────────────────────────────────────────── */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.location-card {
  background: var(--card-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 340px;
}
.location-card__icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius);
  background: var(--blush);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--brown);
  flex-shrink: 0;
}
.location-card__icon svg { width: 34px; height: 34px }
.location-card h4 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--brown);
}
.location-card p {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 29px;
  color: var(--text);
  flex: 1;
}
.location-card .btn { align-self: flex-start; font-size: 18px; padding: 13px 28px }

/* ─── LOCATION CARDS (image-top) ──────────────────────────────────────────── */
.loc-card {
  background: var(--card-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.loc-card__img {
  width: 100%;
  height: 208px;
  overflow: hidden;
  flex-shrink: 0;
}
.loc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.loc-card__img--ph {
  background: var(--blush);
}
.loc-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.loc-card__title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.35;
  color: var(--brown-deep);
  margin: 0;
}
.loc-card__text {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  flex: 1;
  margin: 0;
}
.loc-card__link {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  margin-top: auto;
}
.loc-card__link:hover { opacity: .75 }

/* ─── CTA BANNER ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--brown-deep);
  padding: clamp(48px, 6vw, 80px) clamp(40px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 100px;
}
.cta-banner img {
  position: absolute;
  bottom: -100px;
  right: 0;
  max-width: 100%;
  display: block;
}
.cta-banner .container {
  position: relative;
}
.cta-banner .eyebrow { color: rgba(253,251,248,.75) }
.cta-banner h2 {
  color: var(--bg);
  margin-top: 12px;
  margin-inline: auto;
  max-width: 760px;
}
.cta-banner p {
  font-family: var(--font-sans);
  font-size: 23px;
  line-height: 38px;
  color: rgba(253,251,248,.85);
  margin-top: 16px;
  max-width: 640px;
  margin-inline: auto;
}
.cta-banner .btn {
  margin-top: 40px;
  background: var(--bg);
  color: var(--brown-deep);
  font-weight: 600;
}
.cta-banner .btn:hover { opacity: .92 }

/* ─── ACCORDION / FAQ ─────────────────────────────────────────────────────── */
.accordion { display: flex; flex-direction: column; gap: 0 }
.acc-item {
  border: 1px solid rgba(58,41,40,.2);
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
}
.acc-head {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 400;
  color: var(--brown);
  text-align: left;
  transition: background .2s;
}
.acc-head:hover { background: rgba(246,237,232,.5) }
.acc-ico { flex-shrink: 0; transition: transform .3s; color: var(--brown) }
.acc-item.is-open .acc-ico { transform: rotate(45deg) }
.acc-body { display: none; padding: 0 28px }
.acc-item.is-open .acc-body { display: block }
.acc-body__pad {
  padding-bottom: 24px;
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 29px;
  color: var(--text);
}

/* ─── CHECKLIST (landing para quem) ──────────────────────────────────────── */
.checklist { display: flex; flex-direction: column; gap: 12px }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(58,41,40,.2);
  border-radius: 20px;
  padding: 20px 24px;
}
.checklist li .chk {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blush);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--brown);
}
.checklist li .chk svg { width: 14px; height: 14px; stroke-width: 2.5 }
.checklist li > span:last-child {
  font-family: var(--font-sans);
  font-size: 21px;
  line-height: 29px;
  color: var(--text);
  padding-top: 1px;
}

/* ─── LANDING PAGE HERO ───────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  background: var(--blush);
  min-height: 860px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
.lp-hero__img {
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  height: 100%;
  pointer-events: none;
}
.lp-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.lp-hero__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
}
.lp-hero__img-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.lp-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 72px;
  width: 100%;
}
.lp-hero__content { max-width: 620px }
.lp-hero__content .display { color: var(--brown) }
.lp-hero__bar {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .8;
}

/* ─── BLOG — PAGE HERO ────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  background: var(--bg-gradient);
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 64px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg) 0%, rgba(253,251,248,0) 100%);
  pointer-events: none;
}
.page-hero.post-blog-hero {
  background: none;
  padding-top: 120px;
}
.page-hero.post-blog-hero::before {
  background: none;
}

.page-hero .container { position: relative; z-index: 1 }
.page-hero .display { max-width: 780px }

/* Post hero */
.post-hero {
  padding-bottom: 0;
}
.post-hero .container {
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .3;
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(253,251,248,.9) 0%, rgba(253,251,248,.7) 100%);
}

/* ─── POST single-column layout ──────────────────────────────────────────── */
.post-hdr { padding-bottom: 0 }
.post-hdr .container {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
}
.post-hdr__title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--brown);
  margin-top: 16px;
}
.post-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 50px;
  opacity: .8;
}
.post-byline span + span::before { content: " · " }

.post-single {
  max-width: 940px;
  margin: 0 auto;
}
.post-cover {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 48px;
}
.post-author {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--card-white);
  border-radius: var(--radius);
  padding: 32px;
  margin-top: 56px;
  box-shadow: var(--shadow-card);
}
.post-author__img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  object-position: top center;
  background-color: var(--blush);
}
.post-author__name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 8px;
}
.post-author__bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.post-author__link {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--brown);
  text-underline-offset: 3px;
}

/* Continue lendo header row */
.continue-lendo__hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 20px;
}
.breadcrumb .sep { opacity: .4 }
.breadcrumb a { opacity: .65 }
.breadcrumb a:hover { opacity: 1 }

.pill {
  display: inline-block;
  background: var(--blush);
  border-radius: var(--radius-chip);
  padding: 0 16px;
  height: 37px;
  line-height: 37px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brown);
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 21px;
  line-height: 38px;
  color: var(--text);
  margin-top: 16px;
}

/* Category filter chips */
.cat-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.cat-chips a {
  display: inline-flex;
  align-items: center;
  height: 37px;
  padding: 0 20px;
  border-radius: var(--radius-chip);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brown);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.cat-chips a:hover { background: rgba(63,41,39,.08) }
.cat-chips a.is-active { background: var(--brown); color: var(--bg) }

/* ─── POST LAYOUT ─────────────────────────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}
.post-aside {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}
.post-aside .card {
  background: var(--card-white);
}
.post-aside .card p {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.3;
}
.post-aside .card .lead {
  font-size: 19px;
  line-height: 29px;
}

.pillar {
  h3 {
    margin: 25px 0 10px;
  }
}

.p-relative {
  position: relative;

  .bg-1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    max-width: 50%;
    max-height: 100%;
  }

  .bg-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    max-width: 50%;
    max-height: 100%;
  }
}

.z2 {position: relative;z-index: 2;}

/* ─── PROSE (post body) ───────────────────────────────────────────────────── */
.prose {
  font-family: var(--font-sans);
  font-size: 19px;
  line-height: 29px;
  color: var(--text);
  max-width: 100%;
}
.prose h2, .prose h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--brown);
  margin-top: 48px;
  margin-bottom: 16px;
}
.prose h2 { font-size: clamp(32px, 3.6vw, 46px); line-height: 1.3 }
.prose h3 { font-size: clamp(26px, 3vw, 36px); line-height: 1.35 }
.prose p { margin-bottom: 20px }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 20px }
.prose li { margin-bottom: 8px }
.prose strong { font-weight: 600; color: var(--brown) }
.prose a { color: var(--brown); text-decoration: underline; text-underline-offset: 3px }
.prose img { border-radius: var(--radius); margin-block: 32px }

/* ─── FOOTER ──────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--brown);
  color: rgba(255,255,255,.85);
}
.site-footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 64px;
  padding-top: 72px;
  padding-bottom: 56px;
}
.site-footer__brand p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  margin-top: 24px;
  max-width: 320px;
}
.site-footer__logo img { height: 120px; width: auto }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col h4.mt-5 { margin-top: 36px }
.footer-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 22px;
  font-weight: 300;
  color: rgba(255,255,255,.75);
  padding-block: 5px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--white) }
.footer-col a i { font-size: 15px; opacity: .7; flex-shrink: 0; width: 16px; text-align: center }

.social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.social a {  
  color: var(--white);
  font-size: 25px;
  transition: background .2s;
  padding: 0;
}

.social a i {
  font-size: 20px;
}
.social a:hover { color: rgba(255,255,255,.2) }

.site-footer__bar {
  border-top: 1px solid rgba(253,251,248,.1);
  padding-block: 20px;
}
.site-footer__bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer__bar span,
.site-footer__bar a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  line-height: 23px;
  color: rgba(253,251,248,.55);
}
.site-footer__bar a:hover { color: var(--white) }

/* ─── PLACEHOLDER (no image yet) ──────────────────────────────────────────── */
.ph {
  background: var(--blush);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.ph__label {
  font-family: var(--font-sans);
  font-size: 15px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown);
  opacity: .5;
}

/* ─── SCROLL REVEAL ───────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal[data-delay="2"] { transition-delay: .12s }
.reveal[data-delay="3"] { transition-delay: .24s }
.reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ─── UTILITY OVERRIDES ───────────────────────────────────────────────────── */
/* Map legacy CSS vars used in inline styles on blog_post.php */
:root {
  --font-head: var(--font-serif);
  --ink: var(--brown);
  --muted: var(--text);
}

/* Pages that start with a section (not a hero) need top padding for fixed nav */
.page-top-offset { padding-top: var(--nav-h) }

#sobre {
  padding-bottom: 0;
}

.bio-grid .bio-text {
  padding-bottom: 100px;
}

.bgap {
  gap: 80px;
}

/* ─── WHATSAPP FLOAT ──────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 40px;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

/* ─── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bio-grid {
    grid-template-columns: 340px 1fr;
    gap: 48px;
  }
  .post-layout {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
  .site-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .blog-featured {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .blog-featured__img { height: 300px }
  .blog-featured__body { padding: 36px 32px }
}

@media (max-width: 900px) {
  .nav { display: none }
  .nav-toggle { display: flex }

  .lp-change-grid__img {
    grid-row: 2;
  }

  .grid-2, .grid-3 { grid-template-columns: 1fr }
  .col-2 { grid-template-columns: 1fr }
  .col-25 { grid-template-columns: 1fr; }
  .col-52 { grid-template-columns: 1fr; }
  .col-25 .img-w {
    grid-row: 2;
  }

  .home-hero { min-height: 70vh }
  .home-hero__inner {
    padding-top: 150px;
  }
  .home-hero__img-col { width: 110%; opacity: 1 }
  .home-hero__img-col::before { background: linear-gradient(to right, rgba(255,255,255,.9) 40%, rgba(255,255,255,0) 100%) }
  .home-hero__content { max-width: 80% }
  .home-hero__img-col img { object-position: top left; width: 100%;
    margin-left: auto; }

  .bio-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .bio-grid .bio-text {
    padding-bottom: 40px;
  }
  .bio-grid > :first-child { order: 1 }
  .bio-grid__media { order: 2 }
  .bio-grid__media img { max-height: 600px; width: 100% }

  .lp-hero { min-height: 70vh }
  .lp-hero__img { width: 100%; opacity: .2 }
  .lp-hero__content { max-width: 100% }

  .locations-grid { grid-template-columns: 1fr }

  .post-layout {
    grid-template-columns: 1fr;
  }
  .post-aside { position: static }

  .post-author { flex-direction: column }
  .post-hdr__title { max-width: 100% }

  .site-footer__main { grid-template-columns: 1fr 1fr }

  .bgap {
    gap: 50px;
  }

  .stats-row {
    justify-content: center;
  }

  .stat-sep {
    display: none;
  }
}

@media (max-width: 600px) {
  :root { --section-y: 56px }

  .container { padding-inline: 20px }

  /* .display, h1 { font-size: 44px; line-height: 1.0 } */
  /* h1 { font-size: 36px } */
  h2 { font-size: 40px }

  .specialty-card h3 { font-size: 26px }
  .specialty-card p { font-size: 18px; line-height: 1.6 }

  .stats-row { gap: 24px }
  .stat-mini + .stat-mini::before { left: -12px; height: 40px }

  .cat-chips { gap: 6px }
  .cat-chips a { font-size: 13px; padding: 0 14px }

  .blog-featured__body { padding: 28px 24px }

  .site-footer__main { grid-template-columns: 1fr }
  .site-footer__bar .container { flex-direction: column; text-align: center }

  .btn { font-size: 17px; padding: 15px 28px }
  .btn.btn-ghost {
    padding: 0;
  }
  .btn-row { flex-direction: column; align-items: flex-start }
  .site-header .btn.btn-wa {
    padding: 10px 20px;
    font-size: 13px;
  }
  .home-hero__content p {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 12px;
  }

  .pillar {
    text-align: center;
  }

  .pillar .icon-badge {
    margin: auto;
  }
}

/* ==========================================================================
   LANDING PAGES — additional components
   ========================================================================== */

/* ─── Hero — home-gradient style (overrides .lp-hero defaults) ────────────── */
.lp-hero--home {
  background: var(--bg-gradient);
  min-height: 100vh;
}
.lp-hero--home .lp-hero__img {
  top: auto;
  bottom: 0;
  width: 50%;
  height: calc(100% - var(--nav-h));
}

/* ─── Sticky left column (title sticks while content scrolls) ─────────────── */
.lp-sticky-col {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

/* ─── Process grid (sticky title | scrollable steps) ─────────────────────── */
.lp-process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lp-process-grid__img {
  border-radius: var(--radius);
  overflow: hidden;
}
.lp-process-grid__img img {
  width: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  max-height: 520px;
}

/* ─── Why grid (nutrologia: text+pillars | image) ─────────────────────────── */
.lp-why-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.lp-why-grid__img {
  border-radius: var(--radius);
  overflow: hidden;
}
.lp-why-grid__img img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

/* ─── Change grid (nutrologia: image | text) ──────────────────────────────── */
.lp-change-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}
.lp-change-grid__img {
  border-radius: var(--radius);
  overflow: hidden;
}
.lp-change-grid__img img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.section--dark { background: var(--brown); }
.section--dark h2,
.section--dark .h2 { color: var(--bg); }
.section--dark p,
.section--dark .lead { color: rgba(253,251,248,.85); }
.section--dark .btn-gold {
  background: var(--bg);
  color: var(--brown);
}

.quote-sec {
  background-image: url('../img/gz-full.png');
  background-size: 70%;
  background-repeat: no-repeat;
  background-position: center;
}

/* ─── Pull quote ──────────────────────────────────────────────────────────── */
.lp-pullquote {  
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--bg);
  text-align: center;
  max-width: 860px;
  margin-inline: auto;
  display: block;
}
.lp-pullquote__mark {
  font-family: var(--font-serif);
  font-size: 100px;
  line-height: 0.5;
  vertical-align: -0.35em;
  color: rgba(255,255,255,.2);
  display: inline-block;
}
.lp-pullquote__mark--close { margin-left: 4px; }

/* ─── Process list (numbered steps) ──────────────────────────────────────── */
.process-list { list-style: none; }
.process-list__item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(58,41,40,.12);
}
.process-list__item:first-child { padding-top: 0; }
.process-list__num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brown);
  box-shadow: var(--shadow-sm);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--bg);
  /* line-height: 1; */
}
.process-list__item strong {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 600;
  color: var(--brown);
  display: block;
  margin-bottom: 4px;
}
.process-list__item p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  margin: 0;
}

/* ─── Testimonial carousel ────────────────────────────────────────────────── */
.tcarousel { position: relative; }
.tcarousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tcarousel__track::-webkit-scrollbar { display: none; }
.tcarousel__slide {
  flex-shrink: 0;
  width: 100%;
  scroll-snap-align: start;
}
.tquote {
  background: var(--card-warm);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 48px 56px 40px;
  max-width: 860px;
  margin-inline: auto;
}
.tquote__mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: .6;
  color: var(--blush);
  display: block;
  margin-bottom: 16px;
}
.tquote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--near-black);
}
.tquote__author {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--brown);
  margin-top: 24px;
  opacity: .85;
}
.tnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.tnav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-warm);
  box-shadow: var(--shadow-sm);
  display: grid;
  place-items: center;
  color: var(--brown);
  border: 1px solid rgba(58,41,40,.15);
  transition: background .2s;
}
.tnav button:hover { background: var(--blush); }
.tdots { display: flex; gap: 8px; align-items: center; }
/* dots are <button> elements injected by zanotto.js */
.tdots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(63,41,39,.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.tdots button.is-active { background: var(--brown); transform: scale(1.25); }

/* ─── Blue icon badge variant ─────────────────────────────────────────────── */
.icon-badge--blue {
  background: rgba(200,225,255,.35);
  color: #2563EB;
}

/* ─── Ghost-light button (transparent with light borders for dark bg) ──────── */
.btn-ghost-light {
  background: transparent;
  border: 1px solid rgba(253,251,248,.5);
  color: rgba(253,251,248,.95);
}
.btn-ghost-light:hover { background: rgba(253,251,248,.12); opacity: 1; }

/* ─── Responsive — LP additions ───────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-hero--home .lp-hero__img { width: 100%; top: 0; bottom: 0; height: 100%; }
  .lp-process-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-why-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-change-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-sticky-col { position: static; }
  .tquote { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .tquote { padding: 24px 20px; }
  .process-list__num { width: 36px; height: 36px; font-size: 18px; }
  .process-list__item { gap: 16px; padding: 20px 0; }
}
