/* ===========================================
   Dr. Claudinel Mágio Júnior
   Cirurgião Vascular | Versittá Clínica
   style.css — Folha de estilos principal
=========================================== */


/* ===========================================
   1. VARIÁVEIS E RESET
=========================================== */

:root {
  /* Cores principais */
  --azul:         #1a2e5a;
  --azul-medio:   #1e3a72;
  --azul-claro:   #2a4f99;
  --azul-palido:  #eef2fa;
  --azul-ultra:   #f4f7fd;
  --destaque:     #7ba7d4;
  --destaque-claro: #a8c8e8;

  /* Cores de texto */
  --preto:    #0d0d0d;
  --escuro:   #1a1a1a;
  --medio:    #4a4a4a;
  --muted:    #8a8a8a;

  /* Outros */
  --linha:    #e2e8f0;
  --branco:   #ffffff;
  --fundo:    #f8fafc;

  /* Tipografia */
  --fonte-titulo: 'Playfair Display', Georgia, serif;
  --fonte-corpo:  'Outfit', sans-serif;

  /* Espaçamentos padrão */
  --padding-secao: 90px 6%;
  --max-largura:   1160px;
}

/* Reset básico */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

ul {
  list-style: none;
}


/* ===========================================
   2. UTILITÁRIOS
=========================================== */

/* Container centralizado */
.container {
  max-width: var(--max-largura);
  margin: 0 auto;
  padding: 0 6%;
}

/* Label com linha — ex: "— Cirurgia Vascular" */
.label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.label__linha {
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--azul);
  flex-shrink: 0;
}

.label__texto {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--azul);
  font-family: var(--fonte-corpo);
}

/* Label versão clara (sobre fundo azul) */
.label--claro .label__linha {
  background-color: rgba(255, 255, 255, 0.5);
}

.label--claro .label__texto {
  color: rgba(255, 255, 255, 0.5);
}

/* Título de seção */
.secao__titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 600;
  color: var(--preto);
  line-height: 1.15;
  margin-bottom: 14px;
}

.secao__titulo em {
  font-style: italic;
  color: var(--azul-claro);
}

/* Subtítulo de seção */
.secao__subtitulo {
  font-size: 16px;
  font-weight: 300;
  color: var(--medio);
  margin-bottom: 48px;
  max-width: 600px;
}

/* Efeito de entrada ao rolar */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visivel {
  opacity: 1;
  transform: translateY(0);
}


/* ===========================================
   3. BOTÕES
=========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--fonte-corpo);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s, border-color 0.2s;
  border: none;
}

/* Botão primário: azul com texto branco */
.btn--primario {
  background-color: var(--azul);
  color: var(--branco);
}

.btn--primario:hover {
  background-color: var(--azul-medio);
  transform: translateY(-2px);
}

/* Botão outline: transparente com borda cinza */
.btn--outline {
  background-color: transparent;
  color: var(--escuro);
  border: 1.5px solid var(--linha);
  font-weight: 500;
}

.btn--outline:hover {
  border-color: var(--azul);
  color: var(--azul);
}

/* Botão accent: branco com borda (usado sobre fundo azul) */
.btn--accent {
  background-color: var(--branco);
  color: var(--azul);
  border: 1.5px solid var(--linha);
}

.btn--accent:hover {
  background-color: var(--destaque-claro);
  transform: translateY(-2px);
}

/* Botão branco (CTA strip sobre fundo azul) */
.btn--branco {
  background-color: var(--branco);
  color: var(--azul);
  font-weight: 700;
}

.btn--branco:hover {
  opacity: 0.9;
}


/* ===========================================
   4. NAVEGAÇÃO
=========================================== */

.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(26, 46, 90, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(100, 160, 210, 0.2);
  padding: 10px;
}

.nav__inner {
  max-width: 100%;
  padding: 0 6%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo / nome do médico */
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 20px;
}

.nav__nome {
  font-family: var(--fonte-titulo);
  font-size: 19px;
  font-weight: 600;
  color: var(--branco);
  white-space: nowrap;
}

.nav__separador {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.2);
  align-self: center;
}


/* Logo do nav — imagem */
.nav__logo-img {
  height: 70px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__especialidade {
  font-size: 11px;
  color: var(--azul-palido);
  font-weight: 400;
  letter-spacing: 0.8px;
  font-family: var(--fonte-corpo);
}

/* Links da navegação */
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--fonte-corpo);
  transition: color 0.2s;
}

