/* ============================================================
   SISC — Sistema Integrado de Saúde Cristã
   Site institucional · Página única
   Paleta: azul #245397 · verde #009B72 · amarelo #F4C434
           fundo #F5F8FB · texto #243449 · azul escuro #173D70
   ============================================================ */

:root {
  --azul: #245397;
  --azul-escuro: #173D70;
  --verde: #009B72;
  --amarelo: #F4C434;
  --bg: #F5F8FB;
  --texto: #243449;
  --branco: #FFFFFF;
  --borda: #E1E8F0;
  --sombra: 0 6px 24px rgba(23, 61, 112, 0.08);
  --sombra-forte: 0 12px 32px rgba(23, 61, 112, 0.14);
  --raio: 16px;
  --raio-sm: 10px;
  --fonte: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --container: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--fonte);
  font-size: 16px;
  line-height: 1.6;
  color: var(--texto);
  background: var(--branco);
}

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

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

.container-narrow { max-width: 880px; }

/* ---------- Acessibilidade ---------- */

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

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--azul-escuro);
  color: var(--branco);
  font-weight: 600;
  border-radius: 0 0 var(--raio-sm) var(--raio-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--azul);
  outline-offset: 2px;
  border-radius: 4px;
}

section { scroll-margin-top: 96px; }

/* ---------- Detalhe tricolor (inspirado na curva do PDF) ---------- */

.tricolor {
  height: 5px;
  background: linear-gradient(90deg,
    var(--azul) 0 33.4%,
    var(--verde) 33.4% 66.7%,
    var(--amarelo) 66.7% 100%);
}

/* ---------- Botões ---------- */

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.15s ease, box-shadow 0.2s ease;
}

.btn-lg { padding: 15px 30px; font-size: 1.05rem; }

.btn-primary {
  background: var(--azul);
  color: var(--branco);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--azul-escuro);
  color: var(--branco);
  transform: translateY(-1px);
  box-shadow: var(--sombra-forte);
}

.btn-ghost {
  background: transparent;
  color: var(--azul-escuro);
  border-color: var(--azul);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(36, 83, 151, 0.08);
  color: var(--azul-escuro);
}

.btn-ghost-light {
  color: var(--branco);
  border-color: rgba(255, 255, 255, 0.75);
}

.btn-ghost-light:hover,
.btn-ghost-light:focus-visible {
  background: rgba(255, 255, 255, 0.15);
  color: var(--branco);
}

/* ---------- Cabeçalho ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--branco);
  border-bottom: 1px solid var(--borda);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 76px;
}

.brand img {
  height: 44px;
  width: auto;
}

.main-nav { margin-left: auto; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: 8px 12px;
  color: var(--texto);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.nav-list a:hover {
  background: rgba(36, 83, 151, 0.08);
  color: var(--azul-escuro);
}

.nav-aux a { color: var(--verde); font-weight: 600; }
.nav-aux a:hover { background: rgba(0, 155, 114, 0.1); color: #007a58; }

.nav-cta-mobile { display: none; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-cta { white-space: nowrap; }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--borda);
  border-radius: var(--raio-sm);
  cursor: pointer;
}

.menu-toggle-bar {
  display: block;
  width: 100%; height: 2.5px;
  background: var(--azul-escuro);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle-bar:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(36, 83, 151, 0.10), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(0, 155, 114, 0.08), transparent 60%),
    var(--bg);
  padding: 72px 0 88px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--azul);
  padding: 6px 14px;
  background: rgba(36, 83, 151, 0.08);
  border-radius: 999px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--azul-escuro);
  letter-spacing: -0.015em;
}

.hero-tagline {
  margin-top: 14px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--verde);
}

.hero-text {
  margin-top: 18px;
  font-size: 1.08rem;
  max-width: 34em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: #5a6b81;
}

.hero-figure {
  position: relative;
}

.hero-figure::before {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border-radius: var(--raio);
  background: linear-gradient(135deg, rgba(36, 83, 151, 0.16), rgba(244, 196, 52, 0.28));
  z-index: 0;
}

.hero-figure img {
  position: relative;
  z-index: 1;
  border-radius: var(--raio);
  box-shadow: var(--sombra-forte);
  aspect-ratio: 1549 / 1033;
  object-fit: cover;
}

/* ---------- Seções ---------- */

.section { padding: 88px 0; }

.section-white { background: var(--branco); }
.section-tint { background: var(--bg); }

.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head-actions { margin-top: 36px; }

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--azul-escuro);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.08rem;
  max-width: 38em;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: 12px;
}

