@charset "UTF-8";
/* ==========================================================================
   RadioCenter — Radiologia Odontológica · Uberlândia/MG
   Sistema de design institucional
   Paleta da marca: #373F56 · #56607E · #13151B · #FCFCFD
   ========================================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  /* marca — azul-marinho do material impresso */
  --navy: #373f56;
  --navy-600: #2f3648;
  --navy-700: #262c3c;
  --navy-800: #1e2331;
  --navy-900: #151924;
  --slate: #56607e;
  --slate-300: #a9b2ca;
  --slate-100: #dfe3ee;

  /* neutros */
  --ink: #13151b;
  --ink-80: #343a47;
  --ink-60: #585f70;
  --ink-40: #868d9e;
  --paper: #fcfcfd;
  --bone: #f1f2f6;
  --sand: #e6e8ef;
  --line: #dfe2ea;
  --line-strong: #c9cedb;

  /* superfícies */
  --card: #ffffff;
  --dark: #11141c;

  /* tipografia */
  --font-display: "Newsreader", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-sans: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* métrica */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  /* elevação */
  --shadow-sm: 0 1px 2px rgba(19, 21, 27, 0.04), 0 6px 16px -10px rgba(19, 21, 27, 0.16);
  --shadow-md: 0 1px 2px rgba(19, 21, 27, 0.05), 0 18px 40px -22px rgba(19, 21, 27, 0.28);
  --shadow-lg: 0 2px 4px rgba(19, 21, 27, 0.05), 0 40px 80px -40px rgba(21, 25, 36, 0.42);

  /* movimento */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 76px;
}

/* ---------- 2. Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

p { margin: 0; text-wrap: pretty; }
figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: inherit; text-decoration: none; }

button { font: inherit; color: inherit; border: 0; background: none; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible,
.footer :focus-visible { outline-color: #fff; }

::selection { background: var(--navy); color: #fff; }

/* ---------- 3. Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); position: relative; }
.section--bone { background: var(--bone); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 999;
  background: var(--navy);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus { transform: translate(-50%, 0); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.eyebrow--center { justify-content: center; }
.on-dark .eyebrow { color: var(--slate-300); }

/* títulos de seção */
.section-head { max-width: 46rem; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2,
.exams__aside h2,
.hours h2 { font-size: clamp(1.95rem, 1.25rem + 2.8vw, 3.4rem); }
.section-head .lead { margin-top: 1.1rem; font-size: clamp(1.05rem, 1.6vw, 1.2rem); color: var(--ink-60); }
.on-dark .section-head .lead { color: rgba(255, 255, 255, 0.72); }

/* ---------- 4. Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 52px;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease),
    border-color 0.28s var(--ease), transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.btn svg { flex: none; }

.btn--primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 10px 24px -14px rgba(55, 63, 86, 0.9);
}
.btn--primary:hover { background: var(--navy-600); border-color: var(--navy-600); transform: translateY(-2px); box-shadow: 0 18px 32px -16px rgba(55, 63, 86, 0.7); }

.btn--outline { color: var(--navy); border-color: rgba(55, 63, 86, 0.35); background: transparent; }
.btn--outline:hover { background: var(--navy); border-color: var(--navy); color: #fff; transform: translateY(-2px); }

.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--light:hover { background: var(--slate-100); border-color: var(--slate-100); transform: translateY(-2px); }

.btn--ghost-light { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.6); transform: translateY(-2px); }

.btn--sm { min-height: 44px; padding: 0.6rem 1.2rem; font-size: 0.92rem; }
.btn--block { width: 100%; }

/* link com seta */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}
.arrow-link svg { transition: transform 0.3s var(--ease); }
.arrow-link:hover svg { transform: translateX(4px); }

