/* ===========================================================
   ELEITORANDO — Landing Institucional
   Mesma identidade do deck: Sora + Manrope, navy + green
   =========================================================== */
:root{
  --navy-950:#061A36;
  --navy-900:#08254A;
  --navy-850:#0A2B55;
  --navy-800:#0D3565;
  --navy-700:#103C72;
  --navy-600:#15539E;
  --blue-500:#1E6FD0;
  --blue-300:#7FB1EE;
  --green-600:#149149;
  --green-500:#18A957;
  --green-400:#2ECC71;
  --green-300:#8FE3B0;
  --ink:#0E1E33;
  --slate:#5C6B7E;
  --slate-400:#8A97A8;
  --line:#E4EAF2;
  --paper:#F4F7FB;
  --paper-2:#EAF0F8;
  --white:#FFFFFF;
  --ff-display:"Sora",system-ui,sans-serif;
  --ff-text:"Manrope",system-ui,sans-serif;
}

*{ box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html, body{ width: 100%; overflow-x: hidden; }
body{
  font-family: var(--ff-text);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; }

/* ===================== NAV ===================== */
.nav{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav__inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__brand img{ height: 28px; }
.nav__links{
  display: flex;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav__links a{
  font-size: 14px;
  font-weight: 600;
  color: var(--slate);
  transition: color .15s;
}
.nav__links a:hover{ color: var(--navy-700); }
.nav__cta{
  background: var(--navy-700);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  transition: all .15s;
}
.nav__cta:hover{ background: var(--navy-600); transform: translateY(-1px); }

@media (max-width: 760px){
  .nav__inner{ padding: 12px 18px; gap: 12px; }
  .nav__links{ display: none; }
  .nav__cta{ padding: 8px 14px; font-size: 12px; }
}

/* ===================== HERO ===================== */
.hero{
  position: relative;
  padding: 100px 32px 80px;
  background: var(--navy-900);
  color: #fff;
  overflow: hidden;
}
.hero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(46,204,113,.10), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(30,111,208,.18), transparent 50%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950));
  z-index: 0;
}
.hero__container{
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  text-align: center;
}
.hero__kicker{
  display: inline-block;
  font-family: var(--ff-text);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .22em;
  color: var(--green-400);
  background: rgba(46,204,113,.10);
  border: 1px solid rgba(46,204,113,.25);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__title{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 84px;
  line-height: 1;
  letter-spacing: -.025em;
  margin-bottom: 24px;
}
.hero__sub{
  font-size: 21px;
  line-height: 1.5;
  color: #AFC2DC;
  max-width: 760px;
  margin: 0 auto 36px;
  font-weight: 400;
}
.hero__sub strong{ color: #fff; font-weight: 700; }
.hero__actions{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  font-family: var(--ff-text);
  cursor: pointer;
  transition: all .15s;
  border: 1.5px solid transparent;
}
.btn--primary{
  background: var(--green-500);
  color: #fff;
}
.btn--primary:hover{ background: var(--green-600); transform: translateY(-1px); box-shadow: 0 12px 24px -8px rgba(24,169,87,.5); }
.btn--ghost{
  background: rgba(255,255,255,.06);
  color: #fff;
  border-color: rgba(255,255,255,.2);
}
.btn--ghost:hover{ background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); }
.btn--ghost-light{
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.3);
}
.btn--large{ padding: 18px 28px; font-size: 16px; }

