:root{
  --blue-deep: #001a75;
  --blue-main: #001e9f;
  --blue-light: #3d5fd9;
  --blue-lighter: #93a8ef;
  --blue-pale: #dbe2fa;
  --blue-ghost: #eef1fc;
  --text: #1a2038;
  --text-muted: #5a6180;
  --border: #e2e5f5;
  --white: #ffffff;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: 'Manrope', 'Segoe UI', system-ui, -apple-system, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height:1.5;
}
img{max-width:100%; display:block;}
a{color:inherit;}
.wrap{ max-width: 1180px; margin:0 auto; }
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  font-weight:800;
  letter-spacing:0.09em;
  text-transform:uppercase;
  color: var(--blue-main);
  margin-bottom: 14px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background: var(--blue-main);
  display:inline-block;
}

/* ---------- NAVBAR ---------- */
.navbar{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.navbar .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px 24px;
  max-width:1280px;
}
.navbar .wrap > a{ display:flex; align-items:center; }
.navbar img{ height:34px; display:block; }
.navlinks{
  display:flex; gap:32px; align-items:center;
  list-style:none;
}
.navlinks a{
  font-size:14.5px; font-weight:700; color: var(--text);
  text-decoration:none;
  transition: color 0.15s ease;
}
.navlinks a:hover{ color: var(--blue-main); }
.nav-cta{
  background: var(--blue-main);
  color:#fff !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight:700;
  font-size:14px;
}
.nav-cta:hover{ background: var(--blue-deep); }
.nav-toggle{ display:none; background:none; border:none; cursor:pointer; padding:4px; }
.nav-toggle span{ display:block; width:22px; height:2px; background:var(--text); margin:5px 0; }

.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding: 15px 28px;
  border-radius:10px;
  font-weight:700;
  font-size:15px;
  text-decoration:none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: none;
  cursor:pointer;
}
.btn-primary{
  background: var(--blue-main);
  color:#fff;
  box-shadow: 0 10px 26px -6px rgba(0,30,159,0.5);
}
.btn-primary:hover{ background:var(--blue-deep); transform:translateY(-2px); box-shadow: 0 14px 30px -6px rgba(0,30,159,0.6); }

/* ---------- FOOTER ---------- */
footer{
  background: var(--text);
  color: rgba(255,255,255,0.7);
  padding: 48px 24px 24px;
}
.footer-top{
  display:flex; justify-content:space-between; align-items:flex-start; flex-wrap:wrap; gap:32px;
  max-width:1180px; margin:0 auto 32px;
}
.footer-brand img{ height:32px; margin-bottom:14px; }
.footer-brand p{ font-size:13.5px; max-width:280px; line-height:1.6; }
.footer-cols{ display:flex; gap:64px; flex-wrap:wrap; }
.footer-col h4{ font-size:13px; text-transform:uppercase; letter-spacing:0.06em; color:#fff; margin-bottom:14px; }
.footer-col a{ display:block; font-size:13.5px; color:rgba(255,255,255,0.65); text-decoration:none; margin-bottom:10px; }
.footer-col a:hover{ color:#fff; }
.footer-bottom{
  max-width:1180px; margin:0 auto;
  padding-top:24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display:flex; justify-content:space-between; flex-wrap:wrap; gap:12px;
  font-size:12.5px;
}

@media (max-width: 900px){
  .navlinks{
    position:fixed; top:66px; left:0; right:0;
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:20px 24px;
    border-bottom:1px solid var(--border);
    display:none;
    gap:16px;
  }
  .navlinks.open{ display:flex; }
  .nav-toggle{ display:block; }
  .footer-top{ flex-direction:column; }
}

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:60;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.whatsapp-float svg{ width:32px; height:32px; }
.whatsapp-float:hover{
  transform: scale(1.08);
  box-shadow: 0 12px 28px -6px rgba(0,0,0,0.42);
  animation-play-state: paused;
}
@keyframes wa-pulse{
  0%, 100%{ box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35), 0 0 0 0 rgba(37,211,102,0.5); }
  50%{ box-shadow: 0 8px 24px -6px rgba(0,0,0,0.35), 0 0 0 10px rgba(37,211,102,0); }
}
@media (prefers-reduced-motion: reduce){
  .whatsapp-float{ animation:none; }
}
@media (max-width: 900px){
  .whatsapp-float{ right:16px; bottom:16px; width:54px; height:54px; }
  .whatsapp-float svg{ width:28px; height:28px; }
}
