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

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

:root {
  --navy:        #0D1B2A;
  --navy-mid:    #132230;
  --navy-light:  #1A2D3E;
  --orange:      #E8640C;
  --orange-2:    #F07A2A;
  --teal:        #2A7D8A;
  --teal-2:      #3A9BAA;
  --cream:       #F5F0E8;
  --white:       #FFFFFF;
  --gray-1:      #B0BFCC;
  --gray-2:      #6B7D8F;
  --card:        #17273A;
  --border:      rgba(255,255,255,0.07);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(13,27,42,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px; height: 70px;
  flex-wrap: wrap;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { height: 40px; width: 40px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.logo-text .name { display: block; font-size: 20px; font-weight: 800; color: var(--white); letter-spacing: -0.4px; line-height: 1.1; }
.logo-text .tagline { display: block; font-size: 9px; font-weight: 600; color: var(--teal); letter-spacing: 2.5px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; flex-wrap: wrap; }
.nav-links a { color: var(--gray-1); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--white); }

.btn-nav {
  background: var(--orange); color: var(--white) !important;
  padding: 9px 22px; border-radius: 7px;
  font-weight: 700; font-size: 13px; text-decoration: none;
  transition: background .2s;
}
.btn-nav:hover { background: var(--orange-2); }

/* ── HERO ── */
.hero {
  max-width: 1140px; margin: 0 auto;
  padding: 100px 56px 96px;
  display: grid; grid-template-columns: 1fr 480px; gap: 72px; align-items: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,100,12,.10);
  border: 1px solid rgba(232,100,12,.25);
  color: var(--orange); padding: 6px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: .4px;
  margin-bottom: 28px;
}
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }

.hero h1 {
  font-size: 52px; font-weight: 900; line-height: 1.08; letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero h1 .teal { color: var(--teal-2); }

.hero-desc {
  color: var(--gray-1); font-size: 16px; line-height: 1.75;
  margin-bottom: 40px; max-width: 460px;
}

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

.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 700; font-size: 14px; text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-block; border: none; cursor: pointer;
}
.btn-primary:hover { background: var(--orange-2); transform: translateY(-1px); }

.btn-ghost {
  background: transparent; color: var(--white);
  padding: 14px 28px; border-radius: 8px;
  font-weight: 600; font-size: 14px; text-decoration: none;
  border: 1px solid rgba(255,255,255,.18);
  transition: border-color .2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.4); }

/* stat grid */
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.stat-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px 24px;
  transition: border-color .2s, transform .2s;
}
.stat-box:hover { border-color: rgba(232,100,12,.35); transform: translateY(-2px); }
.stat-box.top-orange { border-top: 3px solid var(--orange); }
.stat-box.top-teal   { border-top: 3px solid var(--teal); }

.stat-n {
  font-size: 44px; font-weight: 900; letter-spacing: -2px; line-height: 1;
  margin-bottom: 8px;
}
.stat-n.c-orange { color: var(--orange); }
.stat-n.c-teal   { color: var(--teal-2); }
.stat-n.c-white  { color: var(--white); }

.stat-l { font-size: 12px; color: var(--gray-1); font-weight: 500; }

/* ── DIVIDER ── */
.divider { height: 1px; background: var(--border); margin: 0 56px; }

/* ── SECTION COMMON ── */
.section { padding: 88px 56px; }
.section-inner { max-width: 1140px; margin: 0 auto; }

.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 10px;
}
.section-h {
  font-size: 36px; font-weight: 800; letter-spacing: -0.8px;
  margin-bottom: 14px; line-height: 1.15;
}
.section-sub {
  color: var(--gray-1); font-size: 15px; max-width: 520px;
  margin-bottom: 52px; line-height: 1.7;
}

/* ── QUEM SOMOS ── */
.quemsomos-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.info-box {
  background: var(--card); border-radius: 12px; padding: 24px; border: 1px solid var(--border);
}
.info-box .label { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-bottom: 8px; }
.info-box .value { font-size: 24px; font-weight: 800; }
.info-box.span-2 { grid-column: 1 / -1; }
.info-box.span-2 .value { font-size: 13px; color: var(--gray-1); line-height: 1.6; font-weight: 400; }

