:root{
  --bg: #0b1020;
  --panel: rgba(255,255,255,.06);
  --panel-2: rgba(255,255,255,.08);
  --text: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.72);
  --muted-2: rgba(255,255,255,.55);
  --line: rgba(255,255,255,.12);

  /* Paleta PagLave (extraída do logo) */
  --primary: #019928;     /* verde */
  --primary-2: #26A3DF;   /* azul */
  --accent: #9DD7AC;      /* verde claro */

  --shadow: 0 20px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius-sm: 12px;

  --container: 1140px;
}

@font-face{
  font-family: "Aeonik";
  src: url("assets/Aeonik-Bold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

*{ box-sizing: border-box; }
html,body{ height: 100%; }
body{
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(900px 500px at 10% 0%, rgba(109,92,255,.35), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(0,212,255,.25), transparent 60%),
    radial-gradient(900px 500px at 50% 100%, rgba(157,248,113,.12), transparent 60%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity: .92; }

.container{
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.skip{
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #000;
  border-radius: 10px;
}
.skip:focus{ left: 10px; z-index: 9999; }

/* WhatsApp floating CTA */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1fb156);
  color: #08110c;
  box-shadow: 0 18px 50px rgba(37, 211, 102, .22);
  border: 1px solid rgba(255,255,255,.14);
  font-weight: 900;
}
.wa-float__icon{
  width: 28px; height: 28px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.20);
  font-family: Aeonik, Inter, system-ui, sans-serif;
}
.wa-float__text{ font-weight: 900; }

/* Header */
.header{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(11,16,32,.65);
  border-bottom: 1px solid var(--line);
}
.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.brand__logo{
  width: 140px;
  height: 34px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  padding: 6px 10px;
}
.brand__logo--sm{ width: 30px; height: 30px; border-radius: 11px; }
.brand__text{ font-size: 16px; font-family: Aeonik, Inter, system-ui, sans-serif; }

.nav__links{
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-weight: 600;
}
.nav__links a{ padding: 8px 10px; border-radius: 10px; }
.nav__links a:hover{ background: rgba(255,255,255,.06); color: var(--text); }

.nav__actions{ display: flex; gap: 10px; align-items: center; }

/* Buttons */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:active{ transform: translateY(1px); }
.btn--lg{ padding: 12px 16px; border-radius: 14px; }
.btn--block{ width: 100%; }
.btn--primary{
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #06110a;
  box-shadow: 0 18px 50px rgba(38,163,223,.18);
}
.btn--primary:hover{ filter: saturate(1.05); }
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: var(--text);
}
.btn--ghost:hover{ background: rgba(255,255,255,.09); }

/* Hero */
.hero{ padding: 58px 0 34px; }
.hero__grid{
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 32px;
  align-items: center;
}

.pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}
.pill .dot{
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(157,248,113,.10);
}

