/* ============================================================
   TEMPLATE KRAFT MIDIA - Landing page para cirurgiao ortopedista
   ------------------------------------------------------------
   Design system fechado. NAO altere tokens, espacamentos nem
   componentes ao criar a LP de um novo medico: a identidade
   visual e a mesma em todas as LPs da KRAFT.
   O que muda por medico esta marcado com [POR MEDICO] abaixo.
   ------------------------------------------------------------
   Paleta: branco, bege, azul em fade, detalhes dourados.
   Mobile-first. Tudo o que anima usa apenas transform/opacity.
============================================================ */

/* ============================================================
   1. FONTES (self-hosted; latin-ext so baixa se precisar)
============================================================ */
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/inter-400-latin-ext.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF}
@font-face{font-family:'Inter';font-style:normal;font-weight:400;font-display:swap;src:url(fonts/inter-400-latin.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/inter-400-latin-ext.woff2) format('woff2');unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF}
@font-face{font-family:'Inter';font-style:normal;font-weight:500;font-display:swap;src:url(fonts/inter-400-latin.woff2) format('woff2');unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD}
/* Allomira (HipFonts): so existe o peso Medium. O intervalo 400-700 faz o
   navegador usar este arquivo em todos os pesos, sem gerar negrito falso. */
@font-face{font-family:'Allomira';font-style:normal;font-weight:400 700;font-display:swap;src:url(fonts/allomira-500.woff2) format('woff2')}

/* ============================================================
   2. TOKENS
============================================================ */
:root {
  /* Azuis */
  --blue-deep:   #12304E;
  --blue-dark:   #1B3A5B;
  --blue-mid:    #2C5B8A;
  --blue-soft:   #E7F0F8;
  --blue-mist:   #F2F7FC;

  /* Bege / neutros */
  --beige:       #FAF6EF;
  --beige-deep:  #F3ECE0;
  --white:       #FFFFFF;
  --text-muted:  #57687A;

  /* Dourado */
  --gold:        #C9A876;
  --gold-deep:   #A8834D;
  --gold-light:  #E8D5B0;

  /* WhatsApp */
  --whatsapp:    #25D366;
  --whatsapp-dk: #1EAF56;

  /* Fios dourados */
  --hairline:        rgba(201, 168, 118, 0.32);
  --hairline-soft:   rgba(201, 168, 118, 0.16);
  --hairline-strong: rgba(201, 168, 118, 0.58);
  --hairline-cool:   rgba(27, 58, 91, 0.08);

  /* Sombras em camadas, temperatura quente */
  --shadow-card:
    0 1px 2px rgba(27, 58, 91, 0.04),
    0 10px 28px -14px rgba(27, 58, 91, 0.16);
  --shadow-card-hover:
    0 1px 2px rgba(27, 58, 91, 0.05),
    0 22px 46px -18px rgba(27, 58, 91, 0.24),
    0 0 0 1px rgba(201, 168, 118, 0.26);
  --shadow-lux:
    0 2px 4px rgba(18, 48, 78, 0.14),
    0 18px 40px -14px rgba(18, 48, 78, 0.38);

  --radius-card: 16px;
  --radius-btn:  10px;
  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition:  0.32s var(--ease);
  --header-h:    54px;
  --container:   1180px;
}

@media (min-width: 1024px) {
  :root { --header-h: 62px; }
}

/* ============================================================
   3. RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--blue-dark);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
address { font-style: normal; }

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--blue-dark);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 8px 0;
  font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ============================================================
   4. LAYOUT
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px)  { .container { padding: 0 32px; } }
@media (min-width: 1024px) { .container { padding: 0 44px; } }

.section {
  position: relative;
  padding: 64px 0;
  scroll-margin-top: 24px;
  overflow: hidden;
}

@media (min-width: 768px)  { .section { padding: 84px 0; } }
@media (min-width: 1024px) { .section { padding: 104px 0; } }

/* Fio dourado que separa as seções */
.section + .section::before {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-strong), transparent);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) { .section-header { margin-bottom: 52px; } }

