@import url('https://mussike.com/styles.css');
/* ============================================
   AUTH LAYOUT (signup / signin) Mon 24 08:00
   ============================================ */
body {
  margin: 0;
  padding: 0;
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 616px;
  min-height: 100vh;
}
.auth-panel {
  display: flex;
  flex-direction: column;
  padding: 42px 48px;
  background: var(--color-bg-light);
}
.auth-brand {
  display: block;
  margin-bottom: 0;
}
.auth-logo {
  height: 15px;
  width: auto;
}
.auth-form-wrap {
  max-width: 415px;
  margin: auto;
  width: 100%;
  padding: 60px 0;
}
.auth-titulo {
  font-size: 55px;
  font-weight: var(--font-weight-black);
  line-height: 61px;
  color: var(--color-text-dark);
  margin: 0 0 12px;
}
.auth-subtitulo {
  font-size: 14px;
  color: var(--color-text-dark);
  margin: 0 0 28px;
  line-height: normal;
}
.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 53px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: white;
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  color: var(--color-text-dark);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.auth-google-btn:hover {
  opacity: 0.85;
}
.auth-google-icon {
  width: 23px;
  height: 23px;
}
.auth-separator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.auth-separator-line {
  flex: 1;
  height: 1px;
  background: #e5e5e5;
  display: block;
}
.auth-separator-text {
  font-size: 14px;
  color: var(--color-text-dark);
}
.auth-field {
  margin-bottom: 16px;
}
.auth-label {
  display: block;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  color: black;
  margin-bottom: 8px;
}
.auth-input-wrap {
  position: relative;
}
.auth-input {
  width: 100%;
  height: 53px;
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  padding: 0 44px 0 16px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-text-dark);
  background: white;
  box-sizing: border-box;
}
.auth-input::placeholder {
  color: rgba(0,0,0,0.4);
}
.auth-input:focus {
  outline: none;
  border-color: var(--color-brand-green);
}
.auth-eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.4;
  padding: 0;
  display: flex;
  align-items: center;
  color: var(--color-text-dark);
}
.auth-submit {
  width: 100%;
  height: 53px;
  background: var(--color-brand-green);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.2s ease;
}
.auth-submit:hover {
  background: #2a9a3a;
  opacity: 1;
}
.auth-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
  margin: 28px 0 16px;
}
.auth-footer-text {
  font-size: 14px;
  color: var(--color-text-dark);
  margin: 0;
}
.auth-footer-link {
  color: var(--color-brand-green);
  text-decoration: none;
}
.auth-footer-link:hover {
  opacity: 0.8;
}
.auth-foto {
  position: relative;
  overflow: hidden;
}
.auth-foto-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .auth-layout {
    grid-template-columns: 1fr;
  }
  .auth-foto {
    display: none;
  }
  .auth-form-wrap {
    padding: 40px 0;
  }
  .auth-titulo {
    font-size: 36px;
    line-height: 42px;
  }
}
/* ============================================
   ONBOARDING
   ============================================ */