.hero__demos{
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 16px 24px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
}
.hero__demos-label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  color: var(--slate-400);
  text-transform: uppercase;
}
.hero__demos-list{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.demo-chip{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  transition: all .15s;
}
.demo-chip:hover{ background: rgba(255,255,255,.16); transform: translateY(-1px); }
.demo-chip__dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

@media (max-width: 760px){
  .hero{ padding: 60px 20px 50px; }
  .hero__title{ font-size: 46px; }
  .hero__sub{ font-size: 17px; }
  .btn{ font-size: 14px; padding: 12px 18px; }
}

/* ===================== SECTIONS ===================== */
.section{ padding: 100px 32px; position: relative; overflow: hidden; }
.section--paper{ background: var(--paper); }
.section--paper2{ background: var(--paper-2); }
.section--dark{ background: var(--navy-900); color: #EAF1FB; }
.section--dark .lead{ color: #AFC2DC; }
.section--vision{
  background: linear-gradient(180deg, #fff, var(--paper));
  padding: 120px 32px;
}
.section--cta{ padding: 80px 32px; }

.container{ max-width: 1200px; margin: 0 auto; }
.container--narrow{ max-width: 880px; margin: 0 auto; }

.kicker{
  font-family: var(--ff-text);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-600);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.kicker::before{
  content: '';
  width: 32px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.kicker--green{ color: var(--green-400); }

.head{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.08;
  letter-spacing: -.018em;
  color: var(--navy-800);
  margin-bottom: 32px;
}
.head--white{ color: #fff; }
.hl-green{ color: var(--green-500); }
.hl-navy{ color: var(--navy-600); }
.hl-blue{ color: var(--blue-300); }

.lead{
  font-size: 19px;
  line-height: 1.55;
  color: var(--slate);
  max-width: 780px;
  margin-bottom: 40px;
}
.lead strong{ color: var(--ink); font-weight: 700; }
.lead--center{ text-align: center; margin: 40px auto 0; }
.lead--white{ color: #CFE0F5; }
.lead--white strong{ color: #fff; }

@media (max-width: 760px){
  .section{ padding: 64px 20px; }
  .head{ font-size: 32px; margin-bottom: 22px; }
  .lead{ font-size: 16px; }
}

/* ===================== PROBLEMA ===================== */
.prob-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.prob-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  transition: all .2s;
}
.prob-card:hover{ transform: translateY(-4px); box-shadow: 0 24px 40px -16px rgba(8,37,74,.12); }
.prob-card__icon{
  font-size: 32px;
  margin-bottom: 16px;
}
.prob-card__title{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-800);
  margin-bottom: 12px;
  line-height: 1.3;
}
.prob-card__text{
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}

@media (max-width: 900px){ .prob-grid{ grid-template-columns: 1fr; } }

/* ===================== FEATURES ===================== */
.features-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.feature-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  transition: all .2s;
  display: flex;
  flex-direction: column;
}
.feature-card:hover{ transform: translateY(-4px); box-shadow: 0 24px 40px -16px rgba(8,37,74,.1); }
.feature-card__icon{
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-600));
  color: #fff;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-card__title{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--navy-800);
  margin-bottom: 10px;
}
.feature-card__text{
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.55;
  flex: 1;
}
.feature-card__text strong{ color: var(--ink); font-weight: 700; }
.feature-card__link{
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green-600);
}
.feature-card__link:hover{ color: var(--green-500); }
.feature-card--highlight{
  background: linear-gradient(160deg, var(--navy-700), var(--navy-600));
  color: #fff;
  border: none;
  grid-column: span 1;
}
.feature-card--highlight .feature-card__icon{
  background: rgba(255,255,255,.15);
}
.feature-card--highlight .feature-card__title{ color: #fff; }
.feature-card--highlight .feature-card__text{ color: #CFE0F5; }
.feature-card--highlight .feature-card__text strong{ color: #fff; }
.feature-card--highlight .feature-card__link{ color: var(--green-300); }

@media (max-width: 900px){ .features-grid{ grid-template-columns: 1fr; } }

/* APPS SHOWCASE */
.apps-showcase{
  margin-top: 80px;
  text-align: center;
}
.apps-showcase__title{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--navy-800);
  margin-bottom: 32px;
}
.apps-showcase__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.app-screenshot{
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 40px -16px rgba(8,37,74,.18);
}
.app-screenshot img{ display: block; width: 100%; }

@media (max-width: 900px){ .apps-showcase__grid{ grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

/* ===================== DIFERENCIAL (VS) ===================== */
.vs-grid{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 48px;
}
.vs-card{
  background: var(--navy-850);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 32px;
}
.vs-card__label{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-400);
  margin-bottom: 18px;
}
.vs-card__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 22px;
}
.vs-card__chips span{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #CFE0F5;
}
.vs-card__big{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 18px;
}
.vs-card__text{
  font-size: 15px;
  color: #94A6C2;
  line-height: 1.5;
}
.vs-card--good{
  background: linear-gradient(160deg, var(--navy-600), var(--navy-700));
  box-shadow: 0 30px 60px -30px rgba(30,111,208,.6);
}
.vs-card--good .vs-card__label{ color: var(--green-400); }
.vs-card--good .vs-card__text{ color: #CFE0F5; }
.vs-arrow{ color: var(--green-400); display: flex; justify-content: center; }

@media (max-width: 900px){
  .vs-grid{ grid-template-columns: 1fr; }
  .vs-arrow{ transform: rotate(90deg); }
}

/* ===================== WHITE LABEL ===================== */
.parties{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}
.party-chip{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-800);
  transition: all .15s;
}
.party-chip:hover{ border-color: var(--navy-600); transform: translateY(-1px); }
.pdot{ width: 10px; height: 10px; border-radius: 50%; }
.party-chip--more{
  background: transparent;
  border-style: dashed;
  color: var(--slate);
}
.footnote{
  font-size: 13px;
  color: var(--slate-400);
  margin-top: 24px;
}

/* ===================== MERCADO ===================== */
.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 48px 0 40px;
}
.stat{
  text-align: center;
  padding: 24px;
}
.stat__value{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--green-400);
  margin-bottom: 8px;
}
.stat__value span{
  font-size: 22px;
  vertical-align: super;
}
.stat__label{
  font-size: 14px;
  font-weight: 600;
  color: #CFE0F5;
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 760px){
  .stats-grid{ grid-template-columns: repeat(2, 1fr); }
  .stat__value{ font-size: 40px; }
}

/* ===================== BENEFÍCIOS ===================== */
.benefits-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.benefit-card{
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
}
.benefit-card__head{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--navy-800);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.benefit-card__dot{
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.benefit-card__dot--party{ background: var(--navy-600); }
.benefit-card__dot--voter{ background: var(--green-500); }
.benefit-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-list li{
  position: relative;
  padding-left: 28px;
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.benefit-list li::before{
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green-500);
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 760px){ .benefits-grid{ grid-template-columns: 1fr; } }

/* ===================== VISÃO ===================== */
.big-quote{
  font-family: var(--ff-display);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.35;
  text-align: center;
  color: var(--ink);
  margin-top: 32px;
  letter-spacing: -.015em;
}

@media (max-width: 760px){ .big-quote{ font-size: 24px; } }

/* ===================== CTA ===================== */
.cta-content{
  text-align: center;
}
.cta-logo{
  height: 36px;
  margin: 0 auto 28px;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.cta-title{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.cta-sub{
  font-size: 18px;
  line-height: 1.55;
  color: #AFC2DC;
  max-width: 640px;
  margin: 0 auto 36px;
}
.cta-buttons{
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 760px){ .cta-title{ font-size: 28px; } .cta-sub{ font-size: 16px; } }

/* ===================== FOOTER ===================== */
.footer{
  background: var(--navy-950);
  color: #94A6C2;
  padding: 56px 32px 28px;
}
.footer__main{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer__brand img{
  height: 28px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: .8;
}
.footer__brand p{
  font-size: 13px;
  line-height: 1.5;
  color: #94A6C2;
  max-width: 280px;
}
.footer__col-title{
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: .05em;
}
.footer__col a{
  display: block;
  font-size: 13.5px;
  color: #94A6C2;
  padding: 4px 0;
  transition: color .15s;
}
.footer__col a:hover{ color: #fff; }
.footer__bottom{
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  font-size: 12px;
  color: var(--slate-400);
  text-align: center;
}

@media (max-width: 900px){
  .footer__main{ grid-template-columns: 1fr 1fr; }
  .footer__brand{ grid-column: 1 / -1; }
}
