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

:root {
  --blue-900: #0a2540;
  --blue-800: #0f3a66;
  --blue-700: #155191;
  --blue-600: #1d63ad;
  --blue-500: #1e6ab4;
  --blue-400: #3b82c4;
  --blue-300: #7cb9e8;
  --blue-100: #dbeafe;
  --blue-50:  #eef6fc;

  --green-700: #07835c;
  --green-600: #0a9d6e;
  --green-500: #12b886;
  --green-100: #c8f1e2;
  --green-50:  #e6f7f1;

  --red: #e02424;
  --red-soft: #fdecec;

  --ink:       #0f172a;  /* títulos — preto */
  --ink-soft:  #475569;  /* corpo */
  --ink-muted: #94a3b8;

  --neutral-900: #0f172a;
  --neutral-800: #1e293b;
  --neutral-600: #475569;
  --neutral-400: #94a3b8;
  --neutral-200: #e6edf4;
  --neutral-100: #f1f5f9;
  --neutral-50:  #f5f9fc;
  --white: #ffffff;

  --bg-alt: #f4f9fd;

  --accent: #1e6ab4;
  --accent-dark: #155191;
  --accent-light: #3b82c4;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(15,42,80,.06), 0 1px 2px rgba(15,42,80,.04);
  --shadow-md: 0 6px 20px rgba(15,42,80,.09), 0 2px 6px rgba(15,42,80,.05);
  --shadow-lg: 0 24px 56px rgba(15,42,80,.14), 0 8px 16px rgba(15,42,80,.07);

  --transition: 0.25s ease;
  --nav-h: 72px;
  --topbar-h: 38px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

/* ===========================
   Top bar (data e hora)
=========================== */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 101;
  height: var(--topbar-h);
  background: linear-gradient(90deg, var(--blue-900), var(--blue-700));
  color: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
}
.topbar-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lang-switch {
  display: inline-flex;
  gap: 2px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 7px;
  padding: 2px;
  flex-shrink: 0;
}
.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.72);
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 10px;
  border-radius: 5px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.lang-btn:hover { color: #fff; }
.lang-btn.active { background: #fff; color: var(--blue-800); }
.topbar-clock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.topbar-clock svg { width: 15px; height: 15px; color: var(--blue-300); flex-shrink: 0; }
.topbar-clock .clock-sep { color: rgba(255,255,255,0.4); }
.topbar-clock #clock-time {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: #fff;
}

/* ===========================
   Navigation
=========================== */
.nav {
  position: fixed;
  top: var(--topbar-h); left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  border-color: var(--neutral-200);
  box-shadow: var(--shadow-sm);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.nav-logo .nav-mark { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}
.nav-links a {
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--blue-50); }
.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 8px 18px;
}
.nav-links a.nav-cta:hover { background: var(--accent-dark); color: var(--white); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ===========================
   Buttons
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--neutral-200);
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--blue-50);
}

/* ===========================
   Hero
=========================== */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 55% 60% at 78% 35%, rgba(30,106,180,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 12% 80%, rgba(10,157,110,0.08) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-alt) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + var(--topbar-h) + 40px) 24px 80px;
}
/* Marca d'água do bastão de Esculápio */
.hero-watermark {
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 420px;
  height: 420px;
  color: var(--blue-500);
  opacity: 0.05;
  pointer-events: none;
}
.hero-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  align-items: center;
  gap: 60px;
  position: relative;
}
.hero-content { color: var(--ink); }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .cross-mark { width: 15px; height: 15px; color: var(--red); }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.credential-tag {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 8px;
  letter-spacing: 0.04em;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Hero Visual — Photo */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-photo-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid var(--blue-100);
  animation: rotate linear infinite;
}
.hero-photo-ring--outer { width: 110%; height: 110%; animation-duration: 30s; }
.hero-photo-ring--inner { width: 122%; height: 122%; animation-duration: 50s; animation-direction: reverse; border-style: dashed; border-color: var(--green-100); }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.hero-photo-frame {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  border: 4px solid var(--white);
  box-shadow:
    0 0 0 5px var(--blue-100),
    0 20px 48px rgba(15,42,80,0.22);
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(1.08) contrast(1.04) saturate(1.05) hue-rotate(-6deg);
  display: block;
}
.hero-photo-vignette {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: inset 0 -30px 50px rgba(15,42,80,0.18);
  pointer-events: none;
}
/* Cruz vermelha flutuante sobre a foto */
.hero-photo-cross {
  position: absolute;
  bottom: 14px;
  right: 8px;
  width: 56px;
  height: 56px;
  background: var(--red);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 20px rgba(224,36,36,0.35);
  border: 3px solid var(--white);
  z-index: 2;
}
.hero-photo-cross svg { width: 28px; height: 28px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, var(--ink-muted), transparent);
  animation: scroll-pulse 1.8s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.2); }
}

