body {
    margin: 0;
    font-family: 'Karla', serif;
    height: 100%;
    width: 100vw;
    overflow-x: hidden;
}

.produtor_container{
    width: 100%;
    max-width: 1400px;
    margin: 150px auto;
    margin-bottom: 0;
}

.produtor_container a{
    text-decoration: none;
    color: #b59c72;
}

.produtor_container h2{
    margin-top: 0;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
}

.produtor_container p{
    width: 100%;
    font-size: 24px;
    text-align: justify;
}

.h_rectangule1{
    display: block;
    margin: 0 auto; 
}

.container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    max-width: 1400px;
    margin: 100px auto;
    flex-wrap: wrap;
}

.video-wrapper {
  position: relative;
  flex: 1 1 500px;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 2px 4px 6px rgba(0,0,0,0.2);
}

.video-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1abf;
  opacity: 1; /* Ajuste para controlar transparência */
  z-index: 1;
  pointer-events: none;
  border-radius: 10px;
}

.video-container video {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  
}

.video-wrapper img.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  z-index: 1;
}

.text-content {
  flex: 1 1 500px;
}

.text-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
  color: #1a1a1a;
  text-align: left;
  font-weight: 600;
}

.text-content p {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: justify;
}

@media (max-width: 800px) {
    .produtor_container{
        width: 90%;
        height: 100%;
    }

    .produtor_container h2{
        font-size: 38px;
    }

    .produtor_container p{
        font-size: 18px;
        margin: auto;
    }

    .container {
        flex-direction: column;
        height: 100%;
        width: 90%;
    }

    .text-content h2 {
        font-size: 34px;
    }

    .text-content p {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .text-content {
        flex: 1 1 100px;
    }
}

@media only screen and (max-width: 1450px) and (min-width: 800px){
    .produtor_container{
        width: 90%;
    }
}
