/* ============================================
   DR. LUCAS JESUS — LANDING PAGE STYLES
   Mobile-First
   ============================================ */

:root {
  --gold:       #B8975A;
  --gold-light: #D4B07A;
  --gold-pale:  #F5EDD8;
  --dark:       #0E1117;
  --dark-2:     #1A1F2B;
  --dark-3:     #252B38;
  --mid:        #3A4253;
  --text:       #E8E4DC;
  --text-muted: #9BA3B2;
  --white:      #FFFFFF;
  --off-white:  #F8F6F2;
  --border:     rgba(184,151,90,0.2);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;

  --radius:    12px;
  --radius-sm: 6px;
  --shadow:    0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.28);
}

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- UTILITIES ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.center { text-align: center; }
.section__title.center,
.section__eyebrow.center {
  display: block;
  width: 100%;
}
.section__title.center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---- TYPOGRAPHY ---- */
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.section__title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
  width: 100%;
  word-break: break-word;
}
.section__intro {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  display: block;
  width: 100%;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: all .25s ease;
  cursor: pointer;
  width: 100%;
  text-align: center;
}
.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.btn--primary {
  background: var(--gold);
  color: var(--dark);
}
.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 24px rgba(184,151,90,.35);
}
.btn--nav {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 18px;
  font-size: 12px;
  width: auto;
}
.btn--nav:hover { background: var(--gold-light); }
.btn--large { padding: 16px 28px; font-size: 14px; }
.btn--inline { width: auto; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(14,17,23,.85);
  backdrop-filter: blur(12px);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(14,17,23,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.navbar__links {
  display: none;
}
.navbar__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  -webkit-tap-highlight-color: transparent;
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: .3s;
}
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: var(--dark-2);
  padding: 12px 20px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.navbar__mobile a:last-child { border-bottom: none; }
.navbar__mobile .btn--nav {
  align-self: stretch;
  margin-top: 10px;
  text-align: center;
  justify-content: center;
}

/* ============================================
   HERO — Mobile First
   ============================================ */
.hero {
  min-height: 100svh;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 60%, #1C1A14 100%);
  display: flex;
  align-items: center;
  padding-top: 62px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(184,151,90,.1) 0%, transparent 65%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><path d="M0 60L60 0" stroke="rgba(184,151,90,0.03)" stroke-width="1"/></svg>') repeat;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; width: 100%; }

/* Mobile: coluna única, centralizada */
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 56px 0 48px;
  min-height: calc(100svh - 62px);
  justify-content: center;
  gap: 40px;
}
.hero__content { width: 100%; }
.hero__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 300;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.8;
}
.hero .btn--primary {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 14px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(184,151,90,.1);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: .5px;
}

/* Foto: oculta no mobile */
.hero__image-wrap { display: none; }
.hero__photo { display: none; }

/* ============================================
   SOBRE
   ============================================ */
.sobre {
  padding: 64px 0;
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.sobre__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sobre__image-col { order: -1; }
.sobre__image-frame {
  position: relative;
  max-width: 360px;
  margin: 0 auto;
}
.sobre__image-frame img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: brightness(.92);
  background: var(--dark-3);
}
.sobre__cred-card {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--gold);
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}
.cred__label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(14,17,23,.7);
  margin-bottom: 3px;
}
.cred__title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}
.cred__sub {
  font-size: 10px;
  color: rgba(14,17,23,.65);
  margin-top: 3px;
}
.sobre__content { padding-top: 20px; }
.sobre__text {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.8;
  font-size: 14px;
}
.sobre__text strong { color: var(--text); }
.sobre__credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 24px;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
}
.cred-item__icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cred-item__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold);
}
.cred-item strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  display: block;
  margin-bottom: 2px;
}
.cred-item span { font-size: 10px; color: var(--text-muted); }

/* ============================================
   PROCEDIMENTOS
   ============================================ */
