/* =========================
   BASE
   ========================= */
body { background: #fff; }

/* Evita scroll horizontal raro */
/* Evita scroll horizontal sin romper dropdowns */
body { overflow-x: hidden; }
.container { overflow-x: visible; }


/* Imágenes responsivas */
img { max-width: 100%; height: auto; }

/* Listas dentro de cards */
.card-body ul { margin: 0; padding-left: 1.1rem; }
.card-body li { margin: .25rem 0; }


/* =========================
   TITULOS SECCIONES (banner azul)
   ========================= */
.hsgy-section-head{
  border-bottom: 2px solid #0b3aa4;
  position: relative;
  padding-bottom: 10px;
}

.hsgy-section-title{
  display: inline-block;
  background: #0b3aa4;
  color: #fff;
  font-weight: 700;
  padding: 10px 18px;
  border-top-right-radius: 10px;
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%);
}


/* =========================
   NOTICIAS (home + listado)
   ========================= */
.news-item{
  align-items: flex-start;
  padding-bottom: 18px;
  margin-bottom: 18px !important;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

/* Thumbnail fijo */
.news-thumb{
  flex: 0 0 320px;
  max-width: 320px;
}

.news-thumb img{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.news-thumb-placeholder{
  width: 100%;
  height: 180px;
  background: #f0f0f0;
  border: 1px dashed rgba(0,0,0,.15);
  border-radius: 4px;
}

.news-body{ flex: 1; min-width: 0; }

.news-date{
  font-size: .9rem;
  opacity: .85;
  margin-bottom: 8px;
}

.news-title{
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px 0;
}

.news-title a{
  color: #111;
  text-decoration: none;
}
.news-title a:hover{ text-decoration: underline; }

.news-excerpt{
  font-size: .95rem;
  line-height: 1.55;
  opacity: .85;
}

/* Responsive */
@media (max-width: 992px){
  .news-item{ flex-direction: column; }
  .news-thumb{ flex: 0 0 auto; max-width: 100%; width: 100%; }
  .news-thumb img,
  .news-thumb-placeholder{ height: 220px; }
}


/* =========================
   NOTICIA (detalle)
   ========================= */
.hsgy-article-card{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  padding: 18px;
}

.hsgy-article-title{
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.hsgy-article-meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  font-size: .95rem;
  opacity: .85;
  margin-bottom: 14px;
}

/* Imagen principal elegante */
.hsgy-article-hero{
  max-height: 420px;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f4f6;
  margin-bottom: 16px;
}

.hsgy-article-hero img{
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 992px){
  .hsgy-article-hero{ max-height: 260px; }
  .hsgy-article-hero img{ height: 260px; }
}

.hsgy-article-excerpt{
  font-weight: 600;
  opacity: .9;
}

.hsgy-article-content{
  line-height: 1.7;
  font-size: 1rem;
}

/* Sidebar detalle */
.hsgy-sidebox{
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 8px;
  padding: 14px;
}

.hsgy-sidebox-title{
  font-weight: 800;
  margin-bottom: 10px;
}

.hsgy-sidebox-list{
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}


/* =========================
   SIDEBAR BANNERS (Institucional / Interés)
   NO RECORTE: la imagen se adapta al cuadro
   ========================= */
.service-panel{
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
}

/* cuadro */
.service-panel .service-banner{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  height: 100px !important;
  min-height: 100px !important;
  max-height: 100px !important;

  border: 2px solid #0b3aa4 !important;
  padding: 6px !important;
  margin: 0 !important;

  background: #fff !important;
  overflow: hidden !important;
  text-decoration: none;
}

/* imagen se ajusta sin recortar */
.service-panel .service-banner img{
  max-width: 100% !important;
  max-height: 100% !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* evita márgenes heredados internos */
.service-panel .service-banner *{
  margin: 0 !important;
  padding: 0 !important;
}

/* ===== Canal Youtube ===== */
.yt-section{
  margin: 20px 0 10px;
  background: #1f1f1f;
  border-top: 2px solid #0b4ecb;
  padding: 18px 0 18px; /* ahora el padding va en la sección, no en ytCarousel */
}

.yt-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 0 0 10px; /* ya no uses 10px 14px */
}
.yt-title{
  background:#0b4ecb;
  color:#fff;
  font-weight:700;
  padding: 8px 14px;
  border-radius: 2px;
  font-size: 18px;
}

.yt-nav button{
  width: 30px;
  height: 26px;
  border: 1px solid #fff;
  background: transparent;
  color:#fff;
  font-size: 18px;
  line-height: 22px;
  cursor:pointer;
  margin-left: 6px;
}

.yt-carousel{
  padding: 6px 14px 0;
}

.yt-card{
  position: relative;
  display:block;
  height: 150px;
  overflow:hidden;
  background:#000;
}

.yt-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  filter: brightness(0.85);
}

.yt-play{
  position:absolute;
  top:50%;
  left:50%;
  width:56px;
  height:56px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
}

.yt-play:after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-35%,-50%);
  width:0; height:0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid rgba(255,255,255,0.95);
}

