/* ═══════════════════════════════════════════════════════
   Francisco Bischoff — Fisioterapeuta Esportivo
   Design System: Mobile First · Escala tipográfica definida
   Fonts: Instrument Serif (display italic) · Plus Jakarta Sans
═══════════════════════════════════════════════════════ */

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

:root {
  /* ── Palette ── */
  --white:    #FFFFFF;
  --bg:       #FAFBFF;
  --bg-2:     #F0F4FF;
  --navy:     #091A3E;
  --navy-2:   #0C2250;
  --blue:     #1666F5;
  --blue-h:   #1255D4;
  --blue-dim: rgba(22, 102, 245, 0.08);
  --blue-bdr: rgba(22, 102, 245, 0.18);
  --text:     #091A3E;
  --muted:    #5A6880;
  --border:   #E2E8F4;
  --border-2: #CDD5E8;
  --wa:       #25D366;
  --wa-h:     #1EBD5B;
  --star:     #F59E0B;

  /* ── Fonts ── */
  --serif: 'Instrument Serif', serif;
  --sans:  'Plus Jakarta Sans', sans-serif;

  /* ══════════════════════════════════════
     ESCALA TIPOGRÁFICA — fonte única de verdade
     Hierarquia: Hero › Seção › Card › Body › Small
  ══════════════════════════════════════ */

  /* Hero headline: palavra principal (ESPORTE) */
  --fs-hero:        clamp(2.6rem, 5.5vw, 4.2rem);
  /* Hero accent: linhas de suporte em italic serif (~55% do hero) */
  --fs-hero-accent: 0.54em;

  /* Títulos de seção (Especialidades, Diferenciais…) */
  --fs-section:     clamp(1.85rem, 7vw, 3rem);

  /* Títulos de CTA final (destaque próximo ao hero) */
  --fs-cta:         clamp(2rem, 8vw, 4rem);

  /* Títulos de cards / h3 */
  --fs-card:        1.1rem;    /* mobile */
  --fs-card-lg:     1.3rem;    /* ≥768px */

  /* Corpo de texto */
  --fs-body:        0.9rem;
  --fs-body-lg:     0.95rem;

  /* Labels / overlines */
  --fs-label:       0.68rem;

  /* Pequeno: listas, captions */
  --fs-sm:          0.8rem;

  /* Minúsculo: notas, footer */
  --fs-xs:          0.7rem;

  /* ── Spacing ── */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;

  /* ── Layout ── */
  --max-w:  1200px;
  --hdr-h:  60px;
  --r:      10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 999px;
  --ease:   0.2s ease;
}

@media (min-width: 768px) {
  :root {
    --hdr-h:   68px;
    --fs-card: var(--fs-card-lg);
    --fs-body: var(--fs-body-lg);
  }
}

/* ─── Base ─── */

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  font-family: var(--sans);
  background: var(--white);
  color: var(--text);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

@media (min-width: 480px) {
  .container { padding: 0 var(--s6); }
}

/* Seções: ritmo vertical consistente (aumentado de 40px para 56px no mobile para mais respiro) */
.section { padding: 3.5rem 0; }

@media (min-width: 768px) {
  .section { padding: var(--s20) 0; }
}

/* ─── Labels / overlines ─── */

.label {
  font-family: var(--sans);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  display: block;
  margin-bottom: var(--s3);
}

.label--light { color: rgba(22, 102, 245, 0.65); }

/* ─── Títulos de seção ─── */

.sec-title {
  font-family: var(--sans);
  font-size: var(--fs-section);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: var(--s8);
}

@media (min-width: 768px) {
  .sec-title { margin-bottom: var(--s12); }
}

@media (max-width: 768px) {
  .label, .sec-title {
    text-align: center;
  }
}

.sec-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.sec-title--light { color: var(--white); }
.sec-title--light em { color: rgba(255,255,255,0.75); }

