:root{
  --blue:#1e6fff;
  --blue-dark:#1249c6;
  --blue-soft:#eaf1ff;
  --text:#0b1b3a;
  --muted:#5b6b8c;
  --border:#dbe6ff;
  --bg:#000207;
  --card:#ffffff;
  --shadow:0 20px 50px rgba(18,73,198,.15);
  --radius:18px;
}

/* Base */




/* Card */
.card-ne{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  padding:32px;
}

/* Header */


.header span{
  display:inline-block;
  background:var(--blue-soft);
  color:var(--blue-dark);
  padding:6px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
}

.header h1{
  /* margin:14px 0 8px; */
  font-size:36px;
  font-weight:800;
}

.header h1 b{
  color:var(--blue);
}

.header p{
  margin:0;
  color:var(--muted);
  font-size:15px;
}

/* Grid */
.grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

@media(min-width:768px){
  .grid{
    grid-template-columns:330px 330px 350px;
  }
}

/* Contact box */
.box{
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  background:#ffffff;
}

.box h3{
  margin:0 0 10px;
  font-size: 14px;
  font-weight:700;
  color:var(--muted);
}

.number{
  font-size:24px;
  font-weight:800;
  color:var(--text);
}

/* WhatsApp CTA */
.whatsapp{
  margin:26px 0;
  background:linear-gradient(180deg,#1e6fff,#1249c6);
  border-radius:18px;
  padding:22px;
  color:#fff;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}

.whatsapp h2{
  margin:0;
  font-size:22px;
}

.whatsapp p{
  margin:4px 0 0;
  font-size:14px;
  opacity:.9;
  color: #fff;
}

.btn2{
  background:#4f49fd;
  color:var(--white);
  border:none;
  border-radius:999px;
  padding:12px 22px;
  font-size:14px;
  font-weight:700;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.15);
  transition:.2s ease;
}

.btn:hover{
  transform:translateY(-2px);
}

/* Footer */
.footer2{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  background: #ffffff;
}

@media(min-width:768px){
  .footer2{
    grid-template-columns:1fr 1fr;
  }
}

.info{
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px 18px;
  background:#fff;
}

.info span{
  display:block;
  font-size:12px;
  font-weight:700;
  color:var(--muted);
  margin-bottom:6px;
  text-transform:uppercase;
}

.info div{
  font-size:16px;
  font-weight:700;
}