:root{
  --dark:#071426;
  --text:#111827;
  --muted:#5f6b7a;
  --line:#dfe6f0;
  --soft:#f5f7fb;
  --blue:#1457e6;
  --blue2:#0d43bd;
  --green:#16a34a;
  --card:#ffffff;
  --shadow:0 8px 24px rgba(15,23,42,.075);
}

*{box-sizing:border-box}

html,body{
  margin:0;
  padding:0;
}

body{
  background:#f5f7fb;
  color:var(--text);
  font-family:Arial, Helvetica, sans-serif;
}

a{
  color:inherit;
  text-decoration:none;
}

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

.top-campaign{
  background:#071426;
  color:#fff;
  font-size:14px;
  font-weight:800;
}

.top-campaign .container{
  min-height:42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.top-campaign strong{
  color:#65d9ff;
}

.top-campaign a{
  background:#fff;
  color:#071426;
  padding:7px 14px;
  border-radius:4px;
  font-size:13px;
  font-weight:900;
  white-space:nowrap;
}

.site-header{
  background:#fff;
  border-bottom:1px solid #e3e9f2;
}

.nav{
  min-height:104px;
  display:grid;
  grid-template-columns:auto 1fr auto;
  gap:22px;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  color:#111827;
  font-size:22px;
  font-weight:950;
  letter-spacing:-.3px;
  white-space:nowrap;
}

.logo img{
  width:64px;
  height:64px;
  object-fit:contain;
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:6px;
  padding:5px;
}

.menu{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  flex-wrap:wrap;
}

.menu a{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 12px;
  color:#182230;
  border-radius:4px;
  font-size:15px;
  font-weight:850;
}

.menu a:hover{
  background:#eef4ff;
  color:#1457e6;
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
  white-space:nowrap;
}

.phone{
  color:#111827;
  font-weight:950;
  font-size:15px;
}

.btn{
  min-height:46px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:5px;
  font-size:14px;
  font-weight:950;
  border:1px solid transparent;
  cursor:pointer;
}

.btn-blue{
  background:#1457e6;
  color:#fff;
  box-shadow:0 8px 20px rgba(20,87,230,.17);
}

.btn-green{
  background:#16a34a;
  color:#fff;
}

.btn-light{
  background:#fff;
  color:#111827;
  border-color:#d9e1ed;
}

.hero-carousel-wrap{
  padding:26px 0 0;
}

.hero-carousel{
  position:relative;
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:6px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-slide{
  display:none;
}

.hero-slide.active{
  display:block;
}

.hero-banner-link{
  display:block;
}

.hero-slide img{
  display:block;
  width:100%;
  height:auto;
  max-height:430px;
  object-fit:cover;
}

.banner-slide-fit img{
  object-fit:contain;
  background:#fff;
}

.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:4;
  width:42px;
  height:58px;
  border:1px solid rgba(17,24,39,.14);
  background:rgba(255,255,255,.92);
  color:#111827;
  font-size:34px;
  font-weight:500;
  cursor:pointer;
  border-radius:4px;
  box-shadow:0 8px 18px rgba(15,23,42,.16);
}

.carousel-btn.prev{left:14px}
.carousel-btn.next{right:14px}

.carousel-dots{
  position:absolute;
  left:0;
  right:0;
  bottom:14px;
  z-index:5;
  display:flex;
  justify-content:center;
  gap:8px;
}

.carousel-dot{
  width:28px;
  height:5px;
  border:0;
  border-radius:2px;
  background:rgba(255,255,255,.65);
  cursor:pointer;
}

.carousel-dot.active{
  background:#1457e6;
}

.lead-row{
  padding:22px 0 0;
}

.lead-box{
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:6px;
  box-shadow:var(--shadow);
  padding:14px;
  display:grid;
  grid-template-columns:1fr 1fr 1fr auto;
  gap:10px;
  align-items:center;
}

.lead-box input{
  min-height:48px;
  width:100%;
  border:1px solid #d7e0eb;
  background:#f9fbfe;
  border-radius:4px;
  padding:12px 13px;
  font-weight:750;
  color:#111827;
  outline:0;
}

.lead-box input:focus{
  border-color:#1457e6;
  box-shadow:0 0 0 3px rgba(20,87,230,.10);
}

.trust-row{
  padding:22px 0 0;
}

.trust-box{
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:6px;
  padding:16px;
  box-shadow:var(--shadow);
}

.trust-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:13px;
}

.trust-head b{
  color:#111827;
  font-size:15px;
}

.trust-head span{
  color:#667085;
  font-size:13px;
  font-weight:750;
}

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

.trust-item{
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f8fafc;
  border:1px solid #e3e9f2;
  border-radius:4px;
  color:#1f2937;
  font-size:13px;
  font-weight:950;
}

.feature-row{
  padding:22px 0 0;
}

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

.feature-card{
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:6px;
  padding:18px;
  display:flex;
  gap:13px;
  align-items:flex-start;
  box-shadow:var(--shadow);
}

.feature-num{
  width:42px;
  height:42px;
  flex:0 0 auto;
  border-radius:4px;
  background:#eef4ff;
  color:#1457e6;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:950;
}

.feature-card b{
  display:block;
  color:#111827;
  font-size:15px;
  margin-bottom:5px;
}

