#cabecalho-emp {
    position: relative;
    padding: 150px 0 70px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    margin-top: -90px;
    align-items: center;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.20) 0%, rgba(0, 0, 0, 0.20) 100%);
    z-index: 1;
  }

  > .container {
    position: relative;
    z-index: 2;
  }

  .central {
    display: flex;
    align-items: center;
  }

    .info-cabecalho{
      .localizacao {
        color: #FFFAEC;
        font-size: 20px;
        font-weight: 500;
        line-height: 60px;
        text-transform: uppercase;
        margin: 0;
      }
          
      h1 {
          color: #FFFAEC;
          font-size: 36px;
          font-weight: 500;
          line-height: 60px;
          margin: 0;
      }
  
      .diferencial {
        color: #FFFAEC;
        font-size: 20px;
        font-weight: 500;
        line-height: 60px;
        margin: 0;
      } 
    }


    .form-interesse {
      border-radius: 20px;
      background: var(--bord, #5C1635);
      padding: 35px 20px;

      h3 {
        color: #FFF;
        font-size: 24px;
        font-weight: 500;
        line-height: 60px;
        text-transform: uppercase;
        margin: 0;
      }
      .form {
        color: #FFF;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
      }

      .form-control {
            color: #FFFAEC;
            font-size: 20px;
            font-weight: 500;
            line-height: 40px;
            background-color: transparent;
            border: none;
            border-bottom: solid 1px #FFFAEC;
            border-radius: 0;
            padding-left: 30px;
        }
        input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
            color: #FFFAEC !important;
        }
        input::-moz-placeholder { /* Firefox 19+ */
            color: #FFFAEC !important;
        }
        input:-ms-input-placeholder { /* IE 10+ */
            color: #FFFAEC !important;
        }
        input:-moz-placeholder { /* Firefox 18- */
            color: #FFFAEC !important;
        }

        .icon-form{
            position: absolute;
            top: 15px;
            left: 10px;
        }
        .form-control:focus {
            box-shadow: none;
        }
      
        .btn-padrao{
            padding: 0 15px;
            background-color: var(--bord);
            color: var(--branco);
            border: 1px solid var(--branco);

            &:hover{
                background-color: var(--branco);
                color: var(--bord) !important;

            }
        }
    }

    @media (max-width: 767px) {
      padding: 100px 0 40px 0;

      .info-cabecalho {
        .localizacao, .diferencial {
          line-height: 1.4;
        }
        h1 {
          font-size: 28px;
          line-height: 1.25;
        }
      }

      .form-interesse h3 {
        line-height: 1.4;
      }
    }
}

#atalhos {
    padding: 30px 0;
    border: solid 1px rgba(92, 22, 53, 0.50);

    .link-ancora{
      color: rgba(92, 22, 53, 0.50);
      font-size: 20px;
      font-weight: 500;
      line-height: 40px;
      text-align: center;

      &:hover{
        color: var(--bord, #5C1635);
      }
    }

    @media (max-width: 767px) {
      .link-ancora {
        font-size: 16px;
        line-height: 1.4;
      }
    }
}

#quemSomos{
    padding: 80px 0 40px;
    
    h2{
        text-align: left;
    }

    .text-quemSomos{
        color: var(--chumbo, #5D5E58);
        font-size: 16px;
        font-weight: 500;
        line-height: 28px; /* 175% */
    }

    .img-quem-somos{
        width: 100%;
        object-fit: cover;
        height: 100%;
    }

    .card-diferenciais {
      background: var(--bege, #F2EEDC);
      display: flex;
      height: 60px;
      padding: 5px;
      flex-direction: column;
      align-items: center;
      justify-content: center;

        .item-dif {
            color: var(--bord, #5C1635);
            font-size: 20px;
            font-weight: 500;
            line-height: 40px;
            margin: 0;
            display: flex;
            align-items: center;

            img{
              margin-right: 4px;
            }
        }
    }

    .btn-padrao{
        color: var(--bord) !important;
        border: 1px solid var(--bord);

        &:hover{
            background-color: var(--bord);
            color: var(--branco) !important;
            border: 1px solid var(--bord);
        }
    }
}

#galeria{

  /* .swiper-slide {
    opacity: .5;
    transition: opacity .3s ease;
  }

  .swiper-slide-active {
    opacity: 1;
  } */

  .img-galeria{
    width: 100%;
    height: 360px;
    object-fit: cover;
  }

  
  .passadores {
      margin-top: 40px;
      margin-bottom: 0px;

      .swiper-pagination-bullet-active {
        background: var(--bord);
      }
  }

  @media (max-width: 767px) {
    .img-galeria {
      height: 220px;
    }
  }
}

#videos {
  padding: 80px 0;

  #video{
    position: relative;
    height: 530px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    .play-video {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        img{
            transition: transform 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
        }
        
    }
  }
  hr {
    margin: 0 !important;
  }

  @media (max-width: 767px) {
    #video {
      height: 430px;
      margin-bottom: 10px;
    }
  }
}

#localizacao{
    padding: 0 0 80px 0;

    h2{
      text-align: left;
    }

    iframe{
      width: 100%;
      height: 100%;
    }

    .img-localizacao{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

      .btn-padrao{
        color: var(--bord) !important;
        border: 1px solid var(--bord);
        padding: 0;

        &:hover{
            background-color: var(--bord);
            color: var(--branco) !important;
            border: 1px solid var(--bord);
        }
    }
}

