/* ============================================
   DRA. JÚLIA BERGER — STYLESHEET v2
   White hero · Text-only reviews · Responsive
   ============================================ */

:root {
  --cream: #faf8f5;
  --white: #ffffff;
  --brown-light: #c9a882;
  --brown-mid: #a67c52;
  --brown-dark: #6b4c2a;
  --brown-deep: #3d2a14;
  --green: #4a7c59;
  --green-hover: #3b6347;
  --text-dark: #2a1f14;
  --text-mid: #5a4a38;
  --text-light: #9a8878;
  --border: #e8dfd4;
  --shadow: 0 4px 30px rgba(60,40,20,.08);
  --shadow-lg: 0 12px 60px rgba(60,40,20,.14);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; color: var(--text-dark); }
h1 { font-size: clamp(2.6rem,5vw,4.5rem); }
h2 { font-size: clamp(2rem,3.5vw,3.2rem); }
h3 { font-size: clamp(1.2rem,2vw,1.7rem); }
h4 { font-size: 1.05rem; font-weight: 500; }
em { font-style: italic; color: var(--brown-mid); }
p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--brown-mid); margin-bottom: 1rem;
}
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }
.section-sub { margin-top: 1rem; font-size: 1.05rem; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }
.delay-3 { transition-delay: .36s; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--green); color: #fff;
  font-family: var(--font-body); font-size: .86rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 50px; border: 2px solid var(--green);
  transition: background .25s, transform .2s, box-shadow .25s; cursor: pointer; white-space: nowrap;
}
.btn-primary:hover { background: var(--green-hover); border-color: var(--green-hover); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,124,89,.3); }
.btn-small { padding: .7rem 1.5rem !important; font-size: .8rem !important; }

.btn-outline-dark {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--text-dark);
  font-family: var(--font-body); font-size: .86rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 50px; border: 1.5px solid var(--border);
  transition: all .25s;
}
.btn-outline-dark:hover { border-color: var(--brown-mid); color: var(--brown-mid); background: var(--cream); }

.btn-ghost {
  display: inline-flex; align-items: center;
  background: transparent; color: var(--white);
  font-family: var(--font-body); font-size: .86rem; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .9rem 2rem; border-radius: 50px; border: 1.5px solid rgba(255,255,255,.55);
  transition: all .25s;
}
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent; color: var(--brown-dark);
  font-family: var(--font-body); font-size: .86rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .85rem 1.8rem; border-radius: 50px; border: 1.5px solid var(--brown-light);
  transition: all .25s; margin-top: 1.5rem;
}
.btn-outline:hover { background: var(--brown-light); color: #fff; }

/* ─── NAV DARK HERO (quem-somos) ─── */
/* On dark-background pages, nav text starts white and turns dark on scroll */
#navbar.nav-dark-hero .logo-name,
#navbar.nav-dark-hero .nav-links a {
  color: rgba(255,255,255,.85);
}
#navbar.nav-dark-hero .logo-sub {
  color: var(--brown-light);
}
#navbar.nav-dark-hero .nav-links a::after {
  background: var(--brown-light);
}
#navbar.nav-dark-hero .nav-toggle span {
  background: #fff;
}
/* Once scrolled, revert to normal dark text */
#navbar.nav-dark-hero.scrolled .logo-name,
#navbar.nav-dark-hero.scrolled .nav-links a {
  color: var(--text-mid);
}
#navbar.nav-dark-hero.scrolled .logo-sub {
  color: var(--brown-mid);
}
#navbar.nav-dark-hero.scrolled .nav-links a::after {
  background: var(--brown-mid);
}
#navbar.nav-dark-hero.scrolled .nav-toggle span {
  background: var(--text-dark);
}

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0);
  transition: background .35s, box-shadow .35s, padding .3s;
  padding: 1.4rem 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--border);
  padding: .9rem 0;
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav-logo { display: flex; flex-direction: column; gap: .1rem; }
.logo-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--text-dark); white-space: nowrap; }
.logo-sub { font-size: .67rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--brown-mid); }
.nav-links { display: flex; align-items: center; gap: 1.8rem; }
.nav-links a {
  font-size: .8rem; font-weight: 400; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-mid); transition: color .2s; position: relative;
}
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: var(--brown-mid); transition: width .25s; }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--brown-dark); }
.nav-cta { background: var(--green) !important; color: #fff !important; padding: .55rem 1.3rem; border-radius: 50px; font-size: .76rem !important; transition: background .25s !important; }
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--green-hover) !important; transform: translateY(-1px) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--text-dark); transition: all .3s; }