.section-subtitle {
  margin-top: 12px;
  color: var(--text-muted);
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================================
   5. TIPOGRAFIA
============================================================ */
h1, h2, h3, h4 {
  font-family: 'Allomira', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  line-height: 1.18;
  color: var(--blue-dark);
  letter-spacing: 0.01em;
  /* A Allomira so tem o peso Medium: o contorno na cor do texto engrossa o
     traco sem o borrado do negrito sintetico do navegador. */
  -webkit-text-stroke: 0.025em currentColor;
  text-wrap: balance;
}

.faq-question {
  -webkit-text-stroke: 0.02em currentColor;
}

h1 { font-size: clamp(29px, 7.7vw, 36px); }
h2 { font-size: clamp(27px, 6.8vw, 32px); }
h3 { font-size: 21px; }
h4 { font-size: 16px; }

p { color: var(--text-muted); line-height: 1.72; font-size: 16px; }

@media (min-width: 768px) {
  h1 { font-size: 47px; }
  h2 { font-size: 37px; }
  h3 { font-size: 22px; }
}

@media (min-width: 1024px) {
  h1 { font-size: 56px; }
  h2 { font-size: 43px; }
  h3 { font-size: 23px; }
  p  { font-size: 17px; }
}

/* ============================================================
   6. BOTÕES E LINKS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Allomira', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition),
              background-color var(--transition), color var(--transition),
              border-color var(--transition);
}

.btn:active { transform: translateY(1px) scale(0.995); }

.btn-lg { font-size: 20px; padding: 17px 22px; width: 100%; }

@media (min-width: 480px) { .btn-lg { width: auto; padding: 17px 30px; } }

.btn-whatsapp {
  background: linear-gradient(180deg, var(--whatsapp) 0%, var(--whatsapp-dk) 100%);
  color: var(--white);
  box-shadow: 0 2px 4px rgba(21, 132, 68, 0.18), 0 12px 24px -12px rgba(21, 132, 68, 0.55);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(21, 132, 68, 0.20), 0 18px 32px -12px rgba(21, 132, 68, 0.62);
}

.btn-primary {
  background: linear-gradient(180deg, var(--blue-mid) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), var(--shadow-lux);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18),
              0 3px 6px rgba(18, 48, 78, 0.16),
              0 24px 46px -16px rgba(18, 48, 78, 0.46);
}

.btn-outline-gold {
  background: rgba(255, 255, 255, 0.7);
  color: var(--blue-dark);
  border-color: var(--hairline-strong);
  box-shadow: 0 1px 2px rgba(27, 58, 91, 0.04);
}
.btn-outline-gold:hover {
  background: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -14px rgba(168, 131, 77, 0.6);
}

/* CTA principal do hero: pulso de brilho azul, discreto e continuo */
.btn-glow {
  position: relative;
  animation: btnGlow 2.8s ease-in-out infinite;
}
.btn-glow:hover { animation-play-state: paused; }

@keyframes btnGlow {
  0%, 100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 2px 6px rgba(18, 48, 78, 0.18),
                0 0 0 0 rgba(44, 91, 138, 0.42),
                0 16px 34px -18px rgba(18, 48, 78, 0.55);
  }
  50% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.20),
                0 2px 6px rgba(18, 48, 78, 0.18),
                0 0 0 9px rgba(44, 91, 138, 0),
                0 20px 40px -16px rgba(18, 48, 78, 0.55);
  }
}

.btn-header {
  display: none;
  font-size: 16px;
  padding: 11px 18px;
  border-radius: 8px;
}

@media (min-width: 640px) { .btn-header { display: inline-flex; } }

.link-accent {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Allomira', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold-deep);
  transition: color var(--transition), transform var(--transition);
}
.link-accent:hover { color: var(--blue-mid); transform: translateX(3px); }

/* ============================================================
   7. HEADER
============================================================ */
.site-header {
  /* Ancorado no topo da pagina, nao na janela: sai de cena junto com o hero. */
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  backdrop-filter: saturate(1.4) blur(10px);
  transition: box-shadow var(--transition), background-color var(--transition);
}

.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-strong) 22%, var(--hairline-strong) 78%, transparent);
  opacity: 0.65;
  transition: opacity var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 16px;
}

/* Identidade do medico na barra superior (substitui a antiga logo) */
.header-id {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  line-height: 1.25;
  transition: opacity var(--transition);
}
.header-id:hover { opacity: 0.82; }

