
/* SOON V24 — service page sticky header + dynamic contact actions */
.service-site-header{
  position:sticky;
  top:0;
  z-index:1200;
  width:100%;
  background:#fff;
  box-shadow:0 1px 0 rgba(18,20,24,.08);
}
.service-shell{
  width:min(1240px,calc(100% - 36px));
  margin-inline:auto;
}
.service-topbar{
  background:#0d0f12;
  color:#fff;
}
.service-topbar-inner{
  min-height:36px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  font-size:12px;
}
.service-topbar-inner a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
  white-space:nowrap;
}
.service-navbar{
  background:#fff;
}
.service-navbar-inner{
  min-height:72px;
  display:flex;
  align-items:center;
  gap:28px;
}
.service-logo{
  display:inline-flex;
  align-items:center;
  flex:0 0 auto;
}
.service-logo img{
  width:58px;
  height:58px;
  object-fit:contain;
  display:block;
}
.service-nav{
  display:flex;
  align-items:center;
  gap:26px;
  margin-inline-start:auto;
}
.service-nav a{
  color:#17191d;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  position:relative;
  padding:25px 0 23px;
  white-space:nowrap;
}
.service-nav a.active,
.service-nav a:hover{
  color:#ed1c24;
}
.service-nav a.active:after{
  content:"";
  position:absolute;
  inset-inline:0;
  bottom:15px;
  height:2px;
  background:#ed1c24;
  border-radius:99px;
}
.service-nav-cta{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:0 18px;
  border-radius:999px;
  background:#ed1c24;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  box-shadow:0 8px 22px rgba(237,28,36,.18);
}
.service-nav-cta:hover{
  background:#cc151c;
}

.service-main{
  padding-top:54px;
}
.service-actions{
  margin-top:26px;
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
}
.service-action{
  min-height:48px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  border-radius:999px;
  padding:0 21px;
  text-decoration:none;
  font-weight:900;
  border:1px solid transparent;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease;
}
.service-action:hover{
  transform:translateY(-1px);
}
.service-action-primary{
  background:#ed1c24;
  color:#fff;
  box-shadow:0 10px 24px rgba(237,28,36,.16);
}
.service-action-call{
  background:#fff;
  color:#17191d;
  border-color:#dfe3e8;
}
.service-action-whatsapp{
  background:#16a34a;
  color:#fff;
  box-shadow:0 10px 24px rgba(22,163,74,.15);
}
.service-action-icon{
  width:22px;
  height:22px;
  display:inline-grid;
  place-items:center;
  flex:0 0 22px;
}
.service-action-icon svg{
  width:21px;
  height:21px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.service-whatsapp-note{
  margin:11px 0 0;
  color:#757b84;
  font-size:12px;
  line-height:1.7;
}
.service-whatsapp-note strong{
  color:#34383f;
}

@media(max-width:900px){
  .service-shell{
    width:calc(100% - 28px);
  }
  .service-navbar-inner{
    min-height:64px;
    gap:14px;
  }
  .service-logo img{
    width:50px;
    height:50px;
  }
  .service-nav{
    display:none;
  }
  .service-nav-cta{
    margin-inline-start:auto;
    min-height:40px;
    padding:0 15px;
    font-size:13px;
  }
  .service-main{
    padding-top:36px;
  }
}

@media(max-width:640px){
  .service-shell{
    width:calc(100% - 22px);
  }
  .service-topbar-inner{
    min-height:48px;
    flex-direction:column;
    justify-content:center;
    gap:2px;
    text-align:center;
    padding:6px 0;
    font-size:11px;
  }
  .service-navbar-inner{
    min-height:60px;
  }
  .service-logo img{
    width:46px;
    height:46px;
  }
  .service-nav-cta{
    min-height:38px;
    padding:0 13px;
    font-size:12px;
  }
  .service-actions{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
  }
  .service-action{
    width:100%;
    min-height:46px;
    padding:0 13px;
    font-size:14px;
  }
  .service-action-primary{
    grid-column:1/-1;
  }
  .service-whatsapp-note{
    font-size:11px;
  }
}
