/* KILPIMEDIA - Main Stylesheet
   Enqueued via functions.php (kilpimedia_enqueue_assets).
   Conteúdo idêntico ao styles.css original do site estático, com a
   media query inline de recursos.html movida pra cá no final. */

:root {
  --navy:   #16243E;
  --bg:     #F8F6F2;
  --orange: #FF6B35;
  --text:   #1A1A1A;
  --white:  #FFFFFF;
  --border: #E5E2DC;
  --gap:    1.5rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
p { text-wrap: pretty; }
h1, h2, h3 { text-wrap: balance; }
img { display: block; max-width: 100%; }
a { color: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}

/* ===== FADE-UP ===== */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.35s ease var(--delay, 0s), transform 0.35s ease var(--delay, 0s);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== HERO ENTRANCE - CSS only, fires on load ===== */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim { opacity: 0; animation: heroIn 0.55s ease-out both; }
.hero-anim-1 { animation-delay: 0.1s; }
.hero-anim-2 { animation-delay: 0.28s; }
.hero-anim-3 { animation-delay: 0.44s; }
.hero-anim-4 { animation-delay: 0.6s; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .fade-up, .hero-anim {
    opacity: 1 !important; transform: none !important;
    animation: none !important; transition: none !important;
  }
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  padding: 0 2.5rem;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: backdrop-filter 0.3s, box-shadow 0.3s, background 0.3s;
}
.navbar.scrolled {
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(248, 246, 242, 0.82);
  box-shadow: 0 1px 0 rgba(22, 36, 62, 0.09);
}
.nav-logo {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  letter-spacing: 1.5px; flex-shrink: 0;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 15px; color: var(--text);
  text-decoration: none; opacity: 0.62;
  transition: opacity 0.2s;
}
.nav-links a:hover { opacity: 1; }

/* ===== NAV DROPDOWN (exemplo) ===== */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 15px; line-height: 24px; font-family: 'Inter', sans-serif; color: var(--text);
  background: none; border: none; padding: 0; cursor: pointer;
  opacity: 0.62; transition: opacity 0.2s;
}
.nav-dropdown-trigger:hover, .nav-dropdown.open .nav-dropdown-trigger { opacity: 1; }
.nav-dropdown-chevron { width: 14px; height: 14px; transition: transform 0.2s; }
.nav-dropdown.open .nav-dropdown-chevron { transform: rotate(180deg); }
.nav-dropdown-menu {
  list-style: none; position: absolute; top: calc(100% + 14px); left: 0;
  background: var(--white); border: 1px solid var(--border); border-radius: 8px;
  box-shadow: 0 12px 32px rgba(22,36,62,0.12); padding: 0.5rem;
  min-width: 190px; display: none; flex-direction: column; gap: 0.15rem;
  z-index: 110;
}
.nav-dropdown.open .nav-dropdown-menu { display: flex; }
.nav-dropdown-menu a {
  display: block; font-size: 14px; color: var(--text);
  text-decoration: none; opacity: 0.78; padding: 0.55rem 0.7rem;
  border-radius: 6px; transition: background 0.15s, opacity 0.15s;
}
.nav-dropdown-menu a:hover { background: var(--bg); opacity: 1; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-login {
  font-size: 13px; color: var(--navy);
  text-decoration: none; opacity: 0.58;
  transition: opacity 0.2s;
}
.nav-login:hover { opacity: 1; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none;
  padding: 4px; flex-shrink: 0;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy);
}
.mobile-menu {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg); padding: 0.5rem 2rem 1.75rem;
  box-shadow: 0 8px 32px rgba(22, 36, 62, 0.1);
  z-index: 99; flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 17px; color: var(--text);
  text-decoration: none; padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-whatsapp {
  display: block; margin-top: 1.25rem;
  background: var(--navy); color: white !important;
  text-align: center; border-radius: 6px;
  padding: 13px; font-weight: 500; font-size: 15px;
  border-bottom: none !important; text-decoration: none;
}

/* ===== SHARED TYPOGRAPHY ===== */
.section-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.12; margin-bottom: 1.75rem;
}
.section-title-lg {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(26px, 4vw, 48px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.1;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-link {
  display: block; font-size: 15px; color: var(--navy);
  text-decoration: underline; text-underline-offset: 3px;
  font-family: 'Inter', sans-serif; text-align: center;
  transition: opacity 0.2s;
}
.section-link:hover { opacity: 0.6; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--navy); color: white;
  padding: 14px 28px; border-radius: 6px;
  font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,36,62,0.22); }
.btn-ghost {
  display: inline-block;
  background: transparent; color: var(--navy);
  padding: 13px 28px; border-radius: 6px;
  border: 1.5px solid var(--navy);
  font-size: 16px; font-weight: 500; font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-ghost:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,36,62,0.1); }
.btn-ghost-light {
  display: inline-block;
  color: var(--bg); border: 1.5px solid rgba(248,246,242,0.48);
  padding: 13px 28px; border-radius: 6px;
  font-size: 15px; font-weight: 500; font-family: 'Inter', sans-serif;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, border-color 0.2s;
}
.btn-ghost-light:hover {
  transform: translateY(-2px);
  border-color: rgba(248,246,242,0.9);
  box-shadow: 0 8px 24px rgba(248,246,242,0.12);
}
.btn-orange {
  display: block; width: 100%;
  background: var(--orange); color: var(--text);
  padding: 16px; border-radius: 6px;
  font-size: 16px; font-weight: 600; font-family: 'Inter', sans-serif;
  text-decoration: none; text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,107,53,0.28); }