/* Linha 1: nome + cargo lado a lado. Linha 2: CRM e RQE. */
.header-id-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
}

.header-id-name {
  font-family: 'Allomira', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-dark);
  -webkit-text-stroke: 0.02em currentColor;
  white-space: nowrap;
}

.header-id-role {
  font-size: 10.5px;
  color: var(--text-muted);
  white-space: nowrap;
}

.header-id-crm {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  color: var(--gold-deep);
  white-space: nowrap;
}

@media (min-width: 768px) {
  .header-id-top  { gap: 10px; }
  .header-id-name { font-size: 19px; }
  .header-id-role { font-size: 12px; }
  .header-id-crm  { font-size: 10.5px; }
}

@media (min-width: 1024px) {
  .header-id-name { font-size: 21px; }
  .header-id-role { font-size: 13px; }
  .header-id-crm  { font-size: 11px; }
}

/* ============================================================
   8. HERO
============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  /* O painel fica ancorado embaixo: o hero ocupa a tela inteira e a folga
     inferior e fixa em px, entao a distancia do painel ate a base nao muda
     com a altura do aparelho. */
  min-height: 100svh;
  padding-top: calc(var(--header-h) + 20px);
  padding-bottom: 26px;
  background-color: var(--beige);
  /* [POR MEDICO] troque so o arquivo da imagem; mantenha o gradiente. */
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(250, 246, 239, 0.55) 78%, rgba(250, 246, 239, 0.9) 100%),
    url('Images/Backgroundhero.webp');
  background-size: cover;
  background-position: center -32px;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Brilho azul suave no canto superior */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(44, 91, 138, 0.10) 0%, transparent 60%);
  pointer-events: none;
}

/* Fio dourado fechando o hero */
.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-strong) 30%, var(--hairline-strong) 70%, transparent);
}

.hero-inner { position: relative; display: flex; width: 100%; }

.hero-panel {
  position: relative;
  width: 100%;
  padding: 22px 16px 26px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(238, 245, 251, 0.95) 100%);
  -webkit-backdrop-filter: blur(12px) saturate(1.15);
  backdrop-filter: blur(12px) saturate(1.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 0 0 1px var(--hairline-soft),
    0 2px 8px rgba(27, 58, 91, 0.06),
    0 28px 60px -24px rgba(27, 58, 91, 0.30);
  animation: heroRise 0.7s var(--ease) both;
}

/* Fio dourado no topo do painel */
.hero-panel::before {
  content: '';
  position: absolute;
  left: 24px; right: 24px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-panel > * { animation: heroFade 0.6s var(--ease) both; }
.hero-panel > h1            { animation-delay: 0.10s; }
.hero-panel > .hero-sub     { animation-delay: 0.18s; }
.hero-panel > .hero-actions { animation-delay: 0.26s; }

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

/* Ate o desktop o painel ocupa a largura toda: texto centralizado.
   No desktop (>=1024px) ele vira coluna a esquerda da foto e volta a alinhar
   a esquerda. */
.hero-panel { text-align: center; }
.hero-actions { align-items: center; }

/* Titulo do hero: maior que o h1 padrao das demais secoes */
.hero h1 {
  font-size: clamp(30px, 8.2vw, 42px);
  margin-bottom: 12px;
  /* Contorno mais forte que o dos demais titulos: titulo principal da pagina */
  -webkit-text-stroke: 0.04em currentColor;
  letter-spacing: 0.015em;
}

.hero-highlight {
  position: relative;
  color: var(--blue-mid);
  white-space: nowrap;
}

/* O titulo so quebra entre estes blocos: "Ortopedista especialista" /
   "em Quadril" / "em Passo Fundo" (2 linhas no desktop, ate 3 no celular) */
.hero-nowrap { white-space: nowrap; }
.hero-highlight::after {
  content: '';
  position: absolute;
  left: 2px; right: 2px; bottom: 0.06em;
  height: 0.30em;
  background: linear-gradient(90deg, rgba(201, 168, 118, 0.42), rgba(232, 213, 176, 0.22));
  border-radius: 3px;
  z-index: -1;
}

.hero-sub {
  font-family: 'Allomira', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--blue-dark);
  margin-bottom: 22px;
}

