.text-curved {
    position: absolute;
    top: 45%;
    left: 52%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.text-curved svg {
    overflow: visible;
}

.text-curved text {
    fill: #333; /* Cor do texto */
    font-size: 12px;
    font-weight: bold;
}

.video-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    outline: none;
    padding: 0px;
    -webkit-tap-highlight-color: transparent;
}

.video-btn svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 767px) {
    .video-btn {
        width: 50px;
        height: 50px;
    }

    .video-btn svg {
        width: 24px;
        height: 24px;
    }

    #video-progress-wrapper {
        height: 4px;
    }

    #expanded-video-container #video-wrapper {
        width: 100%;
        height: 100%;
    }

    #expanded-video {
        width: auto;
        height: 100%;
    }
}

@media (min-width: 768px) {
    #expanded-video-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #video-wrapper {
        width: 56.25vh; /* width = 9/16 * height */
        height: 100vh; /* maintaining aspect ratio */
        max-width: 100%;
        max-height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #expanded-video {
        width: 56.25vh; /* width = 9/16 * height */
        height: 100vh; /* maintaining aspect ratio */
        max-width: 100%;
        max-height: 100%;
        
    }

    #video-controls {
        position: absolute;
        right: 10px;
        bottom: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    #close-btn-wrapper {
        position: absolute;
        top: 30px;
        right: 10px;
    }

    #video-progress-wrapper {
        position: absolute;
        top: 12px;
        left: 10px;
        right: 10px;
        height: 2px;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
    }

    #play-btn-wrapper {
        position: absolute;
        bottom: 20px;
        left: 10px;
        right: 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

    @media (min-width: 1024px) {
        #video-wrapper {
        max-height: 95%;
    }
    
    #expanded-video {
        border-radius: 10px;
    }
}

/* Desabilita a rolagem */
.no-scroll {
    overflow: hidden;
}

/* Feedback visual ao clicar nos botões */
.video-btn:active {
    transform: scale(0.95);
}

#expanded-video-container {
  /* ... outras propriedades ... */
  transform: scale(0.9); 
  transition: transform 0.3s ease-in-out; 
}

#expanded-video-container.show {
  transform: scale(1); 
}