/* ─── HERO — WHITE + FOTO DE FUNDO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  background: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Foto ocupa toda a hero como fundo, sem corte */
.hero-img-col {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.hero-img-wrap {
  width: 100%;
  height: 100%;
}
.hero-img-wrap picture { display: block; width: 100%; height: 100%; }
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-photo { object-position: center top !important; }
.hero-img-deco { display: none; }

/* Texto por cima, lado esquerdo */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 2rem 4rem 6rem;
  width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--brown-mid); font-weight: 400; margin-bottom: 1.2rem;
}
.hero-content h1 {
  color: var(--text-dark);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero-content h1 em { color: var(--brown-mid); font-style: italic; }
.hero-sub { color: var(--text-mid); font-size: 1rem; line-height: 1.75; margin-bottom: 2.2rem; max-width: 460px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

.hero-badge {
  display: flex; align-items: center;
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 50px; padding: .7rem 0;
  width: fit-content;
}
.hero-badge-item { display: flex; flex-direction: column; align-items: center; padding: 0 1.4rem; }
.hero-badge-item strong { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; color: var(--text-dark); line-height: 1.1; }
.hero-badge-item span { font-size: .66rem; color: var(--text-light); letter-spacing: .04em; }
.hero-badge-divider { width: 1px; height: 26px; background: var(--border); flex-shrink: 0; }
.br-desktop { display: block; }

/* ─── INTRO STRIP ─── */
.intro-strip { background: var(--white); padding: 5rem 0; border-bottom: 1px solid var(--border); }
.intro-strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; }
.intro-item { text-align: center; }
.intro-icon { font-size: 1.2rem; color: var(--brown-light); margin-bottom: 1rem; display: block; }
.intro-item h3 { font-size: 1.1rem; margin-bottom: .5rem; }
.intro-item p { font-size: .88rem; }

/* ─── SERVIÇOS ─── */
.servicos { padding: 7rem 0; background: var(--cream); }
.servicos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.servico-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 3rem 2.5rem; border-radius: 4px;
  transition: box-shadow .3s, transform .3s;
  position: relative; overflow: hidden;
}
.servico-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(to right, var(--brown-light), var(--brown-mid));
  transform: scaleX(0); transform-origin: left; transition: transform .35s;
}
.servico-card:hover::before { transform: scaleX(1); }
.servico-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.servico-destaque { background: var(--brown-deep); border-color: var(--brown-deep); }
.servico-destaque h3, .servico-destaque .servico-num { color: rgba(255,255,255,.9); }
.servico-destaque p { color: rgba(255,255,255,.7); }
.servico-destaque li { color: rgba(255,255,255,.75); }
.servico-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 1.2rem; }
.servico-card h3 { margin-bottom: .8rem; }
.servico-card p { font-size: .93rem; margin-bottom: 1.5rem; }
.servico-card ul { display: flex; flex-direction: column; gap: .5rem; }
.servico-card li { font-size: .86rem; color: var(--text-light); padding-left: 1.2rem; position: relative; }
.servico-card li::before { content: '–'; position: absolute; left: 0; color: var(--brown-light); }

/* ─── SOBRE PREVIEW ─── */
.sobre-preview { display: grid; grid-template-columns: 1fr 1fr; min-height: 620px; overflow: hidden; }
.sobre-img-col { position: relative; background: var(--brown-deep); }
.sobre-img-wrap { position: relative; height: 100%; overflow: hidden; }
.sobre-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; opacity: 1; transition: transform .6s; }
.sobre-preview:hover .sobre-img-wrap img { transform: scale(1.03); }
.sobre-crm {
  position: absolute; bottom: 2rem; right: 2rem;
  background: rgba(255,255,255,.93); padding: 1rem 1.5rem; border-radius: 4px;
  display: flex; flex-direction: column; gap: .2rem;
  font-size: .78rem; color: var(--text-mid);
}
.sobre-crm span:first-child { font-weight: 500; color: var(--text-dark); }
.sobre-content { background: var(--white); padding: 5rem; display: flex; flex-direction: column; justify-content: center; }
.sobre-content h2 { margin-bottom: 1.5rem; }
.sobre-lead { font-size: 1.12rem; color: var(--text-dark); margin-bottom: 1.2rem; font-style: italic; font-family: var(--font-display); }
.sobre-content p { margin-bottom: 1rem; font-size: .94rem; }

