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

:root {
  --navy: #0d2a4a;
  --teal: #1aab8c;
  --white: #ffffff;
  --off: #f5f5f3;
  --ink: #1a1a1a;
  --muted: #666;
  --border: #e0e0da;
}


.wordmark {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px; font-weight: 300;
  color: white; letter-spacing: 0.01em;
  text-decoration: none;
}
.wordmark .s { color: var(--teal); font-weight: 600; }
.wordmark-sm { font-size: 18px; }

html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--ink); background: var(--white); -webkit-font-smoothing: antialiased; }

/* ── NAV ── */
nav {
  background: var(--navy);
  height: 70px;
  display: flex; align-items: center;
  padding: 0 60px;
  justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
}
.nav-logo img { height: 38px; display: block; background: #1a3a5c; padding: 4px 8px; border-radius: 4px; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 14px; font-weight: 400; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-langs { display: flex; gap: 12px; }
.nav-langs a { font-size: 12px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color .2s; }
.nav-langs a.active { color: var(--teal); font-weight: 500; }
.nav-langs a:hover { color: rgba(255,255,255,0.75); }
.nav-cta {
  background: var(--teal); color: white; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: 6px; cursor: pointer;
  text-decoration: none; transition: opacity .2s;
}
.nav-cta:hover { opacity: .88; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(13,42,74,0.55) 0%, rgba(13,42,74,0.75) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 700px; padding: 0 24px;
}
.hero-content h1 {
  font-size: 46px; font-weight: 300;
  color: white; line-height: 1.2;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.hero-content p {
  font-size: 16px; color: rgba(255,255,255,0.65);
  margin-bottom: 36px; line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: var(--teal); color: white; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  padding: 13px 30px; border-radius: 6px; cursor: pointer;
  text-decoration: none; display: inline-block; transition: opacity .2s;
}
.btn-primary:hover { opacity: .88; }
.btn-outline {
  background: transparent; color: white;
  border: 1px solid rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 400;
  padding: 13px 30px; border-radius: 6px; cursor: pointer;
  text-decoration: none; display: inline-block; transition: border-color .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); }

/* ── SEÇÕES GERAIS ── */
section { padding: 80px 60px; }
.section-off { background: var(--off); }
.section-dark { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-size: 32px; font-weight: 400;
  color: var(--navy); margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.section-dark .section-header h2 { color: white; }
.section-header p { font-size: 15px; color: var(--muted); }
.section-dark .section-header p { color: rgba(255,255,255,0.5); }

/* ── SOLUÇÕES ── */
#solucoes { background: var(--white); }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.sol-card {
  text-align: center; padding: 36px 24px;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--white); transition: box-shadow .2s, transform .2s;
}
.sol-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.sol-icon { font-size: 36px; margin-bottom: 16px; }
.sol-title { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 8px; }
.sol-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── QUEM SOMOS ── */
#quem-somos { background: var(--off); }
.sobre-wrap { max-width: 760px; margin: 0 auto; }
.sobre-wrap p {
  font-size: 15.5px; color: #444; line-height: 1.85; margin-bottom: 18px;
}
.sobre-wrap strong { color: var(--navy); font-weight: 500; }

/* FUNDADORES */
.founders-grid {
  display: flex; gap: 24px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}
.founder-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 32px;
  text-align: center; min-width: 220px;
}
.founder-av {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); color: var(--teal);
  font-size: 18px; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.founder-name { font-size: 16px; font-weight: 500; color: var(--navy); margin-bottom: 4px; }
.founder-role { font-size: 12px; color: var(--muted); margin-bottom: 12px; }
.founder-li {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 6px;
  background: var(--navy); color: white;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background .2s;
}
.founder-li:hover { background: var(--teal); }

/* ── HISTÓRIA ── */
#historia { background: var(--white); }
.historia-wrap { max-width: 760px; margin: 0 auto; }
.historia-wrap p {
  font-size: 15.5px; color: #444; line-height: 1.85; margin-bottom: 18px;
}
.historia-wrap strong { color: var(--navy); font-weight: 500; }

