@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300..700;1,300..700&display=swap');

body {
    font-family: 'Red Hat Text', sans-serif;
    overflow-x: hidden;
}

main {
    overflow: hidden;
    background-color: #4ec1dc;
}

header {
  width: 100%;
  background: rgb(255,255,255);
  background: linear-gradient(90deg, rgba(255,255,255,1) 70%, rgba(68,68,68,1) 70%);
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: none;
  color: inherit;
  opacity: 0.8;
}

strong {
  font-weight: 500;
}

section {
  padding: 80px 0;
  color: #677182;
}

header .logo {
  width: 100%;
  max-width: 250px;
}

header ul {
  flex-direction: row;
  height: 100%;
  background-color: #444;
  border-radius: 0;
  align-items: center;
  justify-content: end;
  width: fit-content;
  display: flex;
  padding: 0;
}

header li {
  border: none;
  background: transparent;
  color: inherit;
  display: block;
  padding: 0 15px;
}

header .contatos {
  /* background-color: #444; */
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
}

header .contatos svg {
  width: 30px;
  aspect-ratio: 1/1;
  margin-right: 5px;
}

header .menu {
  background-color: #444;
}

header .borda-direita {
  border-right: 2px solid #575757;
}

header .nav-item {
  text-align: left;
}

header .nav-item a {
  font-size: 14px;
  color: #FFF;
  font-weight: 500;
  text-transform: uppercase;
}

header .nav-item img {
  width: 24px;
}

header .form-control {
  width: 180px !important;
  border: none;
  padding: 3px 10px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  border-top: 2px solid #F6F8FC;
  border-left: 2px solid #F6F8FC;
  border-bottom: 2px solid #F6F8FC;
}

header .btn-busca {
  background-color: #FFF;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px;
  align-items: center;
  display: flex;
  border-top: 2px solid #F6F8FC;
  border-right: 2px solid #F6F8FC;
  border-bottom: 2px solid #F6F8FC;
}

header .btn-busca svg {
  width: 12px;
  height: 12px;
}

footer {
  font-size: 14px;
  background-color: #4F4C4D;
  color: #FFF;
  position: relative;
}

footer h2 {
  font-size: 14px;
  padding: 25px 0;
  margin-bottom: 25px;
  font-weight: 700;
}

footer .coluna1 h2 {
  border-bottom: 1px solid #FFF;
}

footer ul {
  padding-left: 0;
  display: flex;
  flex-direction: row;
}

footer ul li {
  list-style: none;
  margin-right: 10px;
}

footer ul li img {
  width: 30px;
}

footer a {
  display: block;
  margin-bottom: 10px;
  line-height: 18px;
}

footer .coluna1 {
  border-right: 1px solid #FFF;
}

footer .logo {
  max-width: 200px;
}

footer .copyright {
  background-color: #393737;
  padding: 20px 0;
}

footer .linha-inferior {
  border-bottom: 1px solid #FFF;
}

footer::after {
  position: absolute;
  top: 170px;
  right: 0;
  display: block;
  background-image: url('../img/linhas.png');
  content: '';
  width: 520px;
  height: 380px;
  background-size: cover;
}

.newsletter {
  background-color: #00ABE1;
  color: #FFF;
}

.newsletter p {
  font-weight: 200;
  margin-bottom: 0;
  font-size: 18px;
}

.newsletter h3 {
  font-size: 30px;
}

.newsletter input {
  border: none;
  width: 100%;
  border-radius: 10px;
  padding: 10px 10px;
}

.newsletter button {
  background-color: #677182;  
  border-radius: 10px;
  height: 100%;
  width: 100%;
  border: none;
  padding: 10px 25px;
  color: #FFF;
}

.blog {
  background-color: #6C727B;
  color: #FFF;
  padding-bottom: 120px;
}

.blog h2 {
  font-size: 50px;
  color: #FFF;
  font-weight: 500;
}

.blog h2 span {
  color: #00ABE1;
  font-weight: 700;
}

.blog .splide__arrow {
  opacity: 1;
}

.blog .splide__arrow:hover {
  opacity: 0.5;
}

.blog .splide__arrow svg {
  fill: #FFF;
}

.blog .splide__slide {
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  aspect-ratio: 4/3;
  padding: 20px 20px 20px 40px;
  align-content: end;
}

