/* ============ LP Trilobit — estilos ============ */
:root {
  --navy-950: #0b2240;
  --navy-900: #102e54;
  --navy-800: #16365f;
  --navy-700: #1b3e6f;
  --accent: #1e72e8;
  --accent-soft: #4f95f0;
  --ink: #14233a;
  --ink-soft: #44597a;
  --paper: #f4f7fb;
  --white: #ffffff;
  --line: #dce5f0;
  --radius: 14px;
  --font-display: "Saira", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

h1, h2, h3 { font-family: var(--font-display); font-style: italic; letter-spacing: -0.01em; }

.eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--accent);
  transform: rotate(45deg) skewX(-8deg);
  flex: none;
}
.eyebrow--light { color: var(--accent-soft); }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner {
  display: flex; align-items: center; gap: 32px;
  height: 72px;
}
.topbar-logo img { height: 40px; width: auto; }
.topbar-nav {
  display: flex; gap: 26px;
  margin-left: auto;
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
}
.topbar-nav a:hover { color: var(--accent); }
.topbar-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background 0.15s;
}
.topbar-cta:hover { background: var(--navy-700); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy-950) url("assets/hero-portaria.png") center / cover no-repeat;
  color: #fff;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(11,34,64,0.94) 0%, rgba(11,34,64,0.78) 52%, rgba(11,34,64,0.45) 100%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  padding-top: 84px;
  padding-bottom: 96px;
  align-items: center;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 700;
  margin: 18px 0 20px;
  text-wrap: pretty;
}
.hero h1 em { font-style: italic; color: var(--accent-soft); }
.hero-sub {
  font-size: 18px;
  color: #c6d6ec;
  max-width: 52ch;
  text-wrap: pretty;
}
.hero-points {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
  font-size: 16px;
}
.hero-points li { display: flex; gap: 12px; align-items: baseline; }
.hero-points li::before {
  content: "";
  width: 8px; height: 8px; flex: none;
  background: var(--accent-soft);
  transform: rotate(45deg) skewX(-8deg) translateY(-1px);
}
.hero-meta {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-meta span {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 999px;
  color: #d9e5f5;
}

/* lead form card */
.lead-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 30px 30px 26px;
  box-shadow: 0 24px 60px rgba(4,16,33,0.45);
}
.lead-card h2 {
  font-size: 24px; font-weight: 700; line-height: 1.2;
}
.lead-card .lead-hint {
  font-size: 14px; color: var(--ink-soft);
  margin: 6px 0 20px;
}
.lead-form { display: grid; gap: 14px; }
.lead-form label {
  display: grid; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.lead-form input, .lead-form select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--accent); }