/* ---------- 5. Barra superior ---------- */
.topbar {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  letter-spacing: 0.01em;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 40px;
  padding-block: 0.4rem;
}
.topbar__list { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: 0.45rem; }
.topbar__item svg { opacity: 0.7; flex: none; }
.topbar a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.topbar__crm { color: rgba(255, 255, 255, 0.6); letter-spacing: 0.12em; text-transform: uppercase; font-size: 0.7rem; font-weight: 600; }
@media (max-width: 860px) { .topbar { display: none; } }

/* ---------- 6. Cabeçalho ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 252, 252, 0.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px -20px rgba(19, 21, 27, 0.35);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 54px; width: auto; transition: height 0.3s var(--ease); }
.header.is-stuck .brand img { height: 44px; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 0.35rem; }
.nav__link {
  position: relative;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-80);
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.9rem; right: 0.9rem; bottom: 0.3rem;
  height: 1.5px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s var(--ease);
}
.nav__link:hover { color: var(--navy); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--navy); font-weight: 600; }

.header__cta { flex: none; }
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  margin-left: auto;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  border: 1px solid var(--line);
}
.nav-toggle:hover { background: var(--bone); }
.nav-toggle span { display: block; width: 20px; height: 1.8px; background: currentColor; border-radius: 2px; position: relative; transition: transform 0.3s var(--ease), opacity 0.2s linear; }
.nav-toggle span::before,
.nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 1.8px; background: currentColor; border-radius: 2px; transition: transform 0.34s var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: var(--paper);
  padding: calc(var(--header-h) + 2rem) var(--gutter) 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease-out), visibility 0.45s;
  overflow-y: auto;
}
.mobile-nav.is-open { transform: translateY(0); visibility: visible; }
.mobile-nav a.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav a.mobile-nav__link span { font-family: var(--font-sans); font-size: 0.75rem; color: var(--ink-40); letter-spacing: 0.1em; }
.mobile-nav__foot { margin-top: auto; padding-top: 2rem; display: grid; gap: 0.75rem; }
.mobile-nav__contact { font-size: 0.9rem; color: var(--ink-60); text-align: center; }

@media (max-width: 1024px) {
  .nav, .header__cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 7vw, 6rem) clamp(3.5rem, 7vw, 6.5rem);
  background:
    radial-gradient(115% 90% at 88% 8%, rgba(55, 63, 86, 0.09) 0%, rgba(55, 63, 86, 0) 55%),
    radial-gradient(80% 70% at 5% 95%, rgba(86, 96, 126, 0.09) 0%, rgba(86, 96, 126, 0) 60%),
    var(--paper);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(19, 21, 27, 0.028) 0 1px, transparent 1px 68px);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.05rem, 1.3rem + 3.1vw, 4.05rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero__lead {
  margin-top: 1.6rem;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.6;
  color: var(--ink-60);
  max-width: 34rem;
}
.hero__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__trust {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.hero__trust dt {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.hero__trust dd { margin: 0.2rem 0 0; font-size: 0.84rem; line-height: 1.45; color: var(--ink-60); }

/* fotografia do herói */
.shot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--sand);
  isolation: isolate;
}
.shot img { width: 100%; height: auto; display: block; }
.shot--hero {
  aspect-ratio: 3 / 2;
  display: grid;
  align-items: center;
  padding: clamp(1rem, 2.4vw, 1.75rem);
  background:
    radial-gradient(120% 100% at 50% 0%, #1e2331 0%, #151924 55%, #11141c 100%);
}
.shot--hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 4px);
}
.shot__viewer {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 60px -14px rgba(206, 220, 255, 0.30);
}
.shot__viewer img { width: 100%; height: auto; display: block; }