.ob-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--color-bg-light);
}
.ob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 37px 48px 37px 51px;
  background: var(--color-bg-light);
}
.ob-logout-link {
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  color: white;
  background: #e46962;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: opacity 0.2s ease;
}
.ob-logout-link:hover {
  opacity: 0.85;
}
.ob-layout {
  display: grid;
  grid-template-columns: 375px 1fr;
  flex: 1;
  background: var(--color-bg-light);
}
.ob-sidebar {
  background: var(--color-bg-light);
  padding: 0 20px 42px 41px;
  display: flex;
  flex-direction: column;
}
.ob-sidebar-bg {
  background: #ceffe2;
  border-radius: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 32px;
}
.ob-sidebar-isotipo {
  display: block;
  width: 100px;
  height: auto;
  margin-bottom: 19px;
}
.ob-sidebar-content {
  margin-top: auto;
  margin-bottom: auto;
}
.ob-sidebar-hello {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-text-dark);
  margin: 0 0 16px;
  font-family: var(--font-family);
}
.ob-sidebar-text {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin: 0;
  font-family: var(--font-family);
}
.ob-sidebar-footer {
  margin-top: auto;
}
.ob-sidebar-contact {
  font-size: 14px;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.6;
  font-weight: 700;
}
.ob-sidebar-contact a {
  color: var(--color-brand-green);
  text-decoration: none;
  display: block;
  font-weight: 400;
}
.ob-main {
  background: var(--color-bg-light);
  padding: 0 48px 42px;
  display: flex;
  flex-direction: column;
}
.ob-steps {
  flex: 1;
  display: flex;
  align-items: center;
}
.ob-step {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ob-step.active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}
.ob-step.exit {
  opacity: 0;
  transform: translateX(-30px);
}
.ob-titulo {
  font-size: 30px;
  font-weight: 900;
  color: var(--color-text-dark);
  margin: 0 0 24px;
  line-height: normal;
  font-family: var(--font-family);
}
.ob-titulo span {
  font-size: 30px;
  font-weight: 400;
  display: block;
}
.ob-input {
  width: 379px;
  height: 53px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 0 16px;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-text-dark);
  background: white;
  box-sizing: border-box;
  display: block;
  margin-bottom: 24px;
}
.ob-input:focus {
  outline: none;
  border-color: var(--color-brand-green);
}
.ob-input::placeholder {
  color: rgba(0,0,0,0.4);
}
.ob-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ob-btn-continuar {
  width: 143px;
  height: 53px;
  background: var(--color-brand-green);
  color: white;
  border: none;
  border-radius: 5px;
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}
.ob-btn-continuar:hover {
  background: #2a9a3a;
}
.ob-omitir {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-green);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.ob-omitir:hover {
  opacity: 0.7;
}
.ob-genres {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
  max-width: 780px;
}
.ob-genre-tag {
  padding: 10px 20px;
  border: 1px solid #e5e5e5;
  border-radius: 50px;
  background: white;
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: all 0.2s ease;
}
.ob-genre-tag:hover {
  border-color: var(--color-brand-green);
}
.ob-genre-tag.selected {
  background: var(--color-brand-green);
  border-color: var(--color-brand-green);
  color: white;
}
.ob-levels {
  display: grid;
  grid-template-columns: repeat(3, 284px);
  gap: 16px;
  margin-bottom: 32px;
}
.ob-level-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px 30px;
  background: white;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-family);
  height: 139px;
  box-sizing: border-box;
}
.ob-level-card:hover {
  border-color: var(--color-brand-green);
}
.ob-level-card.selected {
  border-color: var(--color-brand-green);
  background: #f0fdf4;
}
.ob-level-card strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}
.ob-level-card p {
  font-size: 13px;
  color: var(--color-text-dark);
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}
.ob-error {
  font-size: 14px;
  color: red;
  margin-top: -16px;
  font-family: var(--font-family);
}
@media (max-width: 768px) {
  .ob-layout {
    grid-template-columns: 1fr;
  }
  .ob-sidebar {
    display: none;
  }
  .ob-levels {
    grid-template-columns: 1fr;
  }
  .ob-input {
    width: 100%;
  }
}
/* ============================================
   REGISTRO EXITOSO
   ============================================ */
.exito-bg {
  position: fixed;
  inset: 0;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.exito-circle {
  position: fixed;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-brand-green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: expandCircle 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes expandCircle {
  0%   { width: 0; height: 0; }
  100% { width: 300vmax; height: 300vmax; }
}
.exito-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--color-bg-light);
  padding: 0 24px;
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards 0.7s;
}
@keyframes fadeInUp {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}
.exito-isotipo {
  width: auto;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}