/* ── SERVICES ── */
.section-alt { background: var(--navy-mid); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.svc-card {
  background: var(--navy);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 28px;
  transition: border-color .2s, transform .2s;
}
.svc-card:hover { border-color: rgba(232,100,12,.4); transform: translateY(-3px); }

.svc-icon {
  width: 48px; height: 48px;
  background: rgba(232,100,12,.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
}

.svc-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.svc-card p  { color: var(--gray-1); font-size: 13px; line-height: 1.65; }

/* ── AREA CLIENTE ── */
.cliente-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}

.feature-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.feature-row  { display: flex; gap: 16px; align-items: flex-start; }
.feature-ico  {
  width: 36px; height: 36px; min-width: 36px;
  background: rgba(42,125,138,.12);
  border: 1px solid rgba(42,125,138,.25);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center; font-size: 16px;
}
.feature-row h4 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feature-row p  { font-size: 13px; color: var(--gray-1); line-height: 1.6; }

/* browser mockup */
.browser {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.45);
}
.browser-chrome {
  background: #0D1B2A;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f57; }
.dot.y { background: #febc2e; }
.dot.g { background: #28c840; }
.address {
  flex: 1; background: rgba(255,255,255,.05);
  border-radius: 5px; padding: 4px 12px;
  font-size: 11px; color: var(--gray-2); margin-left: 10px;
}
.browser-body { padding: 28px; }

.login-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.login-card .sub { font-size: 12px; color: var(--gray-1); margin-bottom: 20px; }

.mock-field {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px; padding: 11px 14px;
  font-size: 12px; color: var(--gray-1); margin-bottom: 10px;
}
.mock-cta {
  background: var(--orange); color: var(--white);
  border-radius: 7px; padding: 12px; text-align: center;
  font-size: 14px; font-weight: 700; margin-top: 6px;
  text-decoration: none; display: block; border: none; width: 100%; cursor: pointer;
  transition: background .2s;
}
.mock-cta:hover { background: var(--orange-2); }
.mock-link { font-size: 11px; color: var(--teal-2); text-align: center; margin-top: 12px; }

/* ── DIFERENCIAIS ── */
.diff-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 52px;
}
.diff-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 32px 24px;
}
.diff-bar {
  width: 32px; height: 3px; background: var(--orange);
  border-radius: 2px; margin-bottom: 20px;
}
.diff-bar.teal { background: var(--teal); }
.diff-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.diff-card p  { font-size: 13px; color: var(--gray-1); line-height: 1.65; }

/* ── CTA FINAL ── */
.cta-band {
  background: linear-gradient(135deg, var(--orange) 0%, #C9530A 100%);
  padding: 80px 56px; text-align: center;
}
.cta-band h2 { font-size: 36px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 14px; }
.cta-band p  { font-size: 16px; opacity: .85; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-white {
  background: var(--white); color: var(--orange);
  padding: 15px 36px; border-radius: 9px;
  font-weight: 700; font-size: 15px; text-decoration: none;
  display: inline-block; transition: opacity .2s;
}
.btn-white:hover { opacity: .9; }

/* ── FOOTER ── */
footer {
  background: #070F19;
  padding: 40px 56px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--border);
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo img { height: 36px; width: 36px; border-radius: 6px; object-fit: cover; }
.footer-logo .name { font-size: 18px; font-weight: 800; color: var(--white); }
.footer-logo .tag  { font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); }
.footer-copy  { font-size: 12px; color: var(--gray-2); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 12px; color: var(--gray-2); text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--white); }

/* ── PAGE CONTENT (paginas auxiliares) ── */
.page-content { max-width: 1140px; margin: 0 auto; padding: 72px 56px; }
.page-content.narrow { max-width: 640px; }
.page-content h1 { font-size: 36px; font-weight: 800; letter-spacing: -0.8px; margin-bottom: 20px; }
.page-content p { color: var(--gray-1); font-size: 15px; line-height: 1.75; margin-bottom: 16px; }

/* ── AUTH (login / registro) ── */
.auth-page {
  display: flex; justify-content: center; padding: 72px 20px;
  min-height: calc(100vh - 70px - 100px);
}
.auth-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px; width: 100%; max-width: 420px;
  box-shadow: 0 32px 80px rgba(0,0,0,.35);
}
.auth-card h1 { font-size: 22px; font-weight: 800; margin-bottom: 4px; text-align: center; }
.auth-card .sub { font-size: 13px; color: var(--gray-1); text-align: center; margin-bottom: 24px; }

.form { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.form label { font-weight: 600; margin-top: 12px; font-size: 13px; color: var(--gray-1); }
.form input, .form textarea {
  padding: 11px 14px; border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04); color: var(--white);
  border-radius: 7px; font-size: 14px; font-family: inherit;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--orange); }
.form button { margin-top: 22px; width: 100%; }

.auth-switch { margin-top: 22px; text-align: center; font-size: 13px; color: var(--gray-1); }
.auth-switch a { color: var(--teal-2); text-decoration: none; font-weight: 600; }
.auth-hint { margin-top: 10px; text-align: center; font-size: 12px; color: var(--gray-2); }

.alert { padding: 12px 16px; border-radius: 7px; margin-top: 16px; font-size: 13px; }
.alert-success { background: rgba(42,125,138,.15); color: var(--teal-2); border: 1px solid rgba(42,125,138,.3); }
.alert-error { background: rgba(232,100,12,.12); color: var(--orange-2); border: 1px solid rgba(232,100,12,.3); }

/* ── DASHBOARD ── */
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px; margin-bottom: 24px;
}
.dashboard-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 24px;
}
.btn-secondary {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,.18); padding: 10px 20px;
  border-radius: 7px; font-weight: 600; font-size: 13px; cursor: pointer;
  transition: border-color .2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.4); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 14px 24px; height: auto; }
  .nav-links { gap: 18px; width: 100%; justify-content: flex-start; }
  .hero { grid-template-columns: 1fr; padding: 56px 24px 64px; gap: 40px; }
  .hero h1 { font-size: 38px; }
  .divider { margin: 0 24px; }
  .section { padding: 56px 24px; }
  .quemsomos-grid, .cliente-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 56px 24px; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .page-content { padding: 48px 24px; }
}

@media (max-width: 560px) {
  .hero h1 { font-size: 32px; }
  .stat-grid, .services-grid, .diff-grid, .info-grid { grid-template-columns: 1fr; }
  .section-h { font-size: 28px; }
  .nav-links { gap: 14px; }
  .nav-links li { font-size: 12px; }
}