/* ===========================
   Sections
=========================== */
.section { padding: 96px 24px; }
.section--alt { background: var(--bg-alt); }

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}

/* ===========================
   About
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-text p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong { color: var(--ink); font-weight: 600; }

.about-stats { display: flex; flex-direction: column; gap: 16px; }
.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.stat-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.stat-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.stat-icon svg { width: 22px; height: 22px; }
.stat-info { display: flex; flex-direction: column; }
.stat-label { font-size: 12px; color: var(--ink-muted); font-weight: 500; margin-bottom: 2px; }
.stat-value { font-size: 15px; font-weight: 700; color: var(--ink); }

/* ===========================
   Specialties
=========================== */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.specialty-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}
.specialty-card::before {
  content: attr(data-index);
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--neutral-200);
  font-family: var(--font-serif);
}
.specialty-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--blue-300);
}
.specialty-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
  transition: background var(--transition);
}
.specialty-icon svg { width: 36px; height: 36px; }
.specialty-card:hover .specialty-icon { background: var(--blue-100); }
.specialty-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
}
.specialty-card p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ===========================
   Locais de Atendimento
=========================== */
.places-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.place-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.place-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--blue-300);
}
.place-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
  grid-column: 1 / -1;
}
.place-card--unimed:hover { border-color: var(--green-500); }

.place-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.place-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
}
.place-logo small { font-size: 8px; font-weight: 600; letter-spacing: 0.06em; opacity: 0.85; margin-top: 3px; }
.place-logo--ijf     { background: linear-gradient(135deg, #c0392b, #e02424); font-size: 20px; }
.place-logo--huwc    { background: linear-gradient(135deg, var(--blue-700), var(--blue-500)); font-size: 16px; }
.place-logo--clinica { background: linear-gradient(135deg, var(--blue-900), var(--blue-700)); font-size: 24px; font-family: var(--font-serif); }
.place-logo--unimed  { background: linear-gradient(135deg, var(--green-700), var(--green-500)); font-size: 13px; }

.place-head-text h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
}
.place-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
}
.place-card--unimed .place-tag { color: var(--green-600); }

.place-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 22px;
}
.place-desc strong { color: var(--ink); font-weight: 600; }

.place-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
.place-map, .place-site {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition), color var(--transition);
}
.place-map svg, .place-site svg { width: 17px; height: 17px; flex-shrink: 0; }
.place-map:hover, .place-site:hover { color: var(--accent-dark); gap: 11px; }
.place-card--unimed .place-site { color: var(--green-600); }
.place-card--unimed .place-site:hover { color: var(--green-700); }
.place-address {
  font-size: 13px;
  color: var(--ink-muted);
  width: 100%;
}

/* Bloco de contatos destacado (clínica) */
.place-contacts {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-200);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.place-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: background var(--transition), border-color var(--transition);
}
.place-contact:hover { background: var(--white); border-color: var(--accent); }
.place-contact--wa { background: var(--green-50); border-color: var(--green-100); }
.place-contact--wa:hover { border-color: var(--green-500); }
.place-contact-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.place-contact--wa .place-contact-icon { color: #1faa55; }
.place-contact-icon svg { width: 20px; height: 20px; }
.place-contact-text { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.place-contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--ink-muted); }
.place-contact-value { font-size: 14.5px; font-weight: 600; color: var(--ink); }

/* ===========================
   Formação (timeline)
=========================== */
.timeline {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  list-style: none;
}
.timeline-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 24px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: -4px;
  width: 2px;
  background: linear-gradient(var(--blue-300), var(--green-100));
}
.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.timeline-item:last-child .timeline-marker { background: linear-gradient(135deg, var(--green-700), var(--green-500)); }
.timeline-marker svg { width: 26px; height: 26px; }
.timeline-card {
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 22px 26px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.timeline-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: var(--blue-300);
}
.timeline-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--blue-50);
  padding: 3px 11px;
  border-radius: 6px;
  margin-bottom: 12px;
}
.timeline-item:last-child .timeline-tag { color: var(--green-700); background: var(--green-50); }
.timeline-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 4px;
}
.timeline-inst {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 12px;
}
.timeline-card h3 + .timeline-inst { margin-top: 2px; }
.timeline-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.timeline-card h3:last-child,
.timeline-inst:last-child { margin-bottom: 0; }