.yt-caption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding: 10px 12px;
  color:#fff;
  font-weight:700;
  text-transform: uppercase;
  font-size: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0));
}

.yt-empty{
  color:#ddd;
  padding: 12px 14px;
}

/* Modal */
.yt-modal{
  position: fixed;
  inset: 0;
  z-index: 9999;
}
.yt-modal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.75);
}
.yt-modal-box{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  width: min(900px, 92vw);
  background:#000;
  border-radius: 8px;
  overflow:hidden;
}
.yt-modal-close{
  position:absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  border:0;
  background: rgba(255,255,255,0.12);
  color:#fff;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor:pointer;
}
.yt-modal-frame{
  position: relative;
  padding-top: 56.25%;
}
.yt-modal-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}
/* Botón "Ver todos los videos" */
.yt-more{
  padding: 10px 14px 0;
  text-align: right;
}
.yt-more-btn{
  display: inline-block;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,0.85);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
}
.yt-more-btn:hover{
  text-decoration: none;
  opacity: .9;
}
/* ===== FOOTER estilo HSGY (como imagen) ===== */
.hsgy-footer{
  background:#000;
  color:#fff;
}

.hsgy-footer-title{
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .3px;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.hsgy-footer-underline{
  width: 32px;
  height: 2px;
  background: #e21b1b;
  margin: 0 0 18px;
}

.hsgy-footer-text{
  color:#fff;
  opacity:.95;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  max-width: 270px;
}

.hsgy-footer-list{
  list-style:none;
  padding:0;
  margin:0;
}

.hsgy-footer-list li{
  margin: 6px 0;
}

.hsgy-footer-link{
  color:#fff;
  text-decoration:none;
  font-size: 14px;
  opacity:.92;
}

.hsgy-footer-link:hover{
  opacity: 1;
  text-decoration: underline;
}

.hsgy-footer-sep{
  border-top: 1px solid rgba(255,255,255,.18);
  margin: 22px 0 18px;
}

.hsgy-footer-center{
  text-align:center;
  padding: 10px 0 0;
}

.hsgy-footer-logo img{
  width: 72px;
  height: auto;
  display:inline-block;
  margin: 6px 0 14px;
}

.hsgy-footer-social{
  display:flex;
  justify-content:center;
  gap: 10px;
  margin-bottom: 16px;
}

.hsgy-social-btn{
  width: 44px;
  height: 36px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.18);
  color:#fff;
  text-decoration:none;
  border-radius: 0;
}

.hsgy-social-btn:hover{
  background: rgba(255,255,255,.28);
  color:#fff;
}

.hsgy-footer-copy{
  font-size: 13px;
  opacity: .85;
  padding-bottom: 8px;
}
/* Carrusel videos sin Owl: scroll horizontal */
#ytCarousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
}

#ytCarousel .yt-card{
  scroll-snap-align: start;
}
/* Carrusel YouTube sin Owl (scroll horizontal) */
#ytCarousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 18px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;

  padding: 6px 14px 0;   /* respeta tu layout */
  scrollbar-width: thin; /* Firefox */
}

#ytCarousel .yt-card{
  scroll-snap-align: start;
}
/* =========================
   YT CAROUSEL (SIN OWL) - estilo como imagen B
   ========================= */

