
  /* Sports Mind Academy commits to one fixed light look for the website
     (independent of the visitor's system theme): the black+yellow identity
     stays reserved for Instagram, where the alternation strategy lives. */
  :root {
    --bg: #FBFAF6;
    --bg-alt: #FFFFFF;
    --bg-soft: #F2EFE6;
    --text: #14130F;
    --text-muted: #635F54;
    --text-dim: #97927F;
    --line: #E7E2D3;
    --accent: #F6C500;
    --accent-ink: #14130F;
    --accent-text: #9A7400;
    --shadow: 0 1px 2px rgba(20,19,15,0.03), 0 10px 24px -18px rgba(20,19,15,0.18);
    --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;
    --font-body: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; background: var(--bg); color: var(--text); font-family: var(--font-body); }
  img { display: block; max-width: 100%; }
  .wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }
  a { color: inherit; }

  .label { font-size: 13px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 14px; }
  h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.01em; margin: 0; }
  h1 em, h2 em { font-style: normal; }
  p { line-height: 1.65; color: var(--text-muted); margin: 0; }
  .lead { font-size: 19px; max-width: 640px; }

  section { padding: 128px 0; border-bottom: none; }
  section.soft { background: var(--bg-soft); }
  section.alt { background: var(--bg-alt); }
  section.accent { background: var(--accent); border-bottom: none; }
  section.accent *:not(.btn):not(.btn *) { color: var(--accent-ink) !important; }
  section.accent .btn-dark { color: var(--accent) !important; }
  footer { border-bottom: none; }

  .rv { opacity: 0; transform: translateY(18px); transition: opacity 700ms ease, transform 700ms ease; }
  .rv.on { opacity: 1; transform: none; }

  .btn { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 16px; text-decoration: none; padding: 15px 28px; border-radius: 999px; transition: transform 160ms ease, box-shadow 160ms ease; white-space: nowrap; }
  .btn-accent { background: var(--accent); color: var(--accent-ink); }
  .btn-accent:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -8px rgba(246,197,0,0.5); }
  .btn-line { background: transparent; color: var(--text); border: 1px solid var(--line); }
  .btn-line:hover { border-color: var(--text-dim); }
  .btn-dark { background: var(--accent-ink); color: var(--accent); }
  .btn svg { width: 16px; height: 16px; }

  /* nav */
  nav { position: sticky; top: 0; z-index: 40; background: color-mix(in srgb, var(--bg) 88%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
  .nav-in { display: flex; align-items: center; justify-content: space-between; padding: 16px 28px; gap: 20px; }
  .brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
  .brand svg { width: 30px; height: 30px; }
  .brand span { font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: 0.01em; }
  .brand span b { color: var(--accent); font-weight: 700; }
  .nav-links { display: flex; gap: 28px; font-size: 14.5px; font-weight: 500; }
  .nav-links a { text-decoration: none; color: var(--text-muted); }
  .nav-links a:hover { color: var(--text); }
  .nav-cta { font-size: 14px; padding: 10px 20px; }
  .nav-burger { display: none; background: none; border: none; color: var(--text); font-size: 22px; cursor: pointer; }
  .lang-toggle { font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--text-muted); text-decoration: none; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; }
  .lang-toggle:hover { color: var(--text); border-color: var(--text-dim); }
  @media (max-width: 860px) {
    .nav-links { display: none; }
    .nav-burger { display: block; }
    nav.open .nav-links { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg); flex-direction: column; padding: 18px 28px 24px; border-bottom: 1px solid var(--line); gap: 16px; }
  }

  /* hero */
  .hero { padding: 100px 0 90px; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
  .hero-in { text-align: center; display: flex; flex-direction: column; align-items: center; }
  .hero-mark { width: 96px; height: 96px; margin-bottom: 32px; opacity: 0; transform: scale(0.92); animation: rise 900ms cubic-bezier(.2,.7,.3,1) 120ms forwards; }
  @keyframes rise { to { opacity: 1; transform: scale(1); } }
  @media (prefers-reduced-motion: reduce) { .hero-mark { animation: none; opacity: 1; transform: none; } }
  .hero h1 { font-size: clamp(36px, 5.4vw, 62px); line-height: 1.1; max-width: 900px; margin: 0 auto 22px; text-wrap: balance; }
  .hero h1 em { color: var(--accent-ink); background: var(--accent); padding: 0 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
  .hero-sub { font-size: 19px; max-width: 620px; margin: 0 auto 40px; }
  .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
  .hero-stats { display: flex; gap: 40px; flex-wrap: wrap; justify-content: center; padding-top: 40px; border-top: 1px solid var(--line); width: 100%; max-width: 640px; }
  .hero-stats .st { text-align: center; }
  .hero-stats b { display: block; font-family: var(--font-display); font-size: 30px; color: var(--accent-text); }
  .hero-stats span { font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-dim); }

  /* pain grid */
  .grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
  .grid2 > div { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow); }
  .grid2 h3 { font-size: 18px; margin-bottom: 10px; }
  .grid2 p { font-size: 15px; }
  .punch { margin-top: 52px; font-family: var(--font-display); font-size: 24px; font-weight: 600; color: var(--text); max-width: 780px; }
  .punch em { color: var(--accent-text); font-style: normal; }

  /* frentes */
  .frentes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
  .frente { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 36px 30px; box-shadow: var(--shadow); }
  .frente .num { font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; color: var(--accent-text); margin-bottom: 16px; }
  .frente h3 { font-size: 21px; margin-bottom: 12px; }
  .frente p { font-size: 15px; }

  /* perfil section */
  .perfil-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 28px; }
  .perfil-badge { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 9px 18px; background: rgba(20,19,15,0.08); border-radius: 999px; }
  .perfil h2 { font-size: clamp(28px, 4vw, 42px); max-width: 760px; }
  .perfil-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; width: 100%; margin-top: 8px; }
  .perfil-list div { border-top: 2px solid var(--accent-ink); padding-top: 14px; }
  .perfil-list h4 { font-family: var(--font-display); font-size: 16px; margin-bottom: 6px; }
  .perfil-list p { font-size: 14.5px; }
  section.accent .lead, section.accent p { color: #3A3115 !important; }

  /* stats row */
  .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
  .stats-row > div { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 30px 24px; text-align: center; box-shadow: var(--shadow); }
  .stats-row b { display: block; font-family: var(--font-display); font-size: 40px; color: var(--accent-text); margin-bottom: 6px; }
  .stats-row span { font-size: 13px; color: var(--text-dim); }

  /* club logos */
  .club-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 40px; align-items: center; }
  .club { display: flex; align-items: center; justify-content: center; width: 92px; height: 92px; padding: 14px; opacity: 0.85; transition: opacity 160ms ease, transform 160ms ease; }
  .club:hover { opacity: 1; transform: translateY(-2px); }
  .club img { width: 100%; height: 100%; object-fit: contain; }
  @media (max-width: 560px) { .club { width: 72px; height: 72px; padding: 10px; } }

  /* gallery */
  .gal-grid { display: grid; grid-auto-flow: dense; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 260px; gap: 14px; margin-top: 48px; }
  .gal { position: relative; overflow: hidden; border-radius: 12px; grid-column: span 1; grid-row: span 1; cursor: pointer; }
  .gal.tall { grid-row: span 2; }
  .gal.wide { grid-column: span 2; }
  .gal img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms ease; }
  .gal:hover img { transform: scale(1.04); }
  .gal figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 16px; font-size: 13.5px; background: linear-gradient(0deg, rgba(0,0,0,.7), transparent); color: #fff; }
  .gal .expand { position: absolute; top: 12px; right: 12px; width: 30px; height: 30px; border-radius: 50%; background: rgba(0,0,0,.55); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 200ms ease; }
  .gal:hover .expand { opacity: 1; }
  .gal .expand svg { width: 14px; height: 14px; color: #fff; }
  @media (max-width: 900px) { .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; } }
  @media (max-width: 560px) { .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; gap: 8px; } .gal.wide { grid-column: span 2; } }

  /* lightbox */
  .lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(6,6,5,0.94); display: none; align-items: center; justify-content: center; padding: 24px; }
  .lightbox.open { display: flex; }
  .lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; width: auto; height: auto; object-fit: contain; border-radius: 8px; }
  .lightbox figcaption { position: static; background: none; color: var(--text-dim); text-align: center; margin-top: 14px; font-size: 14px; }
  .lightbox-frame { display: flex; flex-direction: column; align-items: center; max-width: 100%; }
  .lb-btn { position: fixed; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
  .lb-btn:hover { background: rgba(255,255,255,0.16); }
  .lb-prev { left: 20px; }
  .lb-next { right: 20px; }
  .lb-close { position: fixed; top: 20px; right: 20px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; }
  .lb-close:hover { background: rgba(255,255,255,0.16); }
  .lb-btn svg, .lb-close svg { width: 18px; height: 18px; }
  @media (max-width: 640px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-btn { width: 40px; height: 40px; } }

  /* player / coach cards */
  .player-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; margin-top: 40px; }
  .coach-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; margin-top: 40px; }
  .pcard { margin: 0; }
  .pimg { aspect-ratio: 1; border-radius: 10px; overflow: hidden; background: var(--bg-alt); }
  .pimg img { width: 100%; height: 100%; object-fit: cover; }
  .pcard figcaption { margin-top: 8px; font-size: 12.5px; font-weight: 500; text-align: center; color: var(--text-muted); }
  .jog-note { margin-top: 22px; font-size: 14.5px; }
  @media (max-width: 900px) { .player-grid { grid-template-columns: repeat(4, 1fr); } .coach-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 560px) { .player-grid { grid-template-columns: repeat(3, 1fr); } .coach-grid { grid-template-columns: repeat(3, 1fr); } }

  /* lidera */
  .lidera-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; margin-top: 48px; }
  .lidera-grid figure { margin: 0; border-radius: 14px; overflow: hidden; }
  .lidera-media { display: flex; flex-direction: column; gap: 16px; }
  .lidera-media figure { position: relative; }
  .lidera-media img { width: 100%; display: block; }
  .lidera-media figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 12px 16px; font-size: 12.5px; letter-spacing: 0.02em; background: linear-gradient(0deg, rgba(0,0,0,.68), transparent); color: #fff; }
  .quote { margin-top: 26px; padding-left: 20px; border-left: 3px solid var(--accent); }
  .quote p { color: var(--text); font-size: 17px; font-style: italic; margin-bottom: 10px; }
  .quote cite { font-size: 13.5px; color: var(--text-dim); font-style: normal; }
  @media (max-width: 800px) { .lidera-grid { grid-template-columns: 1fr; } }

  /* team */
  .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px; }
  .tcard { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 30px 24px; box-shadow: var(--shadow); }
  .tcard .ico { font-size: 26px; margin-bottom: 14px; }
  .tcard h3 { font-size: 16.5px; margin-bottom: 8px; }
  .tcard p { font-size: 14px; }

  /* press */
  .press-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
  .press { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 28px; text-decoration: none; display: block; box-shadow: var(--shadow); transition: transform 160ms ease, box-shadow 160ms ease; }
  .press:hover { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(20,19,15,0.03), 0 16px 28px -18px rgba(20,19,15,0.24); }
  .press .src { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); }
  .press h3 { font-family: var(--font-display); font-size: 17px; margin: 10px 0 8px; color: var(--text); }
  .press p { font-size: 14px; }
  .press .go { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--text); }

  /* contact */
  .contacto { text-align: left; }
  .contact-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

  footer .wrap { padding: 40px 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--text-dim); }
  footer .fbrand { display: flex; align-items: center; gap: 8px; }
  footer svg { width: 20px; height: 20px; }

  .articles-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; }
  .article-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 28px; text-decoration: none; display: block; box-shadow: var(--shadow); transition: transform 160ms ease, box-shadow 160ms ease; }
  .article-card:hover { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(20,19,15,0.03), 0 16px 28px -18px rgba(20,19,15,0.24); }
  .article-card .tag { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); }
  .article-card h3 { font-family: var(--font-display); font-size: 17px; margin: 10px 0 8px; color: var(--text); }
  .article-card p { font-size: 14px; }
  .article-card .go { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--text); }

  .article-full { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 40px clamp(24px,4vw,52px); box-shadow: var(--shadow); scroll-margin-top: 88px; }
  .article-full + .article-full { margin-top: 24px; }
  .article-full .tag { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); }
  .article-full h3 { font-family: var(--font-display); font-size: clamp(22px,3vw,30px); margin: 12px 0 8px; line-height: 1.2; }
  .article-full h4 { font-family: var(--font-display); font-size: 18px; margin: 28px 0 10px; color: var(--text); }
  .article-full p { margin-bottom: 16px; }
  .article-full .back { display: inline-block; margin-top: 8px; font-size: 13px; font-weight: 600; color: var(--accent-text); text-decoration: none; }

  @media (max-width: 900px) {
    .grid2, .frentes, .stats-row, .team-grid, .press-grid, .perfil-list, .articles-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    section { padding: 64px 0; }
    .grid2, .frentes, .stats-row, .team-grid, .press-grid, .perfil-list, .articles-grid { grid-template-columns: 1fr; }
    .lead { font-size: 17px; }
  }

  /* Planos */
  .planos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 52px; align-items: stretch; }
  .plano { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 18px; padding: 36px 34px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
  .plano.destaque { border-color: var(--accent); }
  .plano-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
  .plano .tier { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-text); }
  .plano .flag { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); background: var(--accent); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
  .plano h3 { font-size: 23px; margin-bottom: 12px; }
  .plano .plano-lead { font-size: 15px; margin-bottom: 24px; }
  .plano ul { list-style: none; margin: 0 0 30px; padding: 0; display: flex; flex-direction: column; gap: 13px; flex: 1; }
  .plano li { position: relative; padding-left: 27px; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
  .plano li::before { content: ""; position: absolute; left: 1px; top: 6px; width: 11px; height: 6px; border-left: 2px solid var(--accent-text); border-bottom: 2px solid var(--accent-text); transform: rotate(-45deg); }
  .plano li.inclui { color: var(--text); font-weight: 600; }
  .plano .btn { align-self: flex-start; }
  .planos-nota { margin-top: 30px; font-size: 13.5px; line-height: 1.6; color: var(--text-dim); max-width: 720px; }
  @media (max-width: 760px) { .planos-grid { grid-template-columns: 1fr; } .plano { padding: 30px 26px; } }

  /* ---- multi-página ---- */
  section[id], header[id] { scroll-margin-top: 84px; }
  .hero-mark svg { width: 100%; height: 100%; display: block; }
  .foot-brand svg, .brand svg { display: block; }
  .nav-links a.aqui { color: var(--text); font-weight: 600; }
  .page-hero { padding: 84px 0 72px; border-bottom: 1px solid var(--line); background: var(--bg-alt); }
  .page-hero h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(32px, 5vw, 52px); line-height: 1.12; letter-spacing: -0.01em; max-width: 900px; margin: 0 0 20px; text-wrap: balance; }
  .page-hero h1 em { font-style: normal; color: var(--accent-ink); background: var(--accent); padding: 0 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
  .page-hero .lead { font-size: 19px; max-width: 680px; }
  .page-hero .hero-ctas { margin-top: 34px; }
  .crumb { font-size: 13px; color: var(--text-dim); margin-bottom: 18px; }
  .crumb a { text-decoration: none; }
  .crumb a:hover { color: var(--text); }

  /* cartões de caminho (home) */
  .caminhos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
  .caminho { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 18px; padding: 34px 30px; box-shadow: var(--shadow); text-decoration: none; display: flex; flex-direction: column; transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease; }
  .caminho:hover { transform: translateY(-3px); border-color: var(--accent); box-shadow: 0 1px 2px rgba(20,19,15,0.04), 0 18px 32px -20px rgba(20,19,15,0.3); }
  .caminho .num { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 16px; }
  .caminho h3 { font-family: var(--font-display); font-size: 21px; font-weight: 700; margin: 0 0 12px; color: var(--text); }
  .caminho p { font-size: 15px; flex: 1; margin: 0 0 20px; }
  .caminho .go { font-size: 14px; font-weight: 600; color: var(--text); }
  @media (max-width: 900px) { .caminhos { grid-template-columns: 1fr; } }

  /* citação destacada */
  .callouts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
  .callout { background: var(--bg-alt); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 0 16px 16px 0; padding: 26px 30px; }
  .callout q { display: block; font-size: 16.5px; line-height: 1.6; font-style: normal; color: var(--text); margin-bottom: 12px; }
  .callout cite { font-style: normal; font-size: 13px; color: var(--text-dim); }
  @media (max-width: 760px) { .callouts { grid-template-columns: 1fr; } }

  /* oferta avulsa (crise, formação) */
  .oferta { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 18px; padding: 36px 34px; box-shadow: var(--shadow); margin-top: 32px; }
  .oferta h3 { font-family: var(--font-display); font-size: 23px; font-weight: 700; margin: 0 0 12px; }
  .oferta .tier { font-size: 12.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 10px; }
  .oferta .duas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin: 24px 0 28px; }
  .oferta .duas > div { border-top: 1px solid var(--line); padding-top: 18px; }
  .oferta .duas h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; margin: 0 0 8px; }
  .oferta .duas p { font-size: 14.5px; }
  .oferta .quatro { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin: 24px 0 28px; }
  .oferta .quatro > div { border-top: 1px solid var(--line); padding-top: 18px; }
  .oferta .quatro h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; margin: 0 0 8px; }
  .oferta .quatro .d { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 6px; }
  .oferta .quatro p { font-size: 14px; }
  @media (max-width: 900px) { .oferta .quatro { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 700px) { .oferta .duas, .oferta .quatro { grid-template-columns: 1fr; } }

  /* formulário de contacto */
  .contact-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; margin-top: 44px; align-items: start; }
  @media (max-width: 860px) { .contact-split { grid-template-columns: 1fr; gap: 34px; } }
  .form-card { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 18px; padding: 32px 30px; box-shadow: var(--shadow); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  @media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
  .field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
  .field label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-dim); }
  .field input, .field select, .field textarea { font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--bg); border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; width: 100%; }
  .field textarea { min-height: 96px; resize: vertical; }
  .field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(246,197,0,0.18); }
  .form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
  .form-nota { margin-top: 14px; font-size: 12.5px; color: var(--text-dim); line-height: 1.55; }
  .hp { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .contact-direto { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
  .contact-direto a { display: flex; align-items: center; gap: 12px; text-decoration: none; font-size: 15.5px; font-weight: 500; }
  .contact-direto a:hover { color: var(--accent-text); }
  .contact-direto svg { width: 19px; height: 19px; flex: none; }

  /* rodapé alargado */
  .foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding: 52px 28px 34px; max-width: 1120px; margin: 0 auto; }
  @media (max-width: 760px) { .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
  .foot-grid h4 { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin: 0 0 14px; }
  .foot-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .foot-grid a { font-size: 14px; text-decoration: none; color: var(--text-muted); }
  .foot-grid a:hover { color: var(--text); }
  .foot-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .foot-brand svg { width: 30px; height: 30px; }
  .foot-brand span { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
  .foot-brand span b { color: var(--accent-text); }
  .foot-sobre { font-size: 14px; line-height: 1.6; color: var(--text-muted); max-width: 320px; }
  .foot-base { border-top: 1px solid var(--line); }
  .foot-base .wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding-top: 20px; padding-bottom: 28px; font-size: 12.5px; color: var(--text-dim); }

  /* barra de navegação em ecrãs estreitos */
  @media (max-width: 620px) {
    .nav-in { padding: 14px 16px; gap: 10px; }
    .brand svg { width: 34px; height: 34px; }
    .brand span { font-size: 15px; }
    .nav-cta { font-size: 13px; padding: 9px 15px; }
  }
  @media (max-width: 440px) {
    .brand span { font-size: 0; }
    .brand span b { font-size: 0; }
  }
  @media (max-width: 620px) {
    .btn { white-space: normal; text-align: center; }
    .oferta { padding: 30px 24px; }
    .oferta .btn { width: 100%; justify-content: center; }
  }


  /* ---- cronograma da intervenção ---- */
  .cron { margin-top: 48px; border-left: 2px solid var(--line); padding-left: 0; }
  .cron-item { position: relative; padding: 0 0 36px 34px; }
  .cron-item:last-child { padding-bottom: 0; }
  .cron-item::before { content: ""; position: absolute; left: -7px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); border: 2px solid var(--bg); }
  .cron-item .quando { font-size: 12.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 6px; }
  .cron-item h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin: 0 0 10px; }
  .cron-item p { font-size: 15px; margin: 0 0 12px; }
  .cron-item ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
  .cron-item li { position: relative; padding-left: 22px; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
  .cron-item li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--text-dim); }

  /* ---- entregáveis ---- */
  .entregas { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 48px; }
  .entrega { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 14px; padding: 24px 26px; box-shadow: var(--shadow); }
  .entrega h4 { font-family: var(--font-display); font-size: 16.5px; font-weight: 700; margin: 0 0 8px; }
  .entrega p { font-size: 14.5px; margin: 0; }
  .entrega .quem { display: inline-block; margin-top: 12px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-text); background: rgba(246,197,0,0.14); padding: 4px 10px; border-radius: 999px; }
  @media (max-width: 700px) { .entregas { grid-template-columns: 1fr; } }

  /* ---- o que não fazemos ---- */
  .nao-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 44px; }
  .nao-col { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 16px; padding: 28px 30px; }
  .nao-col.sim { border-color: var(--accent); }
  .nao-col h3 { font-family: var(--font-display); font-size: 17px; font-weight: 700; margin: 0 0 16px; }
  .nao-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
  .nao-col li { position: relative; padding-left: 26px; font-size: 14.5px; line-height: 1.55; color: var(--text-muted); }
  .nao-col.nao li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 12px; height: 2px; background: var(--text-dim); }
  .nao-col.sim li::before { content: ""; position: absolute; left: 1px; top: 6px; width: 11px; height: 6px; border-left: 2px solid var(--accent-text); border-bottom: 2px solid var(--accent-text); transform: rotate(-45deg); }
  @media (max-width: 700px) { .nao-grid { grid-template-columns: 1fr; } }

  /* ---- caso ---- */
  .caso { background: var(--bg-alt); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; box-shadow: var(--shadow); margin-top: 44px; }
  .caso-head { padding: 24px 32px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
  .caso-head h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin: 0; }
  .caso-head .etiqueta { font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--text-dim); border: 1px solid var(--line); padding: 5px 12px; border-radius: 999px; white-space: nowrap; }
  .caso-body { padding: 10px 32px 28px; }
  .caso-bloco { padding: 18px 0; border-bottom: 1px solid var(--line); }
  .caso-bloco:last-child { border-bottom: none; }
  .caso-bloco .k { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 6px; }
  .caso-bloco p { font-size: 15px; color: var(--text); margin: 0; }
  .caso-bloco p b { color: var(--accent-text); }
  @media (max-width: 560px) { .caso-head, .caso-body { padding-left: 22px; padding-right: 22px; } }

  /* ---- artigos ---- */
  .artigo { padding: 64px 0 80px; }
  .artigo .wrap { max-width: 760px; }
  .artigo .meta { font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent-text); margin-bottom: 14px; }
  .artigo h1.title { font-family: var(--font-display); font-weight: 700; font-size: clamp(28px, 4.4vw, 42px); line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 20px; }
  .artigo p.intro { font-size: 19px; color: var(--text-muted); margin: 0 0 32px; }
  .artigo h2 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 34px 0 10px; }
  .artigo p { margin: 0 0 16px; color: var(--text); line-height: 1.65; }
  .artigo ul, .artigo ol { margin: 0 0 16px; padding-left: 20px; color: var(--text); }
  .artigo li { margin-bottom: 8px; line-height: 1.6; }
  .artigo li b { color: var(--accent-text); }
  .artigo .quote { margin: 28px 0; padding-left: 20px; border-left: 3px solid var(--accent); }
  .artigo .quote p { font-size: 17.5px; font-style: italic; margin: 0; }
  .artigo .table-wrap { overflow-x: auto; margin: 20px 0 24px; border: 1px solid var(--line); border-radius: 14px; }
  .artigo table { width: 100%; border-collapse: collapse; font-size: 14px; }
  .artigo th, .artigo td { text-align: left; padding: 14px 16px; border-bottom: 1px solid var(--line); vertical-align: top; }
  .artigo th { font-family: var(--font-display); font-size: 12.5px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--accent-text); background: var(--bg-soft); }
  .artigo tr:last-child td { border-bottom: none; }
  .artigo .cta-box { margin-top: 44px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 16px; padding: 30px 32px; }
  .artigo .cta-box h3 { font-family: var(--font-display); font-size: 19px; margin: 0 0 8px; }
  .artigo .cta-box p { color: var(--text-muted); margin-bottom: 20px; }
  .artigo .voltar { display: inline-block; margin-top: 36px; font-size: 14px; font-weight: 600; text-decoration: none; color: var(--accent-text); }
  @media (max-width: 560px) { .artigo { padding: 44px 0 64px; } .artigo th, .artigo td { padding: 12px; font-size: 13px; } }
