/* ===================================================================
   ELEVE TI — style.css
   HTML5 semântico / CSS puro / mobile-first
   =================================================================== */

/* Fonte carregada via <link> assíncrono no HTML (não bloqueia render) — ver fonts.css e o padrão media="print" onload="this.media='all'" em cada página */

:root {
  /* Marca — valores exatos do manual (2019) */
  --navy: #033558;
  --navy-deep: #02233c;
  --orange: #f5811e;
  --orange-light: #ff9d40;
  --white: #ffffff;

  /* Derivados para composição de UI */
  --bg-soft: #f4f8fb;
  --bg-soft-2: #eaf1f6;
  --text-main: #0b2942;
  --text-muted: #4d6478;
  --text-on-navy: #cfe0ec;
  --border-soft: #dde8ef;
  --orange-tint: #fef1e3;

  /* Tipografia */
  --font-display: 'Quantify', 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;

  /* Espaçamento — design tokens (padrão ELEVE TI) */
  --sp-section-mobile: 40px;
  --sp-section-desktop: 64px;
  --sp-block: 32px;
  --sp-header-gap: 14px;
  --sp-lead-gap: 18px;

  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;

  --shadow-soft: 0 12px 32px rgba(3, 53, 88, 0.10);
  --shadow-card: 0 4px 18px rgba(3, 53, 88, 0.08);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: var(--sp-section-mobile) 0; }
@media (min-width: 720px) {
  section { padding: var(--sp-section-desktop) 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--sp-header-gap);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
  display: inline-block;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  margin: 0;
  letter-spacing: 0.01em;
}

h2 { font-size: clamp(28px, 4vw, 40px); }
h3 { font-size: clamp(20px, 2.6vw, 24px); }

.section-lead {
  max-width: 620px;
  color: var(--text-muted);
  font-size: 16.5px;
  margin-top: var(--sp-lead-gap);
}

.section-head { margin-bottom: var(--sp-block); }
.section-head.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.centered .section-lead { margin-left: auto; margin-right: auto; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(245, 129, 30, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(245, 129, 30, 0.4); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); transform: translateY(-2px); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-block { width: 100%; }

@media (max-width: 380px) {
  .btn { white-space: normal; text-align: center; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  isolation: isolate;
}
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  z-index: -1;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1160px;
  margin: 0 auto;
}
.brand { display: flex; align-items: center; }
.brand img { height: 48px; width: auto; }

.main-nav {
  display: none;
}
.main-nav ul { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-weight: 600;
  font-size: 14.5px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--orange); }

.header-cta { display: none; min-width: 168px; justify-content: center; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--navy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  top: 69px;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 190;
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav ul { padding: 24px 24px 40px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block;
  padding: 16px 4px;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--navy);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav a[aria-current="page"] { color: var(--orange); }
.mobile-nav .btn { margin-top: 20px; }
.mobile-nav a.btn {
  display: inline-flex;
  width: 100%;
  padding: 15px 28px;
  border-bottom: none;
  font-family: var(--font-body);
  font-size: 15px;
}

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-cta { display: inline-flex; }
  .menu-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(100deg, var(--navy-deep) 0%, rgba(2,35,60,0.94) 42%, rgba(2,35,60,0.55) 100%),
              url('img/infraestrutura-ti-servidores-rede-eleveti.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  overflow: hidden;
  padding: 40px 0 var(--sp-section-mobile);
  border-bottom: 4px solid var(--orange);
}
@media (min-width: 720px) { .hero { padding-top: 56px; } }
@media (min-width: 720px) { .hero { padding: 90px 0 var(--sp-section-desktop); } }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 48px; }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-light);
  background: rgba(245, 129, 30, 0.14);
  border: 1px solid rgba(245, 129, 30, 0.35);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(32px, 5.4vw, 52px);
  line-height: 1.12;
}
.hero h1 em {
  font-style: normal;
  color: var(--orange-light);
}

.hero-desc {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-on-navy);
  max-width: 520px;
}

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

.hero-stats {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 480px;
  border-top: 1px solid rgba(255,255,255,0.14);
  padding-top: 24px;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
}
.hero-stat span {
  display: block;
  font-size: 12.5px;
  color: var(--text-on-navy);
  margin-top: 4px;
  line-height: 1.35;
}

