/* ═══════════════════════════════════════════════
   LÓTHUS — styles.css  (dark + light themes)
═══════════════════════════════════════════════ */

/* ─── DARK THEME ─── */
.theme-dark {
  --bg:           #0c0c10;
  --bg-alt:       #0f0f14;
  --surface:      #151519;
  --surface-2:    #1e1e26;
  --border:       rgba(212,168,67,.16);
  --border-soft:  rgba(255,255,255,.05);
  --text:         #ede8da;
  --text-muted:   #88806e;
  --text-dim:     #504840;
  --gold:         #d4a843;
  --gold-l:       #f5d98a;
  --gold-d:       #a07820;
  --nav-bg:       rgba(12,12,16,.9);
  --card-hover:   #1e1e26;
  --hero-bg:      #0c0c10;
  --section-line: rgba(212,168,67,.12);
  --map-filter:   grayscale(100%) invert(.85) contrast(.8);
  --logo-g1:      #fae99a;
  --logo-g2:      #d4a843;
  --logo-g3:      #8a6218;
  color-scheme: dark;
}

/* ─── LIGHT THEME ─── */
.theme-light {
  --bg:           #faf6ef;
  --bg-alt:       #f2ebe0;
  --surface:      #ffffff;
  --surface-2:    #f7f2e8;
  --border:       rgba(160,120,40,.2);
  --border-soft:  rgba(160,120,40,.1);
  --text:         #1a1510;
  --text-muted:   #5c5040;
  --text-dim:     #9a8870;
  --gold:         #b8841e;
  --gold-l:       #d4a843;
  --gold-d:       #7a5510;
  --nav-bg:       rgba(250,246,239,.94);
  --card-hover:   #f5efe3;
  --hero-bg:      #faf6ef;
  --section-line: rgba(160,120,40,.15);
  --map-filter:   grayscale(40%) sepia(.15) contrast(.9);
  --logo-g1:      #f5d070;
  --logo-g2:      #c4941e;
  --logo-g3:      #7a5010;
  color-scheme: light;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background .3s, color .3s;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold-d); border-radius: 2px; }

/* ─── CURSOR (desktop) ─── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: 36px; height: 36px;
  border: 1px solid rgba(212,168,67,.45);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, border-color .2s;
  mix-blend-mode: difference;
}
.cursor-dot {
  position: fixed; top: 0; left: 0; z-index: 10000;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%,-50%);
}
.cursor.hover { width: 54px; height: 54px; border-color: var(--gold); }
@media (hover:none) { .cursor,.cursor-dot { display: none; } }

/* ─── CONTAINER ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: .13em;
  text-transform: uppercase;
  font-size: .75rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-d), var(--gold), var(--gold-l));
  color: #0c0c10;
  padding: .75rem 1.75rem;
  font-weight: 400;
  box-shadow: 0 4px 24px rgba(212,168,67,.2);
}
.btn--gold:hover {
  box-shadow: 0 8px 40px rgba(212,168,67,.4);
  transform: translateY(-2px);
  filter: brightness(1.07);
}
.btn--outline {
  border: 1px solid var(--border);
  color: var(--gold);
  padding: .75rem 1.75rem;
}
.btn--outline:hover {
  border-color: var(--gold);
  background: rgba(212,168,67,.06);
  transform: translateY(-1px);
}
.btn--lg  { padding: .95rem 2.25rem; font-size: .8rem; }
.btn--xl  { padding: 1.15rem 3rem;   font-size: .82rem; letter-spacing: .16em; }
.btn--sm  { padding: .5rem 1.1rem;   font-size: .7rem; }
.btn--full { width: 100%; justify-content: center; }

/* ═══ SECTION TYPOGRAPHY ═══ */
.section-eyebrow {
  font-size: .62rem;
  font-weight: 300;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-desc { font-size: .88rem; color: var(--text-muted); }
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }

