/* ============================================================
   BLOQUE 01/06 - START: CAJA BASE PEOPLE RADIO
   ============================================================ */

.people-radio {
  z-index: 1300;
  width: 184px;
  padding: 10px 11px 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;

  background:
    linear-gradient(
      90deg,
      rgba(180, 0, 255, 0.20),
      rgba(0, 200, 255, 0.14)
    ),
    rgba(5, 5, 8, 0.72);

  box-shadow: 0 0 14px rgba(0, 0, 0, 0.42);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #ffffff;
  font-family: var(--fuente-principal, 'Montserrat', sans-serif);
}

/* ============================================================
   BLOQUE 01/06 - END: CAJA BASE PEOPLE RADIO
   ============================================================ */


/* ============================================================
   BLOQUE 02/06 - START: ESCRITORIO
   ============================================================ */

@media (min-width: 769px) {
  .people-radio {
    position: fixed;
    left: 24px;
    bottom: 24px;
  }
}

/* ============================================================
   BLOQUE 02/06 - END: ESCRITORIO
   ============================================================ */


/* ============================================================
   BLOQUE 03/06 - START: MÓVIL
   ============================================================ */

@media (max-width: 768px) {
  .people-radio {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 210px;
    margin: -32px auto 42px;
  }
}

/* ============================================================
   BLOQUE 03/06 - END: MÓVIL
   ============================================================ */


/* ============================================================
   BLOQUE 04/06 - START: CLAIM
   ============================================================ */

.people-radio__claim {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  margin-bottom: 8px;
  font-size: 0.66rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.58);
  text-align: center;
  text-transform: none;
}

/* ============================================================
   BLOQUE 04/06 - END: CLAIM
   ============================================================ */

/* ============================================================
   BLOQUE 04/06 - END: CLAIM
   ============================================================ */


/* ============================================================
   BLOQUE 05/06 - START: CONTROLES
   ============================================================ */

.people-radio__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.people-radio__button {
  width: 31px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.035);
  color: #ffffff;
  font-family: var(--fuente-principal, 'Montserrat', sans-serif);
  font-size: 0.78rem;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.people-radio__button:hover {
  border-color: rgba(0, 238, 255, 0.62);
  background: rgba(0, 238, 255, 0.08);
}

.people-radio__button:active {
  transform: scale(0.96);
}

/* ============================================================
   BLOQUE 05/06 - END: CONTROLES
   ============================================================ */


/* ============================================================
   BLOQUE 06/06 - START: AJUSTES MÓVIL
   ============================================================ */

@media (max-width: 480px) {
  .people-radio {
    max-width: 204px;
    padding: 9px 10px 8px;
  }

  .people-radio__claim {
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .people-radio__button {
    width: 30px;
    height: 27px;
    font-size: 0.74rem;
  }
}

/* ============================================================
   BLOQUE 06/06 - END: AJUSTES MÓVIL
   ============================================================ */