/* Envoltorio principal */
.tl-wrapper {
  margin-top: 30px !important;
  width: 100%;
  display: block;
  clear: both;
  box-sizing: border-box;
}

/* Tarjeta */
.tl-card {
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-family: 'Segoe UI', sans-serif;
  max-width: 100%;
  box-sizing: border-box;
}

/* Cabecera: icono + texto */
.tl-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  flex-wrap: nowrap;
}

.tl-icon {
  width: 40px;
  height: 40px;
}

.tl-title {
  font-weight: bold;
  color: #2d8a34;
  font-size: 16px;
}

.tl-subtitle {
  font-size: 13px;
  color: #666;
}

/* Medidor visual */
.tl-meter {
  width: 100%;
  height: auto;
  margin: 10px 0 20px;
  display: block;
}

/* Contenedor de estadísticas */
.tl-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
  gap: 20px;
  flex-wrap: nowrap;
}

/* Cada estadística */
.tl-stat {
  flex: 1 1 auto;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

/* Ícono o número centrado con altura fija */
.tl-stat .tl-number,
.tl-stat .tl-icon-small {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-size: 18px;
  color: #222;
  font-weight: bold;
}

/* Subtexto */
.tl-label {
  font-size: 13px;
  color: #666;
}

/* Imágenes pequeñas (íconos) */
.tl-icon-small {
  width: 40px;
}

/* Responsive — mantiene el formato horizontal */
@media (max-width: 480px) {
  .tl-stats {
    gap: 10px;
  }

  .tl-stat {
    min-width: 90px;
  }
}

/* ============================ */
/* NUEVO: Tarjeta Info (tiendaliderinfo) */
/* ============================ */

.tl-info-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 16px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #333;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  max-width: 100%;
  margin-top: 20px;
  box-sizing: border-box;
  margin-bottom: 10px;
}

.tl-info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.tl-info-logo {
  width: 32px;
  height: 32px;
  border-radius: 4px;
}

.tl-info-titles {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.tl-info-insignia {
  width: 18px;
  height: 18px;
}

.tl-info-sales {
  font-weight: bold;
  margin-top: -10px;
  margin-bottom: 10px;
  margin-left: 44px; /* alinea con el texto */
}

.tl-info-benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 44px;
}

.tl-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #555;
  line-height: 1.5;
}

.tl-info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.tl-info-item a {
  color: #2a6edc;
  text-decoration: none;
}

.tl-info-item a:hover {
  text-decoration: underline;
}