/* ── TOKENS GLOBAIS ── */
:root {
  --color-primary:   #0B7A78;
  --color-secondary: #12B3AD;
  --color-deep:      #0E2E3A;

  --bg-primary:   #0E2E3A;
  --bg-secondary: #0A2530;
  --bg-card:      #163644;
  --border:       rgba(255,255,255,.10);

  --teal-primary:   #0B7A78;
  --teal-secondary: #12B3AD;
  --teal-dark:      #0E2E3A;

  --text-primary:   #EEF3F5;
  --text-secondary: rgba(238,243,245,.65);
  --text-muted:     rgba(238,243,245,.40);

  --danger:  #C0392B;
  --success: #1A7A4A;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius:    8px;
  --radius-lg: 16px;

  /* teal alpha shorthands (updated to match new primary) */
  --teal-a04: rgba(11,122,120,.04);
  --teal-a08: rgba(11,122,120,.08);
  --teal-a12: rgba(11,122,120,.12);
  --teal-a20: rgba(11,122,120,.20);
  --teal-a30: rgba(11,122,120,.30);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--teal-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-secondary); }
img { max-width: 100%; display: block; }

/* ─── LAYOUT ─── */
.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 24px; }
main { flex: 1; }

/* ─── HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease,
              box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.site-header.header-scrolled,
html.header-solid-initial .site-header {
  background: rgba(14,46,58,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 1px 12px rgba(0,0,0,.25);
}

/* Transparent state: logo is already white — no filter needed */
html:not(.header-solid-initial) .site-header:not(.header-scrolled) .site-nav a {
  color: rgba(255,255,255,.85);
}
html:not(.header-solid-initial) .site-header:not(.header-scrolled) .site-nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.15);
}
html:not(.header-solid-initial) .site-header:not(.header-scrolled) .nav-cta {
  background: rgba(255,255,255,.18) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.45) !important;
}
html:not(.header-solid-initial) .site-header:not(.header-scrolled) .nav-cta:hover {
  background: rgba(255,255,255,.30) !important;
}
html:not(.header-solid-initial) .site-header:not(.header-scrolled) .nav-toggle {
  color: #fff;
}

/* Mobile nav open panel — dark theme, dark bg panel */
html:not(.header-solid-initial) .site-header:not(.header-scrolled) .site-nav.open a {
  color: rgba(238,243,245,.75);
}
html:not(.header-solid-initial) .site-header:not(.header-scrolled) .site-nav.open a:hover {
  color: var(--teal-secondary);
  background: rgba(11,122,120,.12);
}
html:not(.header-solid-initial) .site-header:not(.header-scrolled) .site-nav.open .nav-cta {
  background: var(--teal-primary) !important;
  color: #fff !important;
  border: none !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 80px; width: auto; mix-blend-mode: screen; }

.site-nav { display: flex; align-items: center; gap: 4px; }

.site-nav a {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: all 0.2s;
}

.site-nav a:hover, .site-nav a.active {
  color: var(--teal-primary);
  background: rgba(11,122,120,.08);
}

.nav-cta {
  margin-left: 8px;
  background: var(--teal-primary) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 9999px !important;
}

.nav-cta:hover {
  background: var(--teal-secondary) !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: currentColor; margin: 5px 0; transition: all 0.3s; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--color-deep);
  border-top: none;
  padding: 56px 0 36px;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand img { height: 80px; margin-bottom: 20px; mix-blend-mode: screen; opacity: 0.92; }
.footer-brand p { color: rgba(255,255,255,.55); font-size: 0.875rem; line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,.35);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.6); font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal-secondary); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p { color: rgba(255,255,255,.35); font-size: 0.8125rem; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  font-family: var(--font-sans);
}

.btn-primary {
  background: var(--teal-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--teal-secondary);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(11,122,120,.25);
}

.btn-secondary {
  background: transparent;
  color: rgba(238,243,245,.85);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-secondary:hover {
  border-color: var(--teal-secondary);
  color: var(--teal-secondary);
  background: rgba(11,122,120,.10);
}

.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* ─── BADGES ─── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.badge-teal {
  background: rgba(11,122,120,.1);
  color: var(--teal-primary);
  border: 1px solid rgba(11,122,120,.22);
}

/* ─── CARDS ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover {
  border-color: var(--teal-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(11,122,120,.1);
}

/* ─── SECTION SPACING ─── */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--teal-primary);
  margin-bottom: 12px;
}

