/* =====================================================
   DR. REINALDO SIEIRO | OFTALMOLOGISTA BH
   style.css – Clean & Institutional Redesign
   ===================================================== */

/* ── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colors - Identidade azul institucional */
  --c-primary:      #27196d; /* Azul-índigo fechado (marca) */
  --c-primary-dark: #17103f; /* Azul quase preto — profundidade */
  --c-blue:         #2b46c0; /* Azul royal — acentos e gradientes */
  --c-blue-bright:  #3f6fe0; /* Azul vivo — brilhos e detalhes */
  --c-secondary:    #c2defb; /* Azul claro suave */
  --c-bg:           #ffffff; /* Fundo branco */
  --c-bg-2:         #eef3fc; /* Seções alternadas em azul muito suave */
  --c-bg-3:         #f4f7fd; /* Tom azul intermediário */
  --c-bg-card:      #ffffff;
  --c-surface:      #ffffff; /* Superfície de cards — remapeada no modo escuro */
  --c-border:       rgba(39, 25, 109, 0.08);
  --c-border2:      rgba(194, 222, 251, 0.4);
  --c-text:         #334155; /* Slate-700 suave para visual leve */
  --c-text-muted:   #64748b; /* Slate-500 */
  --c-white:        #ffffff;
  --c-green:        #25D366; /* Verde institucional do WhatsApp */

  /* Gradientes de marca (azul fechado → azul royal) */
  --grad-brand:      linear-gradient(135deg, #27196d 0%, #2b46c0 100%);
  --grad-brand-deep: linear-gradient(140deg, #17103f 0%, #27196d 48%, #2b46c0 100%);
  --grad-icon:       linear-gradient(140deg, rgba(194, 222, 251, 0.55) 0%, rgba(120, 150, 235, 0.20) 100%);

  /* Typography */
  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Source Serif 4', Georgia, serif;
  --font-display-weight: 700;

  /* Spacing */
  --section-py:   6rem; /* Aumentado para melhor respiro visual (whitespace) */
  --container-w:  1200px;
  --container-px: 1.5rem;

  /* Transitions */
  --ease: cubic-bezier(.4,0,.2,1);
  --t-fast: 150ms;
  --t-med:  300ms;
  --t-slow: 600ms;

  /* Shadows - Subtle and realistic, not neon */
  --shadow-card: 0 10px 30px rgba(39, 25, 109, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
  --shadow-header: 0 4px 20px rgba(23, 16, 63, 0.05);
  --shadow-blue: 0 18px 42px rgba(39, 25, 109, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

/* ── Acabamento: detalhes de identidade ────────────── */
::selection { background: rgba(43, 70, 192, 0.18); color: var(--c-primary); }
html { scrollbar-color: var(--c-blue) rgba(194, 222, 251, 0.25); }

/* Fio de marca — integrado ao navbar (ver .navbar::before) */

/* ── Accessibility: skip link ──────────────────────── */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1100;
  background: var(--c-primary);
  color: var(--c-white);
  padding: .6rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  transition: top var(--t-fast) var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

/* ── Accessibility: visible focus ──────────────────── */
:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible,
button:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible,
.btn-cta-primary:focus-visible,
.btn-cta-secondary:focus-visible,
.nav-cta:focus-visible,
.whatsapp-float:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
}
.cta-section :focus-visible,
.section-band :focus-visible,
.footer :focus-visible,
.whatsapp-float:focus-visible {
  outline-color: var(--c-white);
}

/* ── Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.gradient-text {
  /* Gradiente de marca sutil (azul fechado → azul royal) */
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--c-primary); /* fallback */
}

.section { padding: var(--section-py) 0; }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header .section-title::after {
  content: none;
}

.section-badge {
  display: none;
}

/* Títulos serif — peso unificado */
.section-title,
.hero-title,
.sc-title,
.cta-title,
.post-title,
.article-title,
.article-body h2,
.article-cta h3,
.read-card-title,
.exames-col-header h3,
.a11y-title,
.step-num {
  font-weight: var(--font-display-weight);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--c-primary);
  line-height: 1.25;
  margin-bottom: .75rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ───────────────────────────────────────── */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.8rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 600;
  transition: all var(--t-med) var(--ease);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--grad-brand);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(39, 25, 109, 0.25);
}
.btn-primary:hover {
  background: var(--grad-brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(43, 70, 192, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}
.btn-secondary:hover {
  background: rgba(39, 25, 109, 0.04);
  transform: translateY(-2px);
}

/* ── Navbar ────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: .85rem 0;
  background-color: rgba(255, 255, 255, 0.92);
  background-image: var(--grad-brand);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: top center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(39, 25, 109, 0.06);
  transition: background-color var(--t-med) var(--ease), padding var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(39, 25, 109, 0.08);
  padding: .7rem 0;
  box-shadow: var(--shadow-header);
}

.nav-container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.logo-img {
  height: 66px;
  width: auto;
  display: block;
}

.logo-img-footer {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  padding: .45rem .25rem;
  margin: 0 .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}
.nav-link:hover {
  color: var(--c-primary);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link.active {
  color: var(--c-primary);
  font-weight: 600;
}

.nav-cta {
  margin-left: .75rem;
  padding: .5rem 1.2rem;
  background: var(--grad-brand);
  color: var(--c-white);
  font-size: .88rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--t-med) var(--ease);
  box-shadow: 0 2px 10px rgba(39, 25, 109, 0.18);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(43, 70, 192, 0.35); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: all var(--t-med) var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ──────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 50% at 88% 12%, rgba(63, 111, 224, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 8% 92%, rgba(43, 70, 192, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #e8f0fd 100%);
}

/* Textura de pontos sutil no hero */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(39, 25, 109, 0.07) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 75% 65% at 50% 42%, #000 0%, transparent 78%);
          mask-image: radial-gradient(ellipse 75% 65% at 50% 42%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero-inner {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(194, 222, 251, 0.4);
  border: 1px solid rgba(39, 25, 109, 0.08);
  color: var(--c-primary);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: .4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp .8s var(--ease) both;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--c-green);
  border-radius: 50%;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--c-primary);
  margin-bottom: 1.25rem;
  animation: fadeSlideUp .8s .1s var(--ease) both;
}

.title-line { display: block; }

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  animation: fadeSlideUp .8s .2s var(--ease) both;
}
.hero-subtitle strong { color: var(--c-primary); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeSlideUp .8s .3s var(--ease) both;
}