.nav__links a:hover {
  color: var(--azul-palido);
}

/* Botão de agendamento no nav */
.nav__btn {
  background-color: var(--branco) !important;
  color: var(--azul) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: opacity 0.2s !important;
}

.nav__btn:hover {
  opacity: 0.9;
}

/* Botão hambúrguer — só aparece no mobile */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--branco);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Menu mobile */
.menu-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background-color: var(--azul);
  flex-direction: column;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.menu-mobile.aberto {
  display: flex;
}

.menu-mobile__link {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--fonte-corpo);
  padding: 16px 6%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}

.menu-mobile__link:hover {
  color: var(--destaque);
}

.menu-mobile__link--destaque {
  color: var(--destaque);
  font-weight: 600;
}


/* ===========================================
   5. HERO
=========================================== */

.hero {
  display: grid;
  grid-template-columns: 60% 40%;
  min-height: calc(100vh - 68px);
}

/* Coluna esquerda: texto */
.hero__texto {
  padding: 100px 8% 80px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(40px, 4.8vw, 78px);
  font-weight: 600;
  color: var(--preto);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero__titulo em {
  font-style: italic;
  color: var(--azul-claro);
}

.hero__descricao {
  font-size: 16px;
  font-weight: 300;
  color: var(--medio);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.hero__botoes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Separador e stats */
.hero__stats {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--linha);
  padding-top: 28px;
}

.stat {
  flex: 1;
  padding-right: 28px;
}

.stat:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid var(--linha);
}

.stat__numero {
  font-family: var(--fonte-titulo);
  font-size: 48px;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
}

.stat__numero sup {
  font-size: 20px;
  vertical-align: super;
}

.stat__descricao {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-weight: 500;
  margin-top: 6px;
}

/* Coluna direita: foto */
.hero__foto-wrap {
  background-color: var(--azul);
  position: relative;
  overflow: hidden;
}

.hero__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

/* Badge com nome e CRM sobre a foto */
.hero__crm {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: rgba(10, 20, 45, 0.82);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hero__crm-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--fonte-corpo);
}

.hero__crm-nome {
  font-family: var(--fonte-titulo);
  font-size: 15px;
  font-weight: 600;
  color: var(--branco);
}

.hero__crm-numero {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--fonte-corpo);
}


/* ===========================================
   6. SINTOMAS
=========================================== */

.sintomas {
  padding: var(--padding-secao);
  background-color: var(--branco);
}

/* Grid 2x3 */
.sintomas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background-color: var(--linha);
  border: 1px solid var(--linha);
  border-radius: 8px;
  overflow: hidden;
}

.sintoma-card {
  background-color: var(--branco);
  padding: 32px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: background-color 0.2s;
}

.sintoma-card:hover {
  background-color: var(--azul-ultra);
}

.sintoma-card__numero {
  font-family: var(--fonte-titulo);
  font-size: 48px;
  font-weight: 700;
  color: var(--linha);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
  user-select: none;
}

.sintoma-card:hover .sintoma-card__numero {
  color: rgba(26, 46, 90, 0.12);
}

.sintoma-card__titulo {
  font-size: 15px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 7px;
  font-family: var(--fonte-corpo);
}

.sintoma-card__texto {
  font-size: 14px;
  color: var(--medio);
  line-height: 1.65;
  font-weight: 300;
}


/* ===========================================
   7. SOBRE O MÉDICO
=========================================== */

.sobre {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 560px;
  background-color: var(--azul);
}

/* Foto */
.sobre__foto-wrap {
  position: relative;
  overflow: hidden;
}

.sobre__foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Badge sobre a foto */
.sobre__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(10, 20, 45, 0.85);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sobre__badge-nome {
  font-family: var(--fonte-titulo);
  font-size: 15px;
  font-weight: 600;
  color: var(--branco);
}

.sobre__badge-crm {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--fonte-corpo);
}

/* Texto */
.sobre__texto {
  padding: 80px 60px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sobre__titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 600;
  color: var(--branco);
  line-height: 1.15;
  margin-bottom: 14px;
}

.sobre__titulo em {
  font-style: italic;
  color: var(--destaque-claro);
}

.sobre__descricao {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  line-height: 1.75;
}