/* ─── DEPOIMENTOS — GRID TEXT-ONLY ─── */
.depoimentos { padding: 7rem 0; background: var(--cream); }
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.depo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow .3s, transform .25s;
}
.depo-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }

.depo-header { display: flex; align-items: center; gap: .8rem; }
.depo-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-light), var(--brown-mid));
  color: #fff; font-family: var(--font-display); font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.depo-name { font-size: .86rem; font-weight: 500; color: var(--text-dark); }
.depo-stars { color: #f5a623; font-size: .85rem; letter-spacing: .05em; }
.depo-google { margin-left: auto; flex-shrink: 0; opacity: .65; }
.depo-card blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem; font-weight: 300; font-style: italic;
  color: var(--text-dark); line-height: 1.6;
  border-left: 2px solid var(--brown-light);
  padding-left: 1rem; flex: 1;
}
.depo-tempo { font-size: .73rem; color: var(--text-light); margin-top: auto; }

.depo-cta {
  background: var(--brown-deep); border-color: var(--brown-deep);
  justify-content: center; align-items: center; text-align: center;
}
.depo-cta-inner { display: flex; flex-direction: column; align-items: center; gap: .8rem; padding: .5rem 0; }
.depo-cta-stars { color: #f5a623; font-size: 1.3rem; letter-spacing: .1em; }
.depo-cta-score { font-family: var(--font-display); font-size: 1.8rem; color: #fff; font-weight: 400; }
.depo-cta p { color: rgba(255,255,255,.7); font-size: .9rem; }

/* ─── FAQ ─── */
.faq { padding: 7rem 0; background: var(--white); }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.4rem 0; font-family: var(--font-display); font-size: 1.18rem; font-weight: 400;
  color: var(--text-dark); text-align: left; transition: color .2s;
}
.faq-q:hover { color: var(--brown-mid); }
.faq-icon { font-size: 1.4rem; font-weight: 300; color: var(--brown-light); transition: transform .3s; flex-shrink: 0; width: 24px; text-align: center; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--brown-mid); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding-bottom: 1.4rem; font-size: .94rem; line-height: 1.8; }
.faq-item.open .faq-a { max-height: 400px; }

/* ─── CONTATO ─── */
.contato { padding: 7rem 0; background: var(--brown-deep); position: relative; overflow: hidden; }
.contato::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; border-radius: 50%; background: rgba(201,168,130,.06); }
.contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contato-texto .section-tag { color: var(--brown-light); }
.contato-texto h2 { color: #fff; margin-bottom: 1.2rem; }
.contato-texto em { color: var(--brown-light); }
.contato-texto p { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.contato-acoes { display: flex; flex-direction: column; gap: .8rem; align-items: flex-start; }
.contato-tel { color: rgba(255,255,255,.6); font-size: .88rem; }
.contato-tel strong { color: rgba(255,255,255,.9); }
.contato-info { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 1rem; }
.contato-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 1.5rem 2rem; transition: background .2s; }
.contato-card:hover { background: rgba(255,255,255,.1); }
.contato-card h4 { color: var(--brown-light); font-family: var(--font-body); font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 500; margin-bottom: .5rem; }
.contato-card p { color: rgba(255,255,255,.7); font-size: .92rem; line-height: 1.7; }
.contato-card a { color: rgba(255,255,255,.85); transition: color .2s; }
.contato-card a:hover { color: var(--brown-light); }

/* ─── FOOTER ─── */
.footer { background: #1e120a; padding: 4rem 0 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; flex-direction: column; gap: .3rem; }
.footer-brand .logo-name { font-size: 1.05rem; color: rgba(255,255,255,.9); }
.footer-brand .logo-sub { color: var(--brown-light); }
.footer-crm { font-size: .73rem; color: rgba(255,255,255,.4); margin-top: .3rem; }
.footer-links { display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.footer-links a { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-links a:hover { color: var(--brown-light); }
.footer-social { display: flex; justify-content: flex-end; gap: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .25s; }
.footer-social a:hover { border-color: var(--brown-light); color: var(--brown-light); background: rgba(201,168,130,.1); }
.footer-bottom { padding: 1.2rem 2rem; text-align: center; }
.footer-bottom p { font-size: .73rem; color: rgba(255,255,255,.3); }

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float { position: fixed; bottom: 2rem; right: 2rem; width: 56px; height: 56px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(74,124,89,.45); z-index: 998; transition: transform .25s, box-shadow .25s; animation: floatPulse 3s infinite; }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(74,124,89,.55); }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(74,124,89,.45); }
  50% { box-shadow: 0 4px 30px rgba(74,124,89,.65), 0 0 0 8px rgba(74,124,89,.1); }
}

/* ─── PAGE HERO (quem somos) ─── */
.page-hero { background: var(--brown-deep); padding: 10rem 2rem 6rem; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 20% 50%, rgba(201,168,130,.08) 0%, transparent 60%), radial-gradient(ellipse at 80% 50%, rgba(201,168,130,.05) 0%, transparent 60%); }
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: .8rem; }
.page-hero .hero-eyebrow { color: var(--brown-light); display: block; }
.page-hero-sub { font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 300; }