/* Contenedor: fila horizontal con 3 items visibles */
#ytCarousel{
  display: grid;
  grid-auto-flow: column;
  gap: 18px;

  /* 3 visibles en escritorio */
  grid-auto-columns: calc((100% - 36px) / 3);

  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  padding: 6px 14px 0;

  /* ocultar scrollbar (look limpio como B) */
  scrollbar-width: none;      /* Firefox */
}
#ytCarousel::-webkit-scrollbar{
  display: none;              /* Chrome/Edge */
}

/* cada tarjeta “snap” */
#ytCarousel .yt-card{
  scroll-snap-align: start;
}

/* Ajuste de altura para verse como la web antigua (más grande que 150px) */
.yt-card{
  height: 240px;              /* prueba 240; si quieres más, 260 */
  border-radius: 0;
}

/* imagen igual de alta que la tarjeta */
.yt-card img{
  height: 100%;
}
@media (max-width: 992px){
  #ytCarousel{
    grid-auto-columns: calc((100% - 18px) / 2); /* 2 visibles */
  }
  .yt-card{ height: 220px; }
}

@media (max-width: 600px){
  #ytCarousel{
    grid-auto-columns: 100%; /* 1 visible */
  }
  .yt-card{ height: 200px; }
}
/* =========================
   YT CAROUSEL (SIN OWL) - 3 cards en fila (como imagen B)
   ========================= */

#ytCarousel{
  display: grid;
  grid-auto-flow: column;
  gap: 18px;

  /* 3 visibles */
  grid-auto-columns: calc((100% - 36px) / 3);

  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  padding: 6px 14px 0;

  scrollbar-width: none; /* Firefox */
}
#ytCarousel::-webkit-scrollbar{ display:none; }

#ytCarousel .yt-card{ scroll-snap-align: start; }

/* Card más parecida a la web antigua */
.yt-card{ height: 240px; }
.yt-card img{ height: 100%; }

@media (max-width: 992px){
  #ytCarousel{ grid-auto-columns: calc((100% - 18px) / 2); }
  .yt-card{ height: 220px; }
}
@media (max-width: 600px){
  #ytCarousel{ grid-auto-columns: 100%; }
  .yt-card{ height: 200px; }
}
/* =========================
   HEADER HSGY (Topbar + Mainbar)
   ========================= */

.hsgy-topbar{
  background:#1f6a2b; /* verde */
  color:#fff;
  font-size: 13px;
}

.hsgy-topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 6px 0;
}

.hsgy-topbar-left{
  display:flex;
  flex-wrap:wrap;
  gap: 14px;
  align-items:center;
}

.hsgy-topbar-item{
  opacity:.95;
}

.hsgy-topbar-social{
  display:flex;
  align-items:center;
  gap: 10px;
}

.hsgy-topbar-social-btn{
  color:#fff;
  text-decoration:none;
  opacity:.95;
}
.hsgy-topbar-social-btn:hover{ opacity: 1; }
.hsgy-topbar-social-btn svg{ display:block; }

/* Barra naranja */
.hsgy-mainbar{
  background:#f26522; /* naranja */
  color:#fff;
}

.hsgy-mainbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 4px 0;   /* 👈 AQUÍ se hace más pequeño */
}

.hsgy-brand{
  display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
  color:#fff;
  min-width: 0;
}

..hsgy-brand-logo{
  width: 45px;
  height: 45px;
  border-radius: 0;       /* ✅ sin círculo */
  object-fit: contain;    /* ✅ muestra completo */
  background: transparent;/* ✅ sin fondo */
  border: 0;              /* ✅ sin borde */
  padding: 0;
}


.hsgy-brand-text{ line-height:1.1; min-width:0; }
.hsgy-brand-title{
  font-weight: 800;
  letter-spacing:.3px;
  font-size: 15px;   /* 👈 más compacto */
}

.hsgy-brand-subtitle{
  font-weight: 700;
  font-size: 13px;
}

/* Menú */
.hsgy-nav{
  display:flex;
  gap: 18px;
  align-items:center;
}