/* Lista de credenciais */
.sobre__credenciais {
  margin-bottom: 36px;
}

.credencial {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.credencial:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.credencial__label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--fonte-corpo);
}

.credencial__valor {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--fonte-corpo);
}


/* ===========================================
   8. TRATAMENTOS
=========================================== */

.tratamentos {
  padding: var(--padding-secao);
  background-color: var(--fundo);
}

/* Grid 2x2 */
.tratamentos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--linha);
  border-radius: 8px;
  overflow: hidden;
}

.tratamento-card {
  background-color: var(--branco);
  padding: 44px 36px;
  border-right: 1px solid var(--linha);
  border-bottom: 1px solid var(--linha);
  position: relative;
  overflow: hidden;
  transition: background-color 0.2s;
  display: block;
}

/* Barrinha gradiente que aparece no hover */
.tratamento-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--azul), var(--destaque));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.tratamento-card:nth-child(2n) {
  border-right: none;
}

.tratamento-card:nth-child(n+3) {
  border-bottom: none;
}

.tratamento-card:hover {
  background-color: var(--azul-ultra);
}

.tratamento-card:hover::after {
  transform: scaleX(1);
}

/* Número decorativo no canto */
.tratamento-card__numero {
  font-family: var(--fonte-titulo);
  font-size: 56px;
  font-weight: 700;
  color: var(--linha);
  position: absolute;
  top: 14px;
  right: 18px;
  line-height: 1;
  transition: color 0.2s;
  user-select: none;
}

.tratamento-card:hover .tratamento-card__numero {
  color: rgba(26, 46, 90, 0.08);
}

.tratamento-card__titulo {
  font-size: 18px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 10px;
  font-family: var(--fonte-corpo);
}

.tratamento-card__texto {
  font-size: 14px;
  color: var(--medio);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 18px;
}

.tratamento-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--azul);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.tratamento-card:hover .tratamento-card__link {
  gap: 10px;
}


/* ===========================================
   9. CONVÊNIOS
=========================================== */

/* ── CONVÊNIOS ── */

.convenios {
  padding: var(--padding-secao);
  background-color: var(--fundo);
}

.convenios__wrapper {
  position: relative;
}

/* Botões ‹ › */
.convenios__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  background-color: var(--branco);
  border: 1px solid var(--linha);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  color: var(--azul);
  transition: background-color 0.2s;
}

.convenios__btn--anterior { left: -22px; }
.convenios__btn--proximo  { right: -22px; }
.convenios__btn:hover { background-color: var(--azul-palido); }

/* Trilha */
.convenios__trilha-wrap {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.convenios__trilha-wrap::-webkit-scrollbar { display: none; }

.convenios__trilha {
  display: flex;
  width: 100%;
}

/* Card: 1/4 da trilha no desktop */
.convenio {
  flex: 0 0 25%;
  min-width: 25%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: var(--branco);
  border: 1px solid var(--linha);
  scroll-snap-align: start;
  transition: box-shadow 0.2s;
  box-sizing: border-box;
}

.convenio:hover {
  box-shadow: 0 4px 16px rgba(26,46,90,0.08);
}

/* Logo: max-width e max-height relativo ao card */
.convenio img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Dots */
.convenios__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.convenios__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background-color: var(--linha);
  transition: background-color 0.3s;
}

.convenios__dots button.ativo {
  background-color: var(--azul);
}


/* ===========================================
   10. CTA STRIP
=========================================== */

.cta-strip {
  background-color: var(--azul);
  padding: 72px 6%;
}

.cta-strip__inner {
  max-width: var(--max-largura);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-strip__titulo {
  font-family: var(--fonte-titulo);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 600;
  color: var(--branco);
  line-height: 1.2;
  max-width: 560px;
}

.cta-strip__titulo em {
  font-style: italic;
  color: rgba(180, 210, 240, 0.75);
}

.cta-strip__botoes {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* ===========================================
   11. LOCALIZAÇÃO
=========================================== */

.localizacao {
  padding: var(--padding-secao);
}

.localizacao__inner {
  max-width: var(--max-largura);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.localizacao__clinica {
  font-family: var(--fonte-titulo);
  font-size: 28px;
  font-weight: 600;
  color: var(--preto);
  margin-bottom: 24px;
}

/* Lista de itens de contato */
.localizacao__lista {
  margin-bottom: 36px;
}

.loc-item {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--linha);
  align-items: flex-start;
}

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

/* Ícone com fundo azul claro */
.loc-item__icone {
  width: 36px;
  height: 36px;
  background-color: var(--azul-palido);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--azul);
}

.loc-item__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  font-family: var(--fonte-corpo);
  margin-bottom: 4px;
}