.notice {
  margin: 22px 0;
  padding: 14px 18px;
  font-size: 0.92rem;
  color: #5f5130;
  background: rgba(244, 196, 52, 0.16);
  border-left: 4px solid var(--amarelo);
  border-radius: 0 var(--raio-sm) var(--raio-sm) 0;
}

.fine-print { margin-top: 14px; font-size: 0.86rem; color: #6b7a8f; }

/* ---------- Layout dividido (texto + imagem alternando) ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
}

.split.reverse .split-media { order: 2; }

.photo-card {
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid var(--borda);
  background: var(--branco);
}

.photo-card img { width: 100%; object-fit: cover; }

.card-figure {
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid var(--borda);
  background: var(--branco);
}

.card-figure img { width: 100%; }

/* ---------- Pilares (Sobre) ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.pillar {
  padding: 20px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.pillar h3 { font-size: 1.02rem; margin: 10px 0 6px; color: var(--azul-escuro); }
.pillar p { font-size: 0.92rem; }

.pillar-dot {
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
}

.dot-blue { background: var(--azul); }
.dot-green { background: var(--verde); }
.dot-yellow { background: var(--amarelo); }

/* ---------- Benefícios ---------- */

.benefit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  list-style: none;
  margin-top: 26px;
}

.benefit-card {
  padding: 22px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.benefit-card h3 {
  font-size: 1.02rem;
  color: var(--azul-escuro);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 155, 114, 0.25);
}

.benefit-card p { font-size: 0.92rem; }

/* ---------- Passos (Como funciona) ---------- */

.steps {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 26px;
  counter-reset: passo;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 18px;
  background: var(--bg);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
}

.step-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--branco);
  font-weight: 700;
  font-size: 1rem;
}

.step h3 { font-size: 1rem; color: var(--azul-escuro); margin-bottom: 4px; }
.step p { font-size: 0.94rem; }

/* ---------- Serviços ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-block {
  padding: 26px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-top: 4px solid var(--verde);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.service-block h3 { font-size: 1.1rem; color: var(--azul-escuro); margin-bottom: 10px; }
.service-block p { font-size: 0.96rem; }

.service-photos {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 22px;
  margin: 36px 0;
}

.service-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--raio);
  border: 1px solid var(--borda);
  box-shadow: var(--sombra);
}

.banner {
  padding: 26px 30px;
  background: linear-gradient(100deg, var(--azul-escuro), var(--azul));
  color: var(--branco);
  border-radius: var(--raio);
  box-shadow: var(--sombra-forte);
}

.banner h3 { font-size: 1.15rem; margin-bottom: 6px; color: var(--branco); }
.banner p { font-size: 0.98rem; opacity: 0.92; max-width: 46em; }

/* ---------- Telemedicina ---------- */

.partner-logo {
  margin-top: 18px;
  padding: 14px 18px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio-sm);
  text-align: center;
}

.partner-logo img { margin: 0 auto; max-height: 72px; width: auto; }

.check-list {
  list-style: none;
  margin: 20px 0 26px;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px 12px no-repeat,
    var(--verde);
}

/* ---------- Tabela de associação ---------- */

.table-wrap {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  min-width: 480px;
}

.price-table th, .price-table td {
  padding: 16px 22px;
  text-align: left;
}

.price-table thead th {
  background: var(--azul-escuro);
  color: var(--branco);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.price-table tbody tr + tr { border-top: 1px solid var(--borda); }

.price-table tbody th { font-weight: 600; color: var(--azul-escuro); }

.price-table tbody tr:nth-child(even) { background: rgba(245, 248, 251, 0.7); }

.col-total { background: rgba(0, 155, 114, 0.08); }
.col-total strong { color: var(--verde); font-size: 1.05em; }
.price-table thead .col-total { background: var(--verde); color: var(--branco); }

/* ---------- FAQ ---------- */

.faq { display: grid; gap: 12px; }

.faq-item {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio-sm);
  overflow: hidden;
}

.faq-q { margin: 0; }