/* ─── Botões ─── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  font-family: var(--sans);
  font-weight: 700;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: all var(--ease);
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-2);
  padding: var(--s2) var(--s4);
  font-size: 0.82rem;
}

@media (min-width: 480px) {
  .btn--outline { padding: var(--s3) var(--s5); font-size: 0.85rem; }
}

.btn--outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-dim);
}

.btn--primary {
  background: var(--wa);
  color: #fff;
  padding: var(--s4) var(--s8);
  font-size: var(--fs-body-lg);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.28);
  min-width: 260px;
}

.btn--primary:hover {
  background: var(--wa-h);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn--wa-final {
  background: var(--wa);
  color: #fff;
  padding: var(--s4) var(--s8);
  font-size: var(--fs-body-lg);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  width: 100%;
  justify-content: center;
}

@media (min-width: 480px) {
  .btn--wa-final { width: auto; }
}

.btn--wa-final:hover {
  background: var(--wa-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.48);
}

/* ═══════════════════════════════════
   HEADER
═══════════════════════════════════ */

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--hdr-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.header__brand { display: flex; align-items: center; }

.header__logo {
  height: 38px;
  width: auto;
  display: block;
  border-radius: 6px;
}

@media (min-width: 768px) {
  .header__logo {
    height: 44px;
  }
}

.header__inner .btn--outline {
  display: inline-flex;
  padding: var(--s2) var(--s3);
  font-size: 0.75rem;
}

@media (min-width: 480px) {
  .header__inner .btn--outline {
    padding: var(--s3) var(--s5);
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════
   HERO — Mobile first
   
   Hierarquia visual:
   ┌─────────────────────────────┐
   │  [badge] ★★★★★ Google     │
   │                             │
   │  Volte ao      ← accent     │
   │  ESPORTE       ← hero word  │
   │  Sem Dor.      ← accent     │
   │                             │
   │  [sub text]                 │
   │  [CTA button]               │
   │  [stats]                    │
   └─────────────────────────────┘
═══════════════════════════════════ */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  min-height: 0;
  padding-top: var(--hdr-h);
  background: var(--white);
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 52% 48%;
    grid-template-rows: none;
    height: calc(100svh - var(--hdr-h));
    min-height: 560px;
    max-height: 720px;
  }
}

/* ─ Área de texto do hero ─ */

.hero__text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Mobile: centralizado — padrão para hero em coluna única */
  align-items: center;
  text-align: center;
  padding: var(--s5) var(--s5) var(--s6);
  order: 1;
}

@media (min-width: 768px) {
  .hero__text {
    order: unset;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: var(--s8) var(--s10) var(--s8)
      max(var(--s6), calc((100vw - var(--max-w)) / 2 + var(--s6)));
  }
}

/* Badge de avaliação */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--bg-2);
  border: 1px solid var(--blue-bdr);
  border-radius: var(--r-pill);
  padding: 5px 14px;
  font-size: var(--fs-xs);
  color: var(--muted);
  margin-bottom: var(--s4);
  width: fit-content;
}

.hero__stars {
  color: var(--star);
  font-size: 0.75rem;
  letter-spacing: 1px;
}

/*
 * ─ HEADLINE PRINCIPAL ─
 *
 * Padrão "whisper SHOUT whisper":
 *
 *   "Volte ao"   → em.  Serif italic, menor. É o SETUP.
 *   "Esporte"    → span Bold sans, máximo. É o HERÓI.
 *   "Sem Dor."   → em.  Serif italic, menor. É o PAYOFF.
 *
 * O em usa font-size: var(--fs-hero-accent) = 0.54em
 * relativo ao h1. Isso cria contraste proposital —
 * não é bug, é design. Referência: Nike, Apple, Adidas.
 */
.hero__headline {
  font-family: var(--sans);
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: var(--s4);
}

.hero__headline em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  color: var(--blue);
  display: inline-block;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.hero__headline span {
  display: inline;
  color: inherit;
}

/* Subtexto */
.hero__sub {
  font-size: var(--fs-body);
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: var(--s4);
  font-weight: 400;
  max-width: 300px;  /* mobile: evita linhas muito longas */
}

@media (min-width: 768px) {
  .hero__sub {
    max-width: 440px;
    margin-bottom: var(--s5);
  }
}

.hero__sub strong {
  color: var(--navy);
  font-weight: 600;
}

/* CTA actions */
.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s4);
  width: 100%;
}