/* ═══ REVEAL ANIMATION ═══ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal--delay-1 { transition-delay: .1s; }
.reveal--delay-2 { transition-delay: .2s; }
.reveal--delay-3 { transition-delay: .3s; }
.reveal--delay-4 { transition-delay: .4s; }

/* ═══ HEADER ═══ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 72px;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: var(--nav-bg);
  border-color: var(--border);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  gap: 2rem;
}

/* ─── LOGO ─── */
.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo__icon {
  width: 36px;
  height: 30px;
  flex-shrink: 0;
}
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .18em;
  background: linear-gradient(135deg, var(--logo-g1), var(--logo-g2), var(--logo-g3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo__sub {
  font-family: 'Raleway', sans-serif;
  font-size: .56rem;
  font-weight: 300;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 3px;
}

/* Real logo image */
.logo__img {
  height: 56px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.24));
}
.header .logo__img {
  height: 62px;
}
.footer .logo__img {
  height: 54px;
}
.theme-dark .logo__img {
  filter: drop-shadow(0 8px 22px rgba(0,0,0,.45)) drop-shadow(0 0 14px rgba(212,168,67,.18));
}
.logo__icon,
.logo__text {
  display: none;
}

/* ─── NAV ─── */
.nav__list {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__link {
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color .3s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav__link:hover,.nav__link.active { color: var(--gold); }
.nav__link:hover::after,.nav__link.active::after { width: 100%; }

/* ─── NAV TOGGLE ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}
.nav-toggle span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text);
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu__list {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.75rem;
}
.mobile-menu__link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text);
  transition: color .3s;
  letter-spacing: .04em;
}
.mobile-menu__link:hover { color: var(--gold); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
  max-width: 100vw;
  background: var(--hero-bg);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
/* dark bg elements */
.theme-dark .hero__bg {
  background:
    radial-gradient(ellipse 70% 60% at 72% 45%, rgba(212,168,67,.055) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 18% 80%, rgba(212,168,67,.025) 0%, transparent 65%),
    var(--bg);
}
/* light bg elements */
.theme-light .hero__bg {
  background:
    radial-gradient(ellipse 80% 60% at 75% 40%, rgba(196,148,30,.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 10% 90%, rgba(196,148,30,.04) 0%, transparent 60%),
    var(--bg);
}
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none;
}
.hero__orb--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(212,168,67,.09) 0%, transparent 70%);
  top: -80px; right: -60px;
  animation: float-orb 11s ease-in-out infinite;
}
.hero__orb--2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(160,120,32,.06) 0%, transparent 70%);
  bottom: -40px; left: 8%;
  animation: float-orb 15s ease-in-out infinite reverse;
}
.theme-light .hero__orb--1 {
  background: radial-gradient(circle, rgba(196,148,30,.1) 0%, transparent 70%);
}
.theme-light .hero__orb--2 {
  background: radial-gradient(circle, rgba(196,148,30,.06) 0%, transparent 70%);
}
@keyframes float-orb {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(20px,-20px); }
}
.hero__grain {
  position: absolute; inset: 0; pointer-events: none;
  opacity: .02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── HERO INNER GRID ─── */
.hero__inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 4rem clamp(1.25rem,5vw,3rem) 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero__eyebrow {
  font-size: .63rem; font-weight: 300;
  letter-spacing: .38em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.hero__eyebrow::before {
  content: ''; width: 28px; height: 1px;
  background: var(--gold); display: block; flex-shrink: 0;
}
.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  font-weight: 300; line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero__title em { font-style: italic; color: var(--gold); display: block; }
.hero__desc {
  font-size: .9rem; color: var(--text-muted);
  margin-bottom: 2.5rem; line-height: 1.85;
  max-width: 480px;
}
.hero__desc strong { color: var(--text); font-weight: 400; }
.hero__actions {
  display: flex; gap: .9rem;
  flex-wrap: wrap; margin-bottom: 2.75rem;
}
.hero__stats {
  display: flex; align-items: center; gap: 1.5rem;
}
.hero__stat { display: flex; flex-direction: column; gap: .2rem; }
.hero__stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem; font-weight: 300;
  color: var(--gold); line-height: 1;
}
.hero__stat-label {
  font-size: .58rem; font-weight: 300;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--text-dim);
}
.hero__stat-divider {
  width: 1px; height: 32px; background: var(--border);
}

