
.container{
  width: 1200px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .container{
    width: 90%;
    margin: 0 5%;
  }
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(49,67,119,0);
  height: 88px;
  color: white;
  border-bottom: 4px solid #fa041c;
  position: fixed;
  width: 100%;
  z-index: 9;
}
@media (max-width: 768px) {
  .top-bar{
    display: block;
    float: left;
    height: auto;
    margin-top: 32px;
  }
}

.logo{
  display: flex;
}
@media (max-width: 768px) {
  .logo{
    padding: 10px 0;
    float: left;
  }
}
.logo img{
  height: 50px;
}

.logo .red {
  color: red;
}

.ico-menu{
  display: none;
}
@media (max-width: 768px) {
  .ico-menu{
    display: block;
    height: 45px;
    float: right;
    margin: 13px 15px 0 0;
  }
}

.box-menu{
  display: flex;
    flex-wrap: wrap;
    align-items: center;
}
@media (max-width: 768px) {
  .box-menu{
    display: block;
  }
}

.nav{
  display: flex;
  align-items: center;
  height: 88px;
}
@media (max-width: 768px) {
  .nav{
    display: none;
    width: 100%;
    height: auto;
    background: rgba(49,67,119,1);
    float: left;
  }
}

.nav li{
  list-style: none;
  position: relative;
}
.nav li:hover>ul{
  display: block;
}
.nav li ul{
  display: none;
  position: absolute;
  left: 0px;
  width: 200px;
  z-index: 9;
  background: #314376;
}
@media (max-width: 768px) {
  .nav li ul{
    position: relative;
    width: 100%;
    padding-left: 15px;
  }
}
.nav li ul li{
  width: 100%;
  float: left;
}

.nav li ul li a{
  height: auto;
  padding: 10px 20px;
  line-height: normal;
  font-size: 14px;
}

.nav li ul li ul{
  position: absolute;
  left: 200px;
  top: 0px;
}
@media (max-width: 768px) {
  .nav li ul li ul{
    position: relative;
    left: 0px;
  }
}

.nav a {
  height: 88px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  padding: 0 20px;
  transition: 0.4s;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .nav a{
    height: auto;
    padding: 10px 20px;
  }
}

.nav .active{
  background: #fa041c;
  color: #fff;
}

.nav a:before{
  content: "";
  width: 100%;
  height: 100%;
  background: #fa041c;
  position: absolute;
  z-index: -1;
  left: 0px;
  top: 88px;
  transition: 0.3s;
}

.nav a:hover:before{
  top: 0px;
  transition: 0.3s;
}

.televendas {
  background: red;
  padding: 0.5rem 1rem;
  color: white;
  border-radius: 4px;
  font-size: 14px;
  float: right;
  text-align: center;
  line-height: normal;
  margin-left: 50px;
  margin-right: 30px;
}
.televendas a{
    color: #fff;
  }
@media (max-width: 768px) {
  .televendas{
    display: block;
    width: 100%;
    margin: 0px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    left: 0;
    top: -32px;
  }
  .televendas a{
    color: #fff;
  }
  .televendas a[href^="tel"] {
    color: #fff;
  }
  .televendas strong{
    width: 100%;
    text-align: center;
  }
  .televendas a br{
    display: none;
  }
}

.hero {
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.slider{
  width: 100%;
  height: 700px;
  float: left;
}

.bxslider{
  width: 100%!important;
  height: 700px;
  float: left;
}

.bxslider .item{
  width: 100%!important;
  height: 700px;
  float: left;
  animation: zoomInCustom 8s ease forwards;
}
.bxslider img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  float: left;
}

.zoom-slide {
  width: 100%;
  height: 100%;
  display: block;
  transform-origin: center center;
  object-fit: cover;
}

@keyframes zoomInCustom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@media (max-width: 768px) {
  .hero{
    height: 500px;
  }
}

