/* ========================= TOKENS / BASE ========================= */
:root{
  --mp-blue:#0B63E5;
  --mp-blue-700:#0A53C5;
  --mp-ink:#0f172a;
  --mp-muted:#667085;
  --mp-line:#e5e7eb;
  --mp-bg:#f8fafc;
  --radius:16px;
  --shadow:0 10px 30px rgba(2,8,23,.08);
}

.page-frota{
  background:#fff;
}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 20px;
}

.eyebrow{
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:800;
  font-size:12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:12px 18px;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  border:none;
  transition:.25s ease;
}

.btn-primary{
  background::#0A53C5;
  color:#fff;
}

.btn-primary:hover{
  background:var(--mp-blue-700);
}

.btn-outline{
  border:2px solid var(--mp-blue);
  color:var(--mp-blue);
  background:#fff;
}

.btn-outline:hover{
  background:var(--mp-blue);
  color:#fff;
}

.btn-large{
  padding:14px 22px;
}

/* ========================= HERO ========================= */

.bg-hero--planos{
  padding:0;
}

.frota-hero{
  position:relative;
  isolation:isolate;
}

.frota-hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg,rgba(11,99,229,.7),rgba(2,8,23,.5)),
    var(--hero);
  background-size:cover;
  background-position:center;
  z-index:-1;
}

.frota-hero__inner{
  padding:90px 0 72px;
  color:#fff;
  text-align:center;
}

.page-hero__title{
  font-size:clamp(28px,4.5vw,44px);
  line-height:1.15;
  margin:0 0 12px;
}

.page-hero__title span{
  color:#fff;
}

.frota-hero__subtitle{
  max-width:780px;
  margin:0 auto;
  opacity:.95;
  font-size:15px;
}

.frota-hero__cta{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:28px;
  flex-wrap:wrap;
}

/* ========================= TRUST STRIP ========================= */

.frota-trust{
  background:#fff;
  border-top:1px solid var(--mp-line);
  border-bottom:1px solid var(--mp-line);
}

.frota-trust__grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  padding:18px 0;
}

.trust-kpi{
  display:grid;
  place-items:center;
  text-align:center;
}

.trust-kpi strong{
  font-size:22px;
  color:var(--mp-ink);
}

.trust-kpi span{
  color:var(--mp-muted);
  font-size:14px;
}

/* ========================= SEGURANÇA ========================= */

.frota-security{
  padding:64px 0 56px;
}

.frota-security__grid{
  display:grid;
  grid-template-columns: minmax(0,1.2fr) minmax(0,1fr);
  gap:32px;
  align-items:start;
}

.security-copy p{
  color:var(--mp-muted);
  margin-bottom:10px;
}

.security-features{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.security-item{
  background:#fff;
  border:1px solid var(--mp-line);
  border-radius:var(--radius);
  padding:14px 16px;
  box-shadow:var(--shadow);
}

.security-item h3{
  margin:0 0 4px;
  font-size:16px;
}

.security-item p{
  margin:0;
  font-size:14px;
  color:var(--mp-muted);
}

/* ========================= BENEFÍCIOS-CHAVE ========================= */

.section-head{
  text-align:center;
  margin:56px 0 24px;
}

.section-head h2,
.section-head h1{
  font-size:clamp(24px,3.5vw,36px);
  margin:0 0 6px;
}

.section-head h2 span,
.section-head h1 span{
  color:var(--mp-blue);
}

.section-head p{
  color:var(--mp-muted);
  margin:0;
}

.frota-benefits{
  padding:24px 0 56px;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.benefit-card{
  background:#fff;
  border:1px solid var(--mp-line);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow);
}

.benefit-card__icon{
  width:44px;
  height:44px;
  object-fit:contain;
  margin-bottom:10px;
}

.benefit-card h3{
  margin:6px 0 8px;
  font-size:16px;
}

.benefit-card p{
  color:var(--mp-muted);
  margin:0;
  font-size:14px;
}

/* ========================= VANTAGENS PLANO RASTREADOR + PROTEÇÃO ========================= */

.frota-plan-advantages{
  background: linear-gradient(180deg,#fff 0%,var(--mp-bg) 100%);
  padding:72px 0 80px;
  position:relative;
  overflow:hidden;
}

.frota-plan-advantages::before{
  content:"";
  position:absolute;
  top:0;
  left:50%;
  transform:translateX(-50%);
  width:80%;
  height:220px;
  background:radial-gradient(circle at center,rgba(11,99,229,.1) 0%,transparent 80%);
  z-index:0;
}

.frota-plan-advantages .section-head--center{
  text-align:center;
  max-width:800px;
  margin:0 auto 50px;
  position:relative;
  z-index:1;
}

.frota-plan-advantages .section-head--center h2{
  margin-bottom:8px;
}

.frota-plan-advantages .section-head--center p{
  margin:0;
  color:var(--mp-muted);
  font-size:15px;
}

.advantages-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(420px,1fr));
  gap:28px 40px;
  max-width:1080px;
  margin:0 auto 40px;
  position:relative;
  z-index:1;
}