.hero-actions .btn-primary {
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.hero-actions .btn-primary:hover {
  background: #1eb855;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeSlideUp .8s .4s var(--ease) both;
}

.stat-item { display: flex; flex-direction: column; }
.stat-num  { font-size: 1.6rem; font-weight: 800; color: var(--c-primary); }
.stat-label{ font-size: .72rem; color: var(--c-text-muted); text-transform: uppercase; letter-spacing: .06em; }

.stat-divider { width: 1px; height: 40px; background: rgba(39, 25, 109, 0.1); }

.hero-visual {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-wrapper {
  position: relative;
  width: 480px;
  height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-eye-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 18px 50px rgba(39, 25, 109, 0.18), 0 0 70px rgba(63, 111, 224, 0.22);
  animation: fadeSlideUp .8s .2s var(--ease) both;
  border: 4px solid var(--c-surface);
  position: absolute;
  top: 0;
  left: 20%;
  z-index: 2;
}

.hero-doctor-img {
  position: absolute;
  bottom: 10px;
  right: 6px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center 12%;
  border-radius: 50%;
  border: 5px solid var(--c-surface);
  box-shadow:
    0 16px 42px rgba(39, 25, 109, 0.24),
    0 0 0 1px rgba(43, 70, 192, 0.14);
  z-index: 4;
  animation: fadeSlideUp .8s .35s var(--ease) both;
}

/* Halo suave atrás da composição */
.hero-img-wrapper::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  top: 42%; left: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 111, 224, 0.16) 0%, transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.hero-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(39, 25, 109, 0.08);
  animation: spinRing linear infinite;
}
.ring-1 { width: 400px; height: 400px; border-color: rgba(43, 70, 192, 0.14); animation-duration: 20s; }
.ring-2 { width: 440px; height: 440px; border-color: rgba(63, 111, 224, 0.12); animation-duration: 30s; animation-direction: reverse; }
.ring-3 { width: 480px; height: 480px; border-color: rgba(39, 25, 109, 0.06); animation-duration: 40s; }

