/* =============================================
   DR. PEDRO VINHOSA — SITE 2 · CLÍNICO MODERNO
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg-primary:    #FAFAF8;
  --color-bg-secondary:  #F2F0EC;
  --color-bg-dark:       #111118;
  --color-accent:        #1A6B5A;
  --color-accent-mid:    #2D8A72;
  --color-accent-light:  #E8F4F0;
  --color-text-primary:  #1A1A2E;
  --color-text-secondary:#5A5A72;
  --color-text-muted:    #9A9AAA;
  --color-text-on-dark:  #F0EFE8;
  --color-border:        #E2E0DA;
  --color-border-accent: rgba(26,107,90,0.2);
  --font-heading: 'DM Serif Display', serif;
  --font-body:    'DM Sans', sans-serif;
  --max-width: 1200px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   UTILITY
   ============================================= */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.badge::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
}

.badge--light {
  color: var(--color-accent-mid);
}
.badge--light::before {
  background: var(--color-accent-mid);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}

.section-heading--light {
  color: var(--color-text-on-dark);
}

.section-heading em {
  font-style: italic;
  color: var(--color-accent);
}

.section-heading--light em {
  color: var(--color-accent-mid);
}

.section-subtext {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

.section-subtext--light {
  color: rgba(240,239,232,0.65);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
}

.btn-primary:hover {
  background: #155649;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,90,0.28);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.btn-lg { padding: 16px 36px; font-size: 16px; }

/* =============================================
   REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 2px solid var(--color-accent-light);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(26,107,90,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo img {
  height: 56px;
  width: auto;
  object-fit: contain;
}

.navbar-logo-text {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.navbar-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-secondary);
  transition: color var(--transition);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: 2px;
}

.nav-link:hover { color: var(--color-accent); }
.nav-link:hover::after { transform: scaleX(1); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger.active span { background: #fff; }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--color-bg-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.active { opacity: 1; pointer-events: all; }

.mobile-menu .nav-link {
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--color-text-on-dark);
}

.mobile-menu .nav-link::after { background: var(--color-accent-mid); bottom: -4px; }
.mobile-menu .nav-link:hover { color: var(--color-text-on-dark); }

/* =============================================
   HERO
   ============================================= */
.hero {
  background: var(--color-bg-primary);
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circle behind image */
.hero-deco-circle {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 620px;
  height: 620px;
  border-radius: 50%;
  border: 1.5px solid var(--color-accent-light);
  pointer-events: none;
  z-index: 0;
}

.hero-deco-circle-2 {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid var(--color-border-accent);
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  z-index: 1;
}

.hero-content { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent-light);
  border: 1px solid var(--color-border-accent);
  border-radius: 4px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 28px;
  letter-spacing: 0.05em;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--color-accent);
}

.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  color: var(--color-text-secondary);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-scroll-link {
  font-size: 14px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}

.hero-scroll-link:hover { color: var(--color-accent); }

.hero-trust { display: flex; flex-direction: column; gap: 10px; }

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--color-text-secondary);
}

.hero-trust-item svg { color: var(--color-accent); flex-shrink: 0; }

/* Hero image with clip-path */
.hero-image-wrap { position: relative; z-index: 1; }

.hero-image-clip {
  border-radius: 0;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 580px;
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-image-clip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* =============================================
   SOBRE
   ============================================= */
.sobre {
  background: var(--color-bg-secondary);
  padding: 100px 0;
}

.sobre .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.sobre-content { }

.sobre-text {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* Timeline credenciais */
.sobre-timeline {
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
  position: relative;
  padding-left: 28px;
}

.sobre-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
}

.timeline-cred {
  position: relative;
  padding-bottom: 24px;
}

.timeline-cred:last-child { padding-bottom: 0; }

.timeline-cred::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 2px solid var(--color-bg-secondary);
  box-shadow: 0 0 0 2px var(--color-accent);
}

.timeline-cred-year {
  font-size: 11px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.timeline-cred-text {
  font-size: 14px;
  color: var(--color-text-primary);
  font-weight: 500;
  line-height: 1.4;
}

.timeline-cred-text span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-text-secondary);
  margin-top: 2px;
}

/* Sobre image */
.sobre-image-wrap { position: relative; }

.sobre-image-frame {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3/4;
  max-height: 560px;
  position: relative;
}

.sobre-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.sobre-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  background: var(--color-accent-light);
  border-radius: 8px;
  z-index: -1;
}

.sobre-image-badge {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 8px 32px rgba(26,107,90,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
}

.sobre-image-badge svg { color: var(--color-accent); flex-shrink: 0; }

.sobre-image-badge-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.sobre-image-badge-text span {
  display: block;
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 11px;
}

/* =============================================
   ESPECIALIDADES
   ============================================= */
.especialidades {
  background: var(--color-bg-primary);
  padding: 100px 0;
}

.especialidades-header {
  text-align: center;
  margin-bottom: 60px;
}

.especialidades-header .section-subtext {
  margin: 0 auto;
  text-align: center;
}

.especialidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.spec-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-accent);
  border-radius: 4px;
  padding: 32px 28px;
  overflow: hidden;
  transition: all var(--transition);
  cursor: default;
}

.spec-card-num {
  position: absolute;
  top: -8px;
  right: 16px;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 400;
  color: var(--color-accent-light);
  line-height: 1;
  pointer-events: none;
  transition: color var(--transition);
  user-select: none;
}

.spec-card:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26,107,90,0.2);
}