.hero-panel {
  position: relative;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(6px);
}
.hero-panel-title {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0.85;
}
.hero-pillars { display: grid; gap: 14px; }
.hero-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 16px 18px;
}
.hero-pillar .icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.hero-pillar .icon svg { width: 20px; height: 20px; stroke: var(--white); }
.hero-pillar strong { display: block; color: var(--white); font-size: 15px; margin-bottom: 3px; }
.hero-pillar p { color: var(--text-on-navy); font-size: 13.5px; margin: 0; }

.hero-panel-footer {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.14);
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--orange-light);
}

/* ---------- Logos / trust strip ---------- */
.trust-strip {
  padding: 26px 0;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border-soft);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 600;
}
.trust-inner span { display: flex; align-items: flex-start; gap: 8px; }
.trust-inner .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex: none; margin-top: 5px; }

/* ---------- Pillars (Home) ---------- */
.pillars-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 860px) {
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}
.pillar-card {
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
.pillar-card.digital { background: var(--white); }
.pillar-card.infra { background: var(--bg-soft); }
.pillar-card .pillar-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pillar-card.digital .pillar-tag { background: var(--orange-tint); color: var(--orange); }
.pillar-card.infra .pillar-tag { background: rgba(3,53,88,0.08); color: var(--navy); }
.pillar-card h3 { margin-bottom: 10px; }
.pillar-card > p { color: var(--text-muted); margin-bottom: 22px; }
.pillar-list { display: grid; gap: 10px; margin-bottom: 24px; }
.pillar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-main);
}
.pillar-list li svg { flex: none; width: 18px; height: 18px; stroke: var(--orange); }
.pillar-card.infra .pillar-list li svg { stroke: var(--navy); }

/* ---------- Diferenciais ---------- */
.diff-section { background: var(--bg-soft-2); border-top: 1px solid var(--border-soft); }

.diff-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .diff-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1080px) { .diff-grid.six { grid-template-columns: repeat(3, 1fr); } }

.diff-card {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border-soft);
}
.diff-card .diff-tag {
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--font-display);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.diff-card .diff-tag.digital { background: var(--orange-tint); color: var(--orange); }
.diff-card .diff-tag.infra { background: rgba(3,53,88,0.08); color: var(--navy); }
.diff-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--orange-tint);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.diff-card .icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.diff-card:has(.diff-tag.infra) .icon { background: rgba(3,53,88,0.08); }
.diff-card:has(.diff-tag.infra) .icon svg { stroke: var(--navy); }
.diff-card h4 { font-size: 16px; margin-bottom: 8px; padding-right: 50px; }
.diff-card p { color: var(--text-muted); font-size: 14px; }

/* ---------- Sobre preview ---------- */
.about-preview {
  position: relative;
  background: linear-gradient(115deg, rgba(2,35,60,0.96) 0%, rgba(2,35,60,0.86) 100%),
              url('img/consultoria-atendimento-ti-reuniao-eleveti.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  gap: 30px;
  border-top: 3px solid var(--orange);
}
.about-preview > div { min-width: 0; }
.about-preview > div:last-child .btn { width: 100%; }
@media (min-width: 860px) {
  .about-preview { grid-template-columns: 1fr 1fr; align-items: center; padding: 56px; border-top: none; border-left: 4px solid var(--orange); }
  .about-preview > div:last-child .btn { width: auto; }
}
.about-preview h2 { color: var(--white); }
.about-preview p { color: var(--text-on-navy); }
.about-preview .badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.about-preview .badge {
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text-on-navy);
}