.shot__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 3.5rem 1.5rem 1.15rem;
  background: linear-gradient(to top, rgba(17, 20, 28, 0.88) 0%, rgba(17, 20, 28, 0.55) 45%, rgba(17, 20, 28, 0) 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.shot__caption span { display: inline-flex; align-items: center; gap: 0.5rem; }
.shot__caption .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7ee2a8;
  box-shadow: 0 0 0 4px rgba(126, 226, 168, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.shot__chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.shot__chip svg { color: var(--navy); }
.shot__chip--a { top: 7%; right: -14px; animation: float 7s ease-in-out infinite; }
.shot__chip--b { bottom: 22%; left: -14px; animation: float 7s ease-in-out infinite 1.6s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy { max-width: 42rem; }
  .shot__chip--a { right: 8px; }
  .shot__chip--b { left: 8px; }
}
@media (max-width: 560px) {
  .shot__chip { display: none; }
}
@media (max-width: 520px) {
  .hero__trust { grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
  .hero__trust > div:last-child { grid-column: span 2; }
  .btn { width: 100%; }
  .hero__actions { gap: 0.7rem; }
}

/* ---------- 8. Marquee ---------- */
.marquee {
  background: var(--navy);
  color: #fff;
  padding-block: 0.95rem;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 44s linear infinite;
}
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  padding-inline: 1.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__item::after { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--slate-300); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- 9. Diferenciais ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.pillar {
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.2vw, 2rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.35s var(--ease);
}
.pillar:last-child { border-right: 0; }
.pillar:hover { background: #fff; }
.pillar__icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(55, 63, 86, 0.07);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.pillar h3 { font-size: 1.22rem; font-weight: 500; margin-bottom: 0.5rem; }
.pillar p { font-size: 0.92rem; color: var(--ink-60); line-height: 1.55; }
@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2n) { border-right: 0; }
}
@media (max-width: 520px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; }
}

/* ---------- 10. Exames ---------- */
.exams { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.exams__aside { position: sticky; top: calc(var(--header-h) + 2.5rem); }
.exams__note {
  margin-top: 2rem;
  padding: 1.1rem 1.3rem;
  border-left: 2px solid var(--navy);
  background: rgba(55, 63, 86, 0.04);
  border-radius: 0 12px 12px 0;
  font-size: 0.94rem;
  color: var(--ink-60);
}
.exams__list { border-top: 1px solid var(--line); }

.exam {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 264px;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: clamp(1.75rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease);
}
.exam:hover { background: rgba(255, 255, 255, 0.8); }
.exam__index {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-40);
  display: block;
  margin-bottom: 0.7rem;
}
.exam h3 { font-size: clamp(1.4rem, 2.1vw, 1.85rem); font-weight: 500; }
.exam p { margin-top: 0.6rem; color: var(--ink-60); font-size: 1rem; max-width: 34rem; }
.exam__tag {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.32rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.exam__art {
  border-radius: 16px;
  background: var(--dark);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.exam__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.exam:hover .exam__art img { transform: scale(1.06); }

@media (max-width: 900px) {
  .pillars { grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2n) { border-right: 0; }
}
@media (max-width: 520px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; }
}

/* ---------- 10. Exames ---------- */
.exams { display: grid; grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.exams__aside { position: sticky; top: calc(var(--header-h) + 2.5rem); }
.exams__note {
  margin-top: 2rem;
  padding: 1.1rem 1.3rem;
  border-left: 2px solid var(--navy);
  background: rgba(55, 63, 86, 0.04);
  border-radius: 0 12px 12px 0;
  font-size: 0.94rem;
  color: var(--ink-60);
}
.exams__list { border-top: 1px solid var(--line); }

.exam {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 264px;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding-block: clamp(1.75rem, 3vw, 2.4rem);
  border-bottom: 1px solid var(--line);
  transition: background-color 0.4s var(--ease);
}
.exam:hover { background: rgba(255, 255, 255, 0.8); }
.exam__index {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--ink-40);
  display: block;
  margin-bottom: 0.7rem;
}
.exam h3 { font-size: clamp(1.4rem, 2.1vw, 1.85rem); font-weight: 500; }
.exam p { margin-top: 0.6rem; color: var(--ink-60); font-size: 1rem; max-width: 34rem; }
.exam__tag {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.32rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line-strong);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-60);
}
.exam__art {
  border-radius: 16px;
  background: radial-gradient(120% 120% at 50% 0%, #2a3145 0%, #1a1f2c 60%, #11141c 100%);
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.exam__art::after {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px);
}
.exam__art svg { width: 88%; height: auto; overflow: visible; }
.exam__art .ln { fill: none; stroke: rgba(255, 255, 255, 0.75); stroke-width: 2; stroke-linejoin: round; stroke-linecap: round; }
.exam__art .ln--soft { stroke: rgba(255, 255, 255, 0.3); }
.exam__art .fl { fill: rgba(255, 255, 255, 0.07); stroke: rgba(255, 255, 255, 0.75); stroke-width: 2; stroke-linejoin: round; }
.exam:hover .exam__art svg { transform: scale(1.05); }
.exam__art svg { transition: transform 0.6s var(--ease-out); }

@media (max-width: 900px) {
  .exams { grid-template-columns: 1fr; }
  .exams__aside { position: static; }
}
@media (max-width: 560px) {
  .exam { grid-template-columns: 1fr; gap: 1.25rem; }
  .exam__art { order: -1; aspect-ratio: 16 / 9; max-width: 100%; }
}

/* ---------- 11. Como funciona ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}
.step { position: relative; padding-top: 2.5rem; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--line-strong);
}
.step::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 1s var(--ease-out) 0.2s;
}
.step.is-visible::after { width: 100%; }
.step__num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 1rem;
}
.step h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); font-weight: 500; }
.step p { margin-top: 0.65rem; color: var(--ink-60); font-size: 0.98rem; }
@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- 12. Localização ---------- */
.place { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr); gap: clamp(1.5rem, 3vw, 2.5rem); align-items: stretch; }
.map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  background: var(--sand);
  border: 1px solid var(--line);
}
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(19, 21, 27, 0.06);
}
.place__card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.info-row { display: flex; gap: 1rem; align-items: flex-start; }
.info-row dl { margin: 0; }
.info-row__icon {
  width: 40px; height: 40px; flex: none;
  border-radius: 11px;
  display: grid; place-items: center;
  background: rgba(55, 63, 86, 0.07);
  color: var(--navy);
}
.info-row dt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin-bottom: 0.3rem;
}
.info-row dd { margin: 0; font-size: 1rem; line-height: 1.55; color: var(--ink); }
.info-row dd a:hover { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.place__actions { margin-top: auto; display: grid; gap: 0.7rem; }
@media (max-width: 900px) {
  .place { grid-template-columns: 1fr; }
  .map { min-height: 320px; }
}

/* ---------- 13. Horários (faixa escura) ---------- */
.on-dark {
  background:
    radial-gradient(90% 120% at 85% 0%, rgba(86, 96, 126, 0.35) 0%, transparent 55%),
    linear-gradient(180deg, #1e2331 0%, #151924 60%, #11141c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.on-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 5px);
  pointer-events: none;
}
.on-dark h2 { color: #fff; }
.hours { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hours__table { display: grid; gap: 0; }
.hours__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.15rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.hours__row:first-child { border-top: 1px solid rgba(255, 255, 255, 0.14); }
.hours__row dt { font-size: 1.05rem; font-weight: 500; }
.hours__row dd { margin: 0; font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.75rem); font-weight: 400; letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.hours__row--off dt, .hours__row--off dd { color: rgba(255, 255, 255, 0.42); }

.status {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.status__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--slate-300); }
.status.is-open .status__dot { background: #6ee7a8; box-shadow: 0 0 0 4px rgba(110, 231, 168, 0.18); animation: pulse 2.4s ease-in-out infinite; }
.status.is-closed .status__dot { background: #d8a56b; }

.hours__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2rem; }
@media (max-width: 860px) { .hours { grid-template-columns: 1fr; } }

/* ---------- 14. FAQ ---------- */
.faq { max-width: 54rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.9vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 0.25s var(--ease);
}
.faq__q:hover { color: var(--navy); }
.faq__icon {
  flex: none;
  width: 32px; height: 32px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  position: relative;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.35s var(--ease);
}
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s linear;
}
.faq__icon::before { width: 12px; height: 1.6px; }
.faq__icon::after { width: 1.6px; height: 12px; }
.faq__q[aria-expanded="true"] { color: var(--navy); }
.faq__q[aria-expanded="true"] .faq__icon { background: var(--navy); border-color: var(--navy); color: #fff; transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { opacity: 0; }
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.faq__a > div { overflow: hidden; }
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a p { padding-bottom: 1.75rem; padding-right: clamp(0rem, 6vw, 4rem); color: var(--ink-60); }

/* ---------- 15. Rodapé ---------- */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.7); padding-block: clamp(3.5rem, 6vw, 5rem) 0; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}
.footer__logo { height: 52px; width: auto; margin-bottom: 1.5rem; }
.footer p { font-size: 0.95rem; line-height: 1.6; }
.footer h4 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.1rem;
}
.footer__col p, .footer__col a { font-size: 0.95rem; line-height: 1.7; }
.footer a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer__cta { margin-top: 1.75rem; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.75rem 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer__disclaimer { max-width: 44rem; line-height: 1.6; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; align-items: center; }
.footer__crm { letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- 16. Barra fixa mobile ---------- */
.dock {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(252, 252, 252, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease-out);
}
.dock.is-visible { transform: translateY(0); }
.dock .btn { flex: 1; min-height: 50px; padding-inline: 0.75rem; font-size: 0.95rem; }
@media (max-width: 860px) {
  .dock { display: flex; }
  body { padding-bottom: 76px; }
}

/* voltar ao topo */
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 89;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s, background-color 0.3s var(--ease);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--navy-600); }
@media (max-width: 860px) { .to-top { bottom: calc(76px + 1rem); } }

/* ---------- 17. Aviso de cookies ---------- */
.consent {
  position: fixed;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 95;
  max-width: 27rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  padding: 1.35rem 1.5rem;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease-out);
}
.consent.is-visible { transform: none; }
.consent p { font-size: 0.86rem; line-height: 1.55; color: var(--ink-60); }
.consent a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.consent__actions { display: flex; gap: 0.6rem; margin-top: 1rem; }
.consent__actions .btn { flex: 1; }
@media (max-width: 860px) {
  .consent { left: 1rem; right: 1rem; bottom: calc(76px + 0.75rem); max-width: none; }
}

/* ---------- 18. Página interna (texto legal) ---------- */
.prose { max-width: 46rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); margin-top: 2.75rem; margin-bottom: 0.9rem; }
.prose h2:first-of-type { margin-top: 0; }
.prose p, .prose li { color: var(--ink-60); font-size: 1rem; line-height: 1.75; }
.prose p + p { margin-top: 1rem; }
.prose ul { margin-top: 0.75rem; display: grid; gap: 0.5rem; }
.prose li { position: relative; padding-left: 1.5rem; }
.prose li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); }
.prose a { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }
.page-hero { background: var(--bone); padding-block: clamp(3rem, 6vw, 5rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(1.95rem, 1.3rem + 2.6vw, 3.2rem); font-weight: 400; color: var(--navy); }
.page-hero p { margin-top: 0.9rem; color: var(--ink-60); }

/* ---------- 19. Revelação ao rolar ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ---------- 20. Acessibilidade / preferências ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .shot__chip { animation: none; }
}

@media print {
  .header, .topbar, .dock, .to-top, .consent, .marquee { display: none !important; }
  body { padding: 0; }
  .section { padding-block: 1.5rem; }
  .on-dark, .footer { background: #fff !important; color: #000 !important; }
}
