section#banner{
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  
  @media only screen and (max-width: 600px) {
    flex-direction: column-reverse;
    
    & img {
      height: 450px;
      object-fit: cover;
    }
    
    & img.overlay {
      position: absolute;
      width: 100%;
      top: 93px;
      object-position: -600px;
    }
  }
  
  @media only screen and (min-width: 600px) {
    width: 1260px;
    height: 510px;
  }
  
  & .content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    @media only screen and (min-width: 600px) {
      width: 700px;
      padding: 0 80px;
    }
    
    & .title {
      font-family: "Arboria-Black", sans-serif;
      font-size: 48px;
      font-weight: 900;
      color: #FFF;
      line-height: 1;
      margin-bottom: 15px;
      text-align: left;
      letter-spacing: -0.72px;
    }
    
    & .subtitle {
      font-size: 15px;
      line-height: 23px;
      margin-top: 10px;
      margin-bottom: 35px;
      color: #FFFFFF96;
      text-align: left;
      font-weight: 100;
    }
    
    & .text {
      margin-top: 20px;
      font-size: 18px;
      line-height: 29px;
      letter-spacing: -0.54px;
      color: #FFF;
    }
  }
  
  @media only screen and (min-width: 600px) {
    & img:not(.overlay) {
      max-width: 560px;
      height: 510px;
      object-fit: cover;
    }
    
    & img.overlay {
      max-width: 1260px;
      height: 510px;
      object-fit: cover;
      object-position: -74px;
    }
  }
}

@media only screen and (max-width: 600px) {
  img {
    max-width: 100%;
  }
  
  .content {
    padding: 0 10px 30px;
  }
}

section#sobre .content {
  
  & .title {
    color: #BFB800;
    font-size: 45px;
    letter-spacing: -0.68px;
    text-align: left;
    
    @media only screen and (min-width: 600px) {
      width: 900px;
    }
  }
  
  & .subtitle {
    text-align: left;
    font-size: 15px;
    text-transform: uppercase;
  }
  
  & .text {
    text-align: left;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: -0.54px;
    color: #696158;
    margin-bottom: 50px;
  }
}

section#compromisso .content {
  
  & .title {
    color: #728046;
    font-size: 45px;
    letter-spacing: -0.68px;
    text-align: left;
    
    @media only screen and (min-width: 600px) {
      width: 900px;
    }
  }
  
  & .subtitle {
    text-align: left;
    font-size: 15px;
    text-transform: uppercase;
  }
  
  & .text {
    text-align: left;
    font-size: 18px;
    line-height: 29px;
    letter-spacing: -0.54px;
    color: #696158;
    margin-bottom: 50px;
  }
}

section#fabrica {    
  background-color: #BFB800;
  display: flex;
  align-items: center;
  column-gap: 50px;
  flex-wrap: nowrap;
  
  @media only screen and (min-width: 600px) {
    padding-right: 35px;
  }
  
  @media only screen and (max-width: 600px) {
    flex-direction: column;
  }
  
  & .content .title, .text {
    color: #FFF;
    text-align: left;
  }
  
  & .content .text {
    font-size: 18px;
    line-height: 29px;
    letter-spacing: -0.54px;
    margin-bottom: 50px;
  }
}

section#video .content {
  & .title {
    color: #728046;
  }
  
  & button.thumbnail {
    width: 100%;
    aspect-ratio: 16/9;
    /* height: 720px */
    background: #000;
    cursor: pointer;
    
    &::after {
      background-image: url('../svg/play.svg');
      background-size: 100px;
      display: block;
      filter: invert(1);
      height: 100px;
      width: 100px;
      transform: rotate(270deg);
      content: "";
      margin: 0 auto;
    }
  }
}

section#numeros {
  
  & .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 45px;
    
    @media only screen and (max-width: 600px) {
      flex-direction: column;
      align-items: center;
    }
    
    & .item {
      box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
      height: 370px;
      width: 400px;
      box-shadow: 0px 50px 40px #0000000D;
      margin-top: 0;
      transition: all 0.3s ease-in-out;
      padding-left: 55px;
      padding-top: 60px;
      display: flex;
      flex-direction: column;
      background-color: #FFF;

      @media only screen and (max-width: 600px) {
        width: 100%;
      }
      
      &:hover {
        box-shadow: 0px 30px 40px #00000021;
        margin-top: -10px;
        transition: all 0.3s ease-in-out;
      }
      
      & img {
        height: 85px;
        margin-bottom: 40px;
      }
      
      & .titulo {
        color: #696158;
        font-size: 18px;
        line-height: 23px;
        font-weight: bold;
        letter-spacing: -0.21px;
        width: fit-content;
      }
      
      & .numeros {
        color: #BFB800;
        font-size: 25px;
        line-height: 56px;
        font-family: "Arboria-Black", sans-serif;
        font-weight: 900;
        
        & span.numero {
          font-size: 60px;
        }
      }
      
      & .texto {
        color: #696158;
        font-size: 18px;
        line-height: 29px;
        letter-spacing: -0.54px;
        width: fit-content;
      }
    }
  }
}

/* Estilo do Modal */
.modal-video {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal-conteudo {
  position: relative;
  width: 1280px;
  background: #000;
  padding: 50px;
}

.fechar-modal {
  position: absolute;
  top: -15px;
  right: -15px;
  color: #fff;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 60px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* Proporção 16:9 */
  height: 0;
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}