.hsgy-nav-link{
  color:#fff;
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing:.4px;
  text-transform: uppercase;
  opacity: .95;
}
.hsgy-nav-link:hover{
  opacity: 1;
  text-decoration: underline;
}
/* Header fijo (topbar + mainbar) */
.hsgy-header{
  position: sticky;
  top: 0;
  z-index: 1030; /* por encima del contenido */
}
.hsgy-social-btn i{
  font-size: 16px;
  line-height: 1;
}
/* dropdown sobre barra naranja */
.hsgy-mainbar .dropdown-menu{
  border: 0;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  border-radius: 10px;
  padding: 8px;
}
.hsgy-mainbar .dropdown-item{
  border-radius: 8px;
  padding: 10px 12px;
}
/* FIX dropdown bootstrap dentro del header HSGY */
.hsgy-mainbar,
.hsgy-mainbar-inner,
.hsgy-header {
  overflow: visible !important;
}

.hsgy-mainbar nav .dropdown {
  position: relative;
}

.hsgy-mainbar nav .dropdown-menu {
  position: absolute !important;
  top: 100%;
  left: 0;
  margin-top: .5rem;
  z-index: 3000;
}

/* opcional: un tamaño más acorde al header */
.hsgy-mainbar nav .dropdown-menu {
  border-radius: 12px;
  padding: .5rem 0;
}
.hsgy-mainbar nav .dropdown-menu {
  left: 50%;
  transform: translateX(-50%);
}
/* =========================
   FIX DROPDOWN HEADER (NO TOCAR LO DEMÁS)
   Pegar al FINAL del CSS
   ========================= */

/* 1) El overflow-x hidden en .container rompe dropdowns (se recortan) */
body { overflow-x: hidden; }
.container { overflow-x: visible !important; }

/* 2) Fix typo: estaba como "..hsgy-brand-logo" (dos puntos) */
.hsgy-brand-logo{
  width: 45px;
  height: 45px;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  border: 0;
  padding: 0;
}

/* 3) Dropdown debe flotar encima y no empujar/recortar */
.hsgy-header,
.hsgy-mainbar,
.hsgy-mainbar-inner{
  overflow: visible !important;
}

.hsgy-mainbar nav .dropdown{
  position: relative;
}

.hsgy-mainbar nav .dropdown-menu{
  position: absolute !important;
  top: 100%;
  left: 0 !important;        /* alineado al inicio (estable) */
  transform: none !important;/* anula centrado global que lo descuadra */
  margin-top: .5rem;
  z-index: 3000;

  border: 0;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  border-radius: 10px;
  padding: 8px;
  min-width: 220px;
}

.hsgy-mainbar nav .dropdown-item{
  border-radius: 8px;
  padding: 10px 12px;
}
/* =========================
   DROPDOWN HSGY (MISMO ESTILO DEL MENÚ PRINCIPAL)
   Pegar al FINAL del CSS
   ========================= */

/* el dropdown flotando (por si no quedó aplicado) */
.hsgy-header,
.hsgy-mainbar,
.hsgy-mainbar-inner{ overflow: visible !important; }

.hsgy-mainbar nav .dropdown{ position: relative; }

.hsgy-mainbar nav .dropdown-menu{
  position: absolute !important;
  top: 100%;
  left: 0 !important;
  transform: none !important;
  margin-top: .35rem;

  /* ✅ mismo look que la barra */
  background: #f26522;                /* mismo naranja */
  border: 0;
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
  z-index: 3000;
  min-width: 220px;
}

/* items como tus links */
.hsgy-mainbar nav .dropdown-item{
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;

  padding: 10px 12px;
  border-radius: 8px;
  background: transparent;
}

/* hover igual al menú */
.hsgy-mainbar nav .dropdown-item:hover,
.hsgy-mainbar nav .dropdown-item:focus{
  background: rgba(255,255,255,.18);
  color: #fff;
  text-decoration: none;
}

/* (opcional) separador sutil entre items */
.hsgy-mainbar nav .dropdown-item + .dropdown-item{
  margin-top: 2px;
}
/* =========================
   DROPDOWN HSGY – DESPLEGABLE (NO OVERLAY)
   El submenú baja debajo del header
   ========================= */

/* el header ya es sticky */
.hsgy-header{
  position: sticky;
  top: 0;
  z-index: 1030;
}

/* el dropdown NO flota encima */
.hsgy-mainbar nav .dropdown{
  position: static; /* 👈 CLAVE */
}