/* Allomira so tem Medium: o negrito do nome vem do contorno */
.hero-sub strong { -webkit-text-stroke: 0.035em currentColor; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.hero-actions .btn { flex-shrink: 0; white-space: nowrap; }

/* Tablet */
@media (min-width: 768px) {
  .hero { min-height: 96svh; padding-bottom: 32px; }
  .hero-panel { padding: 36px 38px 40px; max-width: 680px; margin: 0 auto; }
  .hero-panel::before { left: 38px; right: 38px; }
  .hero h1 { font-size: 56px; }
  .hero-sub { font-size: 19px; }
  .hero-actions { flex-direction: row; align-items: center; justify-content: center; gap: 22px; }
}

/* Desktop: painel à esquerda, médico à direita da foto */
@media (min-width: 1024px) {
  .hero {
    align-items: center;
    min-height: min(88svh, 720px);
    padding-top: calc(var(--header-h) + 40px);
    padding-bottom: 56px;
    background-image:
      linear-gradient(90deg, rgba(250, 246, 239, 0.75) 0%, rgba(255,255,255,0) 55%),
      url('Images/BackgroundheroPC.webp');
    background-position: center 26%;
  }
  .hero .container { max-width: 1320px; }
  .hero-panel { max-width: 680px; padding: 44px 48px 48px; margin: 0; text-align: left; }
  .hero-panel::before { left: 48px; right: 48px; }
  .hero h1 { font-size: 55px; margin-bottom: 16px; }
  .hero-actions { align-items: center; justify-content: flex-start; }
}

@media (min-width: 1440px) {
  .hero-panel { max-width: 740px; }
  .hero h1 { font-size: 60px; }
}

/* ============================================================
   9. ESPECIALIDADES / PROCEDIMENTOS
============================================================ */
.specialties {
  background:
    radial-gradient(90% 55% at 50% 0%, var(--blue-mist) 0%, rgba(255,255,255,0) 62%),
    var(--white);
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

@media (min-width: 700px)  { .specialties-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (min-width: 1024px) { .specialties-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.specialty-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--hairline-cool);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.specialty-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }

.specialty-img-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--blue-soft);
}

.specialty-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.specialty-card:hover .specialty-img { transform: scale(1.045); }

/* Camada de cor sobre a imagem, para unificar as ilustrações */
.specialty-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 48, 78, 0.06) 0%, rgba(18, 48, 78, 0.20) 100%);
  pointer-events: none;
}


.specialty-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.specialty-body h3 { margin-bottom: 10px; }
.specialty-body p { font-size: 15.2px; }
.specialty-body .link-accent { margin-top: auto; padding-top: 14px; }

/* Outras condições */
.conditions {
  margin-top: 40px;
  padding: 26px 22px;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, var(--beige) 0%, rgba(250, 246, 239, 0.45) 100%);
  border: 1px solid var(--hairline-soft);
  text-align: center;
}

.conditions-title {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--blue-dark);
  margin-bottom: 16px;
}

.conditions-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
}

.conditions-list li {
  font-size: 12.8px;
  font-weight: 500;
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 8px 14px;
  box-shadow: 0 1px 2px rgba(27, 58, 91, 0.04);
}

@media (min-width: 768px) { .conditions-list li { font-size: 13.5px; padding: 8px 16px; } }

@media (min-width: 768px) { .conditions { padding: 30px 32px; } }

/* ============================================================
   9B. CUIDADO COMPLETO  [EXCLUSIVO DESTA LP]
   Secao de CTA do acompanhamento multiprofissional. Usa so os
   tokens do design system (azul profundo + detalhes dourados).
============================================================ */
.care {
  background:
    radial-gradient(70% 60% at 50% 100%, var(--blue-mist) 0%, rgba(255,255,255,0) 65%),
    var(--white);
}

.care-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "intro" "list" "actions";
  gap: 28px;
  padding: 34px 22px 30px;
  border-radius: 22px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(90% 80% at 90% 6%, rgba(44, 91, 138, 0.55) 0%, rgba(18, 48, 78, 0) 60%),
    linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-deep) 60%, #0D2540 100%);
  box-shadow:
    0 2px 6px rgba(18, 48, 78, 0.12),
    0 36px 70px -30px rgba(18, 48, 78, 0.55);
}