@keyframes spinRing {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-scroll-btn {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(39, 25, 109, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  animation: bounce 2s ease infinite;
  transition: all var(--t-med) var(--ease);
}
.hero-scroll-btn:hover { color: var(--c-primary); border-color: rgba(39, 25, 109, 0.4); }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── About ─────────────────────────────────────────── */
.about { background: var(--c-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  object-position: center 16%;
  aspect-ratio: 4 / 5;
  box-shadow: 0 15px 35px rgba(39, 25, 109, 0.05);
  position: relative;
  z-index: 1;
  border: 4px solid var(--c-surface);
}

.about-img-decor {
  position: absolute;
  inset: -12px -12px 12px 12px;
  border-radius: 28px;
  border: 1px solid rgba(194, 222, 251, 0.4);
  background: rgba(194, 222, 251, 0.15);
  z-index: 0;
}

.floating-card {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.06);
  border-radius: 16px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  box-shadow: var(--shadow-card);
  z-index: 2;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.fc-icon {
  width: 48px; height: 48px;
  background: rgba(194, 222, 251, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  border: 1px solid rgba(39, 25, 109, 0.05);
  flex-shrink: 0;
}

.fc-title { display: block; font-size: .9rem; font-weight: 700; color: var(--c-primary); }
.fc-sub   { display: block; font-size: .75rem; color: var(--c-text-muted); }

.about-text-col .section-badge { margin-bottom: 1rem; }

.about-text-col .section-title {
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  margin-bottom: .65rem;
}

.about-lead {
  font-size: 1.1rem;
  color: var(--c-text);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.about-text {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--c-text);
}

.feature-icon {
  width: 36px; height: 36px;
  background: rgba(194, 222, 251, 0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
  border: 1px solid rgba(39, 25, 109, 0.05);
}

/* ── Specialties ───────────────────────────────────── */
.specialties { background: var(--c-bg-2); position: relative; overflow: hidden; }

.specialties-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(194, 222, 251, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.specialty-card {
  position: relative;
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.06);
  border-radius: 24px;
  padding: 2.25rem 2rem;
  transition: all var(--t-med) var(--ease);
  overflow: hidden;
}

.specialty-card:hover {
  border-color: rgba(39, 25, 109, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(39, 25, 109, 0.05);
}

.specialty-card.featured {
  background: linear-gradient(145deg, rgba(194, 222, 251, 0.2) 0%, rgba(255, 255, 255, 1) 100%);
  border-color: rgba(194, 222, 251, 0.8);
  box-shadow: 0 8px 30px rgba(194, 222, 251, 0.15);
}

.specialty-card.featured:hover {
  box-shadow: 0 15px 35px rgba(194, 222, 251, 0.35);
  border-color: var(--c-primary);
}

.sc-glow {
  position: absolute;
  top: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(194, 222, 251, 0.25) 0%, transparent 70%);
  pointer-events: none;
  transition: opacity var(--t-med);
}
.specialty-card:hover .sc-glow { opacity: 1.5; }

.sc-icon-wrap { margin-bottom: 1.25rem; }

.sc-icon {
  width: 64px; height: 64px;
  background: rgba(194, 222, 251, 0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  border: 1px solid rgba(39, 25, 109, 0.06);
  transition: all var(--t-med) var(--ease);
}

.specialty-card:hover .sc-icon,
.specialty-card.featured .sc-icon {
  background: var(--c-primary);
  color: var(--c-white);
  box-shadow: 0 4px 12px rgba(39, 25, 109, 0.2);
}

.sc-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--c-primary);
  margin-bottom: .6rem;
}

.sc-desc {
  font-size: .9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.sc-list {
  display: flex;
  flex-direction: column;
  gap: .45rem;
  margin-bottom: 1.5rem;
}

.sc-list li {
  font-size: .85rem;
  color: var(--c-text);
  padding-left: 1.25rem;
  position: relative;
}
.sc-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}

.sc-badge {
  display: none;
}

.sc-cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-green);
}
.sc-cta svg { transition: transform var(--t-fast) var(--ease); }
.sc-cta:hover { color: #1eb855; }
.sc-cta:hover svg { transform: translateX(4px); }

/* ── Services ──────────────────────────────────────── */
.services { background: var(--c-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-item {
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.05);
  border-radius: 18px;
  padding: 1.75rem;
  transition: all var(--t-med) var(--ease);
  box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.service-item:hover {
  border-color: rgba(39, 25, 109, 0.12);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(39, 25, 109, 0.04);
}

.srv-icon {
  width: 52px; height: 52px;
  background: rgba(194, 222, 251, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  margin-bottom: 1rem;
  border: 1px solid rgba(39, 25, 109, 0.05);
  transition: all var(--t-med) var(--ease);
}
.service-item:hover .srv-icon {
  background: var(--c-primary);
  color: var(--c-white);
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: var(--font-display-weight);
  color: var(--c-primary);
  margin-bottom: .45rem;
}

.service-item p {
  font-size: .87rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ── Exames & Cirurgias ────────────────────────────── */
.exames { background: var(--c-bg-2); }

.exames-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.exames-col {
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.05);
  border-radius: 24px;
  padding: 2rem;
  transition: border-color var(--t-med) var(--ease);
  box-shadow: 0 2px 15px rgba(0,0,0,0.01);
}
.exames-col:hover { border-color: rgba(39, 25, 109, 0.15); }

.exames-col-header {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.exames-col-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-primary);
}

.exames-col-icon {
  width: 48px; height: 48px;
  background: rgba(194, 222, 251, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  border: 1px solid rgba(39, 25, 109, 0.05);
  flex-shrink: 0;
}

.exames-col-icon.cirurgias-icon {
  background: rgba(194, 222, 251, 0.35);
}

.exames-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.exames-list li {
  position: relative;
  padding: .55rem .75rem .55rem 2.25rem;
  font-size: .875rem;
  color: var(--c-text);
  line-height: 1.5;
  border-radius: 8px;
  transition: background var(--t-fast) var(--ease);
}

.exames-list li::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-primary);
  flex-shrink: 0;
}

.exames-list li:hover {
  background: rgba(194, 222, 251, 0.25);
  color: var(--c-primary);
}

@media (max-width: 768px) {
  .exames-grid { grid-template-columns: 1fr; }
}

/* ── Convênios ─────────────────────────────────────── */
.convenios { position: relative; overflow: hidden; background: var(--c-bg); }

.convenios-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(194, 222, 251, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.convenios-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.convenio-card {
  background: var(--c-surface);
  border: 1px solid rgba(194, 222, 251, 0.5);
  border-radius: 12px;
  padding: .85rem .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
  cursor: default;
  box-shadow: 0 1px 4px rgba(0,0,0,0.01);
}

.convenio-card::before {
  content: none;
}

.convenio-card:hover {
  border-color: var(--c-primary);
  box-shadow: 0 4px 16px rgba(39, 25, 109, 0.05);
}
.convenio-card:hover::before { opacity: 0; }

.conv-logo-placeholder {
  display: none;
}

.conv-name {
  position: relative;
  font-size: .78rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.3;
  letter-spacing: .01em;
  transition: color var(--t-fast);
}
.convenio-card:hover .conv-name { color: var(--c-primary); }

.convenios-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--c-primary);
  text-align: center;
  padding: 1rem;
  background: rgba(194, 222, 251, 0.2);
  border: 1px solid rgba(194, 222, 251, 0.5);
  border-radius: 12px;
  margin-top: .5rem;
}

@media (max-width: 1024px) {
  .convenios-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .convenios-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 400px) {
  .convenios-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Deep blue band (mesmo visual do CTA) ──────────── */
.section-band {
  position: relative;
  overflow: hidden;
  background: var(--grad-brand-deep);
  color: var(--c-white);
}

.section-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 0%, transparent 75%);
          mask-image: radial-gradient(ellipse 60% 70% at 50% 50%, #000 0%, transparent 75%);
  pointer-events: none;
}

.section-band::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 111, 224, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.section-band > .container {
  position: relative;
  z-index: 1;
}

.section-band .section-title { color: var(--c-white); }
.section-band .section-desc { color: rgba(255, 255, 255, 0.78); }
.section-band .section-header .section-title::after {
  content: none;
}
.section-band .section-badge {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--c-white);
}
.section-band .section-badge::before {
  background: var(--c-secondary);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
}
.section-band .gradient-text {
  background: linear-gradient(135deg, #a8c4ff 0%, #c2defb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Variante: brilho no canto esquerdo */
.section-band.band-glow-left::after {
  right: auto;
  left: -12%;
}

/* ── CTA Section ───────────────────────────────────── */
.cta-section {
  padding: 5rem 1.5rem;
}

.cta-section > .container {
  position: relative;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--c-white);
  margin-bottom: 1rem;
}

.cta-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: var(--c-green);
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(37,211,102,.3);
  transition: all var(--t-med) var(--ease);
}
.btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,211,102,.5); }

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .9rem 2rem;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--c-white);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--t-med) var(--ease);
}
.btn-cta-secondary:hover { background: rgba(255,255,255,.08); border-color: var(--c-white); transform: translateY(-2px); }