/* ---------- CTA final ---------- */
.cta-final {
  position: relative;
  text-align: center;
  background: linear-gradient(120deg, rgba(2,35,60,0.96) 0%, rgba(2,35,60,0.93) 100%), url('img/datacenter-cabos-fibra-otica-servidores-eleveti.jpg');
  background-size: cover;
  background-position: center;
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 24px;
  border-top: 3px solid var(--orange);
}
.cta-final h2 { text-shadow: 0 2px 12px rgba(2,35,60,0.6); }
.cta-final h2 { color: var(--white); margin-bottom: 12px; }
.cta-final p { color: var(--text-on-navy); max-width: 520px; margin: 0 auto 28px; }
.cta-final .btn-primary { background: var(--orange); box-shadow: 0 10px 24px rgba(245,129,30,0.3); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--text-on-navy);
  padding: 56px 0 0;
}
.footer-top {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (min-width: 720px) {
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
}
.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: var(--text-on-navy); max-width: 320px; }
.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-on-navy); }
.footer-col a:hover { color: var(--orange-light); }
.footer-bottom {
  padding: 22px 0 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(207, 224, 236, 0.7);
}

/* ---------- WhatsApp FAB ---------- */
.wa-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 250;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(0,0,0,0.25);
  transition: transform 0.2s ease;
}
.wa-fab:hover { transform: scale(1.06); }
.wa-fab svg { width: 28px; height: 28px; fill: var(--white); }
body.menu-open .wa-fab { display: none; }

/* ---------- Página interna: header de página ---------- */
.page-header {
  background: linear-gradient(100deg, var(--navy-deep) 0%, rgba(2,35,60,0.96) 55%, rgba(2,35,60,0.82) 100%),
              var(--page-header-img, none);
  background-size: cover;
  background-position: center 35%;
  color: var(--white);
  padding: 50px 0 44px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--orange);
}
.page-header .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--text-on-navy);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--text-on-navy); }
.breadcrumb a:hover { color: var(--orange-light); }
.page-header h1 { color: var(--white); font-size: clamp(28px, 4.6vw, 42px); }
.page-header .section-lead { color: var(--text-on-navy); }

/* ---------- Serviços: página completa ---------- */
.services-category { margin-bottom: 12px; }
.services-category .cat-head { margin-bottom: 28px; }
.services-category .cat-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.services-category.digital .cat-tag { background: var(--orange-tint); color: var(--orange); }
.services-category.infra .cat-tag { background: rgba(3,53,88,0.08); color: var(--navy); }

.service-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .service-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 28px;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.service-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.service-card .icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.services-category.digital .service-card .icon { background: var(--orange-tint); }
.services-category.infra .service-card .icon { background: rgba(3,53,88,0.08); }
.service-card .icon svg { width: 23px; height: 23px; }
.services-category.digital .service-card .icon svg { stroke: var(--orange); }
.services-category.infra .service-card .icon svg { stroke: var(--navy); }
.service-card h3 { font-size: 17.5px; margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14.5px; }
.service-card.featured { border: 1.5px solid var(--orange); position: relative; }
.service-card.featured .ribbon {
  position: absolute; top: -12px; right: 20px;
  background: var(--orange); color: var(--white);
  font-size: 11px; font-weight: 700;
  padding: 5px 12px; border-radius: 100px;
  letter-spacing: 0.04em;
}

.category-divider {
  height: 1px;
  background: var(--border-soft);
  margin: var(--sp-section-mobile) 0;
}
@media (min-width: 720px) { .category-divider { margin: var(--sp-section-desktop) 0; } }