/* Fio dourado no topo do painel */
.care-panel::before {
  content: '';
  position: absolute;
  left: 28px; right: 28px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.care-intro   { grid-area: intro; }
.care-list    { grid-area: list; }
.care-actions { grid-area: actions; }

.care-team {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.care-team-avatars { display: flex; }

.care-team-avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: -9px;
  border-radius: 50%;
  color: var(--gold-light);
  background: var(--blue-dark);
  box-shadow: 0 0 0 2px var(--blue-deep), inset 0 0 0 1px rgba(201, 168, 118, 0.45);
}
.care-team-avatar:first-child { margin-left: 0; }
.care-team-avatar--more { color: var(--blue-deep); background: var(--gold-light); }

.care-team-label {
  font-family: 'Allomira', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.care h2 { color: var(--white); }

.care-lead {
  margin-top: 14px;
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.82);
}
.care-lead strong { color: var(--gold-light); font-weight: 600; }

.care-list { display: flex; flex-direction: column; gap: 12px; }

.care-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 18px 18px 16px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 118, 0.22);
  transition: transform var(--transition), background-color var(--transition);
}
.care-item:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.08); }

.care-item-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  color: var(--gold-light);
  background: rgba(201, 168, 118, 0.13);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 118, 0.32);
}

.care-item-text {
  display: block;
  font-size: 14.6px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.care-item-text strong {
  display: block;
  margin-bottom: 2px;
  font-family: 'Allomira', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--white);
}

.care-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  text-align: center;
}

.care-actions-note { font-size: 13px; line-height: 1.5; color: rgba(255, 255, 255, 0.6); }

/* Botao dourado: o azul do .btn-primary some sobre o painel escuro */
.btn-gold {
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
  color: var(--blue-deep);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 2px 6px rgba(0, 0, 0, 0.18),
    0 18px 36px -16px rgba(201, 168, 118, 0.55);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 3px 8px rgba(0, 0, 0, 0.2),
    0 24px 44px -16px rgba(201, 168, 118, 0.7);
}

/* Celular: icone em linha com o texto, para nao se separar se o rotulo quebrar */
@media (max-width: 479px) {
  .care-actions .btn { display: block; font-size: 18px; padding: 16px; }
  .care-actions .btn svg { display: inline-block; vertical-align: -4px; margin-right: 8px; }
}

@media (min-width: 480px) {
  .care-actions { align-items: flex-start; text-align: left; }
}

@media (min-width: 768px) {
  .care-panel { padding: 48px 44px 44px; }
  .care-panel::before { left: 44px; right: 44px; }
  .care h2 { font-size: 36px; }
}

@media (min-width: 1024px) {
  .care-panel {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-areas: "intro list" "actions list";
    grid-template-rows: auto 1fr;
    column-gap: 56px;
    row-gap: 30px;
    padding: 60px;
  }
  .care-panel::before { left: 60px; right: 60px; }
  .care-intro { align-self: end; }
  .care-list { align-self: center; }
  .care h2 { font-size: 40px; }
}

/* ============================================================
   10. SINTOMAS
============================================================ */
.symptoms {
  background:
    radial-gradient(80% 50% at 15% 10%, rgba(231, 240, 248, 0.75) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, var(--beige) 0%, var(--beige-deep) 100%);
}

.symptoms-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px)  { .symptoms-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 1024px) { .symptoms-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.symptom-card {
  position: relative;
  padding: 24px 22px;
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.symptom-card::before {
  content: '';
  position: absolute;
  left: 22px; right: 22px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline-strong), transparent);
}

.symptom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

/* Icone e titulo lado a lado; o texto segue abaixo */
.symptom-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.symptom-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 13px;
  color: var(--blue-mid);
  background: linear-gradient(160deg, var(--blue-soft) 0%, rgba(231, 240, 248, 0.35) 100%);
  box-shadow: inset 0 0 0 1px rgba(44, 91, 138, 0.10);
}

.symptom-card h3 { font-size: 19.5px; line-height: 1.25; }
.symptom-card p  { font-size: 15px; }
.symptom-card strong { color: var(--blue-dark); font-weight: 600; }