/* ── Contact ───────────────────────────────────────── */
.contact { background: var(--c-bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.05);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  transition: all var(--t-med) var(--ease);
  box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}
.contact-card:hover { border-color: rgba(39, 25, 109, 0.15); }

.cc-icon {
  width: 48px; height: 48px;
  background: rgba(194, 222, 251, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  border: 1px solid rgba(39, 25, 109, 0.05);
  flex-shrink: 0;
}

.cc-info h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: .25rem;
}
.cc-info p { font-size: .87rem; color: var(--c-text-muted); line-height: 1.65; }
.cc-info p a { color: var(--c-primary); font-weight: 600; transition: color var(--t-fast); }
.cc-info p a:hover { color: var(--c-primary-dark); text-decoration: underline; }
.cc-info p em { font-size: .8rem; }

.contact-btn {
  width: 100%;
  justify-content: center;
  margin-top: .5rem;
  background: var(--c-green);
  color: var(--c-white);
  box-shadow: 0 4px 14px rgba(37,211,102,.25);
}
.contact-btn:hover {
  background: #1eb855;
  box-shadow: 0 6px 20px rgba(37,211,102,.35);
}

.map-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(39, 25, 109, 0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
  height: 100%;
  min-height: 420px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  filter: none; /* Removed the dark/invert filters to match the clean theme */
}

/* ── Footer ────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 4rem 0 2rem;
  overflow: hidden;
  background: var(--grad-brand-deep);
  color: var(--c-white);
}

/* Brilho azul sutil no canto do footer */
.footer::before {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 111, 224, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.footer-bg { display: none; }

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: .9rem;
}

.footer-tagline { font-size: .87rem; color: rgba(255, 255, 255, 0.75); line-height: 1.65; }

.footer-links-col { position: relative; }

.footer-links-col h4,
.footer-contact-col h4 {
  font-size: .85rem;
  font-weight: 700;
  color: var(--c-white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}

.footer-links-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links-col a, .footer-contact-col a {
  font-size: .87rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--t-fast);
}
.footer-links-col a:hover, .footer-contact-col a:hover { color: var(--c-secondary); }

.footer-contact-col { position: relative; }
.footer-contact-col p { font-size: .87rem; color: rgba(255, 255, 255, 0.75); margin-bottom: .5rem; }
.footer-addr { line-height: 1.6; }

.footer-wpp-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .75rem;
  padding: .55rem 1.15rem;
  background: rgba(37,211,102,.15);
  border: 1px solid rgba(37,211,102,.4);
  color: #25D366;
  font-size: .85rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all var(--t-med) var(--ease);
}
.footer-wpp-btn:hover { background: rgba(37,211,102,.25); color: #25D366; }

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p { font-size: .8rem; color: rgba(255, 255, 255, 0.6); }
.footer-disclaimer { margin-top: .4rem; font-size: .75rem !important; opacity: .7; }

/* ── WhatsApp Float ────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 58px; height: 58px;
  background: var(--c-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--t-med) var(--ease);
  animation: wppBounce 3s ease infinite 2s;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,.6);
}

@keyframes wppBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

.wpp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--c-surface);
  color: var(--c-primary);
  font-size: .82rem;
  font-weight: 600;
  padding: .4rem .9rem;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(39, 25, 109, 0.1);
  box-shadow: var(--shadow-card);
  transition: opacity var(--t-med) var(--ease);
}
.whatsapp-float:hover .wpp-tooltip { opacity: 1; }

/* ── Scroll Animations ─────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.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; }

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero { text-align: center; padding-top: 8rem; }
  .hero-inner { flex-direction: column; gap: 2rem; }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats  { justify-content: center; }
  .hero-visual { margin-top: 0; }
  .hero-img-wrapper { width: 320px; height: 300px; }
  .hero-eye-img { width: 200px; height: 200px; left: 16%; }
  .hero-doctor-img { width: 148px; height: 148px; bottom: 6px; right: 2px; border-width: 3px; }
  .hero-img-wrapper::before { width: 240px; height: 240px; }
  .ring-1 { width: 280px; height: 280px; }
  .ring-2 { width: 310px; height: 310px; }
  .ring-3 { width: 340px; height: 340px; }
  .ring-1 { width: 260px; height: 260px; }
  .ring-2 { width: 290px; height: 290px; }
  .ring-3 { width: 320px; height: 320px; }

  .about-grid  { grid-template-columns: 1fr; }
  .about-img-col { order: -1; display: flex; justify-content: center; }
  .floating-card { right: 0; }

  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .services-grid    { grid-template-columns: 1fr 1fr; }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .contact-grid     { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-py: 3.5rem; }

  .nav-links { 
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 1.3rem; }
  .nav-cta  { margin-left: 0; }
  .hamburger { display: flex; z-index: 1000; }
  .nav-logo  { position: relative; z-index: 1000; }

  .specialties-grid { grid-template-columns: 1fr; }
  .services-grid    { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 2rem; }
  .about-features   { grid-template-columns: 1fr; }

  /* Evita que o retrato do "Sobre" ocupe tela demais no mobile */
  .about-img { max-width: 320px; max-height: none; aspect-ratio: 4 / 5; }
}

