/*
 * ARKHAM Videovigilancia — agregador CSS modular.
 * El orden de importación reproduce exactamente la cascada aprobada.
 */
@import url("./modules/01-foundation.css");
@import url("./modules/02-components.css");
@import url("./modules/03-sections.css");
@import url("./modules/04-responsive-overrides.css");
@import url("./modules/05-approved-overrides.css");


/* v1.3.69 — ÚNICA corrección de layout posterior: centrar OTROS SERVICIOS en pantallas anchas */
@media (min-width:1440px){
  #otros-servicios > .container{
    width:100%;
    max-width:1320px;
    margin-left:auto !important;
    margin-right:auto !important;
    box-sizing:border-box;
  }
}


/* v1.3.70 — CTA EVALUACIÓN GRATUITA dentro del menú móvil */
.mobile-eval-link{
  display:none;
}

@media (max-width:900px){
  #mainNav .mobile-eval-link{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    margin-top:10px !important;
    min-height:48px !important;
    padding:12px 16px !important;
    border:1px solid #5D9CF0 !important;
    border-radius:8px !important;
    background:#2F80ED !important;
    color:#fff !important;
    font-weight:800 !important;
    text-align:center !important;
    box-shadow:0 10px 28px rgba(47,128,237,.20) !important;
  }

  #mainNav .mobile-eval-link:hover,
  #mainNav .mobile-eval-link:focus-visible{
    filter:brightness(1.06);
  }
}
