/* VIDEO MENU */
	.section-bt {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
	padding-top: 30px;
}

.section-bt .video-menu-btn {
    margin-left: auto !important;
    margin-right: auto !important;
}
	
	.video-menu-btn {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;

    width: fit-content;
    min-width: 280px;

    padding: 14px 20px;
    border-radius: 16px;

    background: linear-gradient(
        135deg,
        #A6A182,
        #8f8a6d
    );

    color: #fff;
    text-decoration: none;

    font-family: Arial, sans-serif;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);

    border: 1px solid rgba(255, 255, 255, 0.18);

    overflow: hidden;
    transition: all 0.35s ease;
}


/* Efeito de brilho */
.video-menu-btn::before {
    content: "";
    position: absolute;

    width: 100px;
    height: 200%;

    top: -50%;
    left: -120%;

    background: rgba(255, 255, 255, 0.15);

    transform: rotate(25deg);

    transition: left 0.6s ease;
}

.video-menu-btn:hover::before {
    left: 120%;
}


/* Hover geral */
.video-menu-btn:hover {
    transform: translateY(-4px) scale(1.02);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}


/* Ícone Play */
.play-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    background: rgba(255, 255, 255, 0.18);

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(8px);

    transition: 0.3s ease;
}

.play-icon i {
    font-size: 17px;
    margin-left: 2px;
}


/* Play aumenta no hover */
.video-menu-btn:hover .play-icon {
    transform: scale(1.12) rotate(-5deg);

    background: rgba(255, 255, 255, 0.28);
}


/* Texto */
.video-text {
    position: relative;

    display: flex;
    flex-direction: column;

    flex-grow: 1;
}

.video-text strong {
    font-size: 17px;
    font-weight: 700;

    letter-spacing: 0.2px;
}

.video-text small {
    margin-top: 3px;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.75);
}


/* Seta */
.arrow-icon {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.12);

    transition: 0.3s ease;
}

.video-menu-btn:hover .arrow-icon {
    transform: translateX(5px);

    background: rgba(255, 255, 255, 0.18);
}