@font-face{
  font-family: "primary-medium";
  src: 
       url("../fonts/TTNorms-Medium.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}



/* Bold */
@font-face{
  font-family: "primary-bold";
  src:        url("../fonts/tt-norms-bold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


.logo{
/*  mix-blend-mode: multiply; */
}

.primary-medium{
  font-family: "Roboto", sans-serif;
  font-weight: 400;
}

.primary-bold{
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}





.shadow{
    filter: drop-shadow(0px 0px 10px #000000);
}


  .card-frame{
    border-radius:22px; overflow:hidden;
    box-shadow:0 14px 40px rgba(0,0,0,.55);
  }

  /* marco opcional */
  .card-frame{
    border-radius:22px; overflow:hidden;
    box-shadow:0 14px 40px rgba(0,0,0,.55);
  }





  /* music */
.mini-player {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: #000;
  color: #fff;
  border-radius: 999px;
  padding: .45rem .8rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  box-shadow: 0 4px 18px rgba(0,0,0,.25);
  backdrop-filter: blur(6px);
  user-select: none;
}

.mp-icon {
  font-size: 1.1rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: transform .1s ease, opacity .2s ease;
}

.mp-icon:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.mp-now {
  font-size: .85rem;
  white-space: nowrap;
}

.mp-now b {
  font-weight: 600;
  color: #fff;
}

.mp-now span {
  opacity: .8;
}