.blog .splide__slide span {
  font-size: 12px;
  color: #00ABE1;
  font-weight: 200;
  text-transform: uppercase;
}

.blog .splide__slide h3 {
  font-size: 25px;
  font-weight: 400;
}

.blog .splide__arrow--next {
  background-color: transparent;
  right: 5%;
  top: 120%;
}

.blog .splide__arrow--prev {
  background-color: transparent;
  left: unset;
  right: 10%;
  top: 120%;
}

.sobre {
  color: #677182;
}

.sobre h2 {
  margin-bottom: 50px;
}

.sobre .numeral span {
  color: #00ABE1;
  font-size: 5rem;
  display: block;
  font-weight: 700;
  line-height: 4rem;
}

.breadcrumb {
  background-color: #677182;
  color: #FFF;
  padding: 20px 0;
  font-weight: 400;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.5rem;
}

.breadcrumb small {
  font-size: 1rem;
  text-transform: none;
  font-weight: 300;
}

.contato h3 {
  font-size: 18px;
}

.contato p {
  margin-bottom: 40px;
}

.contato .form-control {
  border: none;
}

.contato .form-control input, .contato .form-control  select, .contato .form-control textarea{
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #EDEDED;
  background-color: #FFF;
  color:#6C727B;
  resize: none;
  font-weight: 300;
}

.contato .form-control input::placeholder {
  color: #6C727B !important;
}

.contato .form-control button {
  background-color: #00ABE1;
  color: #FFF;
  text-align: center;
  font-weight: 400;
  border: none;
  padding: 10px 35px;
  border-radius: 15px;
  width: 100%;
}

.redeDeVendas {
  background-image: url('../img/rede-de-vendas.jpg');
  background-position: right center;
  background-size: 50%;
  background-repeat: no-repeat;
}

.redeDeVendas p {
  font-size: 20px;
}

.botaoWhats {
  display: inline-block;
  padding: 15px;
  margin: 20px 0;
  border: 3px solid #FFF;
  background-color: #E8F0F8;
  border-radius: 10px;
  color: #677182;
  text-transform: uppercase;
  font-weight: 400;
  box-shadow: -3px 10px 32px -3px rgba(0,0,0,0.75);
}

.botaoWhats img {
  width: 30px;
  margin-right: 15px;
}

.empresa {
  background-position: right center;
  background-size: cover;
  background-repeat: no-repeat;
}

.empresa h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

.empresa h3 {
  font-size: 1.5rem;
  font-weight: 400;
}

.empresa .numeral {
  font-size: 5rem;
  color: #00ABE1;
  font-weight: 600;
}

.sod ul {
  border: none;
}

.sod ul li {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
}

.sod ul li button {
  display: block;
  width: 100%;
  border: none;
  border-radius: 0;
  text-align: left;
}

.overflow-hidden {
  overflow: hidden !important;
}

.produtos {
  background-color: #F6F8FC;
}

.produtos h2.titulo {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 30px;
}

.produtos h3 {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  background-color: #6668;
  margin: 0;
  align-content: center;
  color: #FFF;
  font-size: 22px;
  text-transform: uppercase;
  padding: 15px
}

.categorias h3 {
  font-size: 14px;
  background-color: #677182;
  color: #FFF;
  padding: 15px 0;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  margin-bottom: 0;
}

.categorias img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #E8F0F8
}

.categoriaProdutos h2 {
  font-size: 25px;
  font-weight: 600;
  padding-bottom: 10px;
  border-bottom: solid 5px #00ABE1;
  display: inline-block;
}

.categoriaProdutos .boxProdutos img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: contain;
  object-position: center;
}

.categoriaProdutos .boxProdutos h3 {
  margin: 10px 0;
  font-size: 18px;
}

