/********** GERAL **********/

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

img {
  margin: auto;
  display: block;
  max-width: 100%;
}

body,
p,
h1,
ul,
li {
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

a {
  text-decoration: none;
  list-style: none;
}

li {
  list-style: none;
}

.container {
  max-width: 980px;
  margin: auto;
}

.titulo-padrao {
  font-size: 48px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000616;
}

.descricao-padrao {
  font-size: 16px;
  font-weight: 400;
  color: #000616;
  line-height: 25px;
}

.img-padrao img {
  width: 100%;
  margin-top: 80px;
}

/********** SCROLL **********/

::-webkit-scrollbar {
  width: 10px;
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #009A98;
  border-radius: 60px;
}

/********** HEADER **********/

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1180px;
  margin: auto;
  padding: 20px 0;
}

.logo {
  width: auto;
}

.menu {
  display: flex;
}

.menu-item-link {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 10px 15px;
}

.menu-item-link:hover {
  background: #0080B1;
}

.select {
  background: #0080B1;
  color: #000616;
  font-weight: 700;
}

.menu-burger {
  display: none;
}

.fa-bars {
  color: #fff;
}


/********** BANNER **********/

.banner {
  display: block;
  margin-top: 0;
  position: relative;
  z-index: -1000;
}

.banner img {
  width: auto;
  display: block;
  margin-top: -135px;
  object-fit: cover;
}

.banner .banner-img-mobile {
  display: none;
}

.banner .container-banner {
  width: 100%;
  position: absolute;
  color: #36413F;
  top: 85%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.banner-titulo {
  line-height: 60px;
  font-weight: 800;
  font-size: 45px;
  text-transform: uppercase;
  color: #fff;
}

.banner-txt {
  font-size: 22px;
  line-height: 20px;
  font-weight: 500;
  margin-top: 10px;
  text-transform: uppercase;
  color: #fff;
}

/********** FENIX **********/

.fenix {
  padding: 80px 0;
  background: #0080B1;
}

/********** SERVIÇOS **********/

.servicos {
  padding: 80px 0;
  background: #000616;
}

.servicos .container {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.servicos .titulo-padrao {
  color: #009A98;
  margin-bottom: 50px;
}

.icones {
  padding: 20px 0;

}

.icones:hover {
  background: #000207;
}


.icones img {
  width: 120px;
  margin: auto;
  color: white;
}

.titulo-icone {
  margin-top: 20px;
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  color: white;
}


/********** ALARMES **********/

.alarmes {
  background: #009A98;
  padding: 80px 0 0;
}

.alarmes:hover {
  background: rgb(238, 255, 1);
}


/********** CÂMERAS DE SEGURANÇA **********/

.cameras {
  background: #103022;
  padding: 80px 0 0;
}

.cameras .titulo-padrao {
  color: #fff;
}

.cameras .descricao-padrao {
  color: #fff;
}

.box-imagens {
  background: #fff;
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}


/*********** CERCA ELÉTRICA ***********/


.cerca-eletrica {
  background: #0094C6;
  padding: 80px 0 0;
}

.cerca-eletrica .titulo-padrao {
  color: #fff;
}

.cerca-eletrica .descricao-padrao {
  color: #fff;
}


/*********** CONTATO ***********/

.contato {
  padding: 80px 0;
  background: #000616;
}


.contato .titulo-padrao {
  color: #009A98;
}

.contato .descricao-padrao {
  color: #fff;
  font-weight: 300;
  margin-bottom: 40px;
}

.contato .container {
  width: 680px;
}

form {
  margin: auto;
  box-sizing: border-box;
}

input,
textarea {
  width: 100%;
  margin-bottom: 30px;
  padding: 15px;
  box-sizing: border-box;
  font-size: 11px;
  border: none;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
}

textarea {
  min-height: 100px;
  max-height: 200px;
}

.buton {
  width: 150px;
  background: #009A98;
  color: #000616;
  padding: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 0;
}


/*********** FOOTER ***********/

.footer {
  padding: 20px 0;
  background: #009A98;
}

/*********** GO TOP ***********/

.go-top {
  position: fixed;
  width: 40px;
  height: 40px;
  background: #fff;
  bottom: 40px;
  right: 40px;
  text-decoration: none;
  color: #000616;
  text-align: center;
  line-height: 40px;
  font-size: 22px;
  border-radius: 12px;
}


@media only screen and (max-width: 1280px) {
  .banner .container-banner {
    width: 80%;
    position: absolute;
    color: #36413F;
    top: 85%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .banner-titulo {
    font-size: 35px;
    margin-bottom: -10px;
  }

  .banner-txt {
    font-size: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .container {
    max-width: 800px;
    margin: auto;
  }

  .header .container {
    max-width: 950px;
  }

  .logo {
    width: 300px;
  }

  .menu-item-link {
    font-size: 12px;
    padding: 10px 10px;
  }

  .banner img {
    width: auto;
    display: block;
    margin-top: -155px;
    object-fit: cover;
  }

  .banner-titulo {
    font-size: 28px;
    margin-bottom: -10px;
  }

  .banner-txt {
    font-size: 17px;
  }
}

@media only screen and (max-width: 768px) {
  .container {
    max-width: 85%;
  }

  .header .container {
    width: 93%;
  }

  .menu-burger {
    display: flex;
    cursor: pointer;
    order: 1;
  }

  .nav .menu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 83%;
    height: 100%;
    background: #000616;
    opacity: 1;
    transition: all 0.6s;
    transform: translateX(-100%);
  }

  .menu.show {
    transform: translateX(0);
  }

  .menu-item-link {
    display: block;
    width: 100%;
    padding: 35px 50px;
    font-size: 18px;
  }

  .select {
    background: none;
    color: #fff;
    font-weight: 400;
  }

  .banner .container-banner {
    width: 75%;
    top: 85%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }

  .banner-titulo {
    font-size: 21px;
    margin-bottom: -5px;
    line-height: 22px;
  }

  .banner-txt {
    font-size: 11px;
  }

  .go-top {
    display: none;
  }
}


@media only screen and (max-width: 480px) {
  .container {
    max-width: 75%;
  }

  .logo {
    max-width: 270px;
  }

  /* .banner img {
    background-image: url;
    display: block;
    margin-top: -111px;
    height: 500px;
    object-fit: cover;
  } */

  .banner img {
    display: none;
  }

  .banner .banner-img-mobile {
    background-image: url;
    display: block;
    margin-top: -111px;
    height: 500px;
    object-fit: cover;
  }

  /* .banner-titulo,
  .banner-txt {
    display: none;
  } */

  .titulo-padrao {
    font-size: 38px;
  }

  .descricao-padrao {
    font-size: 17px;
  }

  .servicos .container {
    grid-template-columns: 1fr;
  }

  .box-imagens {
    margin-top: 70px;
    grid-template-columns: 1fr;
  }

  .fenix,
  .servicos,
  .contato {
    padding: 40px 0;
  }

  .alarmes,
  .cameras,
  .cerca-eletrica {
    padding: 40px 0 0;
  }

  .footer .descricao-padrao {
    font-size: 14px;
    line-height: 1.5;
  }
}

@media only screen and (max-width: 320px) {
  .header .container {
    width: 90%;
  }

  .logo {
    max-width: 200px;
  }

  .fenix,
  .servicos,
  .contato {
    padding: 40px 0;
  }

  .alarmes,
  .cameras,
  .cerca-eletrica {
    padding: 40px 0 0;
  }
}