.spec-card:hover .spec-card-num { color: rgba(255,255,255,0.12); }
.spec-card:hover .spec-icon { color: #fff; }
.spec-card:hover .spec-title { color: #fff; }
.spec-card:hover .spec-desc { color: rgba(255,255,255,0.8); }

.spec-icon {
  width: 40px;
  height: 40px;
  color: var(--color-accent);
  margin-bottom: 18px;
  transition: color var(--transition);
}

.spec-title {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
  transition: color var(--transition);
}

.spec-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  transition: color var(--transition);
}

.especialidades-cta { text-align: center; }
.especialidades-cta .btn { margin-bottom: 14px; }

.especialidades-note {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* =============================================
   CONSULTA
   ============================================= */
.consulta {
  background: var(--color-bg-dark);
  padding: 100px 0;
}

.consulta-header {
  text-align: center;
  margin-bottom: 64px;
}

.consulta-header .section-subtext {
  margin: 0 auto;
}

.consulta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.consulta-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), background var(--transition);
}

.consulta-card:hover {
  border-color: rgba(45,138,114,0.4);
  background: rgba(45,138,114,0.05);
}

.consulta-card-num {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 400;
  color: var(--color-accent-mid);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 16px;
  user-select: none;
}

.consulta-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--color-text-on-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.consulta-card-desc {
  font-size: 13px;
  color: rgba(240,239,232,0.55);
  line-height: 1.75;
}

.consulta-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}

.consulta-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(240,239,232,0.6);
}

.consulta-highlight-item svg { color: var(--color-accent-mid); flex-shrink: 0; }

/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais {
  background: var(--color-bg-primary);
  padding: 100px 0;
}

.diferenciais-header {
  text-align: center;
  margin-bottom: 56px;
}

.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.diferencial-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(26,107,90,0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.diferencial-card:hover {
  box-shadow: 0 12px 40px rgba(26,107,90,0.12);
  transform: translateY(-3px);
}

.diferencial-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
}

.diferencial-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: 10px;
}

.diferencial-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
  background: var(--color-bg-secondary);
  padding: 100px 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 740px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
  border-top: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.faq-question-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-accent);
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* =============================================
   LOCALIZAÇÃO
   ============================================= */
.localizacao {
  background: var(--color-bg-dark);
  padding: 100px 0 0;
}

.localizacao-top {
  text-align: center;
  padding-bottom: 56px;
}

.localizacao-top .section-subtext {
  margin: 0 auto 32px;
  text-align: center;
}

.localizacao-address-block {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 18px 28px;
  margin-bottom: 36px;
  font-size: 15px;
  color: rgba(240,239,232,0.75);
}

.localizacao-address-block svg { color: var(--color-accent-mid); flex-shrink: 0; }

.localizacao-cta-note {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(240,239,232,0.4);
  letter-spacing: 0.04em;
}

.map-wrap {
  width: 100%;
  aspect-ratio: 21/7;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(60%) brightness(0.9);
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0A0A10;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 0 36px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.6) saturate(0.9);
}

.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 16px;
  color: rgba(240,239,232,0.7);
}

.footer-divider {
  width: 40px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  opacity: 0.5;
}

.footer-meta {
  text-align: center;
  font-size: 13px;
  color: rgba(240,239,232,0.35);
  line-height: 1.8;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-link {
  font-size: 12px;
  color: rgba(240,239,232,0.3);
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.footer-link:hover { color: var(--color-accent-mid); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(240,239,232,0.4);
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-accent-mid);
  color: var(--color-accent-mid);
}

/* =============================================
   RESPONSIVE — TABLET (1023px)
   ============================================= */
@media (max-width: 1023px) {
  .navbar-nav { display: none; }
  .navbar-actions .btn { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding-top: 60px;
  }

  .hero-content { align-items: center; order: 2; }
  .hero-image-wrap { order: 1; max-width: 380px; margin: 0 auto; }
  .hero-subtitle { text-align: center; }
  .hero-trust { align-items: center; }
  .hero-deco-circle, .hero-deco-circle-2 { display: none; }

  .sobre .container { grid-template-columns: 1fr; gap: 48px; }
  .sobre-image-wrap { order: -1; }
  .sobre-image-accent { display: none; }
  .sobre-image-badge { left: 12px; bottom: 16px; }

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

  .consulta-grid { grid-template-columns: repeat(2, 1fr); }
  .consulta-highlights { grid-template-columns: repeat(2, 1fr); }

  .diferenciais-grid { grid-template-columns: 1fr; }

  .map-wrap { aspect-ratio: 16/9; }
}

/* =============================================
   RESPONSIVE — MOBILE (767px)
   ============================================= */
@media (max-width: 767px) {
  .container { padding: 0 20px; }

  .sobre { padding: 72px 0; }
  .especialidades, .consulta, .diferenciais, .faq, .localizacao { padding: 72px 0; }
  .localizacao { padding-bottom: 0; }

  .hero .container { padding-top: 40px; }

  .hero-image-clip {
    clip-path: none;
    border-radius: 8px;
    aspect-ratio: 4/5;
    max-height: 420px;
  }

  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .especialidades-grid { grid-template-columns: 1fr; }

  .consulta-grid { grid-template-columns: 1fr; gap: 16px; }
  .consulta-highlights { grid-template-columns: 1fr; gap: 12px; }

  .diferencial-card { flex-direction: column; gap: 16px; padding: 24px; }

  .map-wrap { aspect-ratio: 4/3; }

  .footer-links { flex-direction: column; gap: 10px; }

  .btn-lg { padding: 14px 28px; font-size: 15px; }

  .sobre-image-badge { display: none; }
  .sobre-timeline { padding-left: 24px; }
}