/* ── PARCEIROS ── */
#parceiros { background: var(--off); }
.partners-grid {
  display: flex; flex-wrap: wrap;
  gap: 16px; justify-content: center;
  align-items: center; max-width: 900px; margin: 0 auto;
}
.partner-logo {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 10px; padding: 16px 28px;
  display: flex; align-items: center; justify-content: center;
  min-width: 120px; min-height: 64px;
  font-size: 13px; font-weight: 600; color: #555;
  transition: box-shadow .2s;
}
.partner-logo:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.partner-logo img { max-height: 36px; max-width: 110px; object-fit: contain; filter: grayscale(30%); }

/* ── DIFERENCIAIS ── */
#diferenciais { background: var(--navy); }
.diferenciais-wrap { max-width: 800px; margin: 0 auto; }
.diferenciais-intro {
  font-size: 15.5px; color: rgba(255,255,255,0.6);
  line-height: 1.8; margin-bottom: 40px; text-align: center;
}
.diff-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.diff-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 20px 24px;
}
.diff-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; margin-top: 1px;
  font-size: 12px; color: white; font-weight: 600;
}
.diff-text { font-size: 15px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.diff-text strong { color: white; font-weight: 500; }

/* ── CONTATO ── */
#contato { background: var(--white); }
.contato-wrap { max-width: 800px; margin: 0 auto; }
.contato-intro {
  font-size: 15px; color: var(--muted); margin-bottom: 32px; text-align: center;
}
.contato-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contato-info { }
.contato-info p { font-size: 14px; color: var(--muted); margin-bottom: 6px; }
.contato-link {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--navy);
  text-decoration: none; margin-bottom: 12px; transition: color .2s;
}
.contato-link:hover { color: var(--teal); }
.contato-link-label { font-size: 13px; }
.li-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: white;
  padding: 10px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 500; text-decoration: none;
  margin-top: 8px; transition: background .2s;
}
.li-btn:hover { background: var(--teal); }
.form-field {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 6px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; color: var(--ink);
  margin-bottom: 12px; outline: none; transition: border-color .2s;
  background: var(--white);
}
.form-field:focus { border-color: var(--teal); }
textarea.form-field { height: 120px; resize: vertical; }
.form-submit {
  background: var(--teal); color: white; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  padding: 12px 28px; border-radius: 6px; cursor: pointer; transition: opacity .2s;
  width: 100%;
}
.form-submit:hover { opacity: .88; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-logo img { height: 30px; background: #1a3a5c; padding: 3px 8px; border-radius: 4px; }
.footer-info { font-size: 12px; color: rgba(255,255,255,0.3); margin-top: 6px; }
.footer-right { display: flex; gap: 24px; align-items: center; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.35); text-decoration: none; }
.footer-links a:hover { color: rgba(255,255,255,0.65); }
.footer-langs { display: flex; gap: 12px; }
.footer-langs a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: rgba(13,42,74,0.97); backdrop-filter: blur(8px);
  padding: 16px 60px; display: flex; align-items: center; justify-content: space-between;
  gap: 24px; border-top: 1px solid rgba(255,255,255,0.08);
}
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.5; }
.cookie-text a { color: var(--teal); }
.cookie-btn {
  background: var(--teal); color: white; border: none;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: 6px; cursor: pointer; white-space: nowrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 56px 20px; }
  .hero-content h1 { font-size: 30px; }
  .sol-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .contato-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { flex-direction: column; gap: 16px; padding: 24px 20px; text-align: center; }
  .cookie-banner { flex-direction: column; padding: 16px 20px; text-align: center; }
}
@media (max-width: 600px) {
  .sol-grid { grid-template-columns: 1fr; }
  .founders-grid { flex-direction: column; align-items: center; }
}