.section-title { font-size: 2rem; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.section-subtitle { font-size: 1.0625rem; color: var(--text-secondary); max-width: 560px; line-height: 1.7; }

/* ─── HERO INTERNO (páginas internas) ─── */
.hero-internal {
  position: relative;
  height: 70vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-internal-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-internal-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-internal-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(14,46,58,.72) 0%,
    rgba(14,46,58,.60) 100%
  );
}

/* Tecnologia: gradient solid (sem foto) */
.hero-internal.hero-gradient {
  background: linear-gradient(135deg, #0B7A78 0%, #0E2E3A 100%);
}

.hero-internal-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1140px;
  padding: 0 24px;
}

.hero-brand-icon {
  display: block;
  height: 140px;
  width: auto;
  margin: 0 auto 18px;
  mix-blend-mode: screen;
  opacity: 0.95;
}

.cta-brand-icon {
  display: block;
  height: 120px;
  width: auto;
  margin: 0 auto 20px;
  mix-blend-mode: screen;
  opacity: 0.90;
}

.hero-internal-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal-secondary);
  background: rgba(18,179,173,.18);
  border: 1px solid rgba(18,179,173,.4);
  border-radius: 100px;
  padding: 5px 16px;
  margin-bottom: 22px;
}

.hero-internal h1 {
  font-size: clamp(1.75rem, 4vw, 2.875rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: #fff;
  max-width: 800px;
  margin: 0 auto 18px;
}
.hero-internal h1 span { color: var(--teal-secondary); }

.hero-internal-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  line-height: 1.72;
  max-width: 580px;
  margin: 0 auto 32px;
}

.hero-internal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Secondary button on dark hero bg */
.hero-internal .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.08);
}
.hero-internal .btn-secondary:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.75);
  color: #fff;
}

@media (max-width: 768px) {
  .hero-internal {
    height: 50vh;
    min-height: 320px;
  }
  .hero-internal-overlay {
    background: rgba(14,46,58,.80);
  }
}

/* ─── HERO ─── */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(ellipse, rgba(11,122,120,.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge { margin-bottom: 24px; }
.hero-title { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em; }
.hero-title span { color: var(--teal-primary); }
.hero-subtitle { font-size: 1.125rem; color: var(--text-secondary); max-width: 580px; margin: 0 auto 36px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── SERVICES GRID ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all 0.25s;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 1px 3px rgba(22,48,57,.04);
}
.service-card:hover {
  border-color: var(--teal-primary);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11,122,120,.1);
  color: inherit;
}

.service-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(11,122,120,.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
}

.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }

/* ─── STATS ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 64px 0;
}

.stat-item {
  background: var(--bg-card);
  padding: 36px 32px;
  text-align: center;
}
.stat-number { font-size: 2.5rem; font-weight: 800; color: var(--teal-primary); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 0.875rem; color: var(--text-secondary); }

/* ─── DIAGNOSTIC WIZARD ─── */
.wizard-container { max-width: 720px; margin: 64px auto; padding: 0 24px; }
.wizard-header { text-align: center; margin-bottom: 48px; }

.progress-bar-wrap {
  background: var(--bg-secondary);
  border-radius: 100px;
  height: 6px;
  margin: 24px 0 8px;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal-primary), var(--teal-secondary));
  border-radius: 100px;
  transition: width 0.4s ease;
}
.progress-label { font-size: 0.8125rem; color: var(--text-muted); text-align: right; }

.question-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: none;
  box-shadow: 0 2px 12px rgba(22,48,57,.06);
}
.question-card.active { display: block; animation: fadeIn 0.3s ease; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.question-number { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal-primary); margin-bottom: 12px; }
.question-text { font-size: 1.25rem; font-weight: 700; margin-bottom: 28px; line-height: 1.4; }

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

.option-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  width: 100%;
}
.option-btn:hover { border-color: var(--teal-primary); background: rgba(11,122,120,.05); }
.option-btn.selected { border-color: var(--teal-primary); background: rgba(11,122,120,.08); color: var(--teal-primary); }