/* ─── HERO VISUAL (desktop card) ─── */
.hero__visual {
  display: flex; justify-content: center; align-items: center;
}
.hero__card-wrap {
  position: relative;
  width: 300px; height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.hero__badge {
  position: absolute; top: 24px; right: -16px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .5rem 1rem;
  font-size: .64rem; font-weight: 300;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: .4rem;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  animation: badge-float 5s ease-in-out infinite;
}
@keyframes badge-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.hero__lotus-wrap {
  width: min(300px, 84vw);
  height: 190px;
  display: flex; align-items: center; justify-content: center;
}
.hero__brand-img {
  width: min(320px, 82vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 70px rgba(0,0,0,.22));
}
.theme-dark .hero__brand-img {
  filter: drop-shadow(0 24px 80px rgba(0,0,0,.5)) drop-shadow(0 0 34px rgba(212,168,67,.2));
}
.theme-light .hero__brand-img {
  filter: drop-shadow(0 22px 60px rgba(92,74,48,.14));
}
.hero__lotus {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 36px rgba(212,168,67,.32));
  animation: lotus-spin 24s linear infinite;
  display: none;
}
@keyframes lotus-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero__info-card {
  position: absolute; bottom: 20px; left: -28px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .9rem 1.25rem;
  font-size: .71rem; color: var(--text-muted);
  line-height: 1.65;
  display: flex; gap: .75rem; align-items: flex-start;
  backdrop-filter: blur(12px);
  max-width: 210px;
  animation: badge-float 7s ease-in-out infinite 1.5s;
}

/* ─── HERO MOBILE LOTUS (shown only on mobile) ─── */
.hero__mobile-lotus {
  display: none;
  justify-content: center; margin: 1.5rem 0;
}
.hero__mobile-lotus svg {
  width: 120px; height: 100px;
  filter: drop-shadow(0 0 24px rgba(212,168,67,.3));
  display: none;
}

/* ─── HERO SCROLL INDICATOR ─── */
.hero__scroll {
  position: absolute; bottom: 1.75rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column;
  align-items: center; gap: .6rem;
  color: var(--text-dim); font-size: .58rem;
  letter-spacing: .2em; text-transform: uppercase;
  z-index: 1;
}
.hero__scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-line 2.2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%   { transform: scaleY(0) translateY(0); transform-origin: top; }
  50%  { transform: scaleY(1); }
  100% { transform: scaleY(0) translateY(44px); transform-origin: bottom; }
}

/* ═══ SECTION DIVIDER ═══ */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--section-line), transparent);
}

/* ═══ SOBRE ═══ */
.sobre {
  padding: clamp(4.5rem,10vw,8.5rem) 0;
  background: var(--bg-alt);
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.sobre__text {
  font-size: .89rem; color: var(--text-muted);
  line-height: 1.9; margin-bottom: 1.25rem;
}
.sobre__pillars {
  display: flex; flex-direction: column; gap: .65rem; margin-top: 2rem;
}
.sobre__pillar {
  display: flex; align-items: center; gap: .75rem;
  font-size: .77rem; font-weight: 300; letter-spacing: .06em;
  color: var(--text);
  padding: .65rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 3px;
  transition: border-color .3s;
}
.sobre__pillar:hover { border-color: var(--border); }
.sobre__pillar-icon { font-size: 1rem; flex-shrink: 0; }
.sobre__deco { display: flex; justify-content: center; }
.sobre__deco-inner {
  position: relative;
  width: 340px; height: 340px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.sobre__deco-frame {
  position: absolute; inset: 0;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}
.sobre__deco-frame::before {
  content: '';
  position: absolute; top: 16px; left: 16px;
  right: 16px; bottom: 16px;
  border: 1px solid var(--section-line);
  border-radius: 2px;
}
.sobre__deco-circle {
  position: absolute;
  width: 180px; height: 180px;
  border: 1px solid rgba(212,168,67,.1);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
}
.sobre__deco-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-style: italic;
  font-weight: 300; color: var(--text);
  line-height: 1.55; margin-bottom: 1rem;
  position: relative;
}
.sobre__deco-author {
  font-size: .62rem; font-weight: 300;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold);
}