.btn-orange-lg {
  display: inline-block;
  background: var(--orange); color: var(--text);
  padding: 22px 44px; border-radius: 6px;
  font-size: 22px; font-weight: 600; font-family: 'Inter', sans-serif;
  text-decoration: none; margin-bottom: 1.5rem;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-orange-lg:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,107,53,0.32); }

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem;
}
.hero-headline {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(36px, 5.5vw, 72px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.07; max-width: 880px; margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: rgba(26, 26, 26, 0.8);
  max-width: 530px; margin-bottom: 2.5rem; line-height: 1.65;
}
.btn-group {
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2rem;
}
.hero-micro { font-size: 13px; color: rgba(26, 26, 26, 0.65); letter-spacing: 0.01em; }

/* ===== STATS ===== */
.stats {
  padding: 6rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--orange);
  text-align: center; margin-bottom: 2.5rem; font-weight: 500;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 980px; margin: 0 auto; text-align: center;
}
.stat-number {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(32px, 4vw, 48px); color: var(--navy);
  font-weight: 500; line-height: 1; margin-bottom: 0.75rem;
}
.stat-label {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(26, 26, 26, 0.52); line-height: 1.55;
}
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; max-width: 480px; }
}
@media (max-width: 600px) {
  .stats-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 320px; }
}

/* ===== PAIN ===== */
.pain { padding: 8rem 2rem; text-align: center; }
.pain-body {
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(26, 26, 26, 0.8);
  max-width: 600px; margin: 0 auto; line-height: 1.82;
}

/* ===== DIFFERENTIALS ===== */
.differentials { padding: 8rem 2rem; }
.diff-rows { max-width: 1100px; margin: 0 auto 2.5rem; }
.diff-row { display: flex; gap: var(--gap); margin-bottom: var(--gap); }
.diff-row:last-child { margin-bottom: 0; justify-content: center; }
.diff-card {
  flex: 1 1 calc(33.333% - 1rem); min-width: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.diff-row:last-child .diff-card { flex: 0 0 calc(33.333% - 0.75rem); }
.diff-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(22, 36, 62, 0.08);
  border-color: var(--orange);
}
.card-number {
  font-family: 'Funnel Display', sans-serif;
  font-size: 96px; font-weight: 700;
  color: rgba(22, 36, 62, 0.07);
  position: absolute; top: -20px; right: -8px;
  line-height: 1; user-select: none; pointer-events: none; z-index: 0;
}
.card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 20px; font-weight: 600; color: var(--text);
  margin-bottom: 0.75rem; position: relative; z-index: 1; line-height: 1.2;
}
.card-body {
  font-size: 15px; color: rgba(26, 26, 26, 0.7);
  line-height: 1.65; position: relative; z-index: 1;
}

/* ===== TECHNOLOGY ===== */
.technology { background: var(--navy); padding: 8rem 2rem; text-align: center; }
.technology .section-title-lg { color: var(--bg); }
.tech-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem; max-width: 1000px;
  margin: 4rem auto 3.5rem; text-align: left;
}
.tech-icon { color: var(--orange); margin-bottom: 0.85rem; }
.tech-icon svg { width: 26px; height: 26px; }
.tech-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--orange); font-weight: 500;
  letter-spacing: 0.08em; margin-bottom: 0.75rem; text-transform: uppercase;
}
.tech-desc { font-size: 15px; color: rgba(248,246,242,0.82); line-height: 1.62; }

/* ===== DASHBOARD PREVIEW ===== */
.dashboard-preview { padding: 8rem 2rem; }
.dashboard-preview .kilpidash {
  box-shadow: 0 0 30px rgba(0,0,0,0.09);
  border: 1px solid #E2E2E2;
  border-radius: 3px;
}
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; max-width: 1100px; margin: 0 auto; align-items: center;
}
.split-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(24px, 3vw, 40px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 1.25rem; line-height: 1.15;
}
.split-body {
  font-size: 16px; color: rgba(26,26,26,0.78);
  line-height: 1.78; margin-bottom: 1.25rem;
}