.procedimentos {
  padding: 64px 0;
  background: var(--dark);
}
.proc__tabs {
  display: flex;
  gap: 4px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 36px;
}
.proc__tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 10px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all .25s;
  -webkit-tap-highlight-color: transparent;
}
.proc__tab svg { width: 16px; height: 16px; display: none; }
.proc__tab.active {
  background: var(--gold);
  color: var(--dark);
}
.proc__tab:hover:not(.active) { color: var(--white); }
.proc__panel { display: none; }
.proc__panel.active {
  display: block;
  animation: fadeIn .35s ease;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.proc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.proc__card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.proc__card:active { transform: scale(.99); }
.proc__card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,151,90,.1);
  border: 1px solid rgba(184,151,90,.15);
  border-radius: var(--radius-sm);
  margin-bottom: 18px;
}
.proc__card-icon svg { width: 36px; height: 36px; stroke: var(--gold); fill: none; }
.proc__card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 3px;
}
.proc__card-subtitle {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.proc__card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }
.proc__cta { text-align: center; margin-top: 40px; }

/* ============================================
   DIFERENCIAIS
   ============================================ */
.diferenciais {
  padding: 64px 0;
  background: var(--dark-2);
  position: relative;
}
.diferenciais::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.dif__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.dif__card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: border-color .25s;
}
.dif__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(184,151,90,.12);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}
.dif__icon svg { width: 24px; height: 24px; stroke: var(--gold); }
.dif__card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.dif__card p { font-size: 13px; color: var(--text-muted); line-height: 1.75; }

/* ============================================
   DEPOIMENTOS
   ============================================ */
.depoimentos {
  padding: 64px 0;
  background: var(--dark);
}
.dep__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.dep__card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dep__stars { color: var(--gold); font-size: 17px; letter-spacing: 2px; }
.dep__text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  flex: 1;
}
.dep__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dep__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}
.dep__author strong { font-size: 13px; color: var(--white); display: block; }
.dep__author span { font-size: 11px; color: var(--gold); }
.dep__cta { text-align: center; margin-top: 40px; }

/* ============================================
   FAQ
   ============================================ */
/* ============================================
   INSTAGRAM
   ============================================ */
.instagram {
  padding: 64px 0;
  background: var(--dark);
  position: relative;
}
.instagram::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.insta__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.insta__card {
  width: 100%;
}
.insta__embed-wrap {
  width: 100%;
  /* Força o blockquote do Instagram a ocupar a largura total */
}
.insta__embed-wrap .instagram-media {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
}
.insta__cta {
  text-align: center;
  margin-top: 40px;
}
.btn--insta {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: var(--white);
  border: none;
}
.btn--insta:hover {
  opacity: .9;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,29,29,.3);
}

/* ============================================ */

.faq {
  padding: 64px 0;
  background: var(--dark-2);
  position: relative;
}
.faq::before {
  content: '';
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq__item {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item:has(.faq__question[aria-expanded="true"]) {
  border-color: var(--gold);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  text-align: left;
  gap: 14px;
  -webkit-tap-highlight-color: transparent;
  min-height: 56px;
}
.faq__arrow {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq__question[aria-expanded="true"] .faq__arrow { transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq__answer.open { max-height: 400px; }
.faq__answer p {
  padding: 0 20px 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ============================================
   CONTATO
   ============================================ */
.contato {
  padding: 64px 0;
  background: var(--dark);
}
.contato__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.contato__text {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 14px;
}
.contato__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contato__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: border-color .2s;
  min-height: 64px;
}
a.contato__item:hover { border-color: var(--gold); }
.contato__item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(37,188,85,.15);
}
.contato__item-icon svg { width: 22px; height: 22px; fill: #25bc55; }
.contato__item-icon--insta { background: rgba(225,48,108,.15); }
.contato__item-icon--insta svg { fill: #e1306c; }
.contato__item-icon--loc { background: rgba(184,151,90,.15); }
.contato__item-icon--loc svg { stroke: var(--gold); fill: none; }
.contato__item strong { font-size: 13px; color: var(--white); display: block; margin-bottom: 2px; }
.contato__item span { font-size: 12px; color: var(--text-muted); }

/* Mapa */
.contato__map {
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
}
.map__iframe-wrap {
  position: relative;
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map__iframe-wrap iframe {
  width: 100%;
  height: 280px;
  border: none;
  display: block;
  filter: grayscale(30%) invert(5%);
}
.map__open-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-top: none;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  transition: background .2s;
  border-radius: 0 0 var(--radius) var(--radius);
}
.map__open-link:hover { background: var(--dark-2); }
.map__open-link svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; }

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  padding: 72px 20px;
  background: linear-gradient(135deg, #1A1508 0%, var(--dark-2) 50%, #1A1508 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,151,90,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-final__inner { position: relative; z-index: 2; max-width: 560px; margin: 0 auto; }
.cta-final h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}
.cta-final p { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 36px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer__brand { display: flex; flex-direction: column; align-items: center; }
.footer__logo-img { height: 44px; width: auto; object-fit: contain; opacity: .85; }
.footer__crm {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--gold);
}
.footer__copy { font-size: 12px; color: var(--text-muted); }
.footer__disclaimer {
  font-size: 11px;
  color: rgba(155,163,178,.45);
  max-width: 420px;
  line-height: 1.6;
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25bc55;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,188,85,.5);
  z-index: 999;
  transition: transform .25s, box-shadow .25s;
  -webkit-tap-highlight-color: transparent;
}
.whatsapp-float:hover, .whatsapp-float:active {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,188,85,.65);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,188,85,.4);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.15); opacity: 0; }
}

