body {
    margin: 0 auto;
    padding-top: 80px; /* Espaço para a barra fixa */
    box-sizing: border-box;
    background-color: #000000;
    font-family: 'Arial', sans-serif;
}

         /* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #000000; /* Cor de fundo da barra lateral */
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(255, 123, 0); 
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ff9100; 
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 60px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent; /* Fundo agora é contínuo com o wrapper */
}

.hero-container {
    max-width: 90%;
    width: 100%;
    z-index: 10;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 100%;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