.categoriaProdutos .boxProdutos p {
  font-size: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.detalheProduto h1 {
  font-weight: 600;
  font-size: 25px;
  color: #00ABE1;
  margin-bottom: 30px;;
}

.detalheProduto h2 {
  font-weight: 600;
  padding-bottom: 10px;
  font-size: 25px;
  color: #677182;
  border-bottom: 2px dotted #677182;
}

.detalheProduto p {
  color: #677182 !important;
}

.detalheProduto img {
  width: 100%;
}

.accordion-item {
  border: none;
}

.accordion-button {
  background-color: #F6F8FC !important;
  color: #677182;
  font-weight: 500;
  font-size: 16px;
}

.accordion-button:focus {
  background-color: #F6F8FC !important;
}

.accordion-button:not(.collapsed) {
  color: #677182;
}

@media only screen and (max-width: 575px) {

}

@media only screen and (max-width: 767px) {

  .contatos {
    background-color: #444;
  }

}

@media only screen and (max-width: 991px) {

  header {
    background: none;
  }

  header ul {
    width: 100%;
  }

  header ul.links {
    margin-top: 10px;
  }

  header ul.links li {
    width: 100%;
    padding: 5px 0 !important;
  }

  header ul.redes {
    flex-direction: row;
    justify-content: start;
  }

  header ul.redes li {
    padding: 10px 10px 10px 0;
  }

}

@media only screen and (min-width: 991px) {

}

@media only screen and (max-width: 1024px) {

  footer::after {
    display: none !important;
  }

}
    
@media only screen and (max-width: 1200px) {

  footer::after {
    right: -200px
  }

  header .form-control {
    width: 180px !important;
  }

}

@media only screen and (min-width: 1201px) {


}
@media only screen and (min-width: 1201px) and (max-width: 1400px) {

  footer::after {
    right: -100px;
  }
    
}

@media only screen and (min-width: 1401px) {

  footer::after {
    right: 0;
  }

}

  #whatsapp-btn {
    position: fixed;
    bottom: 70px;
    left: 20px;
    z-index: 1000;
  }
  
  #whatsapp-btn button:focus {
    outline: none;
  }
  
  #whatsapp-btn button {
    position: absolute;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: 0.2s ease;
    animation: pulse 2s infinite;
    padding: 0;
  }
  
  #whatsapp-btn .fa-whatsapp {
    font-size: 2em;
  }
  
  #wpp-link-btn {
    line-height: 0.5rem;
  }
  
  #whatsapp-btn .box-option {
    display: none;
    background-color: #eee5de;
    width: 220px;
    padding: 5px 10px;
    position: absolute;
    bottom: 5px;
    border-radius: 19px;
    border: 1px solid #d2ccc5;
    font-size: 13px;
  }

  @-webkit-keyframes pulse {
    0% {
      -webkit-box-shadow: 0 0 0 0 #25d366;
    }
    70% {
      -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
      -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }
  @keyframes pulse {
    0% {
      -moz-box-shadow: 0 0 0 0 #25d366;
      box-shadow: 0 0 0 0 #25d366;
    }
    70% {
      -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }
    100% {
      -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
      box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
  }

  @keyframes cloud {
    0% {
      background-position: top right;
    }

    100% {
      background-position: bottom left;
    }

  }

  #phone-btn{position:fixed;bottom:140px;left:20px}#phone-btn button{position:absolute;padding:10px;border:none;width:50px;height:50px;border-radius:50%;background:#1995b9;;color:#FFFFFF;box-shadow:0 3px 6px rgba(0,0,0,0.2);cursor:pointer;transition:0.2s ease;animation:pulse 2s infinite}/*#whatsapp-btn button:hover,#whatsapp-btn button:focus{background:#FFFFFF;color:#25D366}*/#phone-btn .fa-phone-volume{font-size:2em}#phone-btn .box-option{display:none;background-color:#eee5de;width:220px;padding:5px 15px;position:absolute;bottom:5px;border-radius:19px;border:1px solid #d2ccc5;font-size:13px}@-webkit-keyframes pulse{0%{-webkit-box-shadow:0 0 0 0 ##1995b9;}70%{-webkit-box-shadow:0 0 0 10px rgba(204,169,44,0)}100%{-webkit-box-shadow:0 0 0 0 rgba(204,169,44,0)}}@keyframes pulse{0%{-moz-box-shadow:0 0 0 0 #1995b9;box-shadow:0 0 0 0 #1995b9}70%{-moz-box-shadow:0 0 0 10px rgba(204,169,44,0);box-shadow:0 0 0 10px rgba(204,169,44,0)}100%{-moz-box-shadow:0 0 0 0 rgba(204,169,44,0);box-shadow:0 0 0 0 rgba(204,169,44,0)}}
  