@media (max-width: 480px) {
  .hero-stats  { gap: 1rem; }
  .stat-num    { font-size: 1.3rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ── Corpo Clínico / Equipe ────────────────────────── */
.section-band .team-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}
.section-band .team-card:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.team-card {
  background: var(--c-bg-card);
  border: 1px solid var(--c-border);
  border-radius: 20px;
  padding: 2.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: all var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-card:hover {
  border-color: rgba(39, 25, 109, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(39, 25, 109, 0.05);
}

.team-avatar-init {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  transition: transform var(--t-med) var(--ease);
  background: rgba(39, 25, 109, 0.02);
  border: 1.5px solid rgba(39, 25, 109, 0.12);
  color: var(--c-primary);
}

.team-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  margin-bottom: 1.25rem;
  border: 3px solid var(--c-white);
  box-shadow: 0 4px 14px rgba(39, 25, 109, 0.12);
  transition: transform var(--t-med) var(--ease);
}
.team-card:hover .team-photo { transform: scale(1.06); }

.team-card:hover .team-avatar-init {
  transform: scale(1.08);
}

.team-avatar-init.roxo {
  border-color: rgba(39, 25, 109, 0.15);
}

.team-avatar-init.azul {
  border-color: rgba(194, 222, 251, 0.8);
  background: rgba(194, 222, 251, 0.1);
}

.team-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: .25rem;
  line-height: 1.3;
}

.team-crm {
  display: block;
  font-size: .8rem;
  color: var(--c-text-muted);
  margin-bottom: .6rem;
}

.team-badge {
  display: inline-block;
  background: rgba(194, 222, 251, 0.35);
  border: 1px solid rgba(39, 25, 109, 0.05);
  color: var(--c-primary);
  font-size: .75rem;
  font-weight: 600;
  padding: .25rem .75rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.team-info {
  font-size: .85rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  text-align: left;
  margin-top: auto;
}

.additional-team {
  margin-top: 1.5rem;
}

/* Responsividade do Corpo Clínico */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Como agendar (steps) ─────────────────────────── */
.container-narrow { max-width: 760px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.section-band .step-card {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.step-card {
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.06);
  border-radius: 20px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 1.1rem;
}

.step-card h3 {
  font-size: 1.1rem;
  color: var(--c-primary);
  margin-bottom: .5rem;
}
.step-card p { font-size: .9rem; color: var(--c-text-muted); line-height: 1.65; }

.steps-cta { display: flex; justify-content: center; margin-top: 2.5rem; }

/* ── FAQ ──────────────────────────────────────────── */
.faq { background: var(--c-bg); }

.faq-list { display: flex; flex-direction: column; gap: .85rem; }

.faq-item {
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--t-med) var(--ease);
}
.faq-item[open] { border-color: rgba(39, 25, 109, 0.2); }

.faq-q {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 600;
  color: var(--c-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--c-primary);
  transition: transform var(--t-med) var(--ease);
  flex-shrink: 0;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }

.faq-a {
  padding: 0 1.35rem 1.2rem;
  color: var(--c-text-muted);
  font-size: .92rem;
  line-height: 1.7;
}
.faq-a a { color: var(--c-primary); font-weight: 600; }
.faq-a a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* ── Vista Cansada / READ ─────────────────────────── */
.read-highlight { position: relative; overflow: hidden; }
.read-highlight.section-band .read-lead {
  color: rgba(255, 255, 255, 0.92);
}
.read-highlight.section-band .read-lead strong { color: var(--c-secondary); }
.read-highlight.section-band .read-desc { color: rgba(255, 255, 255, 0.72); }
.read-highlight.section-band .read-figure {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.read-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
}
.read-lead {
  font-size: 1.15rem;
  color: var(--c-text);
  line-height: 1.7;
  margin: 1rem 0;
}
.read-lead strong { color: var(--c-primary); }
.read-desc {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.read-card {
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.08);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
}
.read-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--c-primary);
  margin-bottom: 1.25rem;
}
.read-list { display: flex; flex-direction: column; gap: .85rem; }
.read-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--c-text);
  line-height: 1.5;
}
.read-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.15);
  border: 1px solid rgba(37, 211, 102, 0.5);
}
.read-list li::after {
  content: '';
  position: absolute;
  left: 7px; top: 8px;
  width: 5px; height: 9px;
  border: solid var(--c-green);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

@media (max-width: 900px) {
  .read-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Depoimentos ──────────────────────────────────── */
.depoimentos { background: var(--c-bg); }
.depo-disclaimer {
  max-width: 42rem;
  margin: .85rem auto 0;
  font-size: .82rem;
  color: var(--c-text-muted);
  line-height: 1.55;
  text-align: center;
}
.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.depo-card {
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.07);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.depo-quote { color: var(--c-secondary); flex-shrink: 0; }
.depo-text {
  font-size: 1rem;
  color: var(--c-text);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}
.depo-author {
  font-size: .9rem;
  font-weight: 700;
  color: var(--c-primary);
  margin-top: auto;
}
.depo-proc {
  display: block;
  font-size: .78rem;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-top: .2rem;
}

@media (max-width: 900px) {
  .depo-grid { grid-template-columns: 1fr; }
}

/* ── Barra de ação fixa (mobile) ──────────────────── */
.mobile-cta-bar { display: none; }

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 998;
    padding: .6rem .8rem calc(.6rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(39, 25, 109, 0.08);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  }
  .mcb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .8rem;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 600;
  }
  .mcb-call { border: 1.5px solid var(--c-primary); color: var(--c-primary); }
  .mcb-wpp  { background: var(--c-green); color: #fff; }
  .whatsapp-float { display: none; }
  body { padding-bottom: 5rem; }
}

/* ── Reduced motion: respeitar preferência do usuário ─ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  html { scroll-behavior: auto; }
  .hero-ring,
  .badge-dot,
  .floating-card,
  .whatsapp-float,
  .hero-scroll-btn { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════════
   ACABAMENTO FINO — identidade azul consistente
   ═══════════════════════════════════════════════════════ */

/* Tiles de ícone com gradiente de marca (estado base) */
.sc-icon,
.srv-icon,
.feature-icon,
.cc-icon,
.fc-icon,
.exames-col-icon,
.conv-logo-placeholder {
  background: var(--grad-icon);
  border-color: rgba(43, 70, 192, 0.16);
}

/* Acento superior nos cards de especialidade e blog */
.specialty-card {
  position: relative;
  overflow: hidden;
}
.specialty-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 24px 24px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
}
.specialty-card:hover::after {
  transform: scaleX(1);
}