/* ===== PLANS ===== */
.plans {
  padding: 8rem 0; text-align: center;
  border-top: 1px solid var(--border);
}
.plan-card {
  background: var(--white); border: 2px solid var(--orange);
  border-radius: 12px; padding: 3rem;
  max-width: 440px; margin: 3rem auto 1.5rem;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(22, 36, 62, 0.09);
}
.plan-label {
  font-family: 'Funnel Display', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1rem;
}
.plan-price {
  font-family: 'Funnel Display', sans-serif;
  font-size: 40px; font-weight: 700;
  color: var(--text); margin-bottom: 0.35rem; line-height: 1;
}
.plan-subtitle { font-size: 16px; color: rgba(26,26,26,0.65); margin-bottom: 2rem; }
.plan-features {
  list-style: none; margin-bottom: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.plan-features li { display: flex; align-items: center; gap: 0.75rem; font-size: 15px; }
.plan-features li::before {
  content: ''; display: block;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.plan-note { padding: 0 2rem; font-size: 13px; color: rgba(26,26,26,0.52); text-align: center; }

/* ===== AUTHORITY ===== */
.authority { padding: 8rem 2rem; border-top: 1px solid var(--border); }
.credentials {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.6rem; margin: 1.5rem 0 1.75rem;
}
.credentials li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 15px; line-height: 1.5; }
.credentials li::before {
  content: ''; display: block; margin-top: 5px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ===== FAQ ===== */
.faq { padding: 8rem 2rem; border-top: 1px solid var(--border); }
.faq .section-header { margin-bottom: 3rem; }
.faq-list {
  max-width: 700px; margin: 0 auto 2.5rem;
  display: flex; flex-direction: column;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item--highlight { border-left: 3px solid var(--orange); padding-left: 1.25rem; }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; cursor: pointer;
  font-size: 18px; font-weight: 500; color: var(--text);
  font-family: 'Inter', sans-serif;
  gap: 1.5rem; background: none; border: none;
  width: 100%; text-align: left; line-height: 1.45;
}
.faq-toggle {
  font-size: 26px; font-weight: 300; color: var(--orange);
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease-out;
  font-family: 'Inter', sans-serif; line-height: 1;
}
.faq-answer {
  font-size: 16px; color: rgba(26,26,26,0.78);
  line-height: 1.78; max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease-out, padding-bottom 0.25s ease-out;
}
.faq-answer.open { max-height: 500px; padding-bottom: 1.75rem; }

/* ===== FINAL CTA ===== */
.final-cta {
  min-height: 70vh; background: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 2rem;
}
.final-headline {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(32px, 5.5vw, 76px); font-weight: 700;
  color: var(--bg); letter-spacing: -0.02em;
  line-height: 1.08; max-width: 900px; margin-bottom: 2.5rem;
}
.cta-sub-link {
  display: block; color: var(--bg); font-size: 15px;
  text-decoration: underline; text-underline-offset: 3px;
  margin-bottom: 2rem; font-family: 'Inter', sans-serif;
  transition: opacity 0.2s;
}
.cta-sub-link:hover { opacity: 0.72; }
.cta-note { font-size: 13px; color: rgba(248,246,242,0.52); }

/* ===== PARTNERS / LOGOS ===== */
.partners { background-color: #16243E; padding: 0 2rem 6rem; }
.partners-row {
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap; max-width: 1100px; margin: 0 auto;
}
.partner-logo {
  width: 150px; height: 56px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(26,26,26,0.4); text-align: center; padding: 0.5rem;
}

/* ===== FOOTER ===== */
footer { background: var(--bg); padding: 3rem 2rem 2rem; border-top: 1px solid var(--border); }
.footer-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 3rem; max-width: 1100px; margin: 0 auto 3rem;
}
.footer-col-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 12px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem;
}
.footer-col address, .footer-col p {
  font-size: 14px; color: rgba(26,26,26,0.65);
  line-height: 1.85; font-style: normal;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links--grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, auto); grid-auto-flow: column;
  column-gap: 1.5rem; row-gap: 0.6rem;
}
.footer-links a {
  font-size: 14px; color: rgba(26,26,26,0.65);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--navy); }
.footer-social { display: flex; gap: 1rem; }
.footer-social-link {
  display: inline-flex; color: rgba(26,26,26,0.65);
  transition: color 0.2s;
}
.footer-social-link:hover { color: var(--navy); }
.footer-social-link svg { width: 20px; height: 20px; }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 1.6rem; border-top: 1px solid var(--border);
  /* display: flex; justify-content: space-between; align-items: center; */
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-slogan { font-size: 13px; color: rgba(26,26,26,0.65); }
.footer-copy { font-size: 13px; color: rgba(26,26,26,0.65); }
.footer-trademark {
  max-width: 1100px; margin: .5rem auto 0;
  font-size: 11px; line-height: 1.6; color: rgba(26,26,26,0.65);
}

