
:root{
  --primary:#273cff;
  --primary-2:#1f32e8;
  --cyan:#27d3ff;
  --teal:#119b9b;
  --dark:#08184a;
  --text:#566079;
  --muted:#f4f6ff;
  --soft:#eaf0ff;
  --soft-teal:#eefafa;
  --line:#dce3f6;
  --white:#fff;
  --shadow:0 18px 50px rgba(8,24,74,.10);
  --radius:28px;
}

*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  color:var(--dark);
  background:#fff;
  -webkit-font-smoothing:antialiased;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1180px,90%);margin:auto}

.header-wrap{
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(220,223,245,.75);
  position:sticky;
  top:0;
  z-index:50;
}
.header{
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.logo-img{width:185px}
.nav{display:flex;align-items:center;gap:26px;font-size:14px;font-weight:800;color:#18245a}
.nav a:hover{color:var(--primary)}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:var(--primary);
  color:#fff;
  padding:14px 24px;
  border-radius:12px;
  font-size:13px;
  font-weight:900;
  letter-spacing:.8px;
  text-transform:uppercase;
  border:1px solid var(--primary);
  transition:.25s ease;
  box-shadow:0 10px 24px rgba(39,60,255,.20);
}
.btn:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(39,60,255,.28)}
.btn-outline{background:#fff;color:var(--primary);box-shadow:none}
.btn-teal{background:var(--teal);border-color:var(--teal);box-shadow:0 10px 24px rgba(17,155,155,.18)}

.page{padding:58px 0 0}

.hero{
  display:grid;
  grid-template-columns:52% 48%;
  gap:52px;
  align-items:center;
  margin-bottom:18px;
}
.eyebrow{
  color:var(--primary);
  font-size:14px;
  font-weight:900;
  letter-spacing:6px;
  text-transform:uppercase;
  margin-bottom:18px;
}
.hero h1{
  font-size:48px;
  line-height:1.1;
  letter-spacing:-1.3px;
  max-width:650px;
  margin-bottom:22px;
}
.hero p{
  color:var(--text);
  font-size:17px;
  line-height:1.6;
  max-width:560px;
  margin-bottom:28px;
}
.hero-image{
  border-radius:72px 0 0 72px;
  overflow:hidden;
  min-height:330px;
  box-shadow:var(--shadow);
}
.hero-image img{
  width:100%;
  height:100%;
  min-height:330px;
  object-fit:cover;
  object-position:center;
}

.intro-bar{
  background:var(--soft);
  border-radius:12px;
  padding:22px 34px;
  text-align:center;
  margin:10px auto 24px;
  color:var(--dark);
  font-size:17px;
  line-height:1.45;
  font-weight:800;
}

.plan-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
  max-width:1060px;
  margin:0 auto 22px;
}
.plan-block{
  border-radius:22px;
  padding:34px 34px 28px;
  display:grid;
  grid-template-columns:92px 1fr;
  gap:26px;
}
.plan-block.company{background:#edf3ff}
.plan-block.family{background:#eefafa}
.plan-icon{
  width:88px;
  height:88px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.company .plan-icon{background:#dfe7ff}
.family .plan-icon{background:#d9f3f1}
.plan-icon svg{width:50px;height:50px;stroke-width:1.8}
.company .plan-icon svg{stroke:var(--primary)}
.family .plan-icon svg{stroke:var(--teal)}
.plan-block h2{
  font-size:25px;
  line-height:1.15;
  margin-bottom:8px;
}
.plan-block h3{
  font-size:16px;
  line-height:1.35;
  margin-bottom:16px;
}
.company h3{color:var(--primary)}
.family h3{color:var(--teal)}
.plan-block p{
  color:var(--text);
  line-height:1.5;
  margin-bottom:15px;
  font-size:15px;
}
.check-list{
  list-style:none;
  display:grid;
  gap:9px;
  margin-bottom:22px;
  color:#4d5872;
  font-size:14px;
}
.check-list li{
  display:flex;
  gap:9px;
  align-items:flex-start;
}
.check-list i{
  width:16px;
  height:16px;
  flex-shrink:0;
}
.company .check-list i{color:var(--primary)}
.family .check-list i{color:var(--teal)}

.blue-band{
  background:linear-gradient(135deg,#2639ff 0%,#162cf0 100%);
  color:#fff;
  border-radius:22px;
  padding:26px 118px;
  margin:16px 0 36px;
  position:relative;
  overflow:hidden;
}
.blue-band::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-84px;
  width:220px;
  height:220px;
  border:28px solid rgba(7,22,71,.25);
  border-radius:50%;
}
.blue-band h2{
  font-size:29px;
  line-height:1.2;
}
.blue-band span{color:var(--cyan)}

.digital{
  display:grid;
  grid-template-columns:30% 70%;
  gap:34px;
  align-items:start;
  margin-bottom:34px;
}
.digital-copy h2{
  font-size:35px;
  line-height:1.08;
  letter-spacing:-.8px;
  margin-bottom:18px;
}
.digital-copy p{
  color:var(--text);
  line-height:1.55;
}
.digital-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.digital-card{
  background:#f1f4ff;
  border-radius:12px;
  padding:22px 20px;
  min-height:145px;
}
.digital-icon{
  width:48px;
  height:48px;
  border-radius:12px;
  background:#dfe7ff;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
}
.digital-icon svg{width:27px;height:27px;stroke:var(--primary)}
.digital-card h3{
  font-size:16px;
  margin-bottom:6px;
}
.digital-card p{
  color:var(--text);
  line-height:1.35;
  font-size:13.5px;
}

.partner-quote{
  display:grid;
  grid-template-columns:62% 38%;
  gap:24px;
  margin-bottom:14px;
}
.partner-card{
  display:grid;
  grid-template-columns:52% 48%;
  background:#eaf0ff;
  border-radius:22px;
  overflow:hidden;
}
.partner-copy{
  padding:36px 40px;
}
.partner-copy h2{
  font-size:30px;
  line-height:1.1;
  letter-spacing:-.6px;
  margin-bottom:18px;
}
.partner-copy p{
  color:var(--text);
  line-height:1.55;
  margin-bottom:24px;
}
.partner-actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
}
.partner-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.quote-card{
  background:#f0f3ff;
  border-radius:22px;
  padding:30px 32px;
}
.quote-card h2{
  font-size:26px;
  line-height:1.15;
  margin-bottom:10px;
}
.quote-card p{
  color:var(--text);
  font-size:14px;
  line-height:1.45;
  margin-bottom:18px;
}

.lead-form{
  display:grid;
  gap:12px;
}
.form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}
.field label{
  display:block;
  font-size:12px;
  font-weight:800;
  color:#536079;
  margin-bottom:5px;
}
input,select,textarea{
  width:100%;
  border:1px solid #d7def2;
  border-radius:7px;
  padding:11px 12px;
  font-family:Arial,Helvetica,sans-serif;
  font-size:13px;
  color:var(--dark);
  outline:none;
  background:#fff;
}
input:focus,select:focus,textarea:focus{
  border-color:var(--primary);
  box-shadow:0 0 0 3px rgba(39,60,255,.10);
}
.consent{
  display:flex;
  gap:9px;
  align-items:flex-start;
  color:#65708a;
  font-size:12px;
  line-height:1.35;
}
.consent input{
  width:16px;
  height:16px;
  margin-top:1px;
}

.final-band{
  background:linear-gradient(135deg,#071745 0%,#0b1b55 100%);
  color:#fff;
  border-radius:22px 22px 0 0;
  padding:34px 110px;
  position:relative;
  overflow:hidden;
}
.final-band::after{
  content:"";
  position:absolute;
  right:-38px;
  bottom:-90px;
  width:230px;
  height:230px;
  border:30px solid rgba(39,60,255,.28);
  border-radius:50%;
}
.final-band h2{
  font-size:28px;
  line-height:1.15;
  max-width:640px;
}
.final-band p{
  color:#dfe5ff;
  margin-top:8px;
  max-width:620px;
  line-height:1.45;
}

.footer{
  background:#eef0fb;
  padding:38px 0 22px;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr 1fr;
  gap:30px;
  font-size:14px;
}
.footer-logo{width:170px;margin-bottom:12px}
.footer strong{display:block;margin-bottom:8px}
.footer p{line-height:1.6;color:#23315f}
.footer a:hover{color:var(--primary)}
.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:30px;
  height:30px;
  border-radius:10px;
  background:#fff;
  border:1px solid var(--line);
  margin-right:8px;
}
.social-link svg{width:17px;height:17px}
.footer-bottom{
  margin-top:30px;
  padding-top:20px;
  border-top:1px solid var(--line);
  text-align:center;
  font-size:13px;
  color:#5f6780;
}
.footer-bottom p{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px;
  align-items:center;
}

.whatsapp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:80;
  background:#22c55e;
  color:#fff;
  width:58px;
  height:58px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 36px rgba(34,197,94,.35);
  transition:.25s ease;
}
.whatsapp-float:hover{transform:translateY(-4px) scale(1.03)}
.whatsapp-float svg{width:30px;height:30px;stroke:#fff}

@media(max-width:1000px){
  .nav{display:none}
  .hero,.plan-cards,.digital,.partner-quote,.partner-card,.footer-grid{
    grid-template-columns:1fr;
  }
  .hero{gap:30px}
  .hero h1{font-size:36px}
  .hero-image{border-radius:28px;min-height:270px}
  .hero-image img{min-height:270px}
  .plan-block{grid-template-columns:72px 1fr;padding:26px 22px}
  .plan-icon{width:70px;height:70px}
  .plan-icon svg{width:40px;height:40px}
  .blue-band,.final-band{padding:26px}
  .digital-grid{grid-template-columns:1fr 1fr}
  .partner-image img{max-height:320px}
}
@media(max-width:620px){
  .page{padding-top:36px}
  .digital-grid,.form-row{grid-template-columns:1fr}
  .hero h1,.digital-copy h2{font-size:31px}
  .blue-band h2,.final-band h2{font-size:24px}
  .logo-img{width:155px}
  .btn{width:100%;text-align:center}
}

/* MODAL DE RETORNO DO FORMULÁRIO */
.form-modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(8,24,74,.42);
  backdrop-filter:blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:22px;
}
.form-modal-overlay.active{display:flex}
.form-modal{
  width:min(520px,100%);
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:34px 30px;
  text-align:center;
  box-shadow:0 30px 90px rgba(8,24,74,.22);
  animation:modalIn .22s ease;
}
@keyframes modalIn{from{opacity:0;transform:translateY(12px) scale(.98)}to{opacity:1;transform:translateY(0) scale(1)}}
.form-modal-icon{
  width:68px;
  height:68px;
  border-radius:22px;
  margin:0 auto 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  font-weight:900;
  background:#eefafa;
  color:#16a34a;
}
.form-modal-icon.error{background:#fff1f2;color:#e11d48}
.form-modal h3{
  font-size:28px;
  line-height:1.15;
  letter-spacing:-.5px;
  margin-bottom:10px;
  color:var(--dark);
}
.form-modal p{
  color:var(--text);
  font-size:16px;
  line-height:1.5;
  margin-bottom:22px;
}
.form-modal .btn{
  width:auto;
  min-width:170px;
}
.form-feedback{
  display:none;
  margin-top:6px;
  padding:10px 12px;
  border-radius:10px;
  background:#eefafa;
  color:#119b9b;
  font-size:12px;
  font-weight:900;
}