.advantage{
  display:flex;
  align-items:flex-start;
  gap:16px;
  background:#fff;
  border-radius:var(--radius);
  padding:22px 26px;
  border:1px solid var(--mp-line);
  box-shadow:0 6px 18px rgba(11,99,229,.05);
  transition:.3s ease;
}

.advantage:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 26px rgba(11,99,229,.12);
  border-color:var(--mp-blue);
}

.advantage .icon{
  flex-shrink:0;
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--mp-blue),var(--mp-blue-700));
  color:#fff;
  font-size:26px;
  box-shadow:0 4px 12px rgba(11,99,229,.3);
}

.advantage .text h3{
  margin:0 0 4px;
  font-size:16px;
}

.advantage .text p{
  margin:0;
  font-size:14px;
  color:var(--mp-muted);
}

.advantages-cta{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
}

/* ========================= CTA INTERMEDIÁRIA ========================= */

.frota-mid-cta{
  background:var(--mp-blue);
  padding:32px 0;
}

.mid-cta__box{
  display:flex;
  justify-content:center;
  gap:18px;
  flex-wrap:wrap;
}

.frota-mid-cta .btn-outline{
  border-color:#fff;
  color:var(--mp-blue);
}

.frota-mid-cta .btn-outline:hover{
  background:#1500d1;
  color:#fff;}

/* ========================= PLANOS DE FROTA ========================= */

.frota-plans{
  background:var(--mp-bg);
  padding:30px 0 8px;
}

/* se o include "plano-frota.php" usar essas classes, mantemos: */
.plans-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:8px;
}

.plan-card{
  background:#fff;
  border:1px solid var(--mp-line);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  box-shadow:var(--shadow);
}

.plan-card--featured{
  outline:2px solid var(--mp-blue);
  transform:scale(1.01);
}

.plan-card__head{
  background:var(--mp-blue);
  color:#fff;
  padding:16px;
}

.plan-card__head--plain{
  background:#fff;
  color:var(--mp-ink);
  border-bottom:1px solid var(--mp-line);
}

.badge{
  display:inline-block;
  background:#eef2ff;
  color:#475467;
  border-radius:999px;
  padding:6px 10px;
  font-weight:700;
  font-size:12px;
}

.badge--inverse{
  background:rgba(255,255,255,.16);
  color:#fff;
  border:1px solid rgba(255,255,255,.24);
}

.plan-name{
  margin:8px 0 0;
  font-size:22px;
}

.plan-list{
  list-style:none;
  margin:0;
  padding:14px 16px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}

.plan-list li{
  padding:8px 0;
  border-bottom:1px dashed var(--mp-line);
}

.plan-list li:last-child{
  border-bottom:none;
}

.plan-card__foot{
  padding:14px 16px;
  border-top:1px solid var(--mp-line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.price span{
  color:#475467;
  font-size:12px;
  margin-right:6px;
}

.price strong{
  font-size:20px;
}

.price em{
  font-style:normal;
  color:#667085;
  font-size:12px;
}

.plan-note{
  color:#667085;
  text-align:center;
  margin-top:12px;
}

/* ========================= FEATURE BLOCK ========================= */

.frota-feature{
  padding:52px 0 64px;
}

.feature-grid{
  display:grid;
  grid-template-columns:480px 1fr;
  gap:28px;
  align-items:center;
}

.feature-img{
  width:100%;
  height:320px;
  object-fit:cover;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.feature-copy p{
  color:var(--mp-muted);
}

.check-list{
  list-style:none;
  margin:12px 0 18px;
  padding:0;
  display:grid;
  gap:6px;
}

.check-list li::before{
  content:'✓';
  color:var(--mp-blue);
  font-weight:800;
  margin-right:8px;
}

/* ========================= FAQ ========================= */

.frota-faq{
  background:#fff;
  padding:40px 0 56px;
}

.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.faq-item{
  background:#fff;
  border:1px solid var(--mp-line);
  border-radius:var(--radius);
  padding:16px 18px;
  box-shadow:var(--shadow);
}

.faq-item h4{
  margin:0 0 6px;
}

.faq-item p{
  margin:0;
  font-size:14px;
  color:var(--mp-muted);
}

/* ========================= CTA FINAL ========================= */

.frota-cta{
  background:linear-gradient(90deg,#0B63E5,#0A53C5);
  padding:26px 0;
  color:#fff;
}

.cta-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.cta-copy h3{
  margin:0 0 4px;
}

.cta-copy p{
  margin:0;
  opacity:.95;
}

/* ========================= RESPONSIVO ========================= */

@media (max-width:992px){
  .frota-security__grid{
    grid-template-columns:1fr;
  }
  .benefit-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .feature-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .plans-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width:768px){
  .frota-trust__grid{
    grid-template-columns:repeat(2,1fr);
  }
  .faq-grid{
    grid-template-columns:1fr;
  }
  .advantages-list{
    grid-template-columns:1fr;
    gap:18px;
  }
}

@media (max-width:576px){
  .benefit-grid{
    grid-template-columns:1fr;
  }
  .frota-hero__inner{
    padding:72px 0 56px;
  }
}
