/* ─── RESET & BASE ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #0F2A4A;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── VARIÁVEIS ─────────────────────────────────────────── */
:root {
  --navy:    #0F2A4A;
  --green:   #1A4D3A;
  --white:   #FFFFFF;
  --ice:     #F7F8FA;
  --silver:  #E2E5EB;
  --graphite:#5C6B7A;
  --lb:      #7A9BBF;
  --deals:   #2563EB;
  --ia:      #7C3AED;
  --bpo:     #0D9488;
  --educ:    #D97706;
  --max-w:   1200px;
  --pad-x:   48px;
}

/* ─── CONTAINER ─────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ─── NAVBAR ────────────────────────────────────────────── */
.navbar {
  background: var(--navy);
  height: 68px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-symbol {
  width: 38px; height: 38px;
  background: var(--white);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nav-symbol svg { width: 24px; height: 24px; }

.nav-brand-name {
  font-size: 18px; font-weight: 700;
  color: var(--white); letter-spacing: -0.3px;
  line-height: 1.1;
}

.nav-brand-sub {
  font-size: 8px; color: var(--lb);
  letter-spacing: 2.5px; line-height: 1;
}

.nav-links { display: flex; gap: 32px; }

.nav-links a {
  font-size: 13px; color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--white);
  color: var(--navy);
  padding: 9px 22px;
  border-radius: 5px;
  font-size: 13px; font-weight: 700;
  border: none; cursor: pointer;
  transition: opacity 0.2s;
}

.nav-cta:hover { opacity: 0.9; }

/* ─── HERO ──────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 100px 0 90px;
}

.hero .container {
  display: flex;
  align-items: center;
  gap: 56px;
}

.hero-left { flex: 1; }

.hero-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 5px 16px;
  border-radius: 20px;
  letter-spacing: 2px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: 52px; font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}

.hero-title span { color: var(--lb); }

.hero-sub {
  font-size: 15px;
  color: #A0B8CC;
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-actions { display: flex; gap: 14px; align-items: center; }

.btn-white {
  background: var(--white);
  color: var(--navy);
  padding: 13px 30px;
  border-radius: 5px;
  font-size: 14px; font-weight: 700;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-white:hover { opacity: 0.92; }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 13px 26px;
  border-radius: 5px;
  font-size: 14px; font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.55);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--white); }

.hero-right {
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 290px;
}

.stat-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 18px;
}

.stat-accent {
  width: 28px; height: 2px;
  border-radius: 1px;
  margin-bottom: 12px;
}

.stat-num {
  font-size: 28px; font-weight: 700;
  color: var(--white); line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 10px; color: var(--lb);
  line-height: 1.4;
}

/* ─── SOBRE ─────────────────────────────────────────────── */
.sobre { padding: 90px 0; background: var(--white); }

.sobre .container {
  display: flex;
  gap: 72px;
  align-items: center;
}

.sobre-left { flex: 1; }

.section-label {
  font-size: 10px; font-weight: 700;
  color: var(--green);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: 34px; font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.section-body {
  font-size: 14px; color: var(--graphite);
  line-height: 1.75;
  margin-bottom: 36px;
}

.pilares { display: flex; flex-direction: column; gap: 20px; }

.pilar { display: flex; align-items: flex-start; gap: 16px; }

.pilar-bar {
  width: 3px; min-height: 44px;
  flex-shrink: 0; margin-top: 2px;
}

.pilar-title {
  font-size: 13px; font-weight: 700;
  color: var(--navy); margin-bottom: 4px;
}

.pilar-desc {
  font-size: 12px; color: var(--graphite);
  line-height: 1.55;
}

.sobre-right {
  width: 330px; flex-shrink: 0;
  background: var(--ice);
  border-radius: 14px;
  padding: 40px;
  border: 0.5px solid var(--silver);
}

.quote-bar {
  width: 36px; height: 3px;
  background: var(--navy);
  margin-bottom: 24px;
}

.quote-text {
  font-size: 15px; color: var(--navy);
  line-height: 1.72; font-style: italic;
  margin-bottom: 24px;
}

.quote-divider {
  width: 36px; height: 1px;
  background: var(--silver);
  margin-bottom: 16px;
}

.quote-attr {
  font-size: 10px; font-weight: 700;
  color: var(--green); letter-spacing: 2px;
}

/* ─── VERTICAIS ─────────────────────────────────────────── */
.verticais { padding: 90px 0; background: var(--ice); }

.verticais-header { text-align: center; margin-bottom: 48px; }

.verticais-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.vertical-card {
  background: var(--white);
  border: 0.5px solid var(--silver);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.vertical-top { height: 4px; }

.vertical-body { padding: 22px; flex: 1; }

.vertical-name {
  font-size: 16px; font-weight: 700;
  color: var(--navy); margin-bottom: 5px;
}

.vertical-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.vertical-divider {
  height: 0.5px;
  background: var(--silver);
  margin-bottom: 14px;
}

.vertical-desc {
  font-size: 12px; color: var(--graphite);
  line-height: 1.65;
}

.vertical-footer {
  padding: 14px 22px;
  border-top: 0.5px solid var(--ice);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vertical-link {
  font-size: 11px; font-weight: 700;
}

/* ─── NÚMEROS ───────────────────────────────────────────── */
.numeros { padding: 90px 0; background: var(--navy); }

.numeros-header { text-align: center; margin-bottom: 52px; }

.numeros-header .section-label { color: var(--green); }

.numeros-header .section-title { color: var(--white); }

.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
}

.numero-item {
  padding: 36px 28px;
  background: rgba(255,255,255,0.03);
  text-align: center;
}

.numero-val {
  font-size: 42px; font-weight: 700;
  color: var(--white);
  letter-spacing: -1px; line-height: 1;
  margin-bottom: 8px;
}

.numero-unit {
  font-size: 13px; color: var(--lb);
  margin-bottom: 4px;
}

.numero-desc {
  font-size: 11px; color: #3A5A7A;
}

/* ─── CONTATO ───────────────────────────────────────────── */
.contato { padding: 90px 0; background: var(--ice); }

.contato-header {
  max-width: 540px;
  margin: 0 auto 44px;
  text-align: center;
}

.contato-form-wrap {
  max-width: 540px;
  margin: 0 auto;
  background: var(--white);
  border: 0.5px solid var(--silver);
  border-radius: 14px;
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-group { margin-bottom: 14px; }

.form-label {
  display: block;
  font-size: 11px; font-weight: 700;
  color: var(--graphite);
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

.form-input, .form-textarea {
  width: 100%;
  background: var(--ice);
  border: 0.5px solid var(--silver);
  border-radius: 7px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--navy);
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--navy);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #A0A8B4;
}

.form-textarea { height: 100px; resize: vertical; }

.form-divider {
  height: 0.5px;
  background: var(--silver);
  margin: 20px 0;
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 15px;
  font-size: 15px; font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}

.form-submit:hover { opacity: 0.88; }

/* ─── FOOTER ────────────────────────────────────────────── */
.footer { background: var(--navy); }

.footer-top {
  padding: 52px 0 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }

.footer-symbol {
  width: 32px; height: 32px;
  background: var(--white);
  border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
}

.footer-brand-name {
  font-size: 16px; font-weight: 700; color: var(--white);
}

.footer-brand-sub {
  font-size: 8px; color: #3A5A7A; letter-spacing: 2px;
}

.footer-tagline {
  font-size: 13px; color: #5C8AAE;
  line-height: 1.6; max-width: 240px;
}

.footer-nav-title {
  font-size: 10px; font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.footer-nav-link {
  display: block;
  font-size: 13px; color: #5C8AAE;
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-nav-link:hover { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy { font-size: 11px; color: #3A5A7A; }

/* ─── RESPONSIVO ────────────────────────────────────────── */
@media (max-width: 900px) {
  :root { --pad-x: 24px; }

  .nav-links { display: none; }

  .hero .container { flex-direction: column; gap: 40px; }
  .hero-title { font-size: 36px; }
  .hero-right { width: 100%; }

  .sobre .container { flex-direction: column; gap: 40px; }
  .sobre-right { width: 100%; }

  .verticais-grid { grid-template-columns: 1fr 1fr; }

  .numeros-grid { grid-template-columns: 1fr 1fr; }

  .footer-top { flex-direction: column; gap: 36px; }
}

@media (max-width: 600px) {
  .hero-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .verticais-grid { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