.loc-item__valor {
  display: block;
  font-size: 15px;
  color: var(--escuro);
  font-family: var(--fonte-corpo);
  line-height: 1.5;
}

/* Iframe do Google Maps */
.localizacao__mapa {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--linha);
  height: 420px;
}

.localizacao__mapa iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


/* ===========================================
   12. RODAPÉ
=========================================== */

.rodape {
  background-color: var(--escuro);
  color: rgba(255, 255, 255, 0.4);
}

.rodape__inner {
  max-width: var(--max-largura);
  margin: 0 auto;
  padding: 60px 6% 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.rodape__nome {
  display: block;
  font-family: var(--fonte-titulo);
  font-size: 20px;
  font-weight: 600;
  color: var(--branco);
  margin-bottom: 6px;
}

.rodape__crm {
  display: block;
  font-size: 12px;
  color: var(--destaque);
  margin-bottom: 14px;
  font-family: var(--fonte-corpo);
}

.rodape__descricao {
  font-size: 14px;
  line-height: 1.7;
  max-width: 300px;
  font-weight: 300;
  font-family: var(--fonte-corpo);
}

.rodape__coluna-titulo {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  font-family: var(--fonte-corpo);
}

.rodape__link {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--fonte-corpo);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.rodape__link:hover {
  color: var(--azul-palido);
}

.rodape__fundo {
  max-width: var(--max-largura);
  margin: 0 auto;
  padding: 20px 6%;
  font-size: 12px;
  font-family: var(--fonte-corpo);
}


/* ===========================================
   13. WHATSAPP FLUTUANTE
=========================================== */

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  color: var(--branco);
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}


/* ===========================================
   14. RESPONSIVO — TABLET (até 960px)
=========================================== */

@media (max-width: 960px) {

  /* Hero: uma coluna */
  .hero {
    display: flex;
    flex-direction: column;
  }

  .hero__texto {
    order: 1;
    padding: 60px 6% 0;
  }

  .hero__foto-wrap {
    order: 2;
    min-height: 420px;
  }

  .hero__stats {
    order: 3;
  }

  /* Sobre: uma coluna */
  .sobre {
    grid-template-columns: 1fr;
  }

  .sobre__foto-wrap {
    height: 400px;
  }

  .sobre__texto {
    padding: 60px 6%;
  }

  /* Localização: uma coluna */
  .localizacao__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Rodapé: 2 colunas */
  .rodape__inner {
    grid-template-columns: 1fr 1fr;
  }

  .rodape__coluna--principal {
    grid-column: 1 / -1;
  }

}


/* ===========================================
   15. RESPONSIVO — MOBILE (até 600px)
=========================================== */

@media (max-width: 600px) {

  /* Nav: esconder links, mostrar hambúrguer */
  .nav__links {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero: título menor */
  .hero__titulo {
    font-size: clamp(34px, 9vw, 46px);
  }

  .hero__foto-wrap {
    min-height: 380px;
  }

  .hero__foto {
    object-position: center 5%;
  }

  /* Stats abaixo da foto (JS move no mobile) */
  .hero__stats {
    padding: 32px 6%;
    border-top: 1px solid var(--linha);
  }

  /* Sintomas: 1 coluna */
  .sintomas__grid {
    grid-template-columns: 1fr;
  }

  /* Tratamentos: 1 coluna */
  .tratamentos__grid {
    grid-template-columns: 1fr;
  }

  .tratamento-card:nth-child(2n) {
    border-right: 1px solid var(--linha);
  }

  .tratamento-card:nth-child(n+3) {
    border-bottom: 1px solid var(--linha);
  }

  .tratamento-card:last-child {
    border-bottom: none;
  }

  /* Convênios: 2 por vez no mobile */
  .convenio {
    flex: 0 0 50%;
    min-width: 50%;
    height: 160px;
    padding: 20px;
  }

  .convenio img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
  }

  /* Rodapé: 1 coluna */
  .rodape__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* CTA strip: coluna */
  .cta-strip__inner {
    flex-direction: column;
    align-items: flex-start;
  }

}
