.sm-listvideos-section {
    padding: 60px 0;
    background: #1e40af;
}

.sm-listvideos-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.sm-listvideos-header {
    margin-bottom: 30px;
}

.sm-listvideos-title {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
}

.sm-listvideos-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media(min-width: 768px) {
    .sm-listvideos-grid {
        flex-direction: row;
        align-items: flex-start;
    }
}

/* FEATURED */
.sm-listvideos-featured {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

@media(min-width: 768px) {
    .sm-listvideos-featured {
        width: 50%;
        height: 400px;
    }
}

.sm-listvideos-featured-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

@media(min-width: 768px) {
    .sm-listvideos-featured-img {
        height: 100%;
    }
}

.sm-listvideos-featured-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    color: #fff;
}

/* LISTA */
.sm-listvideos-side {
    width: 100%;
}

@media(min-width: 768px) {
    .sm-listvideos-side {
        width: 50%;
    }
}

.sm-listvideos-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sm-listvideos-item {
    display: flex;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    border-radius: 12px;
    overflow: hidden;
}

.sm-listvideos-thumb {
    position: relative;
    width: 25%;
}

.sm-listvideos-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sm-listvideos-content {
    width: 75%;
    padding: 10px;
    color: #fff;
}

.sm-listvideos-content h3 {
    font-weight: bold;
}

.sm-listvideos-content p {
    opacity: 0.8;
    font-size: 14px;
}

/* BOTÃO */
.sm-listvideos-loadmore {
    margin-top: 15px;
    text-align: center;
}

.sm-listvideos-loadmore button {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
    border-radius: 999px;
    border: none;
    cursor: pointer;
}

/* UTIL */
.is-hidden {
    display: none;
}

/* Botão de Play do Vídeo em Destaque (Grande) */
.sm-listvideos-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Centraliza perfeitamente */
    z-index: 10;

    width: 60px;
    height: 60px;
    background-color: rgba(59, 130, 246, 0.9);
    color: #ffffff;
    font-size: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.sm-listvideos-play:hover {
    background-color: #60a5fa;
    transform: translate(-50%, -50%) scale(1.1);
}

/* Botão de Play dos Vídeos Laterais (Pequeno) */
.sm-listvideos-play-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;

    width: 30px;
    height: 30px;
    background-color: rgba(59, 130, 246, 0.9);
    color: #ffffff;
    font-size: 12px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.sm-listvideos-play-small:hover {
    background-color: #60a5fa;
    transform: translate(-50%, -50%) scale(1.1);
}