.lead-form .field-error { border-color: #d3473e; }
.btn-primary {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 17px;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer;
  padding: 15px 20px;
  border-radius: 8px;
  transition: background 0.15s, transform 0.1s;
}
.btn-primary:hover { background: var(--navy-700); }
.btn-primary:active { transform: scale(0.985); }
.btn-whats {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 600; font-size: 15px;
  color: #128c4b;
  border: 1.5px solid #b3dcc5;
  background: #f0faf4;
  padding: 12px 20px;
  border-radius: 8px;
  transition: background 0.15s;
}
.btn-whats:hover { background: #e1f5e9; }
.lead-privacy {
  font-size: 12px; color: #8298b5;
  margin-top: 12px; text-align: center;
}

/* ---------- prova / faixa ---------- */
.proof-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.proof-inner {
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 34px;
  padding-top: 22px;
  padding-bottom: 22px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
}
.proof-inner .proof-lead {
  font-family: var(--font-display); font-style: italic;
  color: var(--navy-700); font-size: 15px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.proof-inner span { display: flex; align-items: center; gap: 9px; }
.proof-inner span:not(.proof-lead)::before {
  content: ""; width: 7px; height: 7px; flex: none;
  background: var(--accent);
  transform: rotate(45deg) skewX(-8deg);
}

/* ---------- seções ---------- */
.section { padding: 92px 0; }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head h2 {
  font-size: 36px; font-weight: 700; line-height: 1.15;
  margin: 14px 0 14px;
  color: var(--navy-800);
  text-wrap: pretty;
}
.section-head p { font-size: 17px; color: var(--ink-soft); text-wrap: pretty; }

/* soluções */
.solutions { background: var(--white); }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sol-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  background: linear-gradient(180deg, #fff 0%, #fafcff 100%);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}
.sol-card:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 14px 34px rgba(16,46,84,0.10);
  transform: translateY(-2px);
}
.sol-num {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 15px; color: var(--accent);
  letter-spacing: 0.08em;
}
.sol-card h3 {
  font-size: 21px; font-weight: 700; color: var(--navy-800);
  margin: 10px 0 8px;
}
.sol-card p { font-size: 15px; color: var(--ink-soft); }

/* linhas de produto */
.products { background: var(--paper); }
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prod-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  display: flex; flex-direction: column; gap: 16px;
}
.prod-logo { height: 64px; display: flex; align-items: center; }
.prod-logo img { max-height: 100%; width: auto; max-width: 200px; }
.prod-card h3 { font-size: 19px; color: var(--navy-800); }
.prod-card p { font-size: 15px; color: var(--ink-soft); flex: 1; }
.prod-tag {
  align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--accent);
  background: #e8f1fd;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- app t-connect ---------- */
.app-band {
  background: var(--navy-950) url("assets/cidade-sp.png") right center / cover no-repeat;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.app-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(95deg, rgba(11,34,64,0.97) 0%, rgba(11,34,64,0.86) 55%, rgba(13,38,72,0.55) 100%);
}
.app-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
  padding-top: 92px;
  padding-bottom: 92px;
}
.app-logo img { height: 58px; width: auto; }
.app-inner h2 {
  font-size: 36px; font-weight: 700; line-height: 1.15;
  margin: 26px 0 16px;
  text-wrap: pretty;
}
.app-inner .app-copy { font-size: 17px; color: #c6d6ec; max-width: 50ch; text-wrap: pretty; }
.app-feats {
  list-style: none;
  margin: 26px 0 34px;
  display: grid; gap: 11px;
  font-size: 15.5px; color: #dce7f6;
}
.app-feats li { display: flex; gap: 12px; align-items: baseline; }
.app-feats li::before {
  content: ""; width: 8px; height: 8px; flex: none;
  background: var(--accent-soft);
  transform: rotate(45deg) skewX(-8deg) translateY(-1px);
}
.store-row { display: flex; gap: 14px; flex-wrap: wrap; }
.store-btn {
  display: flex; align-items: center; gap: 12px;
  background: #fff; color: var(--navy-900);
  border-radius: 10px;
  padding: 10px 18px;
  min-height: 56px;
  transition: transform 0.12s, box-shadow 0.12s;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.35); }
.store-btn .store-mark {
  width: 26px; height: 26px; flex: none;
  background: var(--navy-800);
  border-radius: 6px;
}
.store-btn .store-mark--down { position: relative; }
.store-btn .store-mark--down::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -58%) rotate(45deg);
  width: 9px; height: 9px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
}
.store-btn .store-mark { position: relative; }
.store-btn small { display: block; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); line-height: 1.3; }
.store-btn strong { font-family: var(--font-display); font-style: italic; font-size: 16px; line-height: 1.2; }
.store-note { margin-top: 14px; font-size: 12.5px; color: #8aa3c4; }

/* janela do app (desktop) */
.appshot {
  justify-self: center;
  width: 100%;
  background: #0d1b30;
  border: 1px solid #2c4368;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.appshot-bar {
  display: flex; gap: 7px; align-items: center;
  padding: 12px 14px;
  background: #11264a;
  border-bottom: 1px solid #2c4368;
}
.appshot-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #33507c;
}
.appshot-screen { aspect-ratio: 16 / 9; background: #0a1424; }
.appshot-screen image-slot { width: 100%; height: 100%; }

/* ---------- b2b band ---------- */
.b2b { background: var(--white); }
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.b2b-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  background: linear-gradient(180deg, #fff, #f8fbff);
}
.b2b-card h3 { font-size: 22px; color: var(--navy-800); margin-bottom: 10px; }
.b2b-card p { font-size: 15.5px; color: var(--ink-soft); margin-bottom: 18px; }
.b2b-link {
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: 15.5px; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.b2b-link::after { content: "→"; transition: transform 0.15s; }
.b2b-link:hover::after { transform: translateX(4px); }

/* ---------- cta final ---------- */
.cta-final {
  background: var(--navy-900) url("assets/lobby-azul.png") center / cover no-repeat;
  position: relative;
  color: #fff;
  text-align: center;
}
.cta-final::before {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,30,58,0.85);
}
.cta-final .wrap { position: relative; padding-top: 88px; padding-bottom: 92px; }
.cta-final h2 { font-size: 38px; font-weight: 700; line-height: 1.15; max-width: 22ch; margin: 0 auto 14px; text-wrap: pretty; }
.cta-final p { font-size: 17px; color: #c6d6ec; max-width: 54ch; margin: 0 auto 32px; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-row .btn-primary { padding: 16px 34px; font-size: 18px; }
.cta-row .btn-whats { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.25); color: #fff; }
.cta-row .btn-whats:hover { background: rgba(255,255,255,0.12); }

/* ---------- footer ---------- */
.footer { background: var(--navy-950); color: #9db3d2; font-size: 14px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 48px;
}
.footer-logo img { height: 44px; width: auto; margin-bottom: 16px; }
.footer h4 {
  font-family: var(--font-display); font-style: italic;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff; margin-bottom: 16px;
}
.footer ul { list-style: none; display: grid; gap: 9px; }
.footer a:hover { color: #fff; }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  font-size: 12.5px; color: #6e87aa;
}

/* ---------- whatsapp flutuante ---------- */
.whats-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 60;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(18,140,75,0.45);
  transition: transform 0.15s;
}
.whats-float:hover { transform: scale(1.07); }
.whats-float svg { width: 32px; height: 32px; }

/* ---------- responsivo ---------- */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding-top: 56px; padding-bottom: 64px; }
  .hero h1 { font-size: 36px; }
  .sol-grid, .prod-grid { grid-template-columns: 1fr 1fr; }
  .app-inner { grid-template-columns: 1fr; }
  .appshot { max-width: 540px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .topbar-nav { display: none; }
}
@media (max-width: 640px) {
  .sol-grid, .prod-grid, .b2b-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 31px; }
  .section { padding: 64px 0; }
  .section-head h2, .app-inner h2, .cta-final h2 { font-size: 29px; }
}