.faq-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--azul-escuro);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.faq-toggle:hover { background: rgba(36, 83, 151, 0.05); }

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(36, 83, 151, 0.1);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 2px;
  background: var(--azul-escuro);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-toggle[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-a { padding: 0 22px 20px; }
.faq-a p { font-size: 0.97rem; max-width: 46em; }

/* ---------- Localização ---------- */

.schedule-card {
  margin: 24px 0;
  padding: 22px 26px;
  background: var(--bg);
  border: 1px solid var(--borda);
  border-left: 4px solid var(--azul);
  border-radius: var(--raio-sm);
}

.schedule-card h3 { font-size: 1.05rem; color: var(--azul-escuro); margin-bottom: 8px; }
.schedule-card p + p { margin-top: 6px; }

/* ---------- Contato ---------- */

.contact {
  position: relative;
  background:
    linear-gradient(rgba(23, 61, 112, 0.94), rgba(36, 83, 151, 0.92)),
    url("../../assets/img/08_fundo_estetoscopio.webp") center / cover no-repeat;
  color: var(--branco);
  text-align: center;
}

.contact h2 { color: var(--branco); }
.contact .lead { margin: 0 auto; color: rgba(255, 255, 255, 0.92); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.quick-msgs { margin-top: 46px; }

.quick-msgs-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
}

.quick-msg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.quick-msg-grid a {
  display: block;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--raio-sm);
  color: var(--branco);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.quick-msg-grid a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* ---------- Rodapé ---------- */

.site-footer {
  background: var(--azul-escuro);
  color: rgba(255, 255, 255, 0.85);
  padding: 52px 0 0;
  border-top: 5px solid;
  border-image: linear-gradient(90deg,
    var(--azul) 0 33.4%,
    var(--verde) 33.4% 66.7%,
    var(--amarelo) 66.7% 100%) 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 40px;
  padding: 4px 0 36px;
}

.footer-brand img { height: 52px; width: auto; }
.footer-brand p { margin-top: 14px; font-size: 0.95rem; max-width: 22em; }

.footer-nav ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.footer-nav a:hover { color: var(--amarelo); }

.footer-contact .footer-phone a {
  color: var(--branco);
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.footer-contact .footer-phone a:hover { color: var(--amarelo); }
.footer-contact .fine-print { color: rgba(255, 255, 255, 0.65); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- Responsivo ---------- */

@media (max-width: 1024px) {
  .hero-grid, .split { gap: 36px; }
  .quick-msg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {

  .menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    margin: 0;
    background: var(--branco);
    border-bottom: 1px solid var(--borda);
    box-shadow: var(--sombra-forte);
    display: none;
  }

  .main-nav.open { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 24px 20px;
  }

  .nav-list a { padding: 12px 10px; font-size: 1rem; border-radius: 8px; }

  .nav-cta-mobile { display: block; margin-top: 10px; }
  .nav-cta-mobile .btn { display: block; text-align: center; }

  .header-cta { display: none; }

  .hero { padding: 48px 0 64px; }

  .hero-grid, .split, .split.reverse {
    grid-template-columns: 1fr;
  }

  /* No celular, texto (título e botões) vem antes da imagem */
  .split.reverse .split-media { order: 0; }
  .split-media { order: 2; }
  .hero-figure { order: 2; }

  .section { padding: 64px 0; }

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

  .benefit-list { grid-template-columns: 1fr; }

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

  .service-photos { grid-template-columns: 1fr; }
  .service-photos img { max-height: 420px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero-actions .btn { width: 100%; text-align: center; }
  .contact-actions .btn { width: 100%; }
  .quick-msg-grid { grid-template-columns: 1fr 1fr; }
  .container { padding: 0 18px; }
  .brand img { height: 36px; }
}

/* ---------- Movimento reduzido ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   MULTI-PÁGINAS — componentes das subpáginas
   ============================================================ */

/* ---------- Estado ativo do menu ---------- */

.nav-list a.active {
  background: rgba(36, 83, 151, 0.10);
  color: var(--azul-escuro);
  font-weight: 700;
}

.nav-list a.active::after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 3px 3px 0 0;
  margin: 4px -12px -8px;
  background: linear-gradient(90deg, var(--azul), var(--verde), var(--amarelo));
}

/* ---------- Hero de subpágina ---------- */

.page-hero {
  background:
    radial-gradient(900px 380px at 90% -20%, rgba(36, 83, 151, 0.10), transparent 60%),
    var(--bg);
  padding: 60px 0 56px;
  border-bottom: 1px solid var(--borda);
}

.page-hero h1 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin-bottom: 14px;
}

.page-hero .lead { margin: 0; }

/* ---------- Links de texto ---------- */

.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--azul);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 155, 114, 0.5);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--azul-escuro);
  border-color: var(--verde);
}

/* ---------- Linha de botões ---------- */

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

/* ---------- Home: por onde começar ---------- */

.start-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.start-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  color: var(--texto);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.start-card:hover,
.start-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--sombra-forte);
  color: var(--texto);
}

.start-icon {
  display: block;
  border-radius: var(--raio-sm);
  overflow: hidden;
  margin-bottom: 10px;
  aspect-ratio: 16 / 9;
}

