@charset "UTF-8";
:root {
  --verde-1: #d1e8a0;
  --lilaz-1: #946ecc;
  --laranja-1: #FF4605;
  --poppins: "Poppins", sans-serif;
  --roboto: "Roboto", sans-serif;
  --calistoga: "Calistoga", cursive
}

::-webkit-input-placeholder {
  /* Edge */
  font-family: var(--poppins);
  opacity: 1;
  font-size: 16px;
  text-transform: uppercase;
  font-style: italic;
  color: #bfbfbf;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  font-family: var(--poppins);
  opacity: 1;
  font-size: 16px;
  text-transform: uppercase;
  font-style: italic;
  color: #bfbfbf;
}

::placeholder {
  font-family: var(--poppins);
  opacity: 1;
  font-size: 16px;
  text-transform: uppercase;
  font-style: italic;
  color: #bfbfbf;
}
html {
  overflow-x: hidden;
}

body {
  font-family: var(--poppins);
  overflow-x: hidden;
}

ul {
  list-style: none;
  padding: 0;
  margin: auto;
}

.botao {
  height: 66px;
  line-height: 66px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 60px;
  display: inline-block;
  border: none;
  border-radius: 33px;
  font-size: 20px;
  cursor: pointer;
}
.botao.small {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  padding: 0 40px;
}
.botao:hover {
  text-decoration: none;
}
.botao.verde-1 {
  background-color: var(--verde-1);
}
.botao.lilaz-1 {
  background-color: var(--lilaz-1);
}
.botao.laranja-1 {
  background-color: var(--laranja-1);
}
.botao.f-black {
  color: black;
}
.botao.f-white {
  color: white;
}
.botao.f-red {
  color: red;
}
.botao.f-lilaz-1 {
  color: var(--lilaz-1);
}

.link-form {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 400;
  display: inline-block;
  padding: 3px 6px;
  border-radius: 3px;
}
.link-form.f-verde-1 {
  color: var(--verde-1);
}
.link-form.f-lilaz-1 {
  color: var(--lilaz-1);
}
.link-form.f-red {
  color: red;
}
.link-form.f-white {
  color: white;
}
.link-form.f-black {
  color: black;
}
.link-form.bg-lilaz-1 {
  background-color: var(--lilaz-1);
}
.link-form.bg-verde-1 {
  background-color: var(--verde-1);
}
.link-form:hover {
  text-decoration: none;
  font-weight: 600;
}

.titulo-secao {
  font-weight: 400;
  color: black;
  font-size: 48px;
  font-family: var(--calistoga)
}

.sub-titulo-secao {
  font-size: 16px;
  color: var(--lilaz-1);
  font-weight: 400;
  text-transform: uppercase;
}

header {
  padding-top: 7px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 100;
  transition: 0.3s;
  background-color: transparent;
}
header .topo-institucional {
  margin-bottom: 30px;
  transition: 0.3s;
}
header .topo-institucional .menu ul {
  display: flex;
  gap: 8px;
}
header .topo-institucional .menu ul li a {
  font-size: 12px;
  color: black;
  padding: 0px 10px;
  display: inline-block;
  border-radius: 10px;
  border: 1px solid transparent;
  text-align: center;
}
header .topo-institucional .menu ul li a:hover, header .topo-institucional .menu ul li a.active {
  border-color: var(--verde-1);
  font-weight: 600;
  text-decoration: none;
}
header .topo-institucional .menu ul li a::before {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
header .topo-institucional .menu-social {
  margin-right: 13px;
}
header .topo-institucional .menu-social ul {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
header .topo-institucional .menu-idiomas {
  width: 25px;
  height: 25px;
  position: relative;
  z-index: 10;
  cursor: pointer;
}
header .topo-institucional .menu-idiomas .bandeira {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
}
header .topo-institucional .menu-idiomas #area-bandeira-ativa {
  position: relative;
  z-index: 15;
}
header .topo-institucional .menu-idiomas #lista-bandeiras {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.3s;
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 10;
  padding: 2px;
  border-radius: 15px;
  background-color: white;
  padding-top: 39px;
}
header .topo-institucional .menu-idiomas img {
  height: 26px;
  object-fit: cover;
}
header .topo-institucional .menu-idiomas.active #lista-bandeiras {
  height: 105px;
  opacity: 1;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