.symptoms-note {
  max-width: 780px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
}

/* ============================================================
   11. CONVÊNIOS
============================================================ */
.insurances {
  background:
    linear-gradient(180deg, var(--blue-soft) 0%, rgba(242, 247, 252, 0.6) 45%, var(--white) 100%);
}

.insurances-frame {
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--hairline-soft);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 2px 6px rgba(27, 58, 91, 0.05),
    0 26px 54px -26px rgba(27, 58, 91, 0.28);
}

.insurances-frame::before {
  content: '';
  position: absolute;
  left: 30px; right: 30px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.insurances-img {
  width: 100%;
  /* A arte vem com bastante respiro branco em cima e embaixo; o recorte tira
     ~15% de cada lado e nenhuma logo chega perto dessa margem. */
  /* [POR MEDICO] use a proporcao real da arte de convenios entregue. */
  aspect-ratio: 1600 / 620;
  object-fit: cover;
  border-radius: 12px;
}

@media (min-width: 768px) { .insurances-frame { padding: 30px; } }

.insurances-note {
  max-width: 620px;
  margin: 24px auto 0;
  text-align: center;
  font-size: 15px;
}

/* ============================================================
   12. QUEM SOU
============================================================ */
.about {
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(90% 70% at 82% 12%, rgba(44, 91, 138, 0.55) 0%, rgba(18, 48, 78, 0) 62%),
    linear-gradient(165deg, var(--blue-dark) 0%, var(--blue-deep) 62%, #0D2540 100%);
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.045;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)'/%3E%3C/svg%3E");
}

.about h2 { color: var(--white); }

.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

@media (min-width: 900px) {
  .about-inner { grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr); gap: 56px; align-items: center; }
}

.about-image-wrap {
  position: relative;
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 900px) { .about-image-wrap { max-width: none; margin: 0; } }

.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  /* Quadrada: corta a altura sem espremer o retrato. O foco fica no terco
     superior para nao cortar o rosto. */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  /* [POR MEDICO] ajuste o segundo valor (0-40%) ate o rosto ficar centralizado. */
  object-position: center 22%;
  border-radius: 20px;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.22),
    0 30px 60px -24px rgba(0, 0, 0, 0.6);
}

/* Moldura dourada deslocada */
.about-image-wrap::before {
  content: '';
  position: absolute;
  left: -14px; top: 18px; bottom: 18px;
  width: 62%;
  z-index: 0;
  border: 1px solid rgba(201, 168, 118, 0.55);
  border-radius: 20px;
  pointer-events: none;
}

.about-photo-badge {
  position: absolute;
  z-index: 2;
  right: -8px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  line-height: 1.35;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--blue-dark);
  font-size: 11px;
  letter-spacing: 0.05em;
  box-shadow: 0 12px 26px -14px rgba(0, 0, 0, 0.8), inset 0 0 0 1px var(--hairline);
}

.about-photo-badge strong { font-family: 'Allomira', sans-serif; font-size: 13px; letter-spacing: 0.02em; }

.about-lead {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.86);
  margin: 14px 0 26px;
}

.about-lead strong { color: var(--gold-light); font-weight: 600; }

/* Estrelas acima do nome  [EXCLUSIVO DESTA LP] */
.about-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  background: rgba(201, 168, 118, 0.13);
  box-shadow: inset 0 0 0 1px rgba(201, 168, 118, 0.32);
}

.about-rating-stars { display: flex; gap: 2px; color: var(--gold); }

.about-rating-text {
  font-family: 'Allomira', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
}

.about-credentials { display: flex; flex-direction: column; gap: 16px; }

.about-credential {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(201, 168, 118, 0.20);
}

.about-credential:last-child { border-bottom: none; padding-bottom: 0; }