/* ===========================
   Credentials
=========================== */
.credentials-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.credential-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.credential-item:hover { box-shadow: var(--shadow-md); }
.credential-item--featured {
  border-color: var(--blue-300);
  box-shadow: 0 0 0 1px var(--blue-300), var(--shadow-md);
  padding: 32px;
}
.credential-logo {
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.credential-detail h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.credential-detail p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 16px;
}
.credential-badge {
  display: inline-flex;
  background: var(--blue-50);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 6px;
  letter-spacing: 0.04em;
}
.credential-side { display: flex; flex-direction: column; gap: 16px; }
.credential-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.credential-icon svg { width: 22px; height: 22px; }
.credential-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.credential-item p {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ===========================
   Links úteis
=========================== */
.links-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.link-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
  border-color: var(--blue-300);
}
.link-card-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
  transition: background var(--transition);
}
.link-card:hover .link-card-icon { background: var(--blue-100); }
.link-card-icon svg { width: 22px; height: 22px; }
.link-card-body { flex: 1; min-width: 0; }
.link-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
}
.link-card-body p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.link-card-arrow {
  color: var(--ink-muted);
  flex-shrink: 0;
  transition: color var(--transition), transform var(--transition);
}
.link-card-arrow svg { width: 18px; height: 18px; display: block; }
.link-card:hover .link-card-arrow { color: var(--accent); transform: translateX(3px); }

/* ===========================
   Contact
=========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-description {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 40px;
}
.contact-items { display: flex; flex-direction: column; gap: 14px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--neutral-200);
  border-radius: var(--radius);
  padding: 14px 18px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.contact-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-item span { font-size: 16px; font-weight: 500; }

.contact-item-text { display: flex; flex-direction: column; gap: 2px; }
.contact-item-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted); }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--ink); }

.contact-icon--whatsapp { background: var(--green-50); border-color: var(--green-100); color: #1faa55; }
.contact-icon--institutional { background: var(--neutral-50); }

.contact-card {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-inner {
  background: linear-gradient(160deg, var(--blue-700), var(--blue-900));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.contact-card-inner::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(124,185,232,0.25), transparent 70%);
}
.contact-card-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  position: relative;
}
.contact-card-subtitle {
  font-size: 14px;
  color: var(--blue-300);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}
.contact-card-credentials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  position: relative;
}
.contact-card-affiliation {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  position: relative;
}
.contact-card-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
  margin: 20px auto;
  position: relative;
}
.contact-card-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  position: relative;
}
.contact-card-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  transition: background var(--transition), color var(--transition);
}
.contact-card-social a:hover { background: rgba(255,255,255,0.25); color: var(--white); }
.contact-card-social svg { width: 16px; height: 16px; }

/* Social links row */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-link {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); transform: translateY(-2px); }
.social-link svg { width: 20px; height: 20px; }

/* ===========================
   Footer
=========================== */
.footer {
  background: var(--white);
  border-top: 1px solid var(--neutral-200);
  padding: 32px 24px;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-name {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.footer-emblem { display: inline-flex; align-items: center; gap: 5px; }
.footer-emblem .em-asclepius { width: 18px; height: 18px; color: var(--accent); }
.footer-emblem .em-cross { width: 14px; height: 14px; color: var(--red); }
.footer-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-soft);
}
.footer-sep { color: var(--neutral-200); }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: var(--neutral-50);
  border: 1px solid var(--neutral-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  transition: color var(--transition), background var(--transition);
}
.footer-social a:hover { color: var(--white); background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 15px; height: 15px; }

/* ===========================
   Reveal animations
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1024px) {
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
    padding: 16px 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
  }
  .nav-toggle { display: flex; }

  .hero-container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .specialties-grid { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: 1fr; }
  .place-card--featured { grid-column: auto; }
  .credentials-layout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .topbar-inner { padding: 0 14px; }
  .topbar-clock { font-size: 11px; gap: 5px; }
  .lang-btn { padding: 3px 8px; font-size: 11px; }
}

@media (max-width: 480px) {
  .section { padding: 64px 20px; }
  .hero-title { font-size: 40px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