.start-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.start-card h3 { color: var(--azul-escuro); font-size: 1.12rem; }

.start-link {
  margin-top: auto;
  padding-top: 12px;
  color: var(--verde);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- Pilares grandes (3 colunas) ---------- */

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pillar-big {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  padding: 28px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.pillar-big h3 { font-size: 1.12rem; margin-top: 6px; }
.pillar-big .step-num { background: var(--verde); }

/* ---------- Pilares compactos (home) ---------- */

.pillars-compact { margin-top: 22px; }
.pillars-compact .pillar { padding: 16px; }
.pillars-compact .pillar p { font-size: 0.88rem; }

/* ---------- Passos grandes ---------- */

.steps-big .step { padding: 20px 22px; }
.steps-big .step h3 { font-size: 1.08rem; }
.steps-big .step p { font-size: 0.98rem; }

.sticky-media { position: sticky; top: 110px; align-self: start; }

/* ---------- Listas mini (services) ---------- */

.mini-list {
  list-style: none;
  margin-top: 12px;
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
}

.mini-list li {
  position: relative;
  padding-left: 24px;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--verde);
}

/* ---------- Figura larga (telemedicina) ---------- */

.wide-figure {
  margin-top: 36px;
  border-radius: var(--raio);
  overflow: hidden;
  border: 1px solid var(--borda);
  box-shadow: var(--sombra);
}

.wide-figure img { width: 100%; max-height: 420px; object-fit: cover; }

/* ---------- Logo parceiro inline ---------- */

.partner-inline {
  display: inline-block;
  margin: 8px 0 20px;
  padding: 12px 16px;
  background: var(--bg);
}

/* ---------- FAQ: grupos e navegação por temas ---------- */

.faq-jump {
  background: var(--branco);
  border-bottom: 1px solid var(--borda);
}

.faq-jump ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 24px;
}

.faq-jump a {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(36, 83, 151, 0.08);
  color: var(--azul-escuro);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.faq-jump a:hover { background: rgba(36, 83, 151, 0.16); }

.faq-group-title {
  font-size: 1.35rem;
  margin: 44px 0 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(36, 83, 151, 0.15);
}

.faq-group-title:first-of-type { margin-top: 0; }

#faq-sisc, #faq-cartao, #faq-adesao, #faq-atendimento { scroll-margin-top: 110px; }

/* ---------- Comparativo (associação) ---------- */

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 26px 0;
}

.compare-card {
  padding: 26px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
}

.compare-card h3 {
  font-size: 1.08rem;
  color: var(--azul-escuro);
  margin-bottom: 14px;
}

.compare-card .check-list { margin: 0; }

/* ---------- Canais de contato ---------- */

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

.channel-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  box-shadow: var(--sombra);
  color: var(--texto);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.channel-card:hover,
.channel-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--sombra-forte);
  color: var(--texto);
}

.channel-num {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--verde);
}

.channel-card h3 { color: var(--azul-escuro); font-size: 1.1rem; }
.channel-card p { font-size: 0.95rem; font-style: italic; color: #4c5c72; }

.channel-card .start-link { padding-top: 6px; }

/* ---------- Contato: telefone inline ---------- */

.footer-phone-inline {
  margin: 18px 0 22px;
  font-size: 1.05rem;
}

.footer-phone-inline a {
  color: var(--azul-escuro);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid rgba(0, 155, 114, 0.5);
}

.footer-phone-inline a:hover { color: var(--verde); }

/* ---------- 404 ---------- */

.notfound { padding: 110px 0 130px; }
.notfound-inner { text-align: center; }
.notfound-inner .lead { margin: 0 auto 10px; }
.notfound-actions { justify-content: center; margin-top: 26px; }

/* ---------- Centralização ---------- */

.section-head.center .lead { margin-left: auto; margin-right: auto; }
.center-note { text-align: center; margin-top: 22px; }

/* ---------- Responsivo extra (nav denso + grids) ---------- */

@media (max-width: 1150px) {
  .header-cta { display: none; }
}

@media (max-width: 1020px) {
  .menu-toggle { display: flex; }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    margin: 0;
    background: var(--branco);
    border-bottom: 1px solid var(--borda);
    box-shadow: var(--sombra-forte);
    display: none;
  }

  .main-nav.open { display: block; }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 24px 20px;
  }

  .nav-list a { padding: 12px 10px; font-size: 1rem; border-radius: 8px; }
  .nav-list a.active::after { display: none; }

  .sticky-media { position: static; }
}

@media (max-width: 860px) {
  .start-grid,
  .pillar-grid,
  .compare-grid,
  .channel-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 44px 0 40px; }
}

