/* Scope base */
.ms-seinto { position: relative; }

/* Botón hamburguesa: solo icono blanco, sin fondo ni borde */
.ms-seinto .ms-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;   /* sin fondo */
  border: none;              /* sin borde */
  cursor: pointer;
  box-shadow: none;          /* sin sombra */
  padding: 0;
  color:white;
}
.ms-seinto .ms-btn svg {
  width: 26px;
  height: 26px;
  fill: #fff;                /* icono blanco */
}


/* Overlay (cubre toda la ventana) */
.ms-seinto .ms-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
  z-index: 99998;
}

/* Sidebar */
.ms-seinto .ms-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: min(92vw, 360px);
  background: #fff;
  box-shadow: 2px 0 16px rgba(0,0,0,.2);
  transform: translateX(-100%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  z-index: 99999; /* por encima del overlay */
}
.ms-seinto .ms-sidebar.open { transform: translateX(0); }

/* Header del sidebar */
.ms-seinto .ms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: #ffcb06;
  color: black;
}
.ms-seinto .ms-title { font-weight: 600; font-size: 24px; }
.ms-seinto .ms-close {
  background: transparent;
  border: 0;
  color: black;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

/* Contenido con scroll propio */
.ms-seinto .ms-content { padding: 10px 8px 16px; overflow: auto; height: 100%; }
.ms-seinto .ms-section { margin: 10px 8px; color: #333; font-size: 20px; font-weight: 700; }

/* Lista */
.ms-seinto .ms-list { list-style: none; margin: 0; padding: 0; }
.ms-seinto .ms-list li { border-bottom: 1px solid #ececec; }
.ms-seinto .ms-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: #222;
  text-decoration: none;
}
.ms-seinto .ms-list a:hover { background: #f5f7fb; }
.ms-section:hover { background: #f5f7fb; }
/* Evita scroll del documento cuando el sidebar está abierto */
.ms-no-scroll { overflow: hidden; }

/* Desktop */
@media (min-width: 992px) {
  .ms-seinto .ms-btn { width: 46px; height: 46px; }
  .ms-seinto .ms-sidebar { width: 360px; }
}
/* Espaciado más cómodo entre bloques/secciones */
.ms-seinto .ms-section { margin: 16px 8px 8px; font-size: 15px; text-transform: none; }

/* Enlaces del menú con mejor accesibilidad */
.ms-seinto .ms-list a { line-height: 1.25; }

/* Separación entre las cuatro áreas principales */
.ms-seinto .ms-content .ms-section + .ms-list { margin-bottom: 8px; }

/* Título de sección con icono */
.ms-seinto .ms-section {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 8px 8px;
  font-size: 20px;
  font-weight: 700;
  color: #111;
}

.ms-seinto .ms-section .ms-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  line-height: 0;
  color: #111;              /* icono hereda este color */
  opacity: .9;
}
.ms-seinto .ms-section .ms-icon svg { width: 20px; height: 20px; }

/* Franja gris del título, como en la 1ª captura */
.ms-section.ms-section--stripe {
  background: #f3f4f6;            /* gris suave */
  padding: .75rem .5rem;
  margin: 0;                      /* sin margen extra */
  border: 1px solid #eaeaea;
  border-left: 0;
  border-right: 0;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
}

/* Lista de contacto con separadores y alineación a la izquierda */
.ms-contact.ms-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ms-contact.ms-list > li {
  border-top: 1px solid #eee;
}
.ms-contact.ms-list > li:last-child {
  border-bottom: 1px solid #eee;
}
.ms-contact .ms-contact-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;    /* evitar space-between */
  gap: .75rem;
  width: 100%;
  padding: .8rem .5rem;
  text-decoration: none;
  color: inherit;
}
.ms-contact .ms-contact-item .ms-icon svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  opacity: .85;
}

/* Hover sutil de cada fila (opcional) */
.ms-contact .ms-contact-item:hover {
  background: #f9f9f9;
}

/* Bloque de redes como la 1ª captura: iconos grandes en fila */
.ms-social {
  display: flex;
justify-content: center;
  gap: 1.25rem;
  padding: .75rem .5rem 0;
  border-bottom: 1px solid #eee;
	color: black;
}
.ms-social-link {
  display: inline-flex;
  align-items: center; 
  justify-content: center;
  padding: .25rem;
	color: black;
}
.ms-social-link svg {
  width: 28px;
  height: 28px;
	color: black;
}

/* Si tu tema pone los <a> de las listas en "space-between", 
   esto lo neutraliza solo aquí */
.ms-contact.ms-list a {
  justify-content: flex-start !important;
}