h1{
  margin: 14px 0 12px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-family: Aeonik, Inter, system-ui, sans-serif;
}
.accent{
  background: linear-gradient(135deg, var(--accent), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead{
  margin: 0 0 18px;
  font-size: 16px;
  color: var(--muted);
  max-width: 60ch;
}

.hero__cta{ display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }

.trust{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.trust__item{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.trust__item strong{ display: block; font-size: 15px; font-family: Aeonik, Inter, system-ui, sans-serif; }
.trust__item span{ color: var(--muted-2); font-size: 12px; }

.fineprint{ margin-top: 12px; color: rgba(255,255,255,.45); font-size: 12px; }

.hero__visual{ display: grid; align-items: center; }

.phone-mock{
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.18);
  transform: translateY(6px);
}

/* Product mock (synthetic UI) */
.mock{
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.mock__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.18);
}
.mock__dots span{
  display: inline-block;
  width: 9px; height: 9px;
  border-radius: 999px;
  margin-right: 6px;
  background: rgba(255,255,255,.18);
}
.mock__title{ font-weight: 900; color: var(--muted); font-size: 13px; font-family: Aeonik, Inter, system-ui, sans-serif; }
.mock__body{ padding: 14px; }

.cards{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px;
}
.card__k{ font-size: 12px; color: var(--muted-2); }
.card__v{ font-size: 20px; font-weight: 900; margin-top: 4px; font-family: Aeonik, Inter, system-ui, sans-serif; }
.card__s{ font-size: 12px; color: var(--muted); margin-top: 2px; }

.mock__split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.panel{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  padding: 12px;
}
.panel__title{ font-weight: 900; font-size: 12px; color: var(--muted); margin-bottom: 10px; font-family: Aeonik, Inter, system-ui, sans-serif; }

.kanban{ display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; }
.col{ background: rgba(0,0,0,.15); border: 1px solid rgba(255,255,255,.10); border-radius: 12px; padding: 8px; }
.col__h{ font-size: 11px; color: var(--muted-2); font-weight: 900; margin-bottom: 8px; font-family: Aeonik, Inter, system-ui, sans-serif; }
.chip{ background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); border-radius: 999px; padding: 6px 8px; font-size: 11px; margin-bottom: 6px; }

.chat{ display: grid; gap: 8px; }
.msg{ font-size: 12px; padding: 8px 10px; border-radius: 12px; max-width: 95%; border: 1px solid rgba(255,255,255,.10); }
.msg--in{ background: rgba(255,255,255,.06); justify-self: start; }
.msg--out{ background: linear-gradient(135deg, rgba(109,92,255,.30), rgba(0,212,255,.18)); justify-self: end; }
.chat__hint{ margin-top: 8px; font-size: 11px; color: var(--muted-2); }

.mock__foot{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.badge{ font-size: 11px; color: rgba(255,255,255,.82); border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); padding: 6px 10px; border-radius: 999px; }

/* Sections */
.section{ padding: 64px 0; }
.section--muted{
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section__head{ margin-bottom: 22px; }
.section__head h2{ margin: 0 0 10px; font-size: 30px; letter-spacing: -.03em; font-family: Aeonik, Inter, system-ui, sans-serif; }
.section__head p{ margin: 0; color: var(--muted); max-width: 78ch; }

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

.feature{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 18px;
}
.feature h3{ margin: 0 0 8px; letter-spacing: -.02em; font-family: Aeonik, Inter, system-ui, sans-serif; }
.feature p{ margin: 0; color: var(--muted); }

.inline-link{
  display: inline-block;
  margin-top: 10px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(0,212,255,.55);
}

/* Logos */
.logos{ padding: 22px 0 10px; }
.eyebrow{ margin: 0 0 10px; color: var(--muted-2); font-weight: 800; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.logos__row{ display: flex; gap: 10px; flex-wrap: wrap; }
.logo{
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.72);
  font-weight: 800;
  font-size: 12px;
}

/* Steps */
.steps{ list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.step{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 16px;
}
.step__n{
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(109,92,255,.35), rgba(0,212,255,.20));
  border: 1px solid rgba(255,255,255,.12);
  font-weight: 900;
  font-family: Aeonik, Inter, system-ui, sans-serif;
}
.step__c h3{ margin: 0 0 6px; font-family: Aeonik, Inter, system-ui, sans-serif; }
.step__c p{ margin: 0; color: var(--muted); }

.center-cta{ display: flex; justify-content: center; margin-top: 18px; }

/* Pricing table removed */

/* CTA */
.cta{ padding: 68px 0; }
.cta__box{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 16px;
  align-items: start;
  background:
    radial-gradient(600px 300px at 10% 0%, rgba(109,92,255,.35), transparent 60%),
    radial-gradient(600px 300px at 90% 20%, rgba(0,212,255,.25), transparent 60%),
    rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--radius) + 6px);
  padding: 18px;
  box-shadow: var(--shadow);
}
.cta__copy h2{ margin: 0 0 10px; letter-spacing: -.03em; font-family: Aeonik, Inter, system-ui, sans-serif; }
.cta__copy p{ margin: 0 0 14px; color: var(--muted); }
.cta__bullets{ display: grid; gap: 8px; }
.tick{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.16);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-weight: 700;
}
.tick::before{ content: "✓ "; color: var(--accent); font-weight: 900; }

.form{
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 14px;
}
label{ display: grid; gap: 6px; margin-bottom: 10px; }
label span{ font-size: 12px; color: var(--muted-2); font-weight: 800; }
input, textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{ border-color: rgba(0,212,255,.50); box-shadow: 0 0 0 4px rgba(0,212,255,.12); }
textarea{ resize: vertical; }
select{
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color: var(--text);
  outline: none;
}
select:focus{ border-color: rgba(0,212,255,.50); box-shadow: 0 0 0 4px rgba(0,212,255,.12); }

.fieldset{
  border: 0;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  gap: 8px;
}
.fieldset legend{
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 800;
  margin-bottom: 2px;
}
.radio{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
}
.radio input{ width: auto; padding: 0; margin: 0; box-shadow: none; }
.radio span{ font-size: 13px; color: rgba(255,255,255,.86); font-weight: 700; }

.form__fine{ margin: 10px 0 0; font-size: 12px; color: rgba(255,255,255,.48); }

/* FAQ */
.faq{ display: grid; gap: 10px; }
.faq__item{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  padding: 14px 14px;
}
.faq__item summary{
  cursor: pointer;
  font-weight: 900;
  color: rgba(255,255,255,.88);
  list-style: none;
  font-family: Aeonik, Inter, system-ui, sans-serif;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item p{ margin: 10px 0 0; color: var(--muted); }

/* Footer */
.footer{
  padding: 30px 0 46px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(0,0,0,.14);
}
.footer__grid{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 14px;
}
.footer__p{ margin: 10px 0 0; color: var(--muted); max-width: 52ch; }
.footer__small{ margin-top: 10px; color: rgba(255,255,255,.45); font-size: 12px; }
.footer__col h4{ margin: 6px 0 10px; font-size: 13px; color: rgba(255,255,255,.86); font-family: Aeonik, Inter, system-ui, sans-serif; }
.footer__col a{ display: block; padding: 6px 0; color: rgba(255,255,255,.70); }
.footer__col a:hover{ color: rgba(255,255,255,.92); }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .cta__box{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .mock__split{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
  .nav__links{ display:none; }
  .wa-float__text{ display: none; }
}

@media (max-width: 520px){
  .footer__grid{ grid-template-columns: 1fr; }
  .trust{ grid-template-columns: 1fr; }
}