header .topo-logo-menu h1 {
  font-size: 0;
  color: transparent;
}
header .topo-logo-menu h1 img {
  transition: 0.3s;
  max-width: 70%;
}
header .topo-logo-menu .menu-principal {
  height: 100%;
}
header .topo-logo-menu .menu-principal ul {
  height: 100%;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 40px;
}
header .topo-logo-menu .menu-principal ul li {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .topo-logo-menu .menu-principal ul li > a {
  font-size: 16px;
  color: black;
  text-transform: uppercase;
  display: inline-block;
  text-align: center;
}
header .topo-logo-menu .menu-principal ul li > a::before {
  display: block;
  content: attr(title);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
header .topo-logo-menu .menu-principal ul li:hover > a, header .topo-logo-menu .menu-principal ul li.active > a {
  font-weight: 600;
  color: var(--lilaz-1);
  text-decoration: none;
}
header .topo-logo-menu .menu-principal ul li .submenu {
  position: absolute;
  display: none;
  gap: 50px;
  background-color: var(--verde-1);
  padding: 25px 45px;
  top: 100%;
  left: 0;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}
header .topo-logo-menu .menu-principal ul li .submenu ul {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  flex-direction: column;
  min-width: 140px;
  margin: 0;
}
header .topo-logo-menu .menu-principal ul li .submenu ul li a {
  font-size: 16px;
  line-height: 16px;
  text-transform: uppercase;
  color: black;
  text-align: left;
  white-space: nowrap;
}
header .topo-logo-menu .menu-principal ul li .submenu ul li a:hover {
  text-decoration: none;
  font-weight: 600;
  color: var(--lilaz-1);
}
header .topo-logo-menu .menu-principal ul li .submenu ul li.principal a {
  color: white;
}
header .topo-logo-menu .menu-principal ul li .submenu:before {
  content: url("../imagens/forma-verde.png");
  display: block;
  position: absolute;
  top: -18px;
  left: 28px;
}
header .topo-logo-menu .menu-principal ul li:hover .submenu {
  display: flex;
}
header.scroll {
  background-color: #fdfdfd;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
  height: 100px;
}
header.scroll .topo-institucional {
  margin-bottom: 10px;
}
header.scroll .topo-logo-menu h1 img {
  height: 45px;
  max-height: 45px;
}

.banner-interna {
  /*    min-height: 600px;*/
}
.banner-interna img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

footer {
  padding-top: 70px;
}
footer .area-news {
  padding-bottom: 60px;
  border-bottom: 2px solid var(--verde-1);
}
footer .area-news .menu-social-rodape ul {
  display: flex;
  gap: 15px;
}
footer .area-news .form-new {
  max-width: 550px;
  width: 100%;
  text-align: center;
}
footer .area-news .form-new label {
  font-size: 14px;
  color: black;
  /*                display: flex;
                  justify-content: space-between;
                  align-items: center;*/
}
footer .area-news .form-new label input {
  height: 50px;
  max-width: 440px;
  width: 100%;
  border-radius: 25px;
  border: 2px solid var(--verde-1);
  text-indent: 25px;
  color: #CCC;
  margin-left: 10px;
}
footer .area-news .form-new .botao {
  height: 50px;
  border-radius: 25px;
  line-height: 50px;
  right: 0;
  bottom: 8px;
  font-size: 16px;
  padding: 0 25px;
  position: absolute;
}
footer .area-news .form-new #msg-news {
  font-size: 12px;
  color: orange;
}
footer .menu {
  margin-bottom: 25px;
}
footer .menu ul {
  text-align: center;
  display: flex;
  height: 66px;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
footer .menu ul li a {
  font-size: 12px;
  color: black;
  text-transform: uppercase;
}
footer .logo-platina {
  margin-bottom: 25px;
}
footer .direitos {
  color: #b4b4b4;
  font-size: 12px;
  margin-bottom: 25px;
}
footer .agencia {
  margin-bottom: 30px;
}

.listagem-produtos .produto {
  display: flex;
}
.listagem-produtos .produto .imagem {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 360px;
  margin-bottom: 30px;
}
.listagem-produtos .produto .imagem img {
  filter: drop-shadow(-20px 20px 10px rgba(0, 0, 0, 0.2));
}
.listagem-produtos .produto .info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  height: 360px;
  width: 50%;
  margin-bottom: 30px;
}
.listagem-produtos .produto .info .categoria, .listagem-produtos .produto .info .tag {
  font-size: 16px;
  text-transform: uppercase;
  color: black;
  font-weight: 400;
  line-height: 18px;
}
.listagem-produtos .produto .info .nome {
  font-size: 28px;
  color: black;
  font-weight: 500;
  line-height: 32px;
  font-family: var(--calistoga);
}
.listagem-produtos .produto .info .link {
  font-size: 20px;
  text-transform: uppercase;
  color: var(--lilaz-1);
  font-weight: 600;
  line-height: 22px;
}
.listagem-produtos .produto:hover {
  text-decoration: none;
}

.topo-produtos .padding {
  height: 175px;
}

/*FORMULÁRIOS*/
form input[type=text], form input[type=password], form input[type=tel], form input[type=email], form input[type=number], form select {
  height: 42px;
  background-color: white;
  line-height: 42px;
  text-indent: 10px;
  font-size: 14px;
  color: #555;
  font-weight: 400;
  border-radius: 21px;
  border: 2px solid var(--verde-1);
  margin: 0 auto 7px auto;
}
form textarea {
  min-height: 80px;
  background-color: white;
  line-height: 16pxpx;
  text-indent: 10px;
  font-size: 14px;
  color: #555;
  font-weight: 400;
  border-radius: 21px;
  border: 2px solid var(--verde-1);
  margin: 0 auto 7px auto;
}

#fale-direto {
  background-color: var(--lilaz-1);
}
#fale-direto .titulo-secao {
  color: white;
}
#fale-direto .sub-titulo-secao {
  color: var(--verde-1);
}
#fale-direto .link-form {
  padding: 0;
}
#fale-direto .link-form.f-white {
  font-size: 30px;
  font-weight: 500;
}
#fale-direto .imagem {
  height: 505px;
  position: relative;
}
#fale-direto .imagem img {
  position: absolute;
  bottom: 0;
}
#fale-direto .info {
  height: 505px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 25px;
}