/* ---------- SEO local / GMN box ---------- */
.gmn-box {
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) { .gmn-box { grid-template-columns: 1fr 1fr; padding: 44px; } }
.gmn-box h3 { margin-bottom: 14px; }
.gmn-steps { display: grid; gap: 16px; }
.gmn-step { display: flex; gap: 14px; }
.gmn-step .n {
  flex: none; width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.gmn-step strong { display: block; font-size: 14.5px; color: var(--text-main); margin-bottom: 3px; }
.gmn-step p { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Processo (Quem Somos / Como funciona) ---------- */
.timeline { display: grid; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  position: relative;
  padding-bottom: 34px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item .dot-col { display: flex; flex-direction: column; align-items: center; }
.timeline-item .dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  font-family: var(--font-display); font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.timeline-item .line { flex: 1; width: 2px; background: var(--border-soft); margin-top: 6px; }
.timeline-item:last-child .line { display: none; }
.timeline-item h4 { margin-bottom: 6px; font-size: 16.5px; }
.timeline-item p { color: var(--text-muted); font-size: 14.5px; }

/* ---------- Credenciais (Quem Somos) ---------- */
.credentials-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .credentials-grid { grid-template-columns: repeat(2, 1fr); } }
.credential-card {
  display: flex; gap: 16px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}
.credential-card .icon {
  flex: none; width: 42px; height: 42px; border-radius: 12px;
  background: var(--orange-tint);
  display: flex; align-items: center; justify-content: center;
}
.credential-card .icon svg { width: 21px; height: 21px; stroke: var(--orange); }
.credential-card strong { display: block; font-size: 15px; margin-bottom: 3px; }
.credential-card span { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Contato ---------- */
.contact-grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-method {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}
.contact-method:last-child { border-bottom: none; padding-bottom: 0; }
.contact-method:first-child { padding-top: 0; }
.contact-method .icon {
  flex: none; width: 44px; height: 44px; border-radius: 12px;
  background: var(--orange-tint);
  display: flex; align-items: center; justify-content: center;
}
.contact-method .icon svg { width: 22px; height: 22px; stroke: var(--orange); }
.contact-method strong { display: block; font-size: 15px; margin-bottom: 3px; }
.contact-method a, .contact-method span { font-size: 14.5px; color: var(--text-muted); }
.contact-method a:hover { color: var(--orange); }

.contact-form { display: grid; gap: 16px; }
.form-row { display: grid; gap: 16px; }
@media (min-width: 560px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.form-field label {
  display: block; font-size: 13.5px; font-weight: 600;
  color: var(--text-main); margin-bottom: 7px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text-main);
  background: var(--bg-soft);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 1px;
  background: var(--white);
}
.form-note { font-size: 12.5px; color: var(--text-muted); }

.map-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--bg-soft);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 20px;
}
.map-note svg { flex: none; width: 22px; height: 22px; stroke: var(--orange); margin-top: 2px; }
.map-note p { font-size: 13.5px; color: var(--text-muted); }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* ---------- Painel de benefícios (leve, sem foto) ---------- */
.benefits-panel {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: var(--sp-block);
}
.benefits-panel-head { max-width: 640px; margin-bottom: 24px; }
.benefits-panel-head h3 { margin-top: 10px; font-size: 19px; }
.benefits-list {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .benefits-list { grid-template-columns: repeat(2, 1fr); } }
.benefit-item { display: flex; gap: 12px; align-items: flex-start; }
.benefit-item .icon {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.benefit-item .icon svg { width: 14px; height: 14px; stroke: var(--white); }
.benefit-item strong { display: block; font-size: 14.5px; color: var(--text-main); margin-bottom: 3px; }
.benefit-item p { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Artigos: listagem ---------- */
.articles-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .articles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .articles-grid { grid-template-columns: repeat(3, 1fr); } }

.article-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.article-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.article-card .article-card-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange-tint);
  color: var(--orange);
  padding: 5px 12px;
  border-radius: 100px;
  margin: 22px 22px 0;
}
.article-card h3 { font-size: 17px; margin: 14px 22px 0; }
.article-card p { font-size: 14px; color: var(--text-muted); margin: 10px 22px 22px; }
.article-card .read-more {
  margin: 0 22px 22px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.article-card.soon { opacity: 0.6; }
.article-card.soon .article-card-tag { background: var(--bg-soft-2); color: var(--text-muted); }

/* ---------- Artigo individual ---------- */
.article-header { max-width: 760px; margin: 0 auto; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  font-size: 13px; color: var(--text-on-navy);
  margin-top: 18px;
}
.article-meta span { display: flex; align-items: center; gap: 6px; }

.prose { max-width: 720px; margin: 0 auto; }
.prose h2 {
  font-size: 24px;
  margin-top: 44px;
  margin-bottom: 14px;
}
.prose h3 {
  font-size: 18.5px;
  color: var(--navy);
  margin-top: 30px;
  margin-bottom: 10px;
}
.prose p { color: var(--text-main); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
.prose li { color: var(--text-main); font-size: 16px; line-height: 1.7; margin-bottom: 8px; }
.prose strong { color: var(--navy); }
.prose .lead {
  font-size: 18.5px;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.prose blockquote {
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 20px;
  margin: 26px 0;
  color: var(--text-muted);
  font-style: italic;
}
.price-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin: 22px 0 28px;
  font-size: 14.5px;
}
.price-table th, .price-table td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-soft);
  overflow-wrap: break-word;
}
.price-table th {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--bg-soft);
}
.price-table td:last-child, .price-table th:last-child { color: var(--orange); font-weight: 700; }