/* ---------- pop-up rápido de orçamento ---------- */
.quote-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.quote-modal.is-open { display: flex; }
.quote-backdrop {
  position: absolute; inset: 0;
  background: rgba(7, 16, 32, 0.62);
  backdrop-filter: blur(3px);
}
.quote-dialog {
  position: relative;
  width: 100%; max-width: 380px;
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  animation: quote-pop 0.18s ease-out;
}
@keyframes quote-pop {
  from { opacity: 0; transform: translateY(12px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.quote-x {
  position: absolute; top: 12px; right: 14px;
  width: 32px; height: 32px;
  border: none; background: transparent;
  font-size: 26px; line-height: 1; color: #9aa7bd;
  cursor: pointer; border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.quote-x:hover { background: #f1f4f9; color: var(--ink); }
.quote-dialog h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 24px; color: var(--ink); margin: 0 0 6px;
}
.quote-sub { font-size: 14.5px; color: #5d6b80; margin: 0 0 20px; text-wrap: pretty; }
.quote-form { display: grid; gap: 12px; }
.quote-form input {
  font-family: var(--font-body);
  font-size: 16px; color: var(--ink);
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fbfcfe;
  width: 100%; outline: none;
  transition: border-color 0.15s;
}
.quote-form input:focus { border-color: var(--accent); }
.quote-form .field-error { border-color: #d3473e; }
.quote-form .btn-primary { margin-top: 4px; width: 100%; }
.quote-success { text-align: center; padding: 8px 0 2px; }
.quote-check {
  width: 56px; height: 56px; margin: 4px auto 16px;
  border-radius: 50%;
  background: #e8f6ee; color: #1f9d57;
  font-size: 30px; line-height: 56px;
  font-weight: 700;
}
.quote-success h3 {
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 22px; color: var(--ink); margin: 0 0 8px;
}
.quote-success .quote-sub { margin: 0 0 22px; }
.quote-success .btn-primary { width: 100%; }

/* ---------- aviso de cookies ---------- */
.cookie-bar {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 900;
  display: flex; align-items: center; gap: 18px;
  max-width: 880px; margin: 0 auto;
  padding: 16px 20px;
  background: #0d1b30;
  border: 1px solid #2c4368;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.4);
  opacity: 0; transform: translateY(14px);
  transition: opacity .25s ease, transform .25s ease;
}
.cookie-bar.is-visible { opacity: 1; transform: translateY(0); }
.cookie-text { margin: 0; font-size: 14px; color: #c6d6ec; line-height: 1.5; flex: 1; }
.cookie-text a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: var(--accent-200, #8fb6f0); }
.cookie-accept {
  flex-shrink: 0;
  font-family: var(--font-display); font-style: italic; font-weight: 700;
  font-size: 15px;
  background: var(--accent); color: #fff;
  border: none; cursor: pointer;
  padding: 11px 26px; border-radius: 8px;
  transition: background .15s, transform .1s;
}
.cookie-accept:hover { background: var(--navy-700); }
.cookie-accept:active { transform: scale(0.97); }
@media (max-width: 560px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; gap: 12px; }
  .cookie-accept { width: 100%; }
}
