.video-controles {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1000px;
    z-index: 5;
    backdrop-filter: blur(4px);
    border-radius: 10px;
  }
  
  .video-controles input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: #ddd;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
  }
  
  .video-controles input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    background: #ff6a00; /* COR DA BOLINHA */
    border-radius: 50%;
    border: none;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }
  
  .video-controles input[type="range"]::-moz-range-thumb {
    width: 14px;
    height: 14px;
    background: #ff6a00; /* COR DA BOLINHA */
    border-radius: 50%;
    border: none;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
  }
  
  .video-controles button i {
    font-size: 1.2rem;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  /* Esconde controlos por padrão */
  .video-controles {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  
  /* Mostra controlos ao passar o rato por cima do wrapper */
  .video-wrapper:hover .video-controles {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

