@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  color: #111827;
}

/* =====================
   LOGIN
   ===================== */
#pantalla-login {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #F7F7FA;
}

.login-box {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  border: 1px solid #E5E7EB;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.logo-icon { font-size: 40px; margin-bottom: 8px; }

.login-logo h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111827;
}

.login-logo p {
  font-size: 13px;
  color: #6B7280;
}

.error-msg {
  color: #EF4444;
  font-size: 13px;
  text-align: center;
  margin-top: 12px;
  min-height: 20px;
}

button#btn-login {
  width: 100%;
  padding: 11px;
  background: #2D2BFF;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

button#btn-login:hover { background: #1F1CFF; }

/* =====================
   LAYOUT PRINCIPAL
   ===================== */
.app-layout {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* =====================
   SIDEBAR
   ===================== */
.sidebar {
  width: 220px;
  min-width: 220px;
  background: #1E2B3C;
  border-right: none;
  display: flex;
  flex-direction: column;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  transition: transform 0.25s ease;
}

.sidebar-logo {
  padding: 20px 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
}

.sidebar-nav {
  flex: 1;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.15s, color 0.15s;
  font-family: 'Inter', sans-serif;
}

.sidebar-item:hover {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}

.sidebar-item.active {
  background: rgba(45,43,255,0.35);
  color: white;
  font-weight: 500;
}

.sidebar-icon {
  font-size: 15px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.sidebar-label { font-size: 13px; }

.sidebar-bottom {
  padding: 12px 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar-perfil {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  padding: 8px 10px;
  border-radius: 8px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 0.15s;
  font-family: 'Inter', sans-serif;
}

.sidebar-perfil:hover { background: rgba(255,255,255,0.06); }

.sidebar-perfil-info { flex: 1; min-width: 0; }

.sidebar-gym-nombre {
  font-size: 12px;
  font-weight: 500;
  color: white;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.sidebar-perfil-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 1px;
}

.sidebar-logout {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}

.sidebar-logout:hover {
  background: rgba(239,68,68,0.2);
  color: #EF4444;
}

/* OVERLAY MÓVIL */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 40;
}

.sidebar-overlay.visible { display: block; }

/* =====================
   TOPBAR MÓVIL
   ===================== */
.mobile-topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #1E2B3C;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: 52px;
}

.mobile-topbar-logo img {
  height: 24px;
  filter: brightness(0) invert(1);
}

.btn-menu {
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 20px;
  padding: 4px;
  display: flex;
  align-items: center;
}

/* =====================
   CONTENIDO PRINCIPAL
   ===================== */
.main-content {
  margin-left: 220px;
  flex: 1;
  overflow-y: auto;
  height: 100vh;
  background: #e6e6e6;
}

.vista-content {
  padding: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================
   FORMULARIOS
   ===================== */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  transition: border 0.2s;
  background: white;
  color: #111827;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2D2BFF;
}

/* =====================
   MÉTRICAS
   ===================== */
.metricas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.metrica {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #E5E7EB;
}

.metrica.verde { border-left: 3px solid #22C55E; }
.metrica.ambar { border-left: 3px solid #F59E0B; }
.metrica.rojo  { border-left: 3px solid #EF4444; }
.metrica.gris  { border-left: 3px solid #9CA3AF; }

.metrica-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #6B7280;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.metrica-val { font-size: 26px; font-weight: 600; color: #111827; }
.metrica.verde .metrica-val { color: #16A34A; }
.metrica.ambar .metrica-val { color: #D97706; }
.metrica.rojo  .metrica-val { color: #DC2626; }
.metrica.gris  .metrica-val { color: #6B7280; }

/* =====================
   TABLA
   ===================== */
.tabla-section {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #E5E7EB;
  margin-bottom: 16px;
}

.tabla-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}

.tabs {
  display: flex;
  gap: 4px;
  background: #F7F7FA;
  padding: 3px;
  border-radius: 8px;
  flex-wrap: wrap;
}

.tab {
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  color: #6B7280;
  border: none;
  background: transparent;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.tab.active {
  background: white;
  color: #111827;
  font-weight: 500;
  border: 1px solid #E5E7EB;
}

.btn-nuevo {
  background: #2D2BFF;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.btn-nuevo:hover { background: #1F1CFF; }

.search-row { margin-bottom: 12px; }

.client-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.client-table th {
  text-align: left;
  padding: 8px 12px;
  color: #6B7280;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  border-bottom: 1px solid #E5E7EB;
}

.client-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #F3F4F6;
  color: #111827;
}

.client-table tr:hover td { background: #F9FAFB; }
.client-table tr:last-child td { border-bottom: none; }

.plan-tag {
  background: #F3F4F6;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  color: #6B7280;
  font-weight: 500;
}

.badge {
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

.badge-green { background: rgba(34,197,94,0.1);  color: #16A34A; }
.badge-amber { background: rgba(245,158,11,0.1); color: #D97706; }
.badge-red   { background: rgba(239,68,68,0.1);  color: #DC2626; }
.badge-gray  { background: rgba(156,163,175,0.1);color: #6B7280; }

.select-estado {
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #E5E7EB;
  font-size: 12px;
  background: white;
  cursor: pointer;
  color: #111827;
  font-family: 'Inter', sans-serif;
}

.sin-clientes {
  text-align: center;
  color: #6B7280;
  padding: 32px;
  font-size: 13px;
}

/* =====================
   BOTONES ACCIÓN
   ===================== */
.btn-pago {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  border: none;
  background: rgba(34,197,94,0.1);
  color: #16A34A;
  cursor: pointer;
  margin-right: 4px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.btn-pago:hover { background: rgba(34,197,94,0.2); }

.btn-historial {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  border: none;
  background: rgba(45,43,255,0.08);
  color: #2D2BFF;
  cursor: pointer;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.btn-historial:hover { background: rgba(45,43,255,0.15); }

.btn-whatsapp {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  border: none;
  background: rgba(34,197,94,0.1);
  color: #16A34A;
  cursor: pointer;
  font-weight: 500;
  margin-left: 4px;
  font-family: 'Inter', sans-serif;
}

.btn-whatsapp:hover { background: rgba(34,197,94,0.2); }

/* =====================
   PANELES INFERIORES
   ===================== */
.paneles-inferiores {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.panel {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #E5E7EB;
}

.panel-titulo {
  font-size: 11px;
  text-transform: uppercase;
  color: #6B7280;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 500;
}

.alerta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
}

.alerta-item:last-child { border-bottom: none; }

.alerta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.alerta-ambar { background: rgba(245,158,11,0.1); }
.alerta-rojo  { background: rgba(239,68,68,0.1); }
.alerta-verde { background: rgba(34,197,94,0.1); }
.alerta-texto { font-size: 13px; color: #111827; }

.resumen-fila {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #F3F4F6;
  font-size: 13px;
  color: #374151;
}

.resumen-fila:last-child { border-bottom: none; }
.verde-txt { color: #16A34A; font-weight: 500; }
.ambar-txt { color: #D97706; font-weight: 500; }
.rojo-txt  { color: #DC2626; font-weight: 500; }

/* =====================
   MODAL
   ===================== */
.modal {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 28px;
  width: 100%;
  max-width: 440px;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid #E5E7EB;
}

.modal h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111827;
}

.modal-botones {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.btn-cancelar {
  flex: 1;
  padding: 10px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  font-family: 'Inter', sans-serif;
}

.btn-cancelar:hover { background: #F9FAFB; }

.btn-guardar {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 8px;
  background: #2D2BFF;
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s;
}

.btn-guardar:hover { background: #1F1CFF; }

/* =====================
   ESTADÍSTICAS
   ===================== */
.stats-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #E5E7EB;
}

.stat-card-label {
  font-size: 11px;
  text-transform: uppercase;
  color: #6B7280;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  font-weight: 500;
}

.stat-card-val {
  font-size: 22px;
  font-weight: 600;
  color: #111827;
}

.stat-card-sub { font-size: 13px; margin-top: 2px; }

.grafica-section {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #E5E7EB;
}

.grafica-titulo {
  font-size: 11px;
  text-transform: uppercase;
  color: #6B7280;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.grafica-wrap { overflow-x: auto; margin-top: 16px; }

.grafica-barras {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  min-height: 230px;
  padding-bottom: 8px;
}

.barra-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  min-width: 52px;
}

.barra-col:hover .barra-tooltip { display: block; }

.barra-tooltip {
  display: none;
  position: absolute;
  bottom: 100%;
  background: #111827;
  color: white;
  font-size: 11px;
  padding: 5px 8px;
  border-radius: 6px;
  white-space: nowrap;
  text-align: center;
  margin-bottom: 4px;
  z-index: 10;
}

.barra-fill {
  width: 36px;
  background: #2D2BFF;
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: opacity 0.2s;
}

.barra-col:hover .barra-fill { opacity: 0.75; }

.barra-label {
  font-size: 10px;
  color: #6B7280;
  text-align: center;
  white-space: nowrap;
}

/* =====================
   TABLA DETALLE STATS
   ===================== */
.tabla-section tfoot tr {
  border-top: 2px solid #111827;
  background: #111827;
}

/* =====================
   PERFIL
   ===================== */
.perfil-avatar-mini {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  background: rgba(255,255,255,0.12);
  object-fit: cover;
  flex-shrink: 0;
}

.perfil-foto-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.perfil-foto {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #E5E7EB;
  margin-bottom: 10px;
  background: #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  overflow: hidden;
}

.perfil-foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.btn-cambiar-foto {
  font-size: 12px;
  color: #2D2BFF;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.perfil-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.perfil-dato { font-size: 11px; color: #6B7280; margin-bottom: 2px; }
.perfil-val  { font-size: 13px; color: #111827; font-weight: 500; }

/* =====================
   PÁGINA TÍTULO
   ===================== */
.page-header { margin-bottom: 24px; }

.page-title {
  font-size: 20px;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.page-subtitle {
  font-size: 13px;
  color: #6B7280;
}

.metrica,
.tabla-section,
.panel,
.stat-card,
.grafica-section,
.modal {
box-shadow: 0 6px 28px rgba(30,43,60,0.16);;  border: none;
}

/* =====================
   RESPONSIVE MÓVIL
   ===================== */
@media (max-width: 768px) {

  /* Sidebar oculto por defecto en móvil */
  .sidebar {
    transform: translateX(-220px);
    z-index: 60;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  /* Topbar móvil visible */
  .mobile-topbar {
    display: flex;
  }

  /* Contenido sin margen del sidebar */
  .main-content {
    margin-left: 0;
    padding-top: 52px;
  }

  /* Padding reducido */
  .vista-content {
    padding: 16px;
  }

  /* Métricas en 2 columnas */
  .metricas {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  /* Stats header en 2 columnas */
  .stats-header {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Paneles en columna */
  .paneles-inferiores {
    grid-template-columns: 1fr;
  }

  /* Tabla con scroll horizontal */
  .tabla-section {
    overflow-x: auto;
  }

  .client-table {
    min-width: 600px;
  }

  /* Tabs con scroll */
  .tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  /* Modal a pantalla completa */
  .modal {
    max-width: 100%;
    max-height: 95vh;
    border-radius: 12px 12px 0 0;
    margin-top: auto;
  }

  #modal-overlay,
  #perfil-overlay {
    align-items: flex-end !important;
  }

  /* Login ajustado */
  .login-box {
    padding: 28px 20px;
    margin: 16px;
    border-radius: 12px;
  }

  /* Encabezado tabla header en columna */
  .tabla-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .tabla-header .btn-nuevo {
    width: 100%;
    text-align: center;
  }

  /* Gráfica barras con scroll */
  .grafica-barras {
    justify-content: flex-start;
    min-width: 500px;
  }

  /* Perfil info grid en columna */
  .perfil-info-grid {
    grid-template-columns: 1fr;
  }
}

html, body {
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 768px) {

  /* EVITAR SCROLL HORIZONTAL GLOBAL */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  .app-layout, .main-content, .vista-content {
    overflow-x: hidden !important;
    width: 100% !important;
  }

  /* MODAL A ANCHO COMPLETO */
  .modal {
    width: 95vw !important;
    max-width: 95vw !important;
    padding: 20px 16px !important;
    margin: 0 auto !important;
  }

  /* GRIDS EN COLUMNA */
  .perfil-info-grid {
    grid-template-columns: 1fr !important;
  }

  /* TABLAS CON SCROLL INTERNO */
  .tabla-section {
    overflow-x: auto !important;
  }

  .client-table {
    min-width: unset !important;
    width: 100% !important;
  }

  /* OCULTAR COLUMNAS MENOS IMPORTANTES */
  .client-table th:nth-child(4),
  .client-table td:nth-child(4),
  .client-table th:nth-child(5),
  .client-table td:nth-child(5),
  .client-table th:nth-child(6),
  .client-table td:nth-child(6),
  .client-table th:nth-child(7),
  .client-table td:nth-child(7) {
    display: none;
  }

  /* PANELES EN COLUMNA */
  .paneles-inferiores {
    grid-template-columns: 1fr !important;
  }

  /* MÉTRICAS EN 2 COLUMNAS */
  .metricas {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* STATS EN 2 COLUMNAS */
  .stats-header {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  /* GRÁFICA CON SCROLL INTERNO */
  .grafica-wrap {
    overflow-x: auto !important;
  }

  /* BOTONES DE ACCIÓN EN COLUMNA */
  td[style*="white-space:nowrap"] {
    white-space: normal !important;
  }

  /* FORMULARIOS A ANCHO COMPLETO */
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100% !important;
    font-size: 16px !important;
  }

  /* TABS CON SCROLL */
  .tabs {
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* HEADER DE TABLA EN COLUMNA */
  .tabla-header {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .tabla-header .btn-nuevo {
    width: 100% !important;
  }

  /* SEARCH ROW EN COLUMNA */
  .search-row > div {
    flex-direction: column !important;
  }

  /* MODAL OVERLAY DESDE ABAJO */
  #modal-overlay,
  #perfil-overlay {
    align-items: flex-end !important;
    padding: 0 !important;
  }

  /* BOTONES MODAL */
  .modal-botones {
    flex-direction: column !important;
  }

  .btn-cancelar, .btn-guardar {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  /* BARRA DE SALUD */
  .vista-content > div[style*="display:flex"] {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .vista-content > div[style*="display:flex"] > div[style*="border-left"] {
    border-left: none !important;
    border-top: 1px solid #E5E7EB !important;
    padding-left: 0 !important;
    padding-top: 12px !important;
    min-width: unset !important;
    width: 100% !important;
  }
}

/* SALUD CARD */
.salud-card {
  background: white;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06), 0 4px 16px rgba(30,43,60,0.08);
}

.salud-principal {
  flex: 1;
  min-width: 200px;
}

.salud-bloque {
  border-left: 1px solid #E5E7EB;
  padding-left: 24px;
  min-width: 140px;
}

@media (max-width: 768px) {
  .salud-card {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
  }

  .salud-bloque {
    border-left: none;
    border-top: 1px solid #E5E7EB;
    padding-left: 0;
    padding-top: 12px;
    min-width: unset;
  }
}