#plantas{
  h2{
    text-align: left;
  }

  .planta-galeria {
    display: none;

    &.active {
      display: block;
    }
  }

  .form-select {
    color: rgba(92, 22, 53, 0.40);
    font-family: "Gotham Medium";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: 40px;
    border: none;
    border-bottom: solid 1px #5c163566;
    border-radius: 0;
    margin-bottom: 30px;
  }

  .img-planta {
    width: 100%;
    height: 600px;
    object-fit: contain;
  }

  .swiper-button-next, .swiper-button-prev {
      border: 2px solid var(--bord);
      width: 50px;
      height: 50px;
      color: var(--bord);
      
      &:hover{
          background-color: var(--bord);
          border: none;
          color: var(--branco);
      }
  }
  .swiper-button-next:after, .swiper-button-prev:after{
      font-size: 16px;
      font-weight: 900;
  }
}

#obra {
  background: var(--bege, #F2EEDC);
  padding: 60px 0;
  text-align: center;
  
  .item-obra {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
  }
  
  .progressao {
    --percent: 0;
    --size: 120px;
    --thickness: 5px;
    position: relative;
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .progressao::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(var(--bord, #5C1635) calc(var(--percent) * 1%), var(--branco, #fff) 0);
    -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - var(--thickness)), #000 calc(100% - var(--thickness) + 1px));
            mask: radial-gradient(farthest-side, transparent calc(100% - var(--thickness)), #000 calc(100% - var(--thickness) + 1px));
  }
  
  .progressao-valor {
    color: var(--bord, #5C1635);
    text-align: center;
    font-size: 24px;
    font-weight: 500;
  }
  .item-obra {
    color: var(--bord, #5C1635);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .swiper-pagination-bullet-active {
    background: var(--bord);
  }
}


/* TABLET */
@media (min-width: 768px) and (max-width: 1024px) {
  #atalhos{
    .atalhos-mob{
        display: flex;
        flex-wrap: nowrap;
        overflow: scroll;
        padding-bottom: 30px;
        margin-bottom: -30px;
    }
  }
}

/* MOBILE */
@media all and (max-width: 767px) { 

  #cabecalho-emp {
    padding: 0;
    height: 380px;

    h1{
      font-size: 30px !important;
      line-height: 38px !important; /* 126.667% */
      margin-bottom: 20px !important;
    }

    .localizacao, .diferencial {
        font-size: 16px !important;
        margin-bottom: 20px !important;
    }
  }

  /* FORMULÁRIO APENAS DO MOBILE */
    #form-mob-emp{
        background-color: var(--bord);

        .form-interesse {
        border-radius: 0px;
        background: var(--bord, #5C1635);
        padding: 35px 20px;

        h3 {
          color: #FFF;
          font-size: 24px;
          font-weight: 500;
          line-height: 60px;
          text-transform: uppercase;
          margin: 0;
        }
        .form {
          color: #FFF;
          font-size: 16px;
          font-weight: 500;
          line-height: 24px;
        }

        .form-control {
              color: #FFFAEC;
              font-size: 20px;
              font-weight: 500;
              line-height: 40px;
              background-color: transparent;
              border: none;
              border-bottom: solid 1px #FFFAEC;
              border-radius: 0;
              padding-left: 30px;
          }
          input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
              color: #FFFAEC !important;
          }
          input::-moz-placeholder { /* Firefox 19+ */
              color: #FFFAEC !important;
          }
          input:-ms-input-placeholder { /* IE 10+ */
              color: #FFFAEC !important;
          }
          input:-moz-placeholder { /* Firefox 18- */
              color: #FFFAEC !important;
          }

          .icon-form{
              position: absolute;
              top: 15px;
              left: 10px;
          }
          .form-control:focus {
              box-shadow: none;
          }
        
          .btn-padrao{
              padding: 0 15px;
              background-color: var(--bord);
              color: var(--branco);
              border: 1px solid var(--branco);

              &:hover{
                  background-color: var(--branco);
                  color: var(--bord) !important;

              }
          }
      }

      @media (max-width: 767px) {
        padding: 0;

        .info-cabecalho {
          .localizacao, .diferencial {
            line-height: 1.4;
          }
          h1 {
            font-size: 28px;
            line-height: 1.25;
          }
        }

        .form-interesse h3 {
          line-height: 1.4;
        }
      }
    }
  /* FORMULÁRIO APENAS DO MOBILE */

  #quemSomos{
    .efeito-titulo {
      text-align: left;
      margin-bottom: 16px;
    }
    .card-diferenciais{
      margin: 0 20px;
    }
  }

  #galeria{
    h2{
      text-align: center;
    }
    .img-galeria {
        height: 360px;
    }
  }

  #videos{  
    h2{
      text-align: center;
    }
  }



  #atalhos{
    .atalhos-mob{
        display: flex;
        flex-wrap: nowrap;
        overflow: scroll;
        padding-bottom: 30px;
        margin-bottom: -30px;
    }
  }

  #plantas{
    .img-planta {
      width: 100%;
      height: 300px;
      object-fit: contain;
    }
  }

  #obra {
    h2{
      text-align: center !important;
    }
  }
}