@media (min-width: 768px) {
  .hero__actions {
    align-items: flex-start;
    margin-bottom: var(--s6);
  }
}

.hero__note {
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* Barra de stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s3);
  padding: var(--s3) var(--s4);
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  width: fit-content;
  max-width: 100%;
}

/* Stats always horizontal — even on small screens */

@media (min-width: 768px) {
  .hero__stats { justify-content: flex-start; padding: var(--s4) var(--s6); }
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .stat { 
    flex-direction: row; 
    align-items: center; 
    text-align: left; 
    gap: 8px;
  }
}

.stat strong {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .stat strong { font-size: 1.15rem; }
}

.stat span {
  font-size: 0.6rem;
  color: var(--muted);
  font-weight: 500;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .stat span { font-size: 0.7rem; }
}

.stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* ─ Foto do hero ─ */

.hero__photo {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  order: 2;
  height: 72vw;
  max-height: 380px;
  min-height: 260px;
}

@media (min-width: 768px) {
  .hero__photo {
    order: unset;
    height: auto;
    max-height: none;
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  transition: transform 8s ease;
}

.hero__photo:hover img { transform: scale(1.04); }

.hero__photo-pill {
  position: absolute;
  bottom: var(--s3);
  left: var(--s3);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: var(--s2) var(--s4);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: var(--s2);
  box-shadow: 0 4px 16px rgba(9, 26, 62, 0.12);
}

@media (min-width: 768px) {
  .hero__photo-pill {
    bottom: var(--s8);
    left: calc(var(--s6) + 4%);
    padding: var(--s3) var(--s5);
    font-size: 0.78rem;
  }
}

.hero__photo-pill svg { color: var(--blue); flex-shrink: 0; }

/* ═══════════════════════════════════
   TICKER
═══════════════════════════════════ */

.ticker {
  overflow: hidden;
  background: var(--navy);
  padding: 12px 0;
  white-space: nowrap;
}

.ticker__track {
  display: inline-flex;
  gap: var(--s5);
  animation: ticker 26s linear infinite;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.55);
}

.ticker__track .dot { color: var(--blue); opacity: 0.7; }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ticker {
    overflow-x: auto;
  }
  .ticker__track {
    animation: none;
  }
}

/* ═══════════════════════════════════
   ESPECIALIDADES
   Hierarquia: label › sec-title › h3 › p › li
═══════════════════════════════════ */

.sec-esp { background: var(--bg); }

.esp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

@media (min-width: 900px) {
  .esp-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
}

.esp-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6);
  position: relative;
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}

@media (min-width: 768px) {
  .esp-card { padding: var(--s8); }
}

.esp-card:hover {
  border-color: var(--blue-bdr);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(22, 102, 245, 0.08);
}

.esp-card--featured {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.esp-card--featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(9, 26, 62, 0.25);
  border-color: var(--blue);
}

.esp-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--s5);
}

@media (min-width: 768px) {
  .esp-card__head { margin-bottom: var(--s8); }
}

.esp-num {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue);
  opacity: 0.7;
}

.esp-card--featured .esp-num { color: rgba(255,255,255,0.4); }

.esp-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r);
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.esp-card--featured .esp-icon {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
}

/* Card title — nível 3 da hierarquia */
.esp-card h3 {
  font-family: var(--sans);
  font-size: var(--fs-card);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: var(--s2);
}

@media (min-width: 768px) {
  .esp-card h3 { margin-bottom: var(--s3); }
}

.esp-card--featured h3 { color: var(--white); }

/* Card body — nível 4 */
.esp-card p {
  font-size: var(--fs-body);
  line-height: 1.68;
  color: var(--muted);
  margin-bottom: var(--s4);
}

.esp-card--featured p { color: rgba(255,255,255,0.8); }

/* Lista — nível 5 */
.esp-card ul {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
}

.esp-card--featured ul { border-top-color: rgba(255,255,255,0.1); }

.esp-card li {
  font-size: var(--fs-sm);
  color: var(--muted);
  padding-left: var(--s4);
  position: relative;
  font-weight: 500;
  line-height: 1.5;
}

.esp-card--featured li { color: rgba(255,255,255,0.75); }

.esp-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.65rem;
  top: 3px;
}