/* O card em destaque das especialidades já nasce com o acento */
.specialty-card.featured::after { transform: scaleX(1); }

/* Moldura decorativa do retrato "Sobre" com gradiente */
.about-img-decor {
  background: var(--grad-icon);
  border-color: rgba(43, 70, 192, 0.22);
}

/* Passo numerado (Como Agendar) com gradiente de marca */
.step-num { background: var(--grad-brand); color: var(--c-white); }

/* ═══════════════════════════════════════════════════════
   BLOG / ARTIGOS
   ═══════════════════════════════════════════════════════ */

/* Seção de blog na home */
.blog { background: var(--c-bg-2); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--c-surface);
  border: 1px solid rgba(39, 25, 109, 0.06);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease), border-color var(--t-med) var(--ease);
}
.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(43, 70, 192, 0.18);
}
.post-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad-brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease);
  z-index: 2;
}
.post-card:hover::after { transform: scaleX(1); }

.post-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}
.post-card-link:focus-visible {
  outline: 3px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 20px;
}

.post-cover {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-bg-2);
  flex-shrink: 0;
}
.post-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--t-med) var(--ease);
}
.post-card:hover .post-cover img { transform: scale(1.04); }

.post-cover .post-cat {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  margin: 0;
  padding: .3rem .7rem;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(43, 70, 192, 0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 2px 8px rgba(39, 25, 109, 0.08);
}

.post-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.35rem 1.5rem 1.5rem;
}

.post-cat {
  display: inline-block;
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: .5rem;
}

.post-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--c-primary);
  line-height: 1.3;
  margin-bottom: .6rem;
}

.post-excerpt {
  font-size: .9rem;
  color: var(--c-text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  color: var(--c-text-muted);
  margin-bottom: 1rem;
}

.post-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--c-blue);
  margin-top: auto;
}
.post-link svg { transition: transform var(--t-fast) var(--ease); }
.post-card:hover .post-link svg { transform: translateX(4px); }

.blog-actions { display: flex; justify-content: center; margin-top: 2.5rem; }

/* Barra superior das páginas de blog/artigo */
.blog-topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(43, 70, 192, 0.1);
}
.blog-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  padding-bottom: .75rem;
}
.blog-topbar-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.blog-topbar-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--c-text-muted);
  transition: color var(--t-fast) var(--ease);
}
.blog-topbar-links a:hover { color: var(--c-primary); }
.blog-topbar-links .nav-cta { color: var(--c-white); }

/* Cabeçalho da página de listagem */
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 3rem;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 80% 10%, rgba(63, 111, 224, 0.10) 0%, transparent 60%),
    linear-gradient(135deg, #ffffff 0%, #e8f0fd 100%);
}
.blog-hero .section-badge { margin-bottom: 1rem; }
.blog-listing { padding: 3.5rem 0 5rem; background: var(--c-bg); }
.blog-listing .blog-grid { row-gap: 1.75rem; }

/* ── Página de artigo ─────────────────────────────── */
.container-article { max-width: 760px; }

.article-main { padding: 3rem 0 4rem; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--c-blue); font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: rgba(39, 25, 109, 0.25); }

.article-cat {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--c-blue);
  margin-bottom: .5rem;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--c-primary);
  line-height: 1.2;
  margin-bottom: .85rem;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .85rem;
  color: var(--c-text-muted);
  margin-bottom: 1.25rem;
}

.article-cover {
  position: relative;
  margin: 0 0 1.75rem;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--c-bg-2);
  box-shadow: var(--shadow-card);
}
.article-cover img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  display: block;
}

.article-body {
  color: var(--c-text);
  border-top: 1px solid var(--c-border);
  padding-top: 1.75rem;
}
.article-body > p:first-of-type {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--c-text);
  margin-bottom: 1.25rem;
}
.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--c-primary);
  margin: 2rem 0 .75rem;
}
.article-body p { line-height: 1.8; margin-bottom: 1rem; }
.article-body strong { color: var(--c-primary); }
.article-body ul { display: flex; flex-direction: column; gap: .5rem; margin: 0 0 1.25rem; }
.article-body li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.6;
}
.article-body li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-blue);
}

