#result{
	/*list-style: none;
	padding: 0;
	margin: 0;*/
}
/************* PASSOU ***************/

.procura_tocou {
  display: flex;
  gap: 1rem;
}

.passou-card {
  background: linear-gradient(130deg, #8e1e7a 0%, #c92175 100%);
  overflow: hidden;
  padding: 1rem;
  font-size: 1rem;
  line-height: 1.3;
  position: relative;
}
@media only screen and (max-width: 600px) {
  
}

.passou-details {    
  display: flex;
  align-items: center;
}
.passou-text-details{
  padding-left: 1rem;
}
.passou-card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: .5rem;

}
@media only screen and (max-width: 600px) {

}
.passou-card-grid .passou-card {
  color: #fff;
  transition: 0.2s;
  border-radius: .5rem;
}
@media only screen and (max-width: 600px) {
  .passou-card-grid .passou-card {
    /*box-shadow: 0rem -20px 3rem -1rem #000;*/
  }
}

.passou-card-grid .passou-card:not(:first-child) {
 /* box-shadow: -3rem 0 3rem -2rem #000;*/
}
@media only screen and (max-width: 600px) {
  .passou-card-grid .passou-card:not(:first-child) {
    /*box-shadow: 0rem -20px 3rem -1rem #000;*/
  }
}
.passou-card-grid .passou-card .passou-card-title {

}
.passou-card-grid .passou-card{
  text-decoration: none;
  color: #fff;
}

.passou-card-grid .passou-card .passou-cover {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 100%;
  width: 70px;
  height: 70px;
}
.passou-time{
    font-size: 1.3rem;
  font-weight: 900;
}

.passou-card-grid .passou-card .passou-title{
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  color: #eecb2d;
  font-size: 1rem;
  margin-inline-end: 0.66rem;
}
.passou-card-grid .passou-card .author-row { 
  margin-block-start: auto;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0.5rem;
  align-items: center;
  color: #565656;
  line-height: 1.3;
}




/* --- MINI PLAYER AO ESTILO COMERCIAL --- */

.mini-player {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 0px 10px 0 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    /*backdrop-filter: blur(4px);*/
}

.mini-play{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-progress {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.mini-progress-fill {
    width: 0%;
    height: 100%;
    background: #fff;
    transition: width 0.2s linear;
}

.mini-time {
    font-size: 11px;
    opacity: 0.7;
}

.song-preview {
    display: none;
}

/* Placeholder de carregamento */
.placeholder-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: .5rem;
    background: linear-gradient(130deg, #8e1e7a 0%, #c92175 100%);
    overflow: hidden;
}

/* Efeito shimmer */
.placeholder-loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        130deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.35) 50%,
        rgba(255,255,255,0) 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { left: -150%; }
    100% { left: 150%; }
}

/* Quando o conteúdo real estiver carregado */
.passou-card.loaded .placeholder-loading {
    display: none;
}