.feature-card span{
  display:block;
  color:#667085;
  font-size:13px;
  line-height:1.45;
  font-weight:650;
}

.section{
  padding:48px 0 0;
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:18px;
}

.section-head h2{
  margin:0;
  max-width:760px;
  color:#111827;
  font-size:38px;
  line-height:1.13;
  letter-spacing:-.7px;
  font-weight:950;
}

.section-head p{
  margin:0;
  max-width:520px;
  color:#667085;
  line-height:1.6;
  font-size:15px;
  font-weight:650;
}

.package-switch{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px;
  margin-bottom:18px;
}

.package-switch a{
  display:block;
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:6px;
  padding:17px 20px;
  color:#111827;
  font-weight:950;
  box-shadow:var(--shadow);
}

.package-switch span{
  display:block;
  color:#667085;
  font-size:13px;
  margin-top:4px;
  font-weight:700;
}

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

.package{
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:6px;
  padding:22px;
  box-shadow:var(--shadow);
}

.package.popular{
  border:2px solid #1457e6;
  box-shadow:0 14px 34px rgba(20,87,230,.13);
}

.package.global{
  background:#fff9e6;
  border-color:#ebd17a;
}

.badge{
  display:inline-flex;
  min-height:28px;
  align-items:center;
  justify-content:center;
  border-radius:4px;
  padding:6px 10px;
  background:#eef4ff;
  color:#1457e6;
  font-size:12px;
  font-weight:950;
  margin-bottom:12px;
}

.package h3{
  margin:0 0 8px;
  color:#111827;
  font-size:24px;
  font-weight:950;
}

.package p{
  min-height:66px;
  margin:0 0 15px;
  color:#667085;
  font-size:14px;
  line-height:1.55;
  font-weight:650;
}

.price{
  margin:0 0 14px;
}

.price strong{
  color:#111827;
  font-size:29px;
  letter-spacing:-.8px;
}

.price span{
  color:#667085;
  font-size:13px;
  font-weight:850;
}

.package ul{
  margin:17px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.package li{
  display:flex;
  gap:8px;
  color:#344054;
  font-size:13px;
  line-height:1.45;
  font-weight:750;
}

.check{
  width:19px;
  height:19px;
  border-radius:3px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 auto;
  background:#ecfdf3;
  color:#16a34a;
  font-size:12px;
  font-weight:950;
}

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

.module{
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:6px;
  padding:22px;
  box-shadow:var(--shadow);
}

.module b{
  display:block;
  color:#111827;
  font-size:18px;
  margin-bottom:8px;
}

.module p{
  margin:0;
  color:#667085;
  font-size:14px;
  line-height:1.6;
  font-weight:650;
}

.cta{
  background:#071426;
  color:#fff;
  border-radius:6px;
  padding:30px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
  box-shadow:0 14px 36px rgba(7,20,38,.18);
}

.cta h2{
  color:#fff;
  margin:0 0 8px;
  font-size:30px;
}

.cta p{
  margin:0;
  color:rgba(255,255,255,.74);
  line-height:1.6;
}

.footer{
  margin-top:54px;
  background:#071426;
  color:#fff;
  padding:34px 0;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:24px;
  align-items:start;
}

.footer b{
  display:block;
  margin-bottom:7px;
}

.footer p,
.footer a{
  color:rgba(255,255,255,.72);
  line-height:1.6;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  justify-content:flex-end;
}

.floating-social-left{
  position:fixed;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  z-index:9999;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.floating-social-item{
  width:46px;
  height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:1px solid #dfe6f0;
  border-radius:4px;
  box-shadow:0 8px 20px rgba(15,23,42,.14);
  color:#111827;
  transition:.15s ease;
}

.floating-social-item:hover{
  transform:translateX(3px);
}

.floating-social-item svg{
  width:24px;
  height:24px;
  fill:currentColor;
}

.floating-social-item.whatsapp{color:#16a34a}
.floating-social-item.instagram{color:#e1306c}
.floating-social-item.youtube{color:#ff0000}

@media(max-width:1120px){
  .nav{
    grid-template-columns:1fr;
    gap:12px;
    padding:14px 0 18px;
  }

  .menu{
    justify-content:flex-start;
  }

  .nav-actions{
    justify-content:flex-start;
  }

  .trust-grid,
  .feature-grid,
  .package-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:760px){
  .top-campaign .container{
    display:block;
    padding:9px 0;
    text-align:center;
  }

  .top-campaign a{
    display:inline-flex;
    margin-top:7px;
  }

  .logo img{
    width:56px;
    height:56px;
  }

  .menu{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .menu a{
    background:#f8fafc;
    border:1px solid #dfe6f0;
  }

  .nav-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .hero-slide img{
    max-height:none;
  }

  .lead-box,
  .trust-grid,
  .feature-grid,
  .section-head,
  .package-switch,
  .package-grid,
  .module-grid,
  .cta,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .section-head{
    display:block;
  }

  .section-head h2{
    font-size:30px;
  }

  .section-head p{
    margin-top:9px;
  }

  .package p{
    min-height:auto;
  }

  .footer-links{
    justify-content:flex-start;
  }

  .floating-social-left{
    display:none;
  }
}