.esp-card--featured li::before { color: var(--blue); }

/* ═══════════════════════════════════
   DIFERENCIAIS
═══════════════════════════════════ */

.sec-dif { background: var(--navy); }

.dif-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  margin-bottom: var(--s8);
}

@media (max-width: 768px) {
  .dif-intro {
    text-align: center;
    justify-items: center;
  }
}

@media (min-width: 768px) {
  .dif-intro {
    grid-template-columns: 1fr 1fr;
    gap: var(--s12);
    align-items: end;
    margin-bottom: var(--s16);
  }
}

.dif-lead {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .dif-lead {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .dif-lead { padding-bottom: var(--s4); }
}

.dif-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}

@media (min-width: 600px) {
  .dif-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
}

@media (min-width: 768px) {
  .dif-grid { gap: var(--s8); }
}

.dif-item {
  padding: var(--s6);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.03);
  transition: border-color var(--ease), background var(--ease);
}

@media (min-width: 768px) {
  .dif-item { padding: var(--s8); }
}

.dif-item:hover {
  border-color: var(--blue-bdr);
  background: rgba(22, 102, 245, 0.05);
}

.dif-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  background: var(--blue-dim);
  border: 1px solid var(--blue-bdr);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: var(--s4);
}

.dif-item .dif-icon {
  background: rgba(22, 102, 245, 0.15);
  border-color: rgba(22, 102, 245, 0.3);
  color: #3b82f6;
}

/* Dif title — mesmo nível que esp-card h3 */
.dif-item h3 {
  font-family: var(--sans);
  font-size: var(--fs-card);
  font-weight: 800;
  color: var(--white);
  margin-bottom: var(--s2);
  letter-spacing: -0.015em;
  line-height: 1.2;
}

/* Dif body — mesmo nível que esp-card p */
.dif-item p {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.7);
  line-height: 1.72;
}

/* ═══════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════ */

.sec-dep { background: var(--bg); }

.dep-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s8);
}

.dep-header .sec-title { margin-bottom: 0; }

@media (min-width: 768px) {
  .dep-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .dep-google-link {
    align-self: flex-end;
  }
}

.dep-google-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue-bdr);
  border-radius: var(--r-pill);
  padding: var(--s2) var(--s4);
  background: var(--blue-dim);
  transition: background var(--ease), border-color var(--ease);
  white-space: nowrap;
  margin-bottom: var(--s1);
}

.dep-google-link:hover {
  background: rgba(22, 102, 245, 0.14);
  border-color: var(--blue);
}

/* ─ Carrossel infinito ─ */
.dep-carousel {
  overflow: hidden;
  /* fade nas bordas */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.dep-track {
  display: flex;
  gap: var(--s4);
  width: max-content;
  animation: dep-scroll 32s linear infinite;
}

.dep-track:hover {
  animation-play-state: paused;
}

@keyframes dep-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .dep-track { animation: none; }
}

.dep-card {
  width: 340px;
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

@media (min-width: 768px) {
  .dep-card { padding: var(--s8); }
}

.dep-card:hover {
  border-color: var(--blue-bdr);
  box-shadow: 0 8px 28px rgba(22, 102, 245, 0.06);
  transform: translateY(-3px);
}

.dep-stars {
  color: var(--star);
  letter-spacing: 1.5px;
  font-size: 0.85rem;
}

/* Depoimento — mesmo var(--fs-body) para consistência */
.dep-card > p {
  font-size: var(--fs-body);
  color: var(--muted);
  line-height: 1.74;
  font-style: italic;
  flex: 1;
}

.dep-autor {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
}

.dep-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-family: var(--sans);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dep-autor strong {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--navy);
}

.dep-autor span {
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ═══════════════════════════════════
   CTA FINAL
═══════════════════════════════════ */

.cta-final {
  background: var(--navy-2);
  padding: var(--s12) 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .cta-final { padding: var(--s24) 0; }
}

.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22,102,245,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22,102,245,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s8);
}

@media (max-width: 768px) {
  .cta-final__inner {
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .cta-final__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--s12);
    flex-wrap: wrap;
  }
}