.author-box {
  max-width: 720px;
  margin: 40px auto 0;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
}
.author-box .icon {
  flex: none; width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
}
.author-box .icon svg { width: 22px; height: 22px; stroke: var(--white); }
.author-box strong { display: block; font-size: 14.5px; color: var(--text-main); margin-bottom: 4px; }
.author-box p { font-size: 13.5px; color: var(--text-muted); margin: 0; }

.article-inline-cta {
  max-width: 720px;
  margin: 34px auto;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  border-left: 4px solid var(--orange);
}
.article-inline-cta p { color: var(--white); font-size: 15px; margin: 0; flex: 1 1 240px; min-width: 220px; }
.fill-note {
  background: var(--orange-tint);
  border: 1px dashed var(--orange);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 13px;
  color: #8a4b0f;
  margin: 0 0 18px;
}

/* ---------- Carrossel de artigos (Home) ---------- */
.carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.articles-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 14px;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.articles-carousel::-webkit-scrollbar { height: 6px; }
.articles-carousel::-webkit-scrollbar-thumb { background: var(--border-soft); border-radius: 10px; }
.carousel-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 24px;
  background: var(--white);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.carousel-card:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); }
.carousel-card .article-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--orange-tint);
  color: var(--orange);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.carousel-card h3 { font-size: 16px; margin-bottom: 10px; line-height: 1.35; }
.carousel-card p { font-size: 13.5px; color: var(--text-muted); margin-bottom: 16px; }
.carousel-card .read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.carousel-arrow {
  flex: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  transition: background 0.15s ease, color 0.15s ease;
}
.carousel-arrow:hover { background: var(--navy); color: var(--white); }
.carousel-arrow svg { width: 18px; height: 18px; }
@media (max-width: 640px) { .carousel-arrow { display: none; } }

/* ---------- Layout de artigo com sidebar ---------- */
.article-layout {
  display: grid;
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  min-width: 0;
}
.article-layout > * { min-width: 0; }
@media (min-width: 960px) {
  .article-layout { grid-template-columns: 1fr 260px; align-items: start; }
}
.article-sidebar { display: grid; gap: 20px; }
@media (min-width: 960px) {
  .article-sidebar { position: sticky; top: 96px; }
}
.sidebar-card {
  background: var(--bg-soft);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  padding: 22px;
}
.sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.sidebar-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy);
}
.sidebar-back svg { width: 15px; height: 15px; }
.sidebar-back:hover { color: var(--orange); }
.sidebar-articles { display: grid; gap: 4px; }
.sidebar-article-link {
  display: block;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.4;
}
.sidebar-article-link:last-child { border-bottom: none; }
.sidebar-article-link:hover { color: var(--orange); }
.sidebar-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.sidebar-author .avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  flex: none;
}
.sidebar-author .avatar svg { width: 32px; height: 32px; stroke: var(--white); }
.sidebar-author .avatar img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-author strong { font-size: 14.5px; color: var(--text-main); }
.sidebar-author p { font-size: 12.5px; color: var(--text-muted); margin: 0; }

/* ---------- Layout de artigo com sidebar (fim) ---------- */

/* ---------- Foto: banner de seção ---------- */
.photo-banner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--sp-block);
  aspect-ratio: 16/6;
}
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }
.photo-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(2,35,60,0.55) 0%, rgba(2,35,60,0) 45%);
}
.photo-banner .caption {
  position: absolute; left: 24px; bottom: 18px; z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (max-width: 719px) { .photo-banner { aspect-ratio: 16/10; } }

/* ---------- Foto: bloco lado a lado ---------- */
.photo-split {
  display: grid;
  gap: 30px;
  align-items: center;
}
@media (min-width: 860px) { .photo-split { grid-template-columns: 1fr 1fr; gap: 48px; } }
.photo-split .photo-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-soft);
}
.photo-split .photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.photo-split.reverse .photo-frame { order: 2; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