/*-lg*/
@media (max-width: 1199.98px) {
  header .topo-logo-menu .menu-principal ul li a {
    font-size: 14px;
  }
}
/*-md*/
@media (max-width: 991.98px) {
  header {
    z-index: 25;
  }
  header .topo-logo-menu h1 img {
    max-width: 90%;
  }

  .banner-interna {
    position: relative;
    height: 490px;
    padding-top: 120px;
    min-height: auto;
  }
  .banner-interna img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  #bt-menu {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--lilaz-1);
    margin-right: 0;
    margin-left: auto;
    z-index: 20;
    position: fixed;
    top: 62px;
    right: 10px;
  }
  #bt-menu i {
    color: white;
  }
  #bt-menu .fa-times {
    display: none;
  }
  #bt-menu.active .fa-times {
    display: inline;
  }
  #bt-menu.active .fa-bars {
    display: none;
  }

  #menu-mobile {
    position: fixed;
    top: 0;
    left: 101vw;
    width: 100vw;
    height: 100vh;
    padding: 1vh 1vw;
    background-color: white;
    z-index: 15;
    transition: 0.3s;
  }
  #menu-mobile nav {
    height: 100%;
  }
  #menu-mobile nav > ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    height: 100%;
    padding-left: 80px;
  }
  #menu-mobile nav > ul li a {
    color: black;
    text-transform: uppercase;
  }
  #menu-mobile nav > ul li a.active {
    color: var(--verde-1);
  }
  #menu-mobile nav > ul li .submenu-mobile {
    position: fixed;
    top: 0;
    left: 101vw;
    width: 100vw;
    height: 100vh;
    padding: 1vh 1vw;
    background-color: var(--verde-1);
    z-index: 25;
    transition: 0.3s;
  }
  #menu-mobile nav > ul li .submenu-mobile .todos {
    margin-bottom: 10px;
  }
  #menu-mobile nav > ul li .submenu-mobile .todos a {
    font-size: 14px;
    font-weight: 400;
    text-align: right;
    color: black;
    text-transform: none;
  }
  #menu-mobile nav > ul li .submenu-mobile .todos a i {
    margin-left: 10px;
  }
  #menu-mobile nav > ul li .submenu-mobile .voltar {
    margin-right: 10px;
    text-align: right;
  }
  #menu-mobile nav > ul li .submenu-mobile .voltar a {
    font-size: 12px;
    font-weight: 500;
    color: var(--lilaz-1);
  }
  #menu-mobile nav > ul li .submenu-mobile .voltar a i {
    margin-right: 10px;
  }
  #menu-mobile nav > ul li .submenu-mobile ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    height: 100%;
    width: 100%;
    padding-left: 80px;
  }
  #menu-mobile nav > ul li .submenu-mobile ul li.principal a {
    color: white;
    font-size: 20px;
  }
  #menu-mobile nav > ul li .submenu-mobile ul li a.active {
    color: var(--lilaz-1);
  }
  #menu-mobile nav > ul li .submenu-mobile.active {
    left: 0;
  }
  #menu-mobile.active {
    left: 0;
  }
}
/*-sm*/
@media (max-width: 767.98px) {
  footer {
    padding-top: 25px;
  }
  footer .menu ul {
    flex-direction: column;
    height: auto;
  }
  footer .area-news .form-new {
    text-align: center;
  }
  footer .area-news .form-new .botao {
    position: static;
    margin: 0 auto;
  }

  #fale-direto {
    height: auto;
    padding: 30px 0;
  }
  #fale-direto .links .sub-titulo-secao {
    font-size: 16px;
  }
  #fale-direto .links a, #fale-direto .links strong {
    font-size: 14px;
  }
  #fale-direto .social a {
    display: block;
    margin-bottom: 15px;
    text-align: center;
  }
  #fale-direto .social a img {
    display: block;
    margin: 0 auto;
  }
}
/*-mobile*/
@media (max-width: 575.98px) {
  header .topo-logo-menu h1 {
    height: 65px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  header .topo-logo-menu h1 img {
    max-width: none;
    max-height: 45px;
  }
  header .topo-institucional {
    margin-bottom: 0px;
    z-index: 100;
    position: relative;
  }

  header.scroll .topo-institucional {
    margin-bottom: 0px;
  }
  
  .titulo-secao {
    font-size: 42px;
    line-height: 44px;
  }

  .sub-titulo-secao {
    font-size: 14px;
  }

  .listagem-produtos .produto {
    flex-wrap: wrap;
    margin-bottom: 15px;
    border-top: 1px solid #f1f1f1;
    padding-top: 15px;
  }
  .listagem-produtos .produto .imagem {
    height: 250px;
    width: 100%;
    align-items: center;
  }
  .listagem-produtos .produto .info {
    height: auto;
    width: 100%;
    align-items: center;
    

    padding-bottom: 15px;
  }

  .listagem-produtos .produto .info .categoria {
    font-size: 12px;
    line-height: 12px;
  }

  .listagem-produtos .produto .info .nome {
    font-size: 14px;
    line-height: 14px;
    text-align: center;
  }

  .listagem-produtos .produto .info .link, .listagem-produtos .produto .info .tag {
    font-size: 12px;
    line-height: 12px;
  }

  .topo-produtos .padding {
    height: 120px;
  }


  #fale-direto .link-form.f-white {
    font-size: 18px;
  }
  

  
}
.container {
  max-width: 1430px;
}

.swiper-button-next, .swiper-button-prev {
  color: white;
}

/*# sourceMappingURL=site.css.map */