/* ===== PLACEHOLDER PAGE ===== */
.placeholder-page {
  min-height: calc(100vh - 64px);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4rem 2rem; gap: 1.25rem;
}
.placeholder-eyebrow {
  font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--orange); font-family: 'Inter', sans-serif; font-weight: 500;
}
.placeholder-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(32px, 5vw, 64px); font-weight: 700;
  color: var(--navy); letter-spacing: -0.02em; line-height: 1.1;
}
.placeholder-body {
  font-size: 17px; color: rgba(26,26,26,0.65);
  max-width: 400px; line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-login { display: none; }
  .hamburger { display: flex; }
  .diff-row { flex-wrap: wrap; }
  .diff-card, .diff-row:last-child .diff-card { flex: 1 1 100%; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (max-width: 600px) {
  .navbar { padding: 0 1.25rem; }
  .hero { padding: 4rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-orange-lg { font-size: 18px; padding: 18px 32px; }
  .plan-card { padding: 2rem; }
  .faq-question { font-size: 16px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ===== ABOUT PAGE ===== */

/* Hero split - single column, centered */
.hero-split {
  display: flex; flex-direction: column; align-items: center;
  max-width: 760px; margin: 0 auto; text-align: center;
  padding: 96px 2rem;
}
.hero-split-label {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--orange);
  font-family: 'Inter', sans-serif; font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero-split-headline {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 4vw, 52px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 1.25rem;
}
.hero-split-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(26,26,26,0.82); line-height: 1.65;
}

/* Trajectory section */
.about-body {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(26,26,26,0.83); line-height: 1.78;
  max-width: 680px;
}
.about-body + .about-body { margin-top: 1.5rem; }

/* Pull quote */
.pull-quote-wrap {
  padding: 7rem 2rem; text-align: center;
  background: #FFFBF5;
}
.pull-quote {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 600;
  color: var(--text); line-height: 1.3;
  max-width: 760px; margin: 0 auto 2rem;
  letter-spacing: -0.015em;
}
.pull-quote-body {
  font-size: clamp(14px, 1.4vw, 16px);
  color: rgba(26,26,26,0.76); max-width: 600px;
  margin: 0 auto; line-height: 1.78;
}

/* How it works 3-col */
.how-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3rem; max-width: 980px;
}
.how-item { display: flex; flex-direction: column; gap: 0.65rem; }
.how-icon { color: var(--navy); margin-bottom: 0.2rem; }
.how-icon svg { display: block; }
.how-title { font-size: 16px; font-weight: 500; color: var(--text); line-height: 1.3; }
.how-desc { font-size: 14px; color: rgba(26,26,26,0.7); line-height: 1.65; }

/* Values dark section */
.values-section {
  background: var(--navy); padding: 7rem 2rem; text-align: center;
}
.values-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(26px, 3vw, 36px); font-weight: 700;
  color: var(--bg); letter-spacing: -0.02em;
  margin-bottom: 3.5rem; line-height: 1.1;
}
.values-list {
  display: flex; flex-direction: column;
  gap: 0; max-width: 640px; margin: 0 auto;
  text-align: left;
}
.value-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(248,246,242,0.1);
  display: flex; gap: 1.5rem; align-items: flex-start;
}
.value-item:first-child { border-top: 1px solid rgba(248,246,242,0.1); }
.value-num {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--orange); flex-shrink: 0; min-width: 28px;
  padding-top: 2px;
}
.value-text {
  font-size: 17px; color: var(--bg); line-height: 1.6;
}

/* Continuity section */
.continuity-section { padding: 7rem 2rem; border-top: 1px solid var(--border); text-align: center; }
.continuity-inner { max-width: 680px; margin: 0 auto; }
.continuity-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(24px, 2.6vw, 30px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 1.25rem; line-height: 1.15;
}
.continuity-body {
  font-size: 16px; color: rgba(26,26,26,0.82);
  line-height: 1.78; margin-bottom: 1.5rem;
}

/* ===== BLOG POST ===== */
.breadcrumb {
  padding: 1rem 2rem;
  border-bottom: 1px solid var(--border);
  max-width: 100%;
}
.breadcrumb-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; gap: 0.5rem; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: rgba(26,26,26,0.55);
}
.breadcrumb-inner a {
  color: rgba(26,26,26,0.55); text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb-inner a:hover { color: var(--navy); }
.breadcrumb-sep { opacity: 0.4; }

.post-header {
  padding: 3.5rem 2rem 2.5rem; background: var(--bg);
}
.post-header-inner { max-width: 760px; margin: 0 auto; }
.post-category {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--orange);
  font-weight: 500; margin-bottom: 1.25rem; display: block;
}
.post-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(26px, 3.8vw, 44px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 1.5rem;
}
.post-meta {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 14px; color: rgba(26,26,26,0.65);
  font-family: 'Inter', sans-serif;
}
.post-meta-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--border); flex-shrink: 0; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: rgba(26,26,26,0.28);
  font-family: 'JetBrains Mono', monospace;
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 4px,
    rgba(22,36,62,0.05) 4px, rgba(22,36,62,0.05) 5px
  );
}
.post-meta-sep { opacity: 0.35; }

.post-cover {
  max-width: 760px; margin: 0 auto 0;
  padding: 0 2rem 2.5rem;
}
.post-cover-img {
  width: 100%; aspect-ratio: 16/9; border-radius: 10px;
  background: var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: rgba(26,26,26,0.28);
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 12px,
    rgba(22,36,62,0.04) 12px, rgba(22,36,62,0.04) 13px
  );
}

/* Article body prose */
.post-body {
  max-width: 680px; margin: 0 auto;
  padding: 0 2rem 4rem;
}
.post-body p {
  font-size: 17px; color: var(--text);
  line-height: 1.78; margin-bottom: 1.5rem;
}
.post-body h2 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.15; margin: 3rem 0 1.25rem;
}
.post-body h3 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(18px, 2vw, 22px); font-weight: 600;
  color: var(--text); letter-spacing: -0.015em;
  line-height: 1.2; margin: 2.25rem 0 1rem;
}
.post-body ul {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.75rem; margin-bottom: 1.75rem; padding: 0;
}
.post-body ul li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 17px; color: var(--text); line-height: 1.65;
}
.post-body ul li::before {
  content: ''; display: block; margin-top: 8px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}
.post-callout {
  background: #FFFBF5; border-left: 3px solid var(--orange);
  border-radius: 0 8px 8px 0; padding: 1.25rem 1.5rem;
  margin: 2rem 0;
  font-size: 16px; color: rgba(26,26,26,0.82); line-height: 1.7;
}