.option-marker { width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--border); flex-shrink: 0; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.option-btn.selected .option-marker { background: var(--teal-primary); border-color: var(--teal-primary); }
.option-btn.selected .option-marker::after { content: '✓'; font-size: 11px; color: #fff; font-weight: 700; }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; }

/* ─── RESULTADO ─── */
.resultado-container { max-width: 860px; margin: 0 auto; padding: 64px 24px; }
.resultado-header { text-align: center; margin-bottom: 56px; }

.score-display { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-bottom: 56px; }

.score-circle {
  width: 140px; height: 140px;
  border-radius: 50%;
  background: conic-gradient(var(--teal-primary) 0% 62%, var(--bg-secondary) 62%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.score-circle::after {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--bg-card);
}
.score-inner { position: relative; z-index: 1; text-align: center; }
.score-inner strong { font-size: 2rem; font-weight: 800; color: var(--teal-primary); line-height: 1; display: block; }
.score-inner span { font-size: 0.75rem; color: var(--text-muted); }

.score-details { flex: 1; min-width: 240px; }
.score-details h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 16px; }
.score-areas { display: flex; flex-direction: column; gap: 14px; }
.score-area { display: flex; flex-direction: column; gap: 6px; }
.score-area-label { display: flex; justify-content: space-between; font-size: 0.875rem; }
.score-area-label span:last-child { color: var(--teal-primary); font-weight: 600; }
.score-area-bar { background: var(--bg-secondary); border-radius: 100px; height: 6px; overflow: hidden; }
.score-area-fill { height: 100%; background: linear-gradient(90deg, var(--teal-primary), var(--teal-secondary)); border-radius: 100px; }

.plano-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; margin-top: 32px; }

.plano-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(22,48,57,.05);
}
.plano-step {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(11,122,120,.12);
  color: var(--teal-primary);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.plano-item h4 { font-size: 0.9375rem; font-weight: 600; margin-bottom: 4px; }
.plano-item p { font-size: 0.8125rem; color: var(--text-secondary); line-height: 1.5; }

/* ─── FORM ─── */
.form-container { max-width: 520px; margin: 64px auto; padding: 0 24px; }

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 2px 16px rgba(22,48,57,.07);
}
.form-card h1 { font-size: 1.625rem; font-weight: 800; margin-bottom: 8px; }
.form-card .subtitle { color: var(--text-secondary); font-size: 0.9375rem; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 8px; }

.form-group input {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-primary);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus { border-color: var(--teal-primary); background: var(--bg-card); }
.form-group input::placeholder { color: var(--text-muted); }

.form-error { font-size: 0.8125rem; color: var(--danger); margin-top: 6px; display: none; }
.form-group.has-error input { border-color: var(--danger); }
.form-group.has-error .form-error { display: block; }

/* ─── EM BREVE ─── */
.em-breve-container {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px; min-height: 60vh;
}
.em-breve-icon {
  width: 72px; height: 72px; border-radius: var(--radius-lg);
  background: rgba(11,122,120,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 28px;
}
.em-breve-container h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.em-breve-container p { color: var(--text-secondary); font-size: 1rem; max-width: 400px; margin: 0 auto 32px; line-height: 1.7; }

/* ─── CONFIRMATION ─── */
.confirm-container {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 100px 24px;
}
.confirm-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(26,122,74,.1);
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 28px;
}
.confirm-container h1 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.confirm-container p { color: var(--text-secondary); font-size: 1rem; margin-bottom: 32px; max-width: 400px; line-height: 1.7; }

/* ─── HERO BULLETS ─── */
.hero-bullets { list-style: none; display: inline-flex; flex-direction: column; gap: 12px; margin: 0 auto 36px; text-align: left; }
.hero-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.5; }
.bullet-icon { color: var(--teal-primary); font-weight: 700; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }

.btn-hero { font-size: 1.0625rem; padding: 18px 36px; box-shadow: 0 0 0 3px rgba(11,122,120,.18); }
.btn-hero:hover { box-shadow: 0 8px 32px rgba(11,122,120,.3); }

/* ─── SEÇÃO CIENTÍFICO ─── */
.section-cientifico {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cientifico-inner {
  display: flex; gap: 32px; align-items: flex-start;
  max-width: 800px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  border-left: 4px solid var(--teal-primary);
  box-shadow: 0 2px 12px rgba(22,48,57,.05);
}
.cientifico-icon { font-size: 2.25rem; flex-shrink: 0; margin-top: 2px; }
.section-title-sm { font-size: 1.25rem; font-weight: 800; margin-bottom: 14px; line-height: 1.3; }
.cientifico-text { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.75; }
.cientifico-text strong { color: var(--text-primary); font-weight: 600; }

/* ─── COMO FUNCIONA ─── */
.section-como-funciona { background: var(--bg-primary); }

.steps-grid { display: flex; align-items: stretch; gap: 0; margin-top: 48px; position: relative; }

.step-card {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 4px rgba(22,48,57,.04);
}
.step-card:hover { border-color: var(--teal-primary); box-shadow: 0 8px 24px rgba(11,122,120,.08); }

.step-arrow { display: flex; align-items: center; justify-content: center; width: 40px; flex-shrink: 0; font-size: 1.5rem; color: var(--teal-primary); font-weight: 300; }

.step-number { font-size: 2.5rem; font-weight: 800; color: var(--teal-secondary); opacity: 0.55; line-height: 1; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.step-content h3 { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; }
.step-content p { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; }

/* ─── IMAGE UTILITY ─── */
.page-img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  display: block;
}

.img-hero-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 64px rgba(14,46,58,.15);
}