.exito-titulo {
  font-family: var(--font-family);
  font-weight: var(--font-weight-black);
  font-size: clamp(32px, 5vw, 55px);
  line-height: 1.1;
  margin: 0 0 16px;
  max-width: initial;
  color: var(--color-bg-light);
}
.exito-subtitulo {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 22px);
  line-height: 1.5;
  margin: 0 auto 40px;
  max-width: 600px;
  color: var(--color-bg-light);
  opacity: 0.9;
}
.exito-btn {
  display: inline-block;
  background: var(--color-text-dark);
  color: var(--color-bg-light);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: 14px;
  padding: 16px 40px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.exito-btn:hover {
  opacity: 0.85;
}
/* =====================================================
   MUSSIKE — Sistema de colores por nota musical
   ===================================================== */
:root {
  --note-C:   #F28B82;
  --note-D:   #F0D657;
  --note-E:   #93D8F0;
  --note-F:   #C98B96;
  --note-G:   #FFB380;
  --note-A:   #81C995;
  --note-B:   #8BA8D8;
  --note-Cs:  #FFADA8;
  --note-Ds:  #E8D082;
  --note-Fs:  #F4A0C0;
  --note-Gs:  #E8A082;
  --note-As:  #82C9A0;
  --elevation-200-canvas: 0px 0px .5px rgba(0, 0, 0, .18), 0px 2px 5px rgba(0, 0, 0, .1), 0px 1px 2px rgba(0, 0, 0, .1);
}
/* ============================================
   PROGRESSION OF THE DAY
   ============================================ */
.prog-main {
  min-width: 650px;
  max-width: 850px;
  margin: 0 auto;
}
.prog-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 32px 40px;
  gap: 40px;
}
.prog-info {
  max-width: 470px;
  width: 100%;
}
.prog-titulo {
  font-size: 36px;
  font-weight: 900;
  color: var(--color-text-dark);
  margin: 0 0 12px;
  line-height: 1.1;
}
.prog-descripcion {
  font-size: 14px;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin: 0 0 16px;
}
.prog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.prog-tag {
  font-size: 12px;
  color: var(--color-brand-green);
  border: 1px solid var(--color-brand-green);
  border-radius: 8px;
  padding: 4px 12px;
}
.prog-acordes-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.prog-acordes {
  display: flex;
  gap: 20px;
}
.prog-acorde {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  height: 425px;
  background: var(--acorde-color);
  border-radius: 60px;
  padding: 24px 12px 16px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.prog-acorde:hover,
.prog-acorde.sonando {
  transform: scale(1.1);
  filter: brightness(0.88);
}
.prog-acorde-nota {
  font-size: 32px;
  font-weight: 900;
  color: white;
  line-height: 1;
  position: relative;
  top: 100px;
}
.prog-acorde-nota em {
  font-style: normal;
  font-size: 22px;
}
.prog-acorde-grado {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  top: 50px;
  font-weight: bold;
}
.prog-acorde-triada {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
.prog-acorde-funcion {
  font-size: 11px;
  font-weight: 700;
  color: white;
  text-align: center;
  line-height: 1.2;
  position: relative;
  top: 15%;
}
.prog-acorde-info {
  background: none;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  color: white;
  transition: background 0.2s;
}
.prog-acorde-info:hover {
  background: rgba(255,255,255,0.4);
}
.prog-acorde--outline {
  background: transparent !important;
  border: 2px solid var(--acorde-color);
}
.prog-acorde--outline .prog-acorde-nota,
.prog-acorde--outline .prog-acorde-grado,
.prog-acorde--outline .prog-acorde-triada,
.prog-acorde--outline .prog-acorde-funcion,
.prog-acorde--outline .prog-acorde-info {
  color: var(--acorde-color);
}
.prog-btn-group {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}
.prog-btn-fullscale {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 16px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-family);
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.prog-btn-group > .prog-btn-listen {
  flex: 1;
}
.prog-btn-fullscale:hover {
  opacity: 0.75;
}
.prog-btn-listen {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-family: var(--font-family);
  cursor: pointer;
  gap: 12px;
  transition: opacity 0.2s;
}
.prog-btn-listen:hover {
  opacity: 0.88;
}
.prog-hint {
  text-align: center;
  font-size: 13px;
  color: rgba(0,0,0,0.4);
  margin: 16px 0 0;
  padding: 0;
}
.prog-mobile-footer { display: none; }
.prog-info-panel { display: none; }
.prog-mobile-meta { display: none; }
.prog-header {
  padding: 16px 32px;
  display: flex;
  align-items: center;
}
/* ============================================
   PROGRESSION OF THE DAY — MOBILE
   ============================================ */
@media (max-width: 768px) {
  body {
    height: 100dvh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .prog-header {
    padding: 16px 20px;
    justify-content: center;
    flex-shrink: 0;
  }
  .prog-main {
    min-width: 0;
    max-width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    padding: 0;
    flex: 1;
    overflow: hidden;
  }
  .prog-hero {
    flex-direction: column;
    padding: 0;
    gap: 0;
    align-items: stretch;
    width: 100%;
    flex: 1;
    overflow: hidden;
    display: flex;
  }
  .prog-acordes-wrap {
    width: 100%;
    flex: 1;
    overflow: hidden;
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  .prog-mobile-meta {
    display: flex;
    flex-direction: column;
    gap: 0px;
    padding: 0px 16px 8px;
    flex-shrink: 0;
  }
  .prog-acordes {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0 16px;
    gap: 8px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .prog-acorde {
    flex-direction: row;
    width: 100%;
    flex: 1;
    max-height: 70px;
    border-radius: 999px;
    padding: 0 20px 0 35px;
    justify-content: flex-start;
    gap: 0;
    align-items: center;
    box-sizing: border-box;
    overflow: hidden;
  }
  .prog-acorde:hover,
  .prog-acorde.sonando {
    transform: scale(1.05);
    filter: brightness(0.92);
  }
  .prog-acorde-nota {
    font-size: 28px;
    font-weight: 900;
    color: white;
    position: static;
    top: auto;
    width: 40px;
    flex-shrink: 0;
    text-align: left;
  }
  .prog-acorde-grado {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    position: static;
    top: auto;
    width: 25px;
    flex-shrink: 0;
    font-style: normal;
    text-align: left;
  }
  .prog-acorde-triada {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    flex: 1;
    letter-spacing: 0.06em;
    text-align: left;
    font-weight: 900;
  }
  .prog-acorde-funcion {
    font-size: 12px;
    font-weight: 700;
    color: white;
    position: static;
    top: auto;
    flex-shrink: 0;
    margin-right: 10px;
    text-align: right;
  }
  .prog-acorde-info {
    flex-shrink: 0;
  }
  .prog-acorde--outline {
    background: transparent !important;
    border: 2px solid var(--acorde-color);
    opacity: 1;
  }
  .prog-acorde--outline .prog-acorde-nota,
  .prog-acorde--outline .prog-acorde-grado,
  .prog-acorde--outline .prog-acorde-triada,
  .prog-acorde--outline .prog-acorde-funcion,
  .prog-acorde--outline .prog-acorde-info {
    color: var(--acorde-color);
  }
  .prog-info {
    display: none;
  }
  .prog-mobile-footer {
    display: flex;
    flex-direction: column;
    padding: 10px 10px 15px 10px;
    background: transparent;
    gap: 10px;
    flex-shrink: 0;
    box-sizing: border-box;
  }
  .prog-info-panel {
    display: flex;
    flex-direction: column;
  }
  .prog-mobile-actions {
    display: flex;
    gap: 10px;
    align-items: center;
  }
  .prog-acordes-wrap > .prog-btn-listen,
  .prog-btn-group {
    display: none;
  }
  .prog-btn-listen {
    flex: 1;
    border-radius: 10px;
    padding: 10px;
    font-size: 12px;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    border: 1.5px solid #1a1a1a;
  }
  .prog-btn-fullscale-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    padding: 0 10px;
    background: transparent;
    border: 1.5px solid #1a1a1a;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-family);
    color: #1a1a1a;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .prog-btn-fullscale-mobile:hover {
    opacity: 0.7;
  }
  .prog-btn-reload {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 40px;
    padding: 0 15px;
    background: transparent;
    border: 1.5px solid #1a1a1a;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-family);
    color: #1a1a1a;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }
  .prog-btn-reload:hover {
    opacity: 0.7;
  }
  .prog-info-panel {
    position: fixed;
    inset: 0;
    background: white;
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  .prog-info-panel.active {
    transform: translateY(0);
  }
  .prog-info-panel-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    position: relative;
  }
  .prog-info-panel-close {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    padding: 0;
  }
  .prog-info-panel-body {
    padding: 24px 20px;
    overflow-y: auto;
    flex: 1;
  }
  .prog-info-panel-body .prog-panel-kicker {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-brand-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 6px;
    display: block;
  }
  .prog-info-panel-body .prog-panel-titulo {
    font-size: 26px;
    font-weight: 900;
    color: var(--color-text-dark);
    margin: 0 0 16px;
    line-height: 1.1;
  }
  .prog-info-panel-body .prog-panel-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-dark);
    margin: 0 0 20px;
  }
  .prog-mobile-meta .prog-mobile-kicker {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-brand-green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0 0 2px;
    display: block;
  }
  .prog-mobile-meta .prog-mobile-titulo {
    font-size: 22px;
    margin: 0 0 4px;
    font-weight: 900;
    color: var(--color-text-dark);
  }
  .prog-info-toggle {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-brand-green);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
  }

  /* Grid calculado por JS según cantidad de acordes */

  .prog-hint {
    display: none;
  }
}