/* Post tags */
.post-tags {
  max-width: 680px; margin: 0 auto;
  padding: 0 2rem 3.5rem;
  display: flex; gap: 0.6rem; flex-wrap: wrap;
}
.post-tag {
  font-size: 13px; color: rgba(26,26,26,0.62);
  background: var(--white); border: 1px solid var(--border);
  padding: 5px 14px; border-radius: 30px;
  font-family: 'Inter', sans-serif; text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.post-tag:hover { border-color: var(--navy); color: var(--navy); }

/* End of post CTA */
.post-cta-wrap {
  max-width: 680px; margin: 0 auto;
  padding: 0 2rem 5rem;
}
.post-cta-card {
  background: #FFFBF5; border: 1px solid var(--border);
  border-radius: 10px; padding: 2.25rem;
  text-align: center;
}
.post-cta-title {
  font-size: 18px; font-weight: 500; color: var(--text);
  margin-bottom: 0.75rem; line-height: 1.35;
}
.post-cta-body {
  font-size: 15px; color: rgba(26,26,26,0.76);
  line-height: 1.7; margin-bottom: 1.5rem; max-width: 420px;
  margin-left: auto; margin-right: auto;
}

/* Related posts */
.related-posts { padding: 5rem 2rem; border-top: 1px solid var(--border); }
.related-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 2.25rem;
}
.blog-cards-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.75rem; max-width: 1060px;
}
.blog-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none; display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22,36,62,0.08); }
.blog-card-thumb {
  aspect-ratio: 16/9; min-height: 0; background: var(--border);
  background-image: repeating-linear-gradient(
    45deg, transparent, transparent 10px,
    rgba(22,36,62,0.04) 10px, rgba(22,36,62,0.04) 11px
  );
}
.blog-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.blog-card-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--orange); font-weight: 500;
}
.blog-card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 17px; font-weight: 600; color: var(--text);
  line-height: 1.25; letter-spacing: -0.01em;
}
.blog-card-meta {
  font-size: 13px; color: rgba(26,26,26,0.48);
  margin-top: auto; padding-top: 0.75rem;
}

@media (max-width: 900px) {
  .blog-cards-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .blog-cards-grid { grid-template-columns: repeat(2,1fr); max-width: 820px; }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  min-height: 40vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.contact-hero h1 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(26px, 4vw, 48px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.08; max-width: 760px; margin-bottom: 1.25rem;
}
.contact-hero p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(26,26,26,0.78);
  max-width: 540px; line-height: 1.72;
}

/* Contact split block */
.contact-cards-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; max-width: 1000px; margin: 0 auto;
}
@media (max-width: 860px) {
  .contact-cards-grid { grid-template-columns: 1fr; max-width: 480px; }
}
.contact-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 2.5rem;
}
.contact-card-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 24px; font-weight: 700; color: var(--text);
  letter-spacing: -0.015em; margin-bottom: 1rem; line-height: 1.2;
}
.contact-card-body {
  font-size: 15px; color: rgba(26,26,26,0.76);
  line-height: 1.72; margin-bottom: 1.75rem;
}
.contact-card-note {
  display: block; text-align: center; margin-top: 0.85rem;
  font-size: 13px; color: rgba(26,26,26,0.54);
}

/* Institutional info */
.contact-info {
  background: #FFFBF5;
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-info-inner {
  text-align: center; max-width: 480px; margin: 0 auto;
}
.contact-info-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 18px; font-weight: 600; color: var(--text);
  margin-bottom: 0.75rem;
}
.contact-info p {
  font-size: 14px; color: rgba(26,26,26,0.65);
  line-height: 1.8;
}

/* ===== BLOG INDEX ===== */
.blog-hero {
  min-height: 35vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.blog-hero h1 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(26px, 4vw, 44px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 1.1rem;
}
.blog-hero p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(26,26,26,0.76); max-width: 560px; line-height: 1.72;
}

/* Category filter pills */
.category-filter {
  padding: 2.5rem 2rem 0; display: flex;
  justify-content: center; gap: 0.6rem; flex-wrap: wrap;
}
.cat-pill {
  font-size: 14px; font-family: 'Inter', sans-serif;
  background: var(--white); border: 1px solid var(--border);
  color: rgba(26,26,26,0.7); padding: 7px 18px; border-radius: 30px;
  cursor: pointer; transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.cat-pill:hover { border-color: var(--navy); color: var(--navy); }
.cat-pill:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }

/* ===== BLOG SEARCH ===== */
.blog-search-form {
  display: flex; gap: 0.6rem; justify-content: center;
  max-width: 460px; margin: 0 auto; padding: 2rem 2rem 0;
}
.blog-search-input {
  flex: 1; padding: 10px 16px; border: 1px solid var(--border); border-radius: 30px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text);
  background: var(--white);
}
.blog-search-input:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.blog-search-submit {
  padding: 10px 22px; border-radius: 30px; border: none;
  background: var(--navy); color: var(--bg);
  font-size: 14px; font-weight: 500; font-family: 'Inter', sans-serif;
  cursor: pointer; transition: opacity 0.2s; flex-shrink: 0;
}
.blog-search-submit:hover { opacity: 0.85; }
.blog-search-submit:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.cat-pill.active { background: var(--navy); color: white; border-color: var(--navy); }

/* Blog grid */
.blog-grid-wrap { padding: 3rem 2rem 5rem; max-width: 1060px; margin: 0 auto; }

