/* ESTILO PREMIUM SIMULADOR REFORMULADO */
.total-devices-card {
  background: linear-gradient(
    135deg,
    rgba(255, 122, 11, 0.08),
    rgba(255, 122, 11, 0.03)
  );
  border: 2px dashed rgba(255, 122, 11, 0.4);
  border-radius: 16px;
  padding: 1.25rem 2rem;
  display: inline-block;
  min-width: 280px;
  box-shadow: 0 8px 32px rgba(255, 122, 11, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.total-devices-card:hover {
  border-color: #ff7a0b;
  box-shadow: 0 12px 40px rgba(255, 122, 11, 0.12);
  transform: translateY(-2px);
}

.total-devices-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.total-devices-value {
  font-size: 2rem;
  font-weight: 800;
  color: #ff7a0b;
  font-family: inherit;
}

.sim-card {
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  width: 100%;
}

.sim-card-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between !important;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px !important;
}

.sim-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
  line-height: 1;
}

.sim-card-slider-wrapper {
  width: 100%;
  padding-top: 0.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  animation: slideDown 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 120px;
  }
}

.sim-card-main-label {
  width: 100%;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sim-slider-header {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.75rem;
  margin-bottom: 0.35rem;
  color: #4b5563;
  font-weight: 600;
  width: 100%;
}

.sim-qty-input {
  width: 50px;
  padding: 4px 8px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  text-align: center;
  font-weight: 700;
  color: #1f2937;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
  background: white;
  display: block;
  margin: 0.2rem auto 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-top: -3px;
}

.sim-qty-input:focus {
  border-color: #ff7a0b;
  box-shadow:
    0 0 0 3px rgba(255, 122, 11, 0.18),
    inset 0 1px 2px rgba(0, 0, 0, 0.05);
}