/* ============================================
   TABLET — min-width: 600px
   ============================================ */
@media (min-width: 600px) {
  .section__title { font-size: 34px; }

  .hero { padding: 110px 32px 72px; }
  .hero__headline { font-size: 36px; }

  .proc__grid,
  .dif__grid,
  .dep__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sobre__credentials { gap: 12px; }

  .map__iframe-wrap iframe { height: 320px; }
}

/* ============================================
   DESKTOP — min-width: 1024px
   ============================================ */
@media (min-width: 1024px) {
  .container { padding: 0 24px; }

  .section__title { font-size: 44px; }
  .section__intro { max-width: 640px; }

  /* Navbar */
  .navbar__hamburger { display: none; }
  .navbar__links {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .navbar__links a:not(.btn) {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color .2s;
  }
  .navbar__links a:not(.btn):hover { color: var(--white); }
  .navbar__inner { height: 72px; }
  .logo-name { font-size: 20px; }

  /* Hero — duas colunas no desktop */
  .hero {
    min-height: 100vh;
    align-items: stretch;
    padding-top: 72px;
  }
  .hero .container { display: flex; align-items: center; }
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    text-align: left;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 60px 0;
    width: 100%;
  }
  .hero__content { padding-right: 48px; }
  .hero__headline { font-size: 50px; }
  .hero__sub { font-size: 15px; }
  .hero .btn--primary { width: auto; margin: 0; }
  .hero__badges { justify-content: flex-start; }

  .hero__image-wrap {
    display: flex;
    position: relative;
    align-self: stretch;
    align-items: flex-end;
    justify-content: center;
    min-height: 560px;
  }
  .hero__photo {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 95%;
    width: auto;
    max-width: 110%;
    object-fit: contain;
    object-position: bottom center;
    filter: drop-shadow(-16px 0 48px rgba(0,0,0,.55));
  }

  /* Sobre */
  .sobre { padding: 96px 0; }
  .sobre__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .sobre__image-col { order: 0; }
  .sobre__image-frame { max-width: none; margin: 0; }
  .sobre__cred-card { right: -20px; bottom: -20px; padding: 20px 24px; }
  .cred__title { font-size: 18px; }

  /* Procedimentos */
  .procedimentos { padding: 96px 0; }
  .proc__tabs {
    width: auto;
    max-width: none;
  }
  .proc__tab { padding: 10px 24px; font-size: 13px; }
  .proc__tab svg { display: block; }
  .proc__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .proc__card { padding: 32px 28px; }
  .proc__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }

  /* Diferenciais */
  .diferenciais { padding: 96px 0; }
  .dif__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .dif__card { padding: 32px 28px; }
  .dif__card:hover { border-color: var(--gold); transform: translateY(-3px); }

  /* Depoimentos */
  .depoimentos { padding: 96px 0; }
  .dep__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .dep__card { padding: 32px 28px; }

  /* Instagram */
  .instagram { padding: 96px 0; }
  .insta__grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }

  /* FAQ */
  .faq { padding: 96px 0; }
  .faq__list { max-width: 760px; margin: 0 auto; }
  .faq__question { padding: 20px 24px; font-size: 14px; }
  .faq__answer p { padding: 0 24px 20px; }

  /* Contato */
  .contato { padding: 96px 0; }
  .contato__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .map__iframe-wrap iframe { height: 380px; }

  /* CTA Final */
  .cta-final { padding: 96px 24px; }
  .cta-final h2 { font-size: 48px; }

  /* Buttons */
  .btn { width: auto; }
  .cta-final .btn { width: auto; }
  .dep__cta .btn, .proc__cta .btn { width: auto; }
}