/* Pagination */
.pagination {
  display: flex; justify-content: center; align-items: center;
  gap: 0.4rem; padding: 0 2rem 5rem;
}
.page-btn {
  font-size: 14px; font-family: 'Inter', sans-serif;
  width: 38px; height: 38px; border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: var(--white);
  color: rgba(26,26,26,0.65); cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  text-decoration: none;
}
.page-btn:hover { border-color: var(--navy); color: var(--navy); }
.page-btn.active { background: var(--navy); color: white; border-color: var(--navy); }
.page-btn--arrow { font-size: 16px; }

/* ===== BLOG INDEX ===== (end) */

/* ===== AGENCIES PAGE ===== */
.scope-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 860px; margin: 0 auto 1.75rem;
}
.scope-grid--3col { grid-template-columns: repeat(3, 1fr); max-width: 1060px; }
.scope-grid--4col { grid-template-columns: repeat(4, 1fr); max-width: 1280px; }
@media (max-width: 1100px) {
  .scope-grid--4col { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}
@media (max-width: 900px) {
  .scope-grid--3col { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 600px) {
  .scope-grid--4col { grid-template-columns: 1fr; max-width: 480px; }
}
.scope-col {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
}
.scope-col-header {
  padding: 1rem 1.5rem;
  font-family: 'Funnel Display', sans-serif;
  font-size: 15px; font-weight: 600; line-height: 1.3;
  border-bottom: 1px solid var(--border);
}
.scope-col-header--navy { color: var(--navy); }
.scope-col-header--orange { color: var(--orange); }
.scope-col-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 0; padding: 0.5rem 0;
}
.scope-col-list li {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-size: 14px; color: rgba(26,26,26,0.78);
  line-height: 1.5; padding: 0.65rem 1.5rem;
  border-bottom: 1px solid rgba(26,26,26,0.05);
}
.scope-col-list li:last-child { border-bottom: none; }
.scope-col-list li::before {
  content: ''; display: block; margin-top: 5px;
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}
.scope-col-list--navy li::before  { background: var(--navy); }
.scope-col-list--orange li::before { background: var(--orange); }
.scope-note {
  font-size: 14px; color: rgba(26,26,26,0.65);
  text-align: center; max-width: 680px; margin: 0 auto;
  line-height: 1.7;
}
.how-agency-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; max-width: 860px;
}
.how-agency-item { display: flex; flex-direction: column; gap: 0.6rem; }
.how-agency-num  { font-family: 'Funnel Display', sans-serif; font-size: 18px; font-weight: 700; color: var(--orange); line-height: 1; }
.how-agency-title { font-size: 16px; font-weight: 500; color: var(--text); line-height: 1.3; }
.how-agency-desc  { font-size: 14px; color: rgba(26,26,26,0.7); line-height: 1.65; }

@media (max-width: 900px) {
  .how-agency-grid { grid-template-columns: repeat(2,1fr); max-width: 600px; }
  .scope-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 600px) {
  .how-agency-grid { grid-template-columns: 1fr; max-width: 400px; }
}

/* ===== RESOURCES PAGE ===== */
.resource-section { padding: 5.5rem 2rem; }
.resource-section--alt { background: #FFFBF5; }
.resource-section-inner { max-width: 1060px; margin: 0 auto; }
.resource-header { margin-bottom: 2.75rem; }
.resource-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em; line-height: 1.1;
}

.resource-grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.75rem; }
.resource-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.resource-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.75rem; }

.resource-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.55rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.resource-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(22,36,62,0.07);
  border-color: rgba(22,36,62,0.18);
}
.resource-card-header { display: flex; align-items: center; gap: 0.65rem; flex-wrap: wrap; }
.resource-card-title { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.3; }
.resource-card-desc  { font-size: 14px; color: rgba(26,26,26,0.68); line-height: 1.65; }
.tag-pedido {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(26,26,26,0.72); background: rgba(26,26,26,0.07);
  padding: 2px 7px; border-radius: 3px; font-family: 'Inter', sans-serif;
  font-weight: 500; white-space: nowrap; flex-shrink: 0;
}
.resource-card-icon { color: var(--navy); margin-bottom: 0.15rem; }
.resource-card-icon svg { display: block; }

/* Dark clarification block */
.clarification-section {
  background: var(--navy); padding: 7rem 2rem; text-align: center;
}
.clarification-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(24px, 2.8vw, 32px); font-weight: 700;
  color: var(--bg); letter-spacing: -0.02em; line-height: 1.1;
  margin-bottom: 1.5rem;
}
.clarification-body {
  font-size: 16px; color: rgba(248,246,242,0.83);
  max-width: 640px; margin: 0 auto 1.5rem; line-height: 1.82;
}
.clarification-link {
  font-size: 15px; color: var(--orange);
  text-decoration: underline; text-underline-offset: 3px;
  font-family: 'Inter', sans-serif; transition: opacity 0.2s;
}
.clarification-link:hover { opacity: 0.72; }

/* Cross-links block */
.crosslinks-section { padding: 5.5rem 2rem; border-top: 1px solid var(--border); }
.crosslinks-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 820px; margin: 0 auto;
}
.crosslink-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem;
  display: flex; flex-direction: column; gap: 0.65rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.crosslink-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(22,36,62,0.07); }
.crosslink-title { font-size: 16px; font-weight: 500; color: var(--text); line-height: 1.35; }
.crosslink-desc  { font-size: 14px; color: rgba(26,26,26,0.65); line-height: 1.65; flex: 1; }

