/* ===== iEntrega — Landing page =====================================
   Tokens + componentes. Tipografia: Sora. Estilo inline-free.
   ================================================================== */

:root {
  --green:      #15A567;
  --green-2:    #16AE6E;
  --green-deep: #0E7A4C;
  --green-dark: #0B5E3A;
  --ink:        #0A2740;
  --ink-2:      #0E3354;
  --muted:      #516170;
  --muted-2:    #7A8A96;
  --mint:       #E4F5EB;
  --mint-2:     #DBF0E3;
  --menta:      #34D08A;
  --gold:       #F5B638;
  --bg:         #F4FAF6;
  --bg-hero:    #EAF7EF;
  --line:       #E7EDE9;
  --card:       #ffffff;
  --radius:     22px;
  --container:  1180px;
  --shadow-sm:  0 8px 22px rgba(10,39,64,.06);
  --shadow-md:  0 12px 32px rgba(10,39,64,.10);
  --shadow-lg:  0 30px 70px rgba(10,39,64,.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: #BDEBCF; }

.container { max-width: var(--container); margin: 0 auto; }

h1, h2, h3 { letter-spacing: -.02em; line-height: 1.12; }
.accent { color: var(--green); }
.menta  { color: var(--menta); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 700; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; border: none; cursor: pointer;
  text-decoration: none; white-space: nowrap; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; box-shadow: 0 10px 22px rgba(21,165,103,.30); }
.btn-dark    { background: var(--ink); color: #fff; }
.btn-light   { background: #fff; color: var(--green-deep); }
.btn-ghost   { background: #F2F7F4; color: var(--green-deep); }
.btn-lg      { padding: 17px 34px; font-size: 16px; }

/* ---------- Nav (flutuante) ---------- */
.nav-wrap { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 16px 24px 0; }
.nav {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(10,39,64,.07); border-radius: 999px;
  box-shadow: 0 8px 30px rgba(10,39,64,.07);
  padding: 11px 12px 11px 20px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.logo-mark {
  width: 37px; height: 37px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  box-shadow: 0 6px 14px rgba(21,165,103,.32);
}
.logo-word { font-size: 20px; font-weight: 800; letter-spacing: -.03em; }
.logo-word span { color: var(--green); }
.nav-links { display: flex; align-items: center; gap: 20px; margin-left: 8px; flex: 1; }
.nav-links a { font-size: 14.5px; font-weight: 600; text-decoration: none; color: var(--ink); }
.nav-links a:hover { color: var(--green); }
.nav-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.nav-login { display: flex; align-items: center; gap: 7px; text-decoration: none; font-weight: 600; font-size: 14.5px; padding: 10px 12px; color: var(--ink); }

/* ---------- Sections ---------- */
section { padding-inline: 24px; }
.section-head { text-align: center; }
.eyebrow {
  display: inline-block; background: var(--mint-2); color: var(--green-deep);
  font-weight: 700; font-size: 13.5px; padding: 8px 16px; border-radius: 999px; margin-bottom: 20px;
}
.h2 { font-size: 40px; font-weight: 800; max-width: 760px; margin: 0 auto 14px; }
.sub { font-size: 17px; color: var(--muted); max-width: 600px; margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 108px 24px 40px;
  background: radial-gradient(circle at 86% -10%, rgba(255,233,112,.12), transparent 32%),
              linear-gradient(180deg, var(--bg-hero) 0%, var(--bg) 70%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 36px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; background: #fff;
  color: var(--green-deep); font-weight: 700; font-size: 13.5px;
  padding: 9px 16px; border-radius: 999px; box-shadow: 0 6px 16px rgba(10,39,64,.06); margin-bottom: 26px;
}
.dot-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
.hero h1 { font-size: 53px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 22px; }
.lead { font-size: 18px; line-height: 1.55; color: var(--muted); max-width: 540px; margin-bottom: 26px; }
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; margin-bottom: 32px; }
.pillar { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 15px; }
.email-form { display: flex; gap: 12px; max-width: 560px; margin-bottom: 14px; flex-wrap: wrap; }
.email-form input {
  flex: 1; min-width: 220px; background: #fff; border: 1.5px solid #DCE7E0; color: var(--ink);
  border-radius: 999px; padding: 16px 22px; font: inherit; font-size: 15px; outline: none;
}
.email-form input::placeholder { color: #9AAAB6; }
.fine { font-size: 13.5px; color: var(--muted-2); font-weight: 500; }

/* Hero carousel */
.hero-art { position: relative; width: 100%; aspect-ratio: 1/1; border-radius: 24px; overflow: hidden; }
.scene { position: absolute; inset: 0; opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; pointer-events: none; }
.scene.active { opacity: 1; transform: none; }
.scene img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ---------- Faixa social ---------- */
.social-band { background: linear-gradient(90deg, var(--green-dark), var(--green-2)); padding: 40px 24px; }
.social-inner { max-width: var(--container); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.social-title { max-width: 340px; color: #fff; font-size: 25px; font-weight: 800; letter-spacing: -.02em; line-height: 1.2; }
.indicators { display: flex; gap: 34px; flex-wrap: wrap; flex: 1; min-width: 300px; justify-content: flex-end; }
.indicator { flex: 1; min-width: 200px; max-width: 260px; }
.indicator h4 { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 16px; font-weight: 800; margin-bottom: 6px; }
.indicator p { color: #CFEEDD; font-size: 13.5px; font-weight: 600; line-height: 1.5; }
.ic-badge { width: 22px; height: 22px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex: none; }

/* ---------- Como funciona ---------- */
.steps { padding: 96px 24px 72px; }
.steps-grid { max-width: 1080px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; text-align: left; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; box-shadow: 0 10px 30px rgba(10,39,64,.05); }
.step-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.step-num { font-size: 13px; font-weight: 800; color: var(--green); letter-spacing: .08em; }
.step-rule { height: 1px; flex: 1; background: var(--line); }
.step-icon { width: 46px; height: 46px; border-radius: 13px; background: var(--mint); display: grid; place-items: center; }
.step h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.step p { font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ---------- Painel / dashboard ---------- */
.feature { padding: 30px 24px 70px; text-align: center; }
.panel { max-width: 1080px; margin: 46px auto 0; background: var(--ink); border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow-lg); }
.browser { background: #fff; border-radius: 14px; overflow: hidden; text-align: left; }
.browser-bar { display: flex; align-items: center; gap: 18px; padding: 14px 20px; border-bottom: 1px solid #EEF3F0; }
.dots { display: flex; gap: 7px; }
.dots span { width: 11px; height: 11px; border-radius: 50%; background: #E2E8EC; }
.browser-tabs { display: flex; gap: 22px; font-size: 13.5px; font-weight: 600; color: var(--muted); }
.browser-tabs .on { color: var(--green); font-weight: 700; }
.browser-search { margin-left: auto; background: #F2F7F4; color: var(--muted-2); font-size: 12.5px; padding: 7px 14px; border-radius: 8px; }
.dash { display: grid; grid-template-columns: 1fr 1.4fr 1fr; }
.dash > div { padding: 22px 20px; }
.dash > div + div { border-left: 1px solid #EEF3F0; }
.dash h5 { font-size: 13px; font-weight: 700; margin-bottom: 16px; }
.kpi + .kpi { margin-top: 14px; }
.kpi .label { font-size: 12px; color: var(--muted-2); }
.kpi .val { font-size: 22px; font-weight: 800; }
.route { display: flex; align-items: center; gap: 11px; background: #F6FAF7; border: 1px solid #EAF1EC; border-radius: 11px; padding: 11px 13px; }
.route + .route { margin-top: 11px; }
.route .tag { width: 34px; height: 34px; border-radius: 9px; background: #D7EFE0; color: var(--green-deep); font-weight: 800; font-size: 12px; display: grid; place-items: center; }
.route .body { flex: 1; }
.route .body .name { font-size: 13px; font-weight: 700; }
.bar { height: 5px; background: #EAF1EC; border-radius: 9px; margin-top: 5px; }
.bar > i { display: block; height: 100%; border-radius: 9px; background: var(--green); }
.route .count { font-size: 12px; font-weight: 700; color: var(--green); }
.proof-row { display: flex; align-items: center; gap: 9px; font-size: 12.5px; }
.proof-row + .proof-row { margin-top: 10px; }
.proof-note { margin-top: 6px; background: var(--mint); color: var(--green-deep); font-size: 11.5px; font-weight: 700; text-align: center; padding: 9px; border-radius: 9px; }

/* ---------- Automatize (orbital) ---------- */
.auto { padding: 40px 24px 90px; }
.auto-box { max-width: var(--container); margin: 0 auto; background: linear-gradient(135deg, var(--ink), var(--ink-2)); border-radius: 30px; overflow: hidden; display: grid; grid-template-columns: 1fr 1fr; }
.orbit { position: relative; padding: 48px 30px; min-height: 460px; }
.orbit-center {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; text-align: center;
  background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; font-weight: 800; font-size: 15px;
  box-shadow: 0 0 0 14px rgba(21,165,103,.18);
}
.orbit-item {
  position: absolute; left: 50%; top: 50%; display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 8px 14px 8px 8px; box-shadow: 0 10px 24px rgba(0,0,0,.22); white-space: nowrap;
}
.orbit-item .oi { width: 30px; height: 30px; border-radius: 8px; background: var(--mint); display: grid; place-items: center; flex: none; }
.orbit-item span { font-size: 12.5px; font-weight: 700; color: var(--ink); }
.auto-copy { padding: 60px 54px; display: flex; flex-direction: column; justify-content: center; }
.auto-copy h2 { font-size: 36px; font-weight: 800; color: #fff; margin-bottom: 20px; }
.auto-copy p { font-size: 16px; line-height: 1.6; color: #A9C3D6; margin-bottom: 30px; max-width: 440px; }
.auto-copy .btn { align-self: flex-start; }

/* ---------- Chips ---------- */
.chips-section { background: var(--ink); padding: 80px 24px; margin: 0 24px; border-radius: 34px; }
.chips-inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.chips-inner h2 { font-size: 36px; font-weight: 800; color: #fff; max-width: 820px; margin: 0 auto 34px; }
.tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 38px; }
.tab { font: inherit; font-weight: 700; font-size: 14.5px; padding: 9px 18px; border-radius: 999px; border: none; cursor: pointer; background: rgba(255,255,255,.06); color: #A9C3D6; transition: all .2s ease; }
.tab.active { background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; }
.chips { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.chip { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; padding: 11px 18px 11px 13px; }
.chip .ci { width: 28px; height: 28px; border-radius: 8px; background: rgba(52,208,138,.16); display: grid; place-items: center; flex: none; }
.chip span { font-size: 14px; font-weight: 600; color: #fff; }

/* ---------- Comprovação / verify ---------- */
.verify { padding: 96px 24px; }
.verify-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.verify h2 { font-size: 38px; font-weight: 800; margin-bottom: 20px; }
.verify .lead { margin-bottom: 24px; }
.checklist { display: flex; flex-direction: column; gap: 14px; }
.check { display: flex; align-items: flex-start; gap: 12px; }
.check .t { font-weight: 700; font-size: 15px; }
.check .d { font-size: 14px; color: var(--muted-2); }
.verify-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: 0 30px 70px rgba(10,39,64,.12); padding: 28px; }
.verify-card .title { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.verify-card .hint { font-size: 13px; color: var(--muted-2); margin-bottom: 16px; }
.verify-input { display: flex; gap: 10px; margin-bottom: 22px; }
.verify-input input { flex: 1; border: 1.5px solid #DCE7E0; border-radius: 12px; padding: 14px 16px; font-size: 15px; font-family: ui-monospace, monospace; letter-spacing: 1px; outline: none; color: var(--ink); }
.verify-input button { flex: none; border: none; background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; font-weight: 700; font-size: 14.5px; padding: 0 22px; border-radius: 12px; cursor: pointer; }
.result { border: 1.5px solid #BFE6CF; background: #F4FBF7; border-radius: 16px; padding: 20px; animation: fade .3s ease; }
.result-head { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #DDEEE4; }
.result-head .seal { width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--green), var(--green-2)); display: grid; place-items: center; }
.result-head .pedido { font-size: 16px; font-weight: 800; }
.result-head .status { font-size: 13px; font-weight: 700; color: var(--green); }
.hash-label { font-size: 11px; color: var(--muted-2); font-weight: 700; letter-spacing: .04em; margin-bottom: 5px; }
.hash { font-family: ui-monospace, monospace; font-size: 11.5px; color: var(--ink); background: #fff; border: 1px solid #E2EDE6; border-radius: 9px; padding: 10px 12px; word-break: break-all; line-height: 1.6; margin-bottom: 16px; }
.result-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.result-meta .k { font-size: 11px; color: var(--muted-2); font-weight: 600; }
.result-meta .v { font-size: 14px; font-weight: 700; }

/* ---------- App offline ---------- */
.offline { background: linear-gradient(180deg, var(--bg), var(--bg-hero)); padding: 90px 24px; }
.offline-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; }
.phone-wrap { position: relative; display: flex; justify-content: center; }
.phone-glow { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, #CDEFDC, transparent 70%); top: 40px; }
.phone { position: relative; width: 270px; background: var(--ink); border-radius: 38px; padding: 12px; box-shadow: var(--shadow-lg); }
.phone-screen { background: var(--bg); border-radius: 28px; overflow: hidden; }
.phone-top { background: linear-gradient(135deg, var(--green), var(--green-2)); padding: 18px 18px 16px; color: #fff; }
.phone-top .row { display: flex; justify-content: space-between; align-items: center; font-size: 12px; margin-bottom: 14px; }
.phone-top .pill { background: rgba(255,255,255,.22); padding: 3px 9px; border-radius: 999px; font-weight: 700; font-size: 10.5px; }
.phone-body { padding: 16px; }
.photo-slot { height: 104px; border-radius: 14px; background: linear-gradient(135deg, #E9F2EC, #D7EFE0); border: 1.5px dashed #9FCBB2; display: grid; place-items: center; align-content: center; gap: 6px; margin-bottom: 12px; text-align: center; }
.photo-slot span { font-size: 11px; color: var(--green-deep); font-weight: 700; }
.chips-2 { display: flex; gap: 9px; margin-bottom: 12px; }
.chips-2 div { flex: 1; background: var(--mint); color: var(--green-deep); font-size: 11.5px; font-weight: 700; text-align: center; padding: 10px 0; border-radius: 11px; }
.offline-copy .stats { display: flex; gap: 32px; flex-wrap: wrap; }
.offline-copy .stats .s strong { display: block; font-size: 15px; font-weight: 800; }
.offline-copy .stats .s span { font-size: 14px; color: var(--muted-2); }
.offline h2 { font-size: 38px; font-weight: 800; margin-bottom: 20px; }

/* ---------- Integrações ---------- */
.integrations { padding: 90px 24px 80px; text-align: center; }
.int-row { max-width: 880px; margin: 46px auto 0; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.integration { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 16px 22px; box-shadow: var(--shadow-sm); }
.integration .lg { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; color: #fff; font-weight: 800; }
.integration span { font-size: 15px; font-weight: 700; }

/* ---------- Depoimentos ---------- */
.testi { padding: 96px 24px 50px; text-align: center; }
.stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 18px; }
.testi-grid { max-width: 1120px; margin: 48px auto 0; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; text-align: left; }
.testi-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-md); display: flex; flex-direction: column; }
.testi-card .stars { justify-content: flex-start; margin-bottom: 16px; }
.quote-mark { font-family: Georgia, serif; font-size: 46px; line-height: .4; color: #BFE6CF; height: 22px; margin-bottom: 10px; }
.testi-card p { font-size: 15px; line-height: 1.65; color: var(--ink); flex: 1; margin-bottom: 22px; }
.testi-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #EEF3F0; padding-top: 18px; }
.avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--mint); color: var(--green-deep); font-weight: 800; font-size: 15px; display: grid; place-items: center; flex: none; }
.testi-author .name { font-size: 15px; font-weight: 800; }
.testi-author .role { font-size: 13px; color: var(--muted); margin-top: 1px; }

/* ---------- Planos ---------- */
.pricing { padding: 30px 24px 96px; background: linear-gradient(180deg, #fff, var(--bg-hero)); }
.plans { max-width: 1040px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; box-shadow: 0 10px 30px rgba(10,39,64,.05); display: flex; flex-direction: column; }
.plan.featured { background: var(--ink); box-shadow: 0 30px 60px rgba(10,39,64,.28); position: relative; }
.plan .tier { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.plan .blurb { font-size: 14px; color: var(--muted-2); margin-bottom: 18px; }
.plan .price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 22px; }
.plan .price b { font-size: 40px; font-weight: 800; letter-spacing: -.03em; }
.plan .price .per { font-size: 15px; color: var(--muted-2); font-weight: 600; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; align-items: center; gap: 9px; font-size: 14.5px; color: var(--muted); }
.plan.featured .tier, .plan.featured .price b { color: #fff; }
.plan.featured .blurb, .plan.featured .price .per { color: #9FB6C7; }
.plan.featured li { color: #D6E6F0; }
.badge-pop { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, var(--green), var(--green-2)); color: #fff; font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq { padding: 90px 24px; }
.faq-inner { max-width: 820px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 38px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 20px 24px; box-shadow: 0 6px 18px rgba(10,39,64,.04); }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; gap: 16px; }
.faq-q span { font-size: 17px; font-weight: 700; }
.faq-q .plus { font-size: 26px; font-weight: 300; line-height: 1; color: var(--green); flex: none; transition: transform .25s ease; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .3s ease, opacity .3s ease; }
.faq-item.open .faq-a { max-height: 240px; opacity: 1; }
.faq-a p { font-size: 15px; color: var(--muted); line-height: 1.62; padding-top: 14px; }

/* ---------- CTA final ---------- */
.cta { padding: 30px 24px 70px; }
.cta-box { max-width: 1120px; margin: 0 auto; background: linear-gradient(135deg, var(--green-2), var(--green-dark)); border-radius: 30px; padding: 70px 30px; text-align: center; box-shadow: 0 40px 80px rgba(11,94,58,.3); }
.cta-box h2 { font-size: 40px; font-weight: 800; color: #fff; max-width: 720px; margin: 0 auto 14px; }
.cta-box p { font-size: 17px; color: #D6F2E1; margin-bottom: 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer { background: #fff; border-top: 1px solid #EAF1EC; padding: 60px 24px 36px; }
.foot-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 46px; }
.foot-brand p { font-size: 14px; color: var(--muted-2); max-width: 240px; line-height: 1.55; margin-top: 14px; }
.foot-col h6 { font-size: 14px; font-weight: 800; color: var(--green); margin-bottom: 14px; }
.foot-col a { display: block; font-size: 14px; color: var(--muted); text-decoration: none; margin-bottom: 10px; }
.foot-col a:hover { color: var(--green); }
.foot-bottom { max-width: var(--container); margin: 0 auto; border-top: 1px solid #EAF1EC; padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.foot-bottom .copy { font-size: 13px; color: #9AAAB6; }
.socials { display: flex; gap: 12px; }
.socials a { width: 34px; height: 34px; border-radius: 50%; background: #F2F7F4; display: grid; place-items: center; transition: background .15s ease; }
.socials a:hover { background: var(--mint); }

/* ---------- Animations ---------- */
@keyframes float  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes float2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes pulse  { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(.82); } }
@keyframes fade   { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.float  { animation: float  6.5s ease-in-out infinite; }
.float2 { animation: float2 7.5s ease-in-out infinite; }

/* ---------- Responsivo ---------- */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .hero-grid, .verify-grid, .offline-grid, .auto-box { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .steps-grid, .testi-grid, .plans { grid-template-columns: 1fr; }
  .dash { grid-template-columns: 1fr; }
  .dash > div + div { border-left: none; border-top: 1px solid #EEF3F0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 40px; }
  .h2, .verify h2, .offline h2, .auto-copy h2, .chips-inner h2, .cta-box h2 { font-size: 30px; }
}
@media (min-width: 1001px) {
  .testi-grid { grid-template-columns: repeat(3,1fr); }
  .steps-grid { grid-template-columns: repeat(3,1fr); }
  .plans { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 560px) {
  .foot-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 33px; }
  .pillars { grid-template-columns: 1fr; }
}