.hero .overlay{
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  background-color: #314376;
  opacity: 0.5;
  transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

.hero-text{
  position: relative;
  line-height: normal;
}

.hero-text h1 {
  padding: 1rem;
  font-size: 60px;
  color: #fff;
}

.produtos-container{
  width: 100%;
  float: left;
}

.produtos-container .box-text{
  width: 100%;
  float: left;
  padding: 20px 0;
}

.produtos-container h2{
  font-size: 42px;
  color: #314376;
  float: left;
  line-height: normal;
  margin-top: 20px;
}

.produtos-home {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.produtos-home .owl-item:nth-child(2n) .produto-card:before{
  background: #2c3e50;
}
@media (max-width: 768px) {
  .produtos-home{
    grid-template-columns: repeat(1, 1fr);
  }
}

.produto-card {
  height: 300px;
  padding: 2rem;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  position: relative;
}
@media (max-width: 768px) {
  .produto-card{
    height: 250px;
    width: 100%;
  }
}

.produto-card h3{
  font-size: 35px;
  font-weight: 500;
  line-height: normal;
  position: relative;
  width: 100%;
  opacity: 0.5;
  transition: 0.4s;
}

.produto-card:hover h3{
  opacity: 1;
  transition: 0.4s;
}


.produto-card.vermelho:before {
  content: "";
  width: 100%;
  height: 100%;
  background: red;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0.4;
  transition: 0.4s;
}

.produto-card:nth-child(2n):before{
  background: #2c3e50;
}

.produto-card.vermelho:hover:before {
  opacity: 0.8;
  transition: 0.4s;
}

.produto-card.azul:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #2c3e50;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0.4;
  transition: 0.4s;
}

.produto-card.azul:hover:before {
  opacity: 0.8;
  transition: 0.4s;
}

.produto-card button {
  background: white;
  color: red;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  position: relative;
}

.produto-card .btn {
  background: white;
  color: #314376;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  position: relative;
  text-decoration: none;
}

.sobre {
  width: 100%;
  float: left;
  padding: 3rem 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  .sobre{
    padding: 3rem 0px;
  }
}

.sobre .box-text{
  width: 100%;
  float: left;
}

.sobre h2{
  font-size: 42px;
  color: #314376;
  float: left;
  line-height: normal;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .sobre h2{
    font-size: 30px;
  }
}

.sobre h3{
  font-size: 17px;
  color: #fa041c;
  float: left;
  width: 100%;
  text-align: left;
}

.sobre .cards {
  width: 100%;
  float: left;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
  gap: 20px;
}
@media (max-width: 768px) {
  .sobre .cards{
    flex-direction: column;
  }
}

.sobre .card {
  height: auto;
  padding: 50px 40px;
  border-radius: 8px;
  flex: 1;
}


.card .box-ico{
  width: 74px;
  height: 78px;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card .box-ico i{
  color: #314376;
  display: flex;
  font-size: 40px;
}

.card h4{
  font-size: 23px;
  text-align: left;
  margin-bottom: 16px;
}

.card p{
  text-align: left;
}

.card.azul {
  background: #2c3e50;
  color: white;
}

.card.vermelho {
  background: red;
  color: white;
}

.card.branco {
  background: #f0f0f0;
  color: #333;
}

.segmentos {
  width: 100%;
  float: left;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.segmentos .box-text{
  width: 100%;
  float: left;
}

.segmentos h2{
  font-size: 42px;
  color: #314376;
  float: left;
  line-height: normal;
  margin-top: 20px;
}

.segmentos h3{
  font-size: 17px;
  color: #fa041c;
  float: left;
  width: 100%;
  text-align: left;
}

.segmento-card {
  height: 300px;
  padding: 2rem;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}

.segmento-card h2{
  font-size: 35px;
  font-weight: 500;
  line-height: normal;
  position: relative;
}


.segmento-card.vermelho:before {
  content: "";
  width: 100%;
  height: 100%;
  background: red;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0.8;
  transition: 0.4s;
}

.segmento-card.vermelho:hover:before {
  opacity: 1;
  transition: 0.4s;
}

.segmento-card.azul:before {
  content: "";
  width: 100%;
  height: 100%;
  background: #2c3e50;
  position: absolute;
  left: 0px;
  top: 0px;
  opacity: 0.8;
  transition: 0.4s;
}

.segmento-card.azul:hover:before {
  opacity: 1;
  transition: 0.4s;
}

.segmento-card button {
  background: white;
  color: red;
  border: none;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  cursor: pointer;
  position: relative;
}

.empresa {
  width: 100%;
  float: left;
  padding: 100px 0;
}
@media (max-width: 768px) {
  .empresa{
    padding: 100px 0 50px 0;
  }
}

.empresa .img-box{
  width: 550px;
  float: left;
}
@media (max-width: 768px) {
  .empresa .img-box{
    width: 100%;
  }
}

.empresa .img-box img{
  width: 100%;
}

.empresa .text-box {
  float: right;
  width: 600px;
}
.empresa .text-box p{
  line-height: 24px;
  margin-block-start: 10px;
  margin-block-end: 10px;
  text-align: justify;
}
@media (max-width: 768px) {
  .empresa .text-box{
    width: 100%;
  }
}

.empresa .text-box h4{
  font-size: 17px;
  font-weight: 400;
  color: #fa041c;
}

.empresa .text-box h2{
  font-size: 45px;
  color: #314376;
}

.empresa .text-box button {
  margin-top: 1rem;
  background: red;
  color: white;
  border: none;
  padding: 1rem;
  cursor: pointer;
  border-radius: 4px;
}

.parceiros{
  width: 100%;
  float: left;
  background: #eeebeb;
  padding: 70px 0;
  margin-top: 50px;
}
.parceiros .box-text{
  width: 100%;
  float: left;
}

.parceiros h2{
  font-size: 42px;
  color: #314376;
  float: left;
  line-height: normal;
  margin-top: 20px;
  text-align: center;
  width: 100%;
}

.parceiros ul{
  width: 100%;
  float: left;
  margin-top: 70px;
}
.parceiros ul li{
  list-style: none;
  width: calc(33.33% - 60px);
  margin: 0 30px;
  float: left;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .parceiros ul li{
    width: 100%;
    margin: 20px 0;
  }
}
.parceiros ul li .text{
  width: 100%;
  float: left;
  margin-top: 15px;
}
.parceiros ul li p{
  font-size: 16px;
  color: #787878;
  line-height: 24px;
}

footer {
  width: 100%;
  padding: 50px 0;
  float: left;
  background: #314376;
  position: relative; }
  footer .mapa-site {
    width: 100%;
    float: left; }
    footer .mapa-site .title {
      color: #fff;
      padding-bottom: 20px; }
    footer .mapa-site .menu-mapa-site-container {
      width: 100%;
      float: left; }
      footer .mapa-site .menu-mapa-site-container ul {
        width: 100%;
        float: left;
        font-size: 13px; }
        footer .mapa-site .menu-mapa-site-container ul li {
          list-style: none;
          float: left;
          padding: 5px 50px 5px 0; }
          @media (max-width: 768px) {
            footer .mapa-site .menu-mapa-site-container ul li {
              width: 100%;
            }
          }
          footer .mapa-site .menu-mapa-site-container ul li a {
            text-decoration: none;
            color: #fff; }
          footer .mapa-site .menu-mapa-site-container ul li a:hover {
            color: red; }
          footer .mapa-site .menu-mapa-site-container ul li ul li {
            width: 100%; }
        footer .mapa-site .menu-mapa-site-container ul li:nth-child(2) {
          width: 320px; }
          footer .mapa-site .menu-mapa-site-container ul li:nth-child(2) ul li {
            padding-left: 15px; }
        footer .mapa-site .menu-mapa-site-container ul li:nth-child(3), footer .mapa-site .menu-mapa-site-container ul li:nth-child(4) {
          width: 270px; }
          footer .mapa-site .menu-mapa-site-container ul li:nth-child(3) ul li, footer .mapa-site .menu-mapa-site-container ul li:nth-child(4) ul li {
            padding-left: 15px; }
  footer .box {
    float: right;
    position: absolute;
    top: 200px;
    right: 50%;
    margin-right: -650px; }
    @media (max-width: 768px) {
      footer .box {
        width: 100%;
        position: static;
        margin: 20px 0 0 0;
        padding-bottom: 50px; } }

  footer .box .text p{
    color: #fff;
    margin-bottom: 10px;
  }

  footer .box .text a{
    text-decoration: none;
  }

  footer .logo-footer{
    width: 259px;
  }