/* el menú se despliega debajo */
.hsgy-mainbar nav .dropdown-menu{
  position: absolute !important;
  top: 100%;              /* debajo del mainbar */
  left: 0;
  transform: none !important;

  /* mismo estilo del menú */
  background: #f26522;
  border: 0;
  border-radius: 0 0 12px 12px;
  padding: 8px 0;

  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  min-width: 240px;
  z-index: 1020;          /* debajo del header, encima del contenido */
}

/* items */
.hsgy-mainbar nav .dropdown-item{
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .4px;
  text-transform: uppercase;

  padding: 12px 18px;
  background: transparent;
}

/* hover */
.hsgy-mainbar nav .dropdown-item:hover{
  background: rgba(255,255,255,.18);
  color: #fff;
}
/* =========================
   DROPDOWN HSGY – DEBAJO DEL ITEM (NO AL COSTADO)
   ========================= */

/* ancla del dropdown */
.hsgy-mainbar nav .dropdown{
  position: relative !important; /* 👈 CLAVE: NO static */
}

/* menú desplegable debajo del item */
.hsgy-mainbar nav .dropdown-menu{
  position: absolute !important;
  top: calc(100% + 6px) !important; /* baja un poquito para NO tapar el menú */
  left: 0 !important;
  right: auto !important;
  transform: none !important;

  /* estilo igual al menú */
  background: #f26522;
  border: 0;
  border-radius: 10px;
  padding: 6px;

  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  min-width: 240px;
  z-index: 3000;
}

/* items */
.hsgy-mainbar nav .dropdown-item{
  color:#fff;
  font-weight:700;
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;

  padding: 10px 12px;
  border-radius: 8px;
  background: transparent;
}

.hsgy-mainbar nav .dropdown-item:hover,
.hsgy-mainbar nav .dropdown-item:focus{
  background: rgba(255,255,255,.18);
  color:#fff;
  text-decoration:none;
}
.hsgy-topbar-social i { font-size: 14px; }
.hsgy-topbar-social:hover { opacity: .85; }
/* ========== TOPBAR REDES (barra verde) ========== */
.hsgy-topbar-right,
.hsgy-topbar .d-flex.gap-3 {
  align-items: center;
}

.hsgy-topbar-social,
.hsgy-topbar .d-flex.gap-3 a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  text-decoration: none;
  line-height: 1;
  opacity: .95;
}

.hsgy-topbar-social i,
.hsgy-topbar .d-flex.gap-3 a i {
  font-size: 16px; /* <-- aquí crece el icono */
}

.hsgy-topbar-social:hover,
.hsgy-topbar .d-flex.gap-3 a:hover {
  opacity: 1;
  transform: translateY(-1px);
}
/* ========= FIX: ICONOS REDES TOPBAR (barra verde) ========= */
/* Apunta al bloque derecho del topbar y agranda cualquier <i> dentro */
.hsgy-topbar .container > .d-flex:last-child a,
.hsgy-topbar .container > div:last-child a{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 25px !important;
  height: 25px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  line-height: 1 !important;
  margin-left: 6px !important;
}

.hsgy-topbar .container > .d-flex:last-child a i,
.hsgy-topbar .container > div:last-child a i{
  font-size: 15px !important;   /* 👈 tamaño del icono */
  line-height: 1 !important;
}

.hsgy-topbar .container > .d-flex:last-child a:hover,
.hsgy-topbar .container > div:last-child a:hover{
  opacity: 0.9;
  transform: translateY(-1px);
}
/* =========================
   TOPBAR – AJUSTE ALTURA
   ========================= */
.hsgy-topbar {
  padding: 6px 0;           /* antes seguramente era 10px o más */
  line-height: 1.2;
}

.hsgy-topbar i {
  line-height: 1;
  vertical-align: middle;
}
.hsgy-topbar {
  height: 38px;             /* ajusta: 36–40px según gusto */
  display: flex;
  align-items: center;
}
/* =========================
   AJUSTE FINO – BANNERS SIDEBAR
   Más pequeños y centrados
   ========================= */
.service-panel .service-banner{
  width: 92% !important;     /* 👈 un poco más angosto */
  margin: 0 auto !important; /* 👈 centrado horizontal */
}
@media (max-width: 576px){
  .service-panel .service-banner{
    width: 100% !important;
  }
}