.img-hero-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(14,46,58,.35) 100%);
}

/* ─── DIVIDER ─── */
.divider { border: none; border-top: 1px solid var(--border); margin: 64px 0; }

/* ─── BADGE DESTAQUE (cards de ênfase) ─── */
.badge-destaque {
  display: inline-block;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(11,122,120,.12);
  border: 1px solid rgba(11,122,120,.3);
  color: var(--teal-primary);
  margin-bottom: 10px;
}
.badge-destaque-amber {
  display: inline-block;
  font-size: .6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(251,191,36,.1);
  border: 1px solid rgba(251,191,36,.3);
  color: #d97706;
}

/* ─── WHATSAPP FLOAT ─── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,.6);
  color: #fff;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .section-sm { padding: 32px 0; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100px; left: 0; right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(22,48,57,.1);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; padding: 10px 14px; }
  .nav-toggle { display: block; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 60px; }
  .services-grid { grid-template-columns: 1fr 1fr; }

  .steps-grid { flex-direction: column; gap: 16px; }
  .step-arrow { width: auto; height: 28px; transform: rotate(90deg); font-size: 1.25rem; }
  .cientifico-inner { flex-direction: column; gap: 16px; padding: 24px; }
  .hero-bullets { text-align: left; width: 100%; }
  .btn-hero { width: 100%; justify-content: center; font-size: 1rem; padding: 16px 24px; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .plano-grid { grid-template-columns: 1fr; }
}

/* ─── SVG ICON COLORING ─── */
.con-sis-ico, .con-entr-ico, .con-evid-icone, .con-of-ico,
.men-of-ico, .men-leva-ico,
.tec-tria-ico, .tec-dor-ico, .tec-cam-ico,
.tec-dif-ico, .tec-eco-ico, .tec-road-ico {
  color: var(--teal-secondary);
}
.tec-perfil-avatar { color: var(--teal-secondary); }

/* ─── SEÇÃO FUNDADOR ─── */
.section-fundador {
  background: var(--bg-primary);
}
.fundador-inner {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}
.fundador-foto-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.fundador-foto {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 3px solid rgba(18,179,173,.25);
  box-shadow: 0 12px 40px rgba(11,122,120,.28), 0 0 0 6px rgba(18,179,173,.07);
  flex-shrink: 0;
}
.fundador-avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-primary) 0%, var(--teal-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 3px solid rgba(18,179,173,.25);
  box-shadow: 0 12px 40px rgba(11,122,120,.28), 0 0 0 6px rgba(18,179,173,.07);
  flex-shrink: 0;
}
.fundador-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fundador-avatar-svg {
  width: 100%;
  height: 100%;
}
.fundador-social {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
.fundador-insta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: color .2s, border-color .2s;
  text-decoration: none;
}
.fundador-insta:hover {
  color: var(--teal-secondary);
  border-color: rgba(18,179,173,.4);
}
.fundador-insta svg { width: 15px; height: 15px; flex-shrink: 0; }
.fundador-nome {
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}
.fundador-cargo {
  font-size: .875rem;
  font-weight: 600;
  color: var(--teal-secondary);
  margin-bottom: 22px;
  letter-spacing: .02em;
}
.fundador-texto {
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 14px;
}
.fundador-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 28px;
}
.fundador-tags span {
  font-size: .75rem;
  font-weight: 600;
  padding: 5px 14px;
  background: rgba(11,122,120,.08);
  border: 1px solid rgba(11,122,120,.2);
  border-radius: 100px;
  color: var(--teal-primary);
}
.fundador-cta {
  gap: 10px;
}
.fundador-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (max-width: 900px) {
  .fundador-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fundador-foto-wrap {
    flex-direction: row;
    justify-content: flex-start;
    gap: 28px;
    flex-wrap: wrap;
  }
  .fundador-avatar {
    width: 130px;
    height: 130px;
  }
}
