/* ================================
   Top 10 da Rádio - Container Principal
   ================================ */
.radio-top10-container {margin: 0 auto; padding: 0; max-width: 1170px;}

/* ================================
   Área Principal da Música em Destaque
   ================================ */
.radio-top10-main {
    position: relative;
    margin-bottom: 1rem;
}

.radio-top10-card-main {margin:0; padding:0; 
    display: none;
    position: relative;
    overflow: hidden;
}

.radio-top10-card-main.active {
    display: flex;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================================
   Badge de Posição (Card Principal)
   ================================ */
.radio-top10-ranking-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    border-radius: 150px;
    width: 150px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: bold;
    color: #fec914;
	background-color: #7d179f;
    z-index: 10;
}

/* ================================
   Imagem em Destaque (Card Principal)
   ================================ */
.mainCardContainer {margin:0; padding:0; width: 100%; max-width: 1170px; display: grid; grid-template-columns: 1fr 1fr; border-radius: 150px 0 150px 0; background-color: #fec914; color: #7d179f;}
.radio-top10-image {margin:0; padding:0; border-radius: 150px 0 0 0; background-size: cover; background-position: center top; height: 340px;}

.radio-top10-image img {
/*    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);*/
}

.radio-top10-no-image {
    width: 100%;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,0.5);
}

/* ================================
   Informações da Música (Card Principal)
   ================================ */
.radio-top10-info {padding: 2.5rem 1rem 1rem 2rem;  position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.radio-top10-song {
    font-size: 34px;
    font-weight: bold;
	color: #7d179f;
}

.radio-top10-artist {
    font-size: 24px;
	color: #7d179f;

}

/* ================================
   Player de Áudio
   ================================ */
.radio-top10-player {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.radio-play-btn {position: absolute; right: 6rem; bottom: 1rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 110px;
    color: #ef1d73;
    transition: all 0.3s ease;
}

.radio-play-btn:hover {
    transform: scale(1.1);
}

.radio-play-btn:active {
    transform: scale(1.05);
}

.radio-audio-element {
    display: none;
}

/* ================================
   Container do Slider
   ================================ */
.radio-top10-slider-wrapper {
    position: relative;
    padding: 0 60px;
}

.radio-top10-slider {
    display: flex;
    gap: 20px;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 20px 0;
    scroll-behavior: smooth;
    position: relative;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.radio-top10-slider.active-dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

/* Remover scrollbar completamente */
.radio-top10-slider::-webkit-scrollbar {
    display: none;
}

.radio-top10-slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Botões de navegação do slider */
.radio-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fec914;
    color: #ef1d73;
    border: none;
    font-size: 35px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.radio-slider-nav:hover {
    transform: translateY(-50%) scale(1.1);
}

.radio-slider-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.radio-slider-prev {
    left: 0;
	padding:0;
}

.radio-slider-next {
    right: 0;
	padding:0 0 0 12px;
}

/* Esconder botões quando não há mais itens */
.radio-slider-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

/* ================================
   Cards Pequenos (Slider)
   ================================ */
.radio-top10-card-small {
    flex: 0 0 250px;
    background: #e1e1e1;
    border-radius: 15px;
    padding: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.radio-top10-card-small:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* ================================
   Badge de Posição (Card Pequeno)
   ================================ */
.radio-top10-ranking-badge-small {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #7d179f;
    color: #fec914;
    width: 72px;
    height: 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: bold;
    z-index: 10;
}

/* ================================
   Imagem em Destaque (Card Pequeno)
   ================================ */
.radio-top10-image-small {
    width: 100%;
    margin-bottom: 10px;
}

.radio-top10-image-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.radio-top10-no-image-small {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: rgba(255,255,255,0.5);
}

/* ================================
   Informações do Card Pequeno
   ================================ */
.radio-top10-info-small h4 {
    margin: 10px 0 5px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.radio-top10-info-small p {
    margin: 0;
    color: #666;
    font-size: 14px;
}

/* ================================
   Design Responsivo - Tablet
   ================================ */
@media (min-width : 768px) and (max-width : 1024px) and (orientation : portrait) {
    .radio-top10-card-main {
        padding: 30px;
    }
    
    .radio-top10-image {
        flex: 0 0 250px;
        margin-right: 30px;
    }
    
    .radio-top10-image img,
    .radio-top10-no-image {
        height: 250px;
    }
    
    .radio-top10-song {
        font-size: 36px;
    }
    
    .radio-top10-artist {
        font-size: 22px;
    }
}

/* ================================
   Design Responsivo - Mobile
   ================================ */
@media (min-width : 230px) and (max-width : 767px) {
	/*	
    .radio-top10-card-main {
        flex-direction: column;
        padding: 20px;
    }
    
    .radio-top10-image {
        flex: 0 0 auto;
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    
    .radio-top10-image img,
    .radio-top10-no-image {
        height: 250px;
    }
    
    .radio-top10-song {
        font-size: 32px;
    }
    
    .radio-top10-artist {
        font-size: 20px;
    }
    
    .radio-top10-ranking-badge {
        width: 60px;
        height: 60px;
        font-size: 28px;
        top: 15px;
        right: 15px;
    }
    
    .radio-top10-card-small {
        flex: 0 0 200px;
    }
    
    .radio-top10-image-small img,
    .radio-top10-no-image-small {
        height: 180px;
    }*/
    
    /* Botões menores no mobile */
	
	.topTen .container {padding:0;}
	.mainCardContainer {display: grid; grid-template-columns: 1fr; border-radius: 80px 0 80px 0;}	
	.radio-top10-image {border-radius: 80px 0 0 0; background-size: cover; background-position: center top; height: 200px;}
	
	.radio-top10-ranking-badge {position: absolute; top: 1rem; left: 1rem; border-radius: 80px; width: 80px; height: 32px; font-size: 20px;}
	.radio-play-btn {right: 0rem; bottom: 1rem; width: 45px; height: 45px; font-size: 62px;}	
	.radio-top10-song {font-size: 26px;}	
	.radio-top10-artist {font-size: 18px;}	
	.radio-top10-info {padding: 3.8rem 0.5rem 1rem 1rem;}
	
	.radio-top10-card-small {flex: 0 0 180px;}
	
    .radio-slider-nav {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }
    
    .radio-top10-slider-wrapper {
        padding: 0 50px;
    }
	

	
	
}