.article-cta {
  position: relative;
  overflow: hidden;
  margin: 2.5rem 0 1.5rem;
  padding: 2rem;
  border-radius: 20px;
  background: var(--grad-brand-deep);
  color: var(--c-white);
  text-align: center;
}
.article-cta h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: .5rem;
  color: var(--c-white);
}
.article-cta p { color: rgba(255, 255, 255, 0.82); margin-bottom: 1.25rem; }
.article-cta .btn-primary { background: var(--c-green); box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3); }
.article-cta .btn-primary:hover { background: #1eb855; }

.article-disclaimer {
  font-size: .8rem;
  color: var(--c-text-muted);
  font-style: italic;
  padding: 1rem 1.25rem;
  background: rgba(194, 222, 251, 0.2);
  border: 1px solid var(--c-border2);
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--c-blue);
}
.article-back:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-topbar-links { gap: 1rem; }
  .blog-topbar-links a:not(.nav-cta) { display: none; }
}

/* ═══════════════════════════════════════════════════════
   ACESSIBILIDADE — barra de ferramentas, temas e efeitos
   ═══════════════════════════════════════════════════════ */

/* Botão flutuante (logo acima do botão do WhatsApp, canto inferior direito) */
.a11y-fab {
  position: fixed;
  right: calc(2rem + 3px);
  bottom: 2rem;
  z-index: 9999;
  width: 56px;
  height: 56px;
  border: 3px solid #fff;
  border-radius: 50%;
  cursor: pointer;
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 22px rgba(23, 16, 63, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.a11y-fab:hover {
  transform: scale(1.07);
  box-shadow: 0 8px 28px rgba(23, 16, 63, 0.45);
}

.a11y-panel {
  position: fixed;
  right: 2rem;
  bottom: 6rem;
  z-index: 9999;
  width: 300px;
  max-width: calc(100vw - 2.5rem);
  background: var(--c-surface);
  color: var(--c-text);
  border: 1px solid var(--c-border);
  border-radius: 18px;
  box-shadow: var(--shadow-blue);
  padding: 1.15rem 1.15rem 1.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med) var(--ease);
}
.a11y-panel.open { opacity: 1; visibility: visible; transform: none; }

.a11y-title {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-primary);
  margin-bottom: 1rem;
}
.a11y-title svg { color: var(--c-blue); }

.a11y-group { margin-bottom: 1rem; }
.a11y-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: .5rem;
}
.a11y-row { display: flex; gap: .5rem; }

