/* ===================== */
/* BASE GERAL            */
/* ===================== */

body {
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  max-width: 100%;
  min-width: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: contain; /* garante proporção */
}

/* CLASSES UTILITÁRIAS */
.x-55 { width: 55%; }
.x-40 { width: 40%; }
.x-100 { width: 100%; }

.mobile { display: none !important; }

/* MENU FIXO */
.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}
.sticky ~ .margem {
  height: 130px;
  width: 100%;
}

/* ===================== */
/* CABEÇALHO             */
/* ===================== */

.menu-header .container {
  width: 100%;
  background-color: #efefef;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3%;
}
.menu-header .container .contatos-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.menu-header .container .email a,
.menu-header .container .telefone a {
  font-size: 15px;
  color: #000;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.menu-header .container .email a img,
.menu-header .container .telefone a img {
  height: 22px;
  margin: 10px;
}
.menu-header .container .redes {
  display: flex;
  align-items: center;
}
.menu-header .container .redes a img {
  height: 37px;
  margin: 10px;
  transition: 0.5s;
}
.menu-header .container .redes a:hover img {
  opacity: 0.7;
}

/* HEADER */
.menu-header .header {
  height: 90px;
  padding: 0 5%;
  width: 100%;
  background-image: url("../../img/background-azul.jpg");
  display: flex;
  justify-content: space-between;
}
.menu-header .header .logo {
  width: 50%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10px;
}
.menu-header .header .logo .logo1 {
  max-height: 80px;
}
.menu-header .header .logo .logo2 {
  max-height: 70px;
  margin-left: 1%;
}
.menu-header .header .menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 50%;
}
.menu-header .header .menu a {
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  color: black;
  position: relative;
}
.menu-header .header .menu a::before {
  content: "";
  width: 0;
  height: 3px;
  background-color: #3E4095;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
}
.menu-header .header .menu a:hover::before {
  width: 100%;
}

/* ===================== */
/* HOME - PARCEIROS      */
/* ===================== */

.home .parceiros {
  padding: 1%;
}
.home .parceiros .logo-pareceiros {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .parceiros .logo-pareceiros img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
}

/* ===================== */
/* HOME - BANNER         */
/* ===================== */

.home .banner {
  height: calc(100vh - 270px);
  min-height: 650px;
}
.home .banner .slick-list,
.home .banner .slick-list .slick-slide {
  height: 100%;
}
.home .banner .slick-list .slick-slide img {
  width: 100%;
  height: auto;          /* corrigido */
  object-fit: cover;     /* cobre a área proporcionalmente */
}

/* ===================== */
/* HOME - PRODUTOS       */
/* ===================== */

.home .produto {
  background-image: url("../../img/background-azul.jpg");
}
.home .produto h1 {
  text-align: center;
  color: #3E4095;
  font-weight: bold;
  padding: 4% 0;
  font-size: 50px;
}
.home .produto .produtos {
  display: flex;
  flex-wrap: wrap;
}
.home .produto .produtos .box {
  width: 20%;
  height: 300px;
  position: relative;
  overflow: hidden;
}
.home .produto .produtos .box img {
  width: 100%;
  height: auto;          /* corrigido */
  object-fit: cover;
  transition: transform 9s;
}
.home .produto .produtos .box .descricao {
  background-color: #1b00ff54;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: white;
}
.home .produto .produtos .box:hover img {
  transform: scale(1.2);
}
.home .produto .produtos .box:hover .descricao {
  height: 100%;
}

/* ===================== */
/* HOME - GALERIA        */
/* ===================== */

.home .galeria {
  background: linear-gradient(to bottom, #3d89f9, #3168e7);
  padding-bottom: 4%;
}
.home .galeria h1 {
  color: #fff;
  text-align: center;
  font-size: 45px;
  padding: 4% 0;
}
.home .galeria .galeria-carrosel .cada-foto {
  height: 250px;
  position: relative;
}
.home .galeria .galeria-carrosel .cada-foto img {
  width: 100%;
  height: auto;          /* corrigido */
  object-fit: cover;
}

/* ===================== */
/* SOBRE                 */
/* ===================== */

.sobre .container {
  display: flex;
  padding: 0 10%;
}
.sobre .container .imagem img {
  width: 100%;
  height: auto;          /* corrigido */
  object-fit: cover;
}

/* ===================== */
/* FILIAIS               */
/* ===================== */

.filiais .cada-filial .filial img {
  width: 90%;
  height: auto;          /* corrigido */
  object-fit: cover;
}
.filiais .bloco-filial .box img {
  width: 100%;
  height: auto;          /* corrigido */
  object-fit: cover;
}

/* ===================== */
/* FOOTER                */
/* ===================== */

.footer {
  background-color: #efefef;
  display: flex;
  justify-content: space-between;
  padding: 10px 5%;
  font-size: 14px;
}
.footer .web-pp a {
  display: flex;
  align-items: center;
}
.footer .web-pp a img {
  width: 22%;
  margin-right: 15px;
}

/* ===================== */
/* RESPONSIVO            */
/* ===================== */

@media (max-width: 600px) {
  .mobile { display: block !important; }
  .desktop { display: none !important; }

  .menu-header .header {
    flex-direction: column;
    height: auto;
  }
  .menu-header .header .logo img {
    max-height: 60px;
  }

  .home .produto .produtos .box {
    width: 50%;
    height: 200px;
  }

  .home .galeria h1 {
    font-size: 30px;
  }
  .home .galeria .galeria-carrosel .cada-foto {
    height: 200px;
  }

  .sobre .container {
    flex-direction: column;
  }
  .sobre .container .imagem img {
    height: auto;
  }
}

/*# sourceMappingURL=style.css.map */