.about-credential-text {
  display: block;
  font-size: 14.6px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.about-credential-text strong {
  display: block;
  font-family: 'Allomira', sans-serif;
  font-weight: 600;
  font-size: 16.5px;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 2px;
  letter-spacing: 0.02em;
}

/* ============================================================
   13. ENDEREÇO E HORÁRIO
============================================================ */
.location {
  background:
    radial-gradient(70% 50% at 85% 0%, var(--blue-mist) 0%, rgba(255,255,255,0) 60%),
    linear-gradient(180deg, var(--white) 0%, var(--beige) 100%);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 700px)  { .location-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.location-card {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 28px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--hairline-cool);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.location-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }

.location-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 13px;
  color: var(--gold-deep);
  background: linear-gradient(160deg, rgba(201, 168, 118, 0.18) 0%, rgba(201, 168, 118, 0.05) 100%);
  box-shadow: inset 0 0 0 1px var(--hairline);
}

.location-card h3 { margin-bottom: 8px; }
.location-card p { font-size: 15.5px; color: var(--blue-dark); font-weight: 500; }

.location-note {
  display: block;
  margin-top: 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-muted);
}

.location-phone {
  font-family: 'Allomira', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--blue-mid);
  transition: color var(--transition);
}
.location-phone:hover { color: var(--gold-deep); }

.location-card .link-accent { margin-top: auto; padding-top: 14px; }

/* ============================================================
   14. FAQ
============================================================ */
.faq { background: linear-gradient(180deg, var(--beige) 0%, var(--white) 70%); }

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--hairline-cool);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow var(--transition), border-color var(--transition);
}

.faq-item:hover { border-color: var(--hairline); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 19px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Allomira', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: var(--blue-dark);
  transition: color var(--transition);
}

.faq-question:hover { color: var(--blue-mid); }

.faq-icon {
  flex-shrink: 0;
  color: var(--gold-deep);
  transition: transform var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--transition);
}

.faq-answer > p { overflow: hidden; }

.faq-answer.open { grid-template-rows: 1fr; }

.faq-answer > p {
  padding: 0 20px;
  font-size: 15.2px;
  transition: padding var(--transition);
}

.faq-answer.open > p { padding: 0 20px 20px; }

@media (min-width: 768px) {
  .faq-question { padding: 21px 26px; font-size: 16.5px; }
  .faq-answer > p { padding: 0 26px; }
  .faq-answer.open > p { padding: 0 26px 22px; }
}

/* ============================================================
   15. FOOTER
============================================================ */
.site-footer {
  position: relative;
  padding: 52px 0 26px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, var(--blue-dark) 0%, #0D2540 100%);
  font-size: 14px;
}

.site-footer::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0.7;
}

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

@media (min-width: 768px)  { .footer-grid { grid-template-columns: 1.2fr 0.8fr 1.3fr; gap: 40px; } }

.footer-col h4 {
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-logo-name {
  display: block;
  font-family: 'Allomira', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--white);
}

.footer-logo-tagline {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.footer-crm { margin-top: 12px; font-size: 13px; color: rgba(255, 255, 255, 0.6); }

.footer-col--links ul { display: flex; flex-direction: column; gap: 9px; }

.footer-col--links a {
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition), padding-left var(--transition);
}
.footer-col--links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-col--contact ul { display: flex; flex-direction: column; gap: 13px; }

.footer-col--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.footer-col--contact svg { flex-shrink: 0; margin-top: 3px; color: var(--gold); }

.footer-divider {
  border: none;
  height: 1px;
  margin: 34px 0 22px;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 118, 0.35), transparent);
}

.footer-bottom { text-align: center; }

.footer-bottom p {
  font-size: 12.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(201, 168, 118, 0.45);
  transition: color var(--transition), border-color var(--transition);
}
.footer-bottom a:hover { color: var(--gold-light); border-bottom-color: var(--gold); }

/* Assinatura da agencia no rodape (obrigatoria em toda LP da KRAFT) */
.footer-kraft {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(201, 168, 118, 0.22);
  font-size: 11.5px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42) !important;
}

.footer-kraft strong {
  font-family: 'Allomira', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-light);
}

/* ============================================================
   15B. PAGINAS DE TEXTO LEGAL (politica de privacidade)
============================================================ */
.legal {
  padding-top: calc(var(--header-h) + 44px);
  background:
    radial-gradient(90% 50% at 50% 0%, var(--blue-mist) 0%, rgba(255, 255, 255, 0) 60%),
    var(--white);
}

.legal-inner { max-width: 760px; }