/* ─── BIO SECTION ─── */
.bio-section { padding: 7rem 0; background: var(--cream); }
.bio-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 6rem; align-items: start; }
.bio-img-col { position: sticky; top: 7rem; }
.bio-img-wrap { position: relative; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-lg); }
.bio-img-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.bio-badge { position: absolute; bottom: -20px; right: -20px; width: 110px; height: 110px; border-radius: 50%; background: var(--brown-mid); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); }
.badge-inner { text-align: center; color: #fff; }
.badge-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 400; line-height: 1; }
.badge-txt { font-size: .62rem; letter-spacing: .04em; text-transform: uppercase; opacity: .9; line-height: 1.3; }
.bio-credentials { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.credential-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 1.2rem; background: var(--white); border: 1px solid var(--border); border-radius: 4px; }
.cred-icon { font-size: .9rem; color: var(--brown-light); margin-top: .1rem; flex-shrink: 0; }
.credential-item strong { display: block; font-size: .88rem; font-weight: 500; color: var(--text-dark); }
.credential-item span { font-size: .78rem; color: var(--text-light); }
.bio-content { padding-top: 1rem; }
.bio-content h2 { margin-bottom: 1.5rem; }
.bio-lead { font-family: var(--font-display); font-size: 1.25rem; font-style: italic; color: var(--text-dark); margin-bottom: 1.5rem; line-height: 1.5; }
.bio-content p { margin-bottom: 1.1rem; font-size: .95rem; }

/* ─── FORMAÇÃO TIMELINE ─── */
.formacao { padding: 7rem 0; background: var(--white); }
.timeline { max-width: 700px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 80px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.tl-item { display: grid; grid-template-columns: 80px 1fr; gap: 2rem; padding-bottom: 3rem; position: relative; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; color: var(--brown-mid); text-align: right; padding-right: 2rem; padding-top: .15rem; position: relative; }
.tl-year::after { content: ''; position: absolute; right: -5px; top: .5rem; width: 9px; height: 9px; border-radius: 50%; background: var(--brown-mid); border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--brown-light); }
.tl-content h4 { margin-bottom: .4rem; font-size: 1rem; }
.tl-content p { font-size: .9rem; }

/* ─── VALORES ─── */
.valores { padding: 7rem 0; background: var(--cream); }
.valores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2.5rem; }
.valor-item { text-align: center; }
.valor-icon { font-size: 1.5rem; color: var(--brown-light); margin-bottom: 1.2rem; display: block; }
.valor-item h3 { font-size: 1.05rem; margin-bottom: .6rem; }
.valor-item p { font-size: .87rem; }

/* ─── GALERIA DA CLÍNICA ─── */
.clinica-galeria {
  padding: 7rem 0 5rem;
  background: var(--white);
  overflow: hidden;
}

.galeria-carousel-wrap {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

.galeria-carousel {
  display: flex;
  transition: transform .55s cubic-bezier(.4, 0, .2, 1);
  will-change: transform;
}

.galeria-slide {
  flex: 0 0 calc(33.333% - 1.5rem);
  margin: 0 .75rem;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
}

.galeria-slide:first-child { margin-left: calc((100vw - 1200px) / 2 + 2rem); }
.galeria-slide:last-child  { margin-right: calc((100vw - 1200px) / 2 + 2rem); }

.galeria-img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.galeria-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
  display: block;
}