/* ═══ SERVIÇOS ═══ */
.servicos {
  padding: clamp(4.5rem,10vw,8.5rem) 0;
  background: var(--bg);
}
.servicos__grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5px;
  background: var(--border-soft);
  margin-bottom: 1.5px;
}
.servico-card {
  background: var(--surface);
  padding: clamp(1.75rem,3vw,2.5rem);
  position: relative; overflow: hidden;
  transition: background .3s;
}
.servico-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity .3s;
}
.servico-card:hover { background: var(--card-hover); }
.servico-card:hover::before { opacity: 1; }
.servico-card__icon {
  width: 42px; height: 42px; color: var(--gold);
  margin-bottom: 1.5rem; opacity: .88;
}
.servico-card__number {
  position: absolute; top: 1.5rem; right: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.25rem; font-weight: 300;
  color: var(--border); line-height: 1;
  user-select: none; pointer-events: none;
}
.servico-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 400;
  color: var(--text); margin-bottom: .85rem;
}
.servico-card__desc {
  font-size: .83rem; color: var(--text-muted);
  line-height: 1.8; margin-bottom: 1.25rem;
}
.servico-card__list {
  display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.75rem;
}
.servico-card__list li {
  font-size: .74rem; color: var(--text-dim);
  font-weight: 300; letter-spacing: .04em;
  padding-left: 1rem; position: relative;
}
.servico-card__list li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--gold-d); font-size: .6rem;
}
.servico-card__link {
  font-size: .68rem; font-weight: 300;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing .3s; display: inline-block;
}
.servico-card__link:hover { letter-spacing: .2em; }
.servicos__extra { background: var(--surface); }
.servicos__extra-card {
  display: flex; align-items: center; gap: 1.75rem;
  padding: 1.75rem clamp(1.5rem,3vw,2.5rem); flex-wrap: wrap;
}
.servicos__extra-icon { font-size: 2rem; flex-shrink: 0; }
.servicos__extra-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--text); margin-bottom: .35rem;
}
.servicos__extra-card p { font-size: .82rem; color: var(--text-muted); }
.servicos__extra-card .btn { margin-left: auto; flex-shrink: 0; }

/* ═══ DOUTOR ═══ */
.doutor {
  padding: clamp(4.5rem,10vw,8.5rem) 0;
  background: var(--bg-alt);
}
.doutor__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.doutor__frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.doutor__frame-inner {
  position: relative;
  width: 320px; height: 400px;
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; background: var(--surface);
}
.doutor__frame-inner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,168,67,.05), transparent 70%);
}
.doutor__lotus-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.doutor__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 40%;
  filter: saturate(.95) contrast(1.04);
}
.doutor__photo--principal {
  object-position: 50% 36%;
}
.doutor__thumbs {
  width: min(320px, 86vw);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin: 1.25rem auto 0;
}
.doutor__thumb {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: var(--surface);
}
.doutor__thumb img {
  width: 100%;
  height: 132px;
  object-fit: cover;
  display: block;
  filter: saturate(.95) contrast(1.03);
}
.doutor__thumb:first-child img {
  object-position: 45% 35%;
}
.doutor__thumb:nth-child(2) img {
  object-position: 43% 38%;
}
.doutor__thumb figcaption {
  position: absolute;
  left: .55rem;
  bottom: .5rem;
  padding: .28rem .5rem;
  border-radius: 100px;
  background: rgba(12,12,16,.72);
  color: var(--gold-l);
  font-size: .56rem;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.doutor__avatar {
  position: relative;
  width: 110px; height: 110px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300; color: #0c0c10;
  box-shadow: 0 0 56px rgba(212,168,67,.25);
}
.doutor__credential {
  position: relative;
  z-index: 2;
  margin-top: -1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .5rem 1.25rem;
  font-size: .63rem; font-weight: 300; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold);
  white-space: nowrap; display: flex; align-items: center; gap: .4rem;
  backdrop-filter: blur(8px);
}
.doutor__text {
  font-size: .89rem; color: var(--text-muted); line-height: 1.9; margin-bottom: 1.25rem;
}
.doutor__badges {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2rem;
}
.doutor__badge {
  display: flex; align-items: center; gap: .4rem;
  padding: .4rem .9rem;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 100px;
  font-size: .71rem; font-weight: 300; color: var(--text-muted);
  transition: border-color .3s, color .3s;
}
.doutor__badge:hover { border-color: var(--border); color: var(--text); }
.doutor__social { display: flex; flex-direction: column; gap: .75rem; }
.doutor__social-link {
  display: flex; align-items: center; gap: .75rem;
  font-size: .78rem; font-weight: 300; color: var(--text-muted); transition: color .3s;
}
.doutor__social-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); }
.doutor__social-link:hover { color: var(--gold); }