.legal-back {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--blue-mid);
  transition: color var(--transition);
}
.legal-back:hover { color: var(--blue-dark); }

.legal h1 { font-size: clamp(29px, 7.2vw, 38px); }

.legal-meta {
  margin-top: 10px;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.legal-lead {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: 16px;
  font-size: 15.5px;
  background: var(--blue-soft);
  border: 1px solid var(--hairline-soft);
}

.legal h2 {
  margin-top: 44px;
  font-size: 23.5px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}

.legal h3 {
  margin-top: 28px;
  font-size: 18.5px;
  color: var(--blue-mid);
}

.legal p { margin-top: 14px; font-size: 15.5px; }

.legal-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  list-style: disc;
  color: var(--text-muted);
  font-size: 15.5px;
  line-height: 1.7;
}

.legal-list::marker, .legal-list li::marker { color: var(--gold); }

.legal strong { color: var(--blue-dark); font-weight: 600; }

/* Marcador do que ainda precisa ser preenchido antes de publicar */
.legal-fill {
  padding: 1px 7px;
  border-radius: 5px;
  background: rgba(201, 168, 118, 0.22);
  border: 1px dashed var(--gold);
  color: var(--gold-deep);
  white-space: nowrap;
}

.legal a:not(.btn):not(.legal-back) {
  color: var(--blue-mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--hairline-strong);
}
.legal a:not(.btn):not(.legal-back):hover { color: var(--blue-dark); }

/* A tabela de finalidades rola sozinha em telas estreitas */
.legal-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--hairline-soft);
  box-shadow: 0 2px 6px rgba(27, 58, 91, 0.05);
}

.legal-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

.legal-table-caption {
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--blue-soft);
  border-bottom: 1px solid var(--hairline-soft);
}

.legal-table th,
.legal-table td {
  padding: 12px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--hairline-soft);
  line-height: 1.6;
}

.legal-table th {
  font-family: 'Allomira', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-dark);
  background: rgba(242, 247, 252, 0.7);
}

.legal-table td { color: var(--text-muted); }
.legal-table tbody tr:last-child th,
.legal-table tbody tr:last-child td { border-bottom: none; }

.legal .section-cta { margin-top: 48px; }

@media (min-width: 768px) {
  .legal { padding-top: calc(var(--header-h) + 60px); }
  .legal h2 { margin-top: 52px; font-size: 26px; }
}

/* ============================================================
   16. DOCA DE CTA FLUTUANTE
   Aparece a partir da segunda secao, dentro de uma caixa de
   vidro fosco branco ancorada no rodape da janela.
============================================================ */
.cta-dock {
  position: fixed;
  left: 50%;
  bottom: max(14px, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  justify-content: center;
  width: min(calc(100% - 28px), 460px);
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 2px 8px rgba(27, 58, 91, 0.08),
    0 22px 48px -20px rgba(27, 58, 91, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 20px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
}

.cta-dock.visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

/* Fio dourado no topo do vidro, no mesmo idioma do painel do hero */
.cta-dock::before {
  content: '';
  position: absolute;
  left: 26px; right: 26px; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta-dock-btn {
  width: 100%;
  font-size: 19px;
  padding: 15px 24px;
}

@media (min-width: 768px) {
  .cta-dock { bottom: max(20px, env(safe-area-inset-bottom, 0px)); padding: 11px; }
  .cta-dock-btn { width: auto; min-width: 300px; }
}

/* ============================================================
   17. REVEAL AO ROLAR (só quando o JS assume o controle)
============================================================ */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
  will-change: auto;
}

/* Escalonamento dentro de grids */
.js-reveal .reveal[data-delay="1"] { transition-delay: 0.08s; }
.js-reveal .reveal[data-delay="2"] { transition-delay: 0.16s; }
.js-reveal .reveal[data-delay="3"] { transition-delay: 0.24s; }

/* ============================================================
   18. MOVIMENTO REDUZIDO
============================================================ */
@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;
  }

  .js-reveal .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   19. IMPRESSÃO
============================================================ */
@media print {
  .site-header, .cta-dock, .section-cta { display: none !important; }
  .hero { min-height: auto; background-image: none; }
  .about { background: none; color: #000; }
}