.galeria-slide:hover .galeria-img-wrap img {
  transform: scale(1.04);
}

.galeria-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem 1.4rem .9rem;
  background: linear-gradient(to top, rgba(42,31,20,.55) 0%, transparent 100%);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .3s, transform .3s;
}

.galeria-slide:hover .galeria-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Nav buttons */
.galeria-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all .25s;
  box-shadow: var(--shadow);
}

.galeria-btn:hover {
  border-color: var(--brown-mid);
  color: var(--brown-mid);
  transform: translateY(-50%) scale(1.07);
  box-shadow: var(--shadow-lg);
}

.galeria-prev { left: 1.5rem; }
.galeria-next { right: 1.5rem; }

/* Dots */
.galeria-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2rem;
  padding-bottom: .5rem;
}

.galeria-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}

.galeria-dot.active {
  background: var(--brown-mid);
  width: 22px;
  border-radius: 3px;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1100px) {
  .hero-content { width: 60%; padding: 120px 1.5rem 3rem 3rem; }
  .hero-img-col { width: 100%; }
  .intro-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: repeat(2, 1fr); }
  .sobre-preview { grid-template-columns: 1fr; }
  .sobre-img-col { height: 420px; }
  .sobre-content { padding: 4rem 3rem; }
  .valores-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-social { justify-content: center; }
  .footer-links { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .contato-inner { grid-template-columns: 1fr; gap: 3rem; }
  .bio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .bio-img-col { position: static; }
  .bio-img-wrap img { height: 400px; }
  .galeria-slide { flex: 0 0 calc(50% - 1.5rem); }
  .galeria-slide:first-child { margin-left: 2rem; }
  .galeria-slide:last-child  { margin-right: 2rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 80%; max-width: 320px; height: 100vh;
    background: var(--white); flex-direction: column;
    justify-content: center; gap: 1.8rem; padding: 2rem;
    transition: right .35s cubic-bezier(.4,0,.2,1);
    box-shadow: -4px 0 30px rgba(0,0,0,.12); z-index: 1000;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: .95rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  /* Hero mobile: foto de fundo, texto por cima */
  .hero {
    display: block;
    position: relative;
    min-height: 100svh;
  }
  .hero-img-col {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70%;
    z-index: 0;
    padding-top: 0;
    max-height: none;
    bottom: auto;
  }
  .hero-img-wrap { position: absolute; inset: 0; }
  .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 100%;
  }
  .hero-photo { object-position: center 100% !important; }
  .hero-img-deco { display: none; }
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120vw 1.5rem 3rem;
  }
  .hero-badge { flex-wrap: wrap; justify-content: flex-start; gap: .3rem; padding: .5rem 1rem; }
  .hero-badge-divider { display: none; }
  .hero-badge-item { padding: .2rem .8rem; }
  .br-desktop { display: none; }

  /* Grid fixes */
  .intro-strip-grid { grid-template-columns: 1fr; gap: 2rem; }
  .servicos-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .sobre-img-col { height: 300px; }
  .sobre-content { padding: 2.5rem 1.5rem; }
  .valores-grid { grid-template-columns: 1fr; gap: 2rem; }
  .timeline::before { display: none; }
  .tl-item { grid-template-columns: 1fr; gap: .4rem; }
  .tl-year { text-align: left; padding: 0; }
  .tl-year::after { display: none; }
  .contato-inner { gap: 2.5rem; }
  .bio-img-wrap img { height: 320px; }
  .bio-badge { bottom: 0; right: 0; width: 90px; height: 90px; }
  .badge-num { font-size: 1.5rem; }
  .page-hero { padding: 7rem 1.5rem 3.5rem; }
  .galeria-slide { flex: 0 0 calc(80% - 1.5rem); }
  .galeria-slide:first-child { margin-left: 1.5rem; }
  .galeria-slide:last-child  { margin-right: 1.5rem; }
  .galeria-prev { left: .5rem; }
  .galeria-next { right: .5rem; }
  .galeria-caption { opacity: 1; transform: none; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-outline-dark { justify-content: center; text-align: center; }
  .hero-badge { display: none; }
  .contato-acoes { width: 100%; }
  .contato-acoes .btn-primary { width: 100%; justify-content: center; }
}