/* ═══ DEPOIMENTOS ═══ */
.depoimentos {
  padding: clamp(4.5rem,10vw,8.5rem) 0;
  background: var(--bg);
}
.depoimentos__grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem;
}
.depoimento-card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 10px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color .3s, transform .3s;
}
.depoimento-card:hover { border-color: var(--border); transform: translateY(-4px); }
.depoimento-card__stars { color: var(--gold); font-size: .82rem; letter-spacing: .1em; }
.depoimento-card__text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic; font-weight: 300;
  color: var(--text-muted); line-height: 1.7; flex: 1;
}
.depoimento-card__author {
  display: flex; align-items: center; gap: .75rem;
  border-top: 1px solid var(--border-soft); padding-top: 1rem;
}
.depoimento-card__avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-d), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; font-weight: 400; color: #0c0c10; flex-shrink: 0;
}
.depoimento-card__author strong {
  display: block; font-size: .78rem; font-weight: 400;
  color: var(--text); margin-bottom: .12rem;
}
.depoimento-card__author span { font-size: .63rem; color: var(--text-dim); }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  padding: clamp(4rem,8vw,7rem) 0;
  background: var(--bg-alt);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner__orb {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,168,67,.07) 0%, transparent 70%);
  filter: blur(50px); pointer-events: none;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem,4.5vw,3.5rem); font-weight: 300; margin-bottom: 1rem;
}
.cta-banner__title em { font-style: italic; color: var(--gold); }
.cta-banner__desc { font-size: .9rem; color: var(--text-muted); margin-bottom: 2.5rem; }

/* ═══ CONTATO ═══ */
.contato {
  padding: clamp(4.5rem,10vw,8.5rem) 0;
  background: var(--bg);
}
.contato__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.contato__info { display: flex; flex-direction: column; gap: 2rem; }
.contato__item { display: flex; align-items: flex-start; gap: 1.25rem; }
.contato__item-icon {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); flex-shrink: 0;
}
.contato__item-icon svg { width: 20px; height: 20px; }
.contato__item strong {
  display: block; font-size: .63rem; font-weight: 300;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .4rem;
}
.contato__item p,.contato__item a {
  font-size: .85rem; color: var(--text-muted); line-height: 1.7;
}
.contato__item a { transition: color .3s; }
.contato__item a:hover { color: var(--gold); }
.contato__map {
  border-radius: 10px; overflow: hidden;
  border: 1px solid var(--border);
  filter: var(--map-filter);
  transition: filter .4s;
}
.contato__map:hover { filter: none; }