/* ===== PLANS PAGE ===== */
.plans-hero {
  min-height: 35vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 4.5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.plans-hero h1 {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(26px, 4vw, 48px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.08; max-width: 700px; margin-bottom: 1.1rem;
}
.plans-hero p {
  font-size: clamp(15px, 1.5vw, 17px);
  color: rgba(26,26,26,0.78); max-width: 560px; line-height: 1.72;
}

/* Plans cards grid */
.plans-grid {
  display: grid; grid-template-columns: 1fr;
  max-width: 800px; margin: 0 auto;
  padding: 6rem 2rem 2rem; align-items: start;
}
.plan-card-full {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 3rem;
  position: relative; overflow: visible;
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.plan-card-full:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(22,36,62,0.08);
}
.plan-rótulo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.1em; margin-bottom: 1.25rem;
}
.plan-price-row {
  display: flex; align-items: baseline; gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.plan-price-big {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(34px, 3.5vw, 48px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em; line-height: 1;
}
.plan-price-suffix { font-size: 16px; color: rgba(26,26,26,0.58); }
.plan-sub { font-size: 15px; color: rgba(26,26,26,0.65); margin-bottom: 2rem; }
.plan-features-full {
  list-style: none; display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem; margin-bottom: 2.25rem;
}
.plan-features-full li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 15px; line-height: 1.45;
}
.plan-features-full li::before {
  content: ''; display: block; margin-top: 6px;
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.plan-features-full li.bullet-navy::before  { background: var(--navy); }

@media (max-width: 600px) {
  .plan-features-full { grid-template-columns: 1fr; }
}

/* Billing section */
.billing-section { background: #FFFBF5; padding: 6rem 2rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.billing-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 3rem; text-align: center;
}
.billing-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2.5rem; max-width: 1080px; margin: 0 auto;
}
.billing-item { display: flex; flex-direction: column; gap: 0.6rem; }
.billing-icon { color: var(--navy); margin-bottom: 0.15rem; }
.billing-item-title { font-size: 16px; font-weight: 500; color: var(--text); line-height: 1.3; }
.billing-item-desc  { font-size: 14px; color: rgba(26,26,26,0.7); line-height: 1.65; }

/* ===== SUPPORT PAGE ===== */
.support-paths-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px); font-weight: 700;
  color: var(--text); letter-spacing: -0.015em;
  text-align: center; margin-bottom: 2rem;
}
.support-paths-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; max-width: 820px; margin: 0 auto;
}
.support-path-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.support-path-title {
  font-size: 16px; font-weight: 500; color: var(--text); line-height: 1.35;
}
.support-path-body {
  font-size: 14px; color: rgba(26,26,26,0.72); line-height: 1.7; flex: 1;
}
.how-it-works-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3.5rem; max-width: 860px;
}
.how-block-title {
  font-size: 16px; font-weight: 500; color: var(--text); margin-bottom: 0.65rem; line-height: 1.35;
}
.how-block-body {
  font-size: 15px; color: rgba(26,26,26,0.78); line-height: 1.75;
}
.expectativa-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 1rem; margin-top: 1.25rem; max-width: 620px;
}
.expectativa-list li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 15px; color: rgba(26,26,26,0.83); line-height: 1.65;
}
.expectativa-list li::before {
  content: ''; display: block; margin-top: 7px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* Continuidade anchor section */
.continuidade-section {
  padding: 7rem 2rem; border-top: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.continuidade-card {
  max-width: 780px; margin: 0 auto;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0; padding: 3rem 3rem 3rem 2.5rem;
}
.continuidade-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(22px, 2.6vw, 32px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  margin-bottom: 1.75rem; line-height: 1.15;
}
.continuidade-body {
  font-size: 16px; color: rgba(26,26,26,0.83);
  line-height: 1.82; margin-bottom: 1.35rem;
}
.continuidade-body:last-child { margin-bottom: 0; }

/* Anchor highlight pulse */
@keyframes anchorPulse {
  0%   { background: var(--white); }
  30%  { background: rgba(255,107,53,0.08); }
  100% { background: var(--white); }
}
.continuidade-card.anchor-highlight { animation: anchorPulse 1.4s ease-out both; }

/* ===== RESPONSIVE - sobre ===== */
@media (max-width: 900px) {
  .hero-split { padding: 64px 2rem; }
  .how-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 480px; }
  .values-list { text-align: left; }
  .billing-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 400px; }
  .support-paths-grid { grid-template-columns: 1fr; }
  .how-it-works-grid { grid-template-columns: 1fr; gap: 2rem; max-width: 480px; }
  .continuidade-card { padding: 2rem 1.75rem 2rem 1.5rem; }
}

/* ===== NAV CURRENT PAGE ===== */
.nav-links a.nav-current {
  opacity: 1;
  color: var(--orange);
  position: relative;
}
.nav-links a.nav-current::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1.5px; background: var(--orange); border-radius: 1px;
}

/* ===== PAGE HERO (internal pages, 50vh) ===== */
.page-hero {
  min-height: 50vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.page-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.13em; color: var(--orange);
  margin-bottom: 1.5rem; font-weight: 500;
}
.page-headline {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(30px, 4.5vw, 56px); font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
  line-height: 1.1; margin-bottom: 1.25rem; max-width: 780px;
}
.page-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(26,26,26,0.78);
  max-width: 640px; line-height: 1.72;
}