.a11y-btn {
  flex: 1;
  padding: .6rem .5rem;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: var(--c-bg-2);
  color: var(--c-text);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.a11y-btn:hover { border-color: var(--c-blue); color: var(--c-primary); }
.a11y-btn[aria-pressed="true"] {
  background: var(--grad-brand);
  color: #fff;
  border-color: transparent;
}

.a11y-font-val {
  min-width: 3.2rem;
  align-self: center;
  text-align: center;
  font-weight: 700;
  color: var(--c-primary);
}

.a11y-reset {
  width: 100%;
  margin-top: .25rem;
  padding: .6rem;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  background: transparent;
  color: var(--c-text-muted);
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.a11y-reset:hover { color: var(--c-primary); border-color: var(--c-blue); }

.a11y-close {
  position: absolute;
  top: .6rem;
  right: .6rem;
  padding: .25rem;
  border: none;
  background: none;
  color: var(--c-text-muted);
  cursor: pointer;
  line-height: 0;
}
.a11y-close:hover { color: var(--c-primary); }

@media (max-width: 768px) {
  /* No mobile o WhatsApp flutuante some (vira barra fixa); sobe o botão para não colidir */
  .a11y-fab { right: 1rem; bottom: 6.25rem; }
  .a11y-panel { right: 1rem; bottom: 10rem; }
}

/* ── Efeito: tons de cinza ─────────────────────────── */
html.a11y-gray body > :not(.a11y-fab):not(.a11y-panel) {
  filter: grayscale(1);
}

/* ── Efeito: destacar links ────────────────────────── */
html.a11y-links a:not(.btn-primary):not(.btn-secondary):not(.btn-cta-primary):not(.btn-cta-secondary):not(.nav-cta):not(.a11y-fab) {
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

/* ── Alto contraste ────────────────────────────────── */
html.a11y-contrast {
  --c-bg: #ffffff;
  --c-bg-2: #ffffff;
  --c-bg-3: #ffffff;
  --c-bg-card: #ffffff;
  --c-surface: #ffffff;
  --c-text: #000000;
  --c-text-muted: #1a1a1a;
  --c-primary: #000000;
  --c-blue: #0a1e8f;
  --c-border: #000000;
  --c-border2: #000000;
  --grad-icon: linear-gradient(140deg, #e6ecff 0%, #dfe7ff 100%);
}
html.a11y-contrast body { background: #ffffff; }
html.a11y-contrast .navbar,
html.a11y-contrast .navbar.scrolled,
html.a11y-contrast .blog-topbar { background: #ffffff; border-bottom: 2px solid #000; }
html.a11y-contrast .section-band {
  background: #000;
  color: #fff;
}
html.a11y-contrast .section-band .section-title,
html.a11y-contrast .section-band .section-badge { color: #fff; }
html.a11y-contrast .section-band .gradient-text {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
}
html.a11y-contrast .hero,
html.a11y-contrast .blog-hero { background: #ffffff; }
html.a11y-contrast .gradient-text {
  background: none;
  -webkit-text-fill-color: currentColor;
  color: #000;
}
html.a11y-contrast .specialty-card,
html.a11y-contrast .service-item,
html.a11y-contrast .exames-col,
html.a11y-contrast .step-card,
html.a11y-contrast .faq-item,
html.a11y-contrast .depo-card,
html.a11y-contrast .contact-card,
html.a11y-contrast .convenio-card,
html.a11y-contrast .read-card,
html.a11y-contrast .post-card { border: 2px solid #000; }

/* ── Modo escuro ───────────────────────────────────── */
html.a11y-dark {
  color-scheme: dark;
  --c-bg: #0f1424;
  --c-bg-2: #131b30;
  --c-bg-3: #172038;
  --c-bg-card: #1a2440;
  --c-surface: #1a2440;
  --c-text: #d9e0f0;
  --c-text-muted: #a2b1d1;
  --c-primary: #e2e9ff;
  --c-secondary: #9db4ff;
  --c-border: rgba(255, 255, 255, 0.12);
  --c-border2: rgba(255, 255, 255, 0.10);
  --grad-icon: linear-gradient(140deg, rgba(99, 132, 224, 0.30) 0%, rgba(43, 70, 192, 0.16) 100%);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.45);
  --shadow-header: 0 4px 20px rgba(0, 0, 0, 0.45);
  --shadow-blue: 0 18px 42px rgba(0, 0, 0, 0.55);
}
html.a11y-dark body { background: var(--c-bg); }
html.a11y-dark .navbar {
  background-color: rgba(15, 20, 36, 0.92);
  background-image: var(--grad-brand);
  background-repeat: no-repeat;
  background-size: 100% 3px;
  background-position: top center;
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
html.a11y-dark .navbar.scrolled {
  background-color: rgba(15, 20, 36, 0.97);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.a11y-dark .blog-topbar {
  background: rgba(15, 20, 36, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
html.a11y-dark .hero,
html.a11y-dark .blog-hero {
  background:
    radial-gradient(ellipse 55% 50% at 88% 12%, rgba(63, 111, 224, 0.20) 0%, transparent 60%),
    linear-gradient(135deg, #0f1424 0%, #172038 100%);
}
html.a11y-dark .gradient-text {
  background-image: linear-gradient(135deg, #8ea6ff 0%, #c6d2ff 100%);
}
/* Logo escura fica invisível sobre fundo escuro — torna monocromática clara */
html.a11y-dark .navbar .logo-img,
html.a11y-dark .blog-topbar .logo-img { filter: brightness(0) invert(1); }
html.a11y-dark .post-cover .post-cat {
  background: rgba(26, 36, 64, 0.92);
  border-color: rgba(255, 255, 255, 0.12);
}
/* Card em destaque das especialidades: herdar superfície escura (evita fundo branco) */
html.a11y-dark .specialty-card.featured {
  background: linear-gradient(145deg, rgba(99, 132, 224, 0.16) 0%, var(--c-surface) 100%);
  border-color: rgba(142, 166, 255, 0.35);
  box-shadow: var(--shadow-card);
}
html.a11y-dark .specialty-card.featured:hover {
  border-color: rgba(142, 166, 255, 0.6);
  box-shadow: var(--shadow-blue);
}
/* Pílula do hero legível sobre o fundo escuro */
html.a11y-dark .hero-badge {
  background: rgba(99, 132, 224, 0.18);
  border-color: rgba(255, 255, 255, 0.12);
}

@media (max-width: 768px) {
  html.a11y-dark .nav-links { background: rgba(15, 20, 36, 0.98); }
  html.a11y-dark .mobile-cta-bar {
    background: rgba(15, 20, 36, 0.97);
    border-top-color: rgba(255, 255, 255, 0.08);
  }
}

/* Respeita usuários que pedem menos movimento */
@media (prefers-reduced-motion: reduce) {
  .a11y-fab, .a11y-panel { transition: none; }
}

/* ═══════════════════════════════════════════════════════
   IMAGENS CONTEXTUAIS AO LONGO DO SITE
   ═══════════════════════════════════════════════════════ */

/* Hero: centraliza a íris do olho real dentro do círculo */
.hero-eye-img { object-position: 62% 50%; }

/* READ / Laser — foto + card empilhados na coluna direita */
.read-side { display: flex; flex-direction: column; gap: 1.25rem; }
.read-figure {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid var(--c-surface);
  box-shadow: var(--shadow-blue);
}
.read-figure img { width: 100%; height: 230px; object-fit: cover; display: block; }

/* Serviços — imagem lateral (tecnologia) + grade de cards */
.services-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2.5rem;
  align-items: stretch;
}
.services-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--c-surface);
  box-shadow: var(--shadow-card);
}
.services-media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; }
.services-layout .services-grid { grid-template-columns: repeat(2, 1fr); }

/* Exames — banner de consulta acima das listas */
.exames-banner {
  margin: 0 0 2.5rem;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--c-surface);
  box-shadow: var(--shadow-card);
}
.exames-banner img { width: 100%; height: 340px; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .services-layout { grid-template-columns: 1fr; }
  .services-media img { min-height: 260px; max-height: 340px; }
  .exames-banner img { height: 260px; }
}
@media (max-width: 600px) {
  .services-layout .services-grid { grid-template-columns: 1fr; }
  .exames-banner img { height: 200px; }
  .read-figure img { height: 190px; }
}