/* ═══ FOOTER ═══ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  padding: 4rem 0 2rem;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer__tagline {
  font-size: .78rem; color: var(--text-dim);
  margin-top: 1rem; font-style: italic;
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
}
.footer__links h4,.footer__contact h4 {
  font-size: .62rem; font-weight: 300;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.25rem;
}
.footer__links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__links a {
  font-size: .8rem; color: var(--text-dim);
  transition: color .3s; font-weight: 300;
}
.footer__links a:hover { color: var(--text-muted); }
.footer__contact p {
  font-size: .8rem; color: var(--text-dim); line-height: 1.7; margin-bottom: 1rem;
}
.footer__bottom {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-soft);
  gap: 1rem; flex-wrap: wrap;
}
.footer__bottom p { font-size: .7rem; color: var(--text-dim); }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { color: var(--text-dim); transition: color .3s; }
.footer__social a:hover { color: var(--gold); }

/* ═══ WA FLOAT ═══ */
.wa-float {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 50;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.55); }
.wa-float__tooltip {
  position: absolute; right: calc(100% + .75rem);
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 3px; padding: .4rem .75rem;
  font-size: .67rem; font-weight: 300; letter-spacing: .07em;
  white-space: nowrap; color: var(--text);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

/* ═══ VERSION SWITCHER ═══ */
.version-switch {
  position: fixed; bottom: 1.75rem; right: 5.5rem; z-index: 50;
  display: flex; align-items: center; gap: .45rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .55rem 1rem;
  font-size: .62rem; font-weight: 300; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-muted);
  backdrop-filter: blur(8px);
  transition: border-color .3s, color .3s;
  white-space: nowrap;
}
.version-switch:hover { border-color: var(--gold); color: var(--gold); }
.version-switch svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ═══════════════════════════════════════
   MOBILE FIRST IMPROVEMENTS
═══════════════════════════════════════ */

/* ─── ≤ 1024px ─── */
@media (max-width:1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ─── ≤ 900px (tablet / mobile) ─── */
@media (max-width:900px) {
  .nav,.header__cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero: single column, centrado */
  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 3rem;
    padding-bottom: 5rem;
  }
  .hero__eyebrow { justify-content: center; }
  .hero__title { font-size: clamp(2.5rem,8vw,3.5rem); }
  .hero__desc { margin: 0 auto 2rem; font-size: .88rem; }
  .hero__actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .hero__stats { justify-content: center; }

  /* Mostra o lotus no mobile */
  .hero__mobile-lotus { display: flex; }
  .hero__visual { display: none; }

  /* Sobre: 1 col */
  .sobre__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .sobre__deco { display: none; }

  /* Serviços: 1 col */
  .servicos__grid { grid-template-columns: 1fr; }

  /* Doutor: 1 col */
  .doutor__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .doutor__visual { display: flex; justify-content: center; }
  .doutor__frame-inner { width: min(320px, 86vw); height: 390px; }

  /* Depoimentos: 1 col */
  .depoimentos__grid { grid-template-columns: 1fr; gap: 1.25rem; }

  /* Contato: 1 col */
  .contato__grid { grid-template-columns: 1fr; gap: 2rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ─── ≤ 600px (mobile M/S) ─── */
@media (max-width:600px) {
  .hero__title { font-size: clamp(2.2rem,9vw,3rem); }
  .hero__stats {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .5rem;
    align-items: start;
  }
  .hero__stat {
    align-items: center;
    min-width: 0;
    text-align: center;
  }
  .hero__stat-number { font-size: 1.35rem; }
  .hero__stat-label {
    font-size: .52rem;
    letter-spacing: .06em;
    line-height: 1.25;
    white-space: normal;
  }
  .hero__stat-divider { display: none; }

  .servico-card { padding: 1.5rem; }
  .servico-card__title { font-size: 1.25rem; }
  .servicos__extra-card { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .servicos__extra-card .btn { margin-left: 0; width: 100%; justify-content: center; }

  .depoimento-card { padding: 1.5rem; }

  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }

  .cta-banner__title { font-size: 1.85rem; }
  .cta-banner .btn--xl { width: 100%; max-width: 320px; justify-content: center; }
}

/* ─── ≤ 400px (mobile S) ─── */
@media (max-width:400px) {
  .hero__title { font-size: 2.1rem; }
  .logo__name { font-size: 1.05rem; }
  .logo__sub { font-size: .5rem; }
  .hero__stats {
    max-width: 300px;
    gap: .35rem;
  }
  .hero__stat-number { font-size: 1.24rem; }
  .hero__stat-label {
    font-size: .48rem;
    letter-spacing: .04em;
  }
}