/* ===== CONTENT SECTIONS ===== */
.content-section { padding: 7rem 2rem; }
.content-section--alt { background: #FFFBF5; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-intro { max-width: 580px; margin-bottom: 3.5rem; }
.section-intro p {
  font-size: 16px; color: rgba(26,26,26,0.78);
  line-height: 1.78; margin-top: 1rem;
}

/* ===== SPEC GRID (4 cols, icon + title + desc) ===== */
.spec-grid-4 {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2.5rem;
}
.spec-grid-5 {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 2rem;
}
.spec-item { display: flex; flex-direction: column; gap: 0.7rem; }
.spec-icon { color: var(--navy); margin-bottom: 0.25rem; }
.spec-icon svg { display: block; }
.spec-title { font-size: 15px; font-weight: 500; color: var(--text); line-height: 1.3; }
.spec-desc { font-size: 14px; color: rgba(26,26,26,0.66); line-height: 1.65; }

/* ===== WAF BULLET LIST ===== */
.waf-list {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.9rem; margin-top: 1.25rem;
}
.waf-list li { display: flex; align-items: flex-start; gap: 0.8rem; font-size: 15px; line-height: 1.5; }
.waf-list li::before {
  content: ''; display: block; margin-top: 6px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--orange); flex-shrink: 0;
}

/* ===== RELIABILITY 3-COL ROW ===== */
.reliability-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2.5rem; max-width: 1100px;
}
.rel-item { display: flex; flex-direction: column; gap: 0.55rem; }
.rel-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--orange);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.rel-title { font-family: 'Funnel Display', sans-serif; font-size: 20px; font-weight: 600; color: var(--text); line-height: 1.2; }
.rel-desc { font-size: 15px; color: rgba(26,26,26,0.64); line-height: 1.65; }

/* ===== ARCHITECTURE LAYERS ===== */
.arch-section { background: var(--navy); padding: 8rem 2rem; text-align: center; }
.arch-section-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
  color: var(--bg); letter-spacing: -0.02em; line-height: 1.1;
}
.arch-stack { max-width: 860px; margin: 4rem auto 0; text-align: left; }
.arch-layer {
  padding: 2rem 2.25rem;
  border-top: 1px solid rgba(255,107,53,0.35);
  display: grid; grid-template-columns: 148px 1fr;
  gap: 2rem; align-items: start;
  transition: background 0.2s;
}
.arch-layer:last-child { border-bottom: 1px solid rgba(255,107,53,0.35); }
.arch-layer:nth-child(1) { background: rgba(255,255,255,0.06); }
.arch-layer:nth-child(2) { background: rgba(255,255,255,0.035); }
.arch-layer:nth-child(3) { background: rgba(255,255,255,0.015); }
.arch-layer:nth-child(4) { background: rgba(0,0,0,0.09); }
.arch-layer:nth-child(5) { background: rgba(0,0,0,0.16); }
.arch-layer-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--orange);
  letter-spacing: 0.1em; text-transform: uppercase;
  padding-top: 4px;
}
.arch-layer-title {
  font-family: 'Funnel Display', sans-serif;
  font-size: 21px; font-weight: 600;
  color: var(--bg); line-height: 1.2; margin-bottom: 0.4rem;
}
.arch-layer-desc {
  font-size: 14px; color: rgba(248,246,242,0.7);
  line-height: 1.7;
}

/* ===== TECH NUMBERS STRIP ===== */
.tech-numbers {
  padding: 5.5rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tech-numbers-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2rem; max-width: 780px; margin: 0 auto; text-align: center;
}
.tech-num {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 3.8vw, 48px); color: var(--navy);
  font-weight: 500; line-height: 1; margin-bottom: 0.75rem;
}
.tech-num-label {
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(26,26,26,0.5); line-height: 1.6;
}

/* ===== RESPONSIVE - tecnologia additions ===== */
@media (max-width: 1200px) {
  .spec-grid-5 { grid-template-columns: repeat(3,1fr); gap: 2rem; }
}
@media (max-width: 900px) {
  .spec-grid-4 { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .spec-grid-5 { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .reliability-grid { grid-template-columns: repeat(2,1fr); gap: 2rem; max-width: 480px; }
  .arch-layer { grid-template-columns: 1fr; gap: 0.5rem; }
  .arch-layer-num { font-size: 11px; }
}
@media (max-width: 600px) {
  .spec-grid-4 { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
  .spec-grid-5 { grid-template-columns: 1fr; gap: 1.5rem; }
  .tech-numbers-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .content-section { padding: 5rem 1.5rem; }
  .arch-section { padding: 5rem 1.25rem; }
  .arch-layer { padding: 1.5rem 1.25rem; }
}

/* ===== RESOURCES PAGE - inline <style> from recursos.html, movido pra cá ===== */
@media (max-width: 900px) {
  .resource-grid-2,
  .resource-grid-3,
  .resource-grid-4 { grid-template-columns: 1fr; }
  .crosslinks-grid  { grid-template-columns: 1fr; max-width: 480px; }
}
@media (min-width: 601px) and (max-width: 900px) {
  .resource-grid-3,
  .resource-grid-4 { grid-template-columns: repeat(2,1fr); }
  .crosslinks-grid  { grid-template-columns: 1fr 1fr; max-width: 820px; }
}