/* ============================================================
   REDESIGN v3 — hero interativo, glass, ícones, polimento
   ============================================================ */

/* ---------- Cabeçalho glass + logo maior ---------- */

.site-header {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand img { height: 54px; }

/* ---------- Botão destaque (amarelo, para fundo escuro) ---------- */

.btn-accent {
  background: var(--amarelo);
  color: var(--azul-escuro);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 26px rgba(244, 196, 52, 0.35);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  background: #ffd84d;
  color: var(--azul-escuro);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(244, 196, 52, 0.45);
}

/* ---------- Hero escuro premium ---------- */

.hero-dark {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(900px 520px at 82% 10%, rgba(36, 83, 151, 0.55), transparent 62%),
    radial-gradient(700px 480px at -8% 100%, rgba(0, 155, 114, 0.35), transparent 58%),
    linear-gradient(150deg, #0E2A50 0%, #173D70 58%, #1B4780 100%);
  color: var(--branco);
  padding: 88px 0 150px;
}

.hero-dark h1 {
  color: var(--branco);
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.12;
  text-shadow: 0 2px 24px rgba(8, 22, 44, 0.35);
}

.hero-dark .hero-text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  max-width: 33em;
}

.eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--branco);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  margin-bottom: 20px;
}

.hero-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-pills li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.hero-pills svg { color: #7de3bd; }

/* orbes desfocados de fundo */
.hero-orbs { position: absolute; inset: 0; pointer-events: none; }

.hero-orbs span {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
}

.hero-orbs span:nth-child(1) { width: 340px; height: 340px; left: -120px; top: -80px; background: #2a63b5; }
.hero-orbs span:nth-child(2) { width: 280px; height: 280px; right: 6%; bottom: -140px; background: rgba(0, 155, 114, 0.65); }
.hero-orbs span:nth-child(3) { width: 190px; height: 190px; right: 30%; top: -60px; background: rgba(244, 196, 52, 0.35); }

/* palco do canvas */
.hero-stage {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-stage canvas,
.hero-stage .hero-poster {
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  height: auto;
}

.hero-stage .hero-poster { position: absolute; }

.hero-stage canvas {
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: crosshair;
  touch-action: none;
}

.hero-stage canvas.is-ready { opacity: 1; }

.hero-stage-hint {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.55);
}

.hero-stage-hint::before,
.hero-stage-hint::after {
  content: "←";
  margin: 0 6px;
  opacity: 0.7;
}

.hero-stage-hint::after { content: "→"; }

/* onda de transição hero -> conteúdo */
.hero-wave {
  position: absolute;
  left: 0; right: 0;
  bottom: -1px;
  line-height: 0;
}

.hero-wave svg { width: 100%; height: 70px; display: block; }

/* ---------- Ícones dos cards ---------- */

.benefit-ic, .pillar-ic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px; height: 54px;
  border-radius: 16px;
  margin-bottom: 14px;
  flex: 0 0 auto;
}

.ic-blue   { background: rgba(36, 83, 151, 0.12);  color: var(--azul); }
.ic-green  { background: rgba(0, 155, 114, 0.14);  color: var(--verde); }
.ic-yellow { background: rgba(244, 196, 52, 0.22); color: #a07d00; }

.benefit-card .benefit-ic { margin-bottom: 4px; }
.pillar .pillar-ic { margin-bottom: 8px; }
.pillar-big .pillar-ic { margin-bottom: 12px; }

.service-block .benefit-ic { margin-bottom: 12px; }
.channel-card .benefit-ic { margin-bottom: 6px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-tag svg { color: var(--verde); }

/* ---------- Textura de pontos nas seções tint ---------- */

.section-tint {
  background-image: radial-gradient(rgba(36, 83, 151, 0.07) 1px, transparent 1.4px);
  background-size: 26px 26px;
}

/* ---------- Faixa topo nos cards de imagem ---------- */

.photo-card { position: relative; }

.photo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: linear-gradient(90deg, var(--azul), var(--verde), var(--amarelo));
  z-index: 1;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsivo ---------- */

@media (max-width: 1020px) {
  .hero-dark { padding: 60px 0 130px; }
  .hero-stage-hint { display: none; }
}

@media (max-width: 860px) {
  .hero-dark { padding: 48px 0 120px; }
  .hero-dark .hero-grid { gap: 34px; }
  .hero-stage { order: 2; }
  .hero-stage canvas, .hero-stage .hero-poster { max-width: 420px; }
  .hero-wave svg { height: 44px; }
}

@media (hover: none) {
  .hero-stage-hint { display: none; }
}