/* CTA title — entre sec-title e hero, nível próprio */
.cta-final__text h2 {
  font-family: var(--sans);
  font-size: var(--fs-cta);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
}

.cta-final__text h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
}

.cta-final__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--s4);
  width: 100%;
}

@media (max-width: 768px) {
  .cta-final__action {
    align-items: center;
    text-align: center;
  }
}

@media (min-width: 768px) {
  .cta-final__action {
    align-items: flex-start;
    min-width: 260px;
    width: auto;
  }
}

.cta-final__action p {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.52);
  line-height: 1.6;
}

/* ═══════════════════════════════════
   FOOTER
═══════════════════════════════════ */

.footer {
  background: var(--navy);
  padding: var(--s6) 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 768px) {
  .footer {
    padding-bottom: calc(var(--s6) + 60px);
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--s4);
}

@media (max-width: 560px) {
  .footer__inner {
    align-items: center;
    text-align: center;
  }
  .footer__links {
    justify-content: center;
  }
}

@media (min-width: 560px) {
  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

@media (max-width: 560px) {
  .footer__brand {
    align-items: center;
  }
}

.footer__name {
  font-family: var(--sans);
  font-size: var(--fs-body-lg);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
}

.footer__cred {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,0.35);
}

.footer__links { display: flex; gap: var(--s5); flex-wrap: wrap; }

.footer__links a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.38);
  transition: color var(--ease);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}

.footer__links a:hover { color: var(--white); }

.footer__icon {
  color: rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
  transition: color var(--ease);
}

.footer__links a:hover .footer__icon {
  color: var(--white);
}

/* ═══════════════════════════════════
   WHATSAPP FLOAT
═══════════════════════════════════ */

.wa-float {
  position: fixed;
  bottom: var(--s5);
  right: var(--s5);
  z-index: 200;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
  transition: transform var(--ease), box-shadow var(--ease);
}

@media (min-width: 480px) {
  .wa-float { bottom: var(--s6); right: var(--s6); width: 56px; height: 56px; }
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 26px rgba(37, 211, 102, 0.56);
}

/* ═══════════════════════════════════
   SOBRE
═══════════════════════════════════ */

.sec-sobre {
  background: var(--white);
}

.sobre__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  align-items: center;
}

@media (min-width: 768px) {
  .sobre__inner {
    grid-template-columns: 45% 55%;
    gap: var(--s12);
  }
}

.sobre__photo {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(9, 26, 62, 0.08);
  background: var(--bg-2);
}

/* Desktop: mostra a coluna esquerda, esconde a interna */
.sobre__photo--mobile { display: none; }

@media (max-width: 767px) {
  .sobre__photo--desktop { display: none; }
  .sobre__photo--mobile {
    display: block;
    width: 100%;
    margin: var(--s4) 0;
  }
}

.sobre__photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.sobre__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .sobre__text {
    align-items: center;
    text-align: center;
  }
}

.sobre__text .sec-title {
  margin-bottom: var(--s2);
}

.sobre__role {
  font-family: var(--sans);
  font-size: var(--fs-card-lg);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: var(--s4);
}

.sobre__bio {
  font-size: var(--fs-body);
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: var(--s6);
}

.sobre__credentials {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
  width: 100%;
}

.sobre__credentials li {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: var(--fs-sm);
  color: var(--navy);
  font-weight: 600;
  text-align: left;
}

@media (max-width: 768px) {
  .sobre__credentials li {
    justify-content: center;
  }
}

.sobre__credentials svg {
  color: var(--blue);
  flex-shrink: 0;
}

/* ═══════════════════════════════════
   QUEM SOU EU
═══════════════════════════════════ */

.sec-quem { background: var(--bg); }

.quem__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s10);
}

@media (min-width: 768px) {
  .quem__inner {
    grid-template-columns: 420px 1fr;
    gap: var(--s16);
    align-items: center;
  }
}

.quem__photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-2);
}

.quem__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.quem__role {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: var(--s6);
  margin-top: calc(var(--s3) * -1);
}

.quem__bio {
  font-size: var(--fs-body-lg);
  color: var(--muted);
  line-height: 1.75;
  max-width: 540px;
}

.quem__bio + .quem__bio {
  margin-top: var(--s4);
}
