:root {
  --noto: "Noto Sans", sans-serif;
  --cor-1: #dbbfcc;
  --cor-2: #86b2a5;
  --cor-3: #bad4cc;
  --cor-4: #b0b0b2;
  --cor-5: #225042;
  --altura-topo: 140px;
}

/*-lg*/
/*-md*/
@media (max-width: 991.98px) {
  :root {
    --altura-topo: 60px;
  }
}
/*-sm*/
/*-mobile*/
html {
  overflow-x: hidden;
}
html.active {
  overflow-y: hidden;
}

body {
  font-family: var(--noto);
  overflow-x: hidden;
}
body.active {
  overflow-y: hidden;
}
body a:hover {
  text-decoration: none;
}

.bt {
  width: 220px;
  height: 63px;
  padding: 18px 0;
  font-size: 19px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  text-align: center;
  font-weight: 500;
  border-radius: 32px;
  cursor: pointer;
}
.bt.cor-1 {
  background-color: var(--cor-1);
  color: white;
}
.bt.cor-2 {
  background-color: var(--cor-2);
  color: white;
}
.bt.cor-5 {
  background-color: var(--cor-5);
  color: white;
}
.bt:hover {
  text-decoration: none;
}

.titulo {
  font-size: 30px;
  font-weight: 500;
}
.titulo.white {
  color: white;
}
.titulo.cor-2 {
  color: var(--cor-2);
}

.altura {
  height: var(--altura-topo);
  transition: 0.3s;
}
.altura.reduzido {
  height: 100px;
}

header {
  background-color: white;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 3;
}
header h1 {
  font-size: 0;
  color: transparent;
  position: relative;
  z-index: 20;
}
header #area-menu {
  gap: 60px;
}
header #area-menu #menu-principal ul {
  gap: 50px;
}
header #area-menu #menu-principal ul li:last-child {
  margin-right: 0;
}
header #area-menu #menu-principal ul li a {
  display: inline-block;
  text-align: center;
  font-size: 18px;
  color: var(--cor-4);
}
header #area-menu #menu-principal ul li a:hover, header #area-menu #menu-principal ul li a.active {
  color: var(--cor-1);
  font-weight: 700;
  text-decoration: none;
}
header #area-menu #menu-principal ul li a::before {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
header #area-menu #menu-principal ul li ul {
  position: absolute;
  list-style: none;
  background-color: #fff;
  box-shadow: 4px 6px var(--cor-1);
  padding: 20px;
  border-radius: 20px;
  display: none;
}
header #area-menu #menu-principal ul li:hover ul {
  display: block;
  height: auto;
}
header #area-menu #menu-social ul {
  gap: 16px;
}

footer {
  background-color: var(--cor-2);
}
footer > .container {
  padding-top: 65px;
  padding-bottom: 85px;
}
footer #menu-rodape li a {
  color: white;
  opacity: 0.5;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 30px;
}
footer #menu-rodape li a:hover, footer #menu-rodape li a.active {
  text-decoration: none;
  opacity: 1;
}
footer .chamada {
  margin-bottom: 28px;
}
footer .chamada strong {
  font-size: 17.3px;
  font-weight: 700;
  color: var(--cor-1);
  text-transform: uppercase;
}
footer address .local img {
  margin-right: 10px;
}
footer address .local span {
  color: white;
  opacity: 0.5;
  font-size: 15.5px;
  line-height: 28px;
}
footer #contatos {
  text-align: center;
}
footer #contatos img {
  margin-bottom: 20px;
}
footer #contatos a {
  color: white;
  opacity: 0.5;
  font-size: 15.5px;
}
footer #contatos a:hover {
  text-decoration: none;
  opacity: 1;
}
footer #contatos .email {
  margin-bottom: 32px;
}
footer .social {
  gap: 28px;
}
footer #agencia {
  text-align: right;
  opacity: 0.5;
}

#icone-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
}
#icone-whatsapp img {
  filter: drop-shadow(0 20px 17px rgba(0, 0, 0, 0.2));
}

/*INTERNAS*/
.banner-interna {
  position: relative;
  margin-bottom: 55px;
}
.banner-interna img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-interna .conteudo {
  height: 255px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.banner-interna .conteudo h2 {
  font-weight: 700;
  font-size: 50px;
  color: white;
}

.topo-interna {
  text-align: center;
  margin-bottom: 70px;
}
.topo-interna .titulo-interna {
  display: inline-block;
  font-size: 40px;
  font-weight: bold;
  color: var(--cor-2);
  line-height: 40px;
}
.topo-interna .titulo-interna hr {
  width: 85px;
  margin-bottom: 25px;
  margin-left: auto;
  margin-right: auto;
  border: none;
  border-bottom: 3px solid var(--cor-1);
}
.topo-interna .titulo-interna.menor {
  font-size: 30px;
}
.topo-interna .bread {
  font-size: 14px;
  font-weight: 400;
  color: var(--cor-4);
  left: 15px;
  top: 0;
  z-index: 2;
}
.topo-interna .bread a {
  color: var(--cor-4);
}
.topo-interna .bread a:hover {
  text-decoration: none;
}

/*-lg*/
/*-md*/
@media (max-width: 991.98px) {
  .altura.reduzido {
    height: 60px;
  }
  #bt-menu {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    border-radius: 50%;
    position: fixed;
    right: 5vw;
    top: 15px;
    z-index: 30;
    outline: none;
  }
  #bt-menu::before {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--cor-1);
    transform: translateY(-5px);
    box-shadow: 0px 6px 0px var(--cor-1);
    transition: 0.3s;
  }
  #bt-menu::after {
    content: "";
    display: block;
    width: 18px;
    height: 2px;
    background-color: var(--cor-1);
    transform: translateY(5px);
    transition: 0.3s;
  }
  #bt-menu.active::before {
    box-shadow: none;
    transform: translateY(1px) rotate(45deg);
  }
  #bt-menu.active::after {
    transform: translateY(-1px) rotate(-45deg);
  }
  #area-menu-mobile {
    width: 100vw;
    height: 100vh;
    background: white;
    z-index: 3;
    flex-direction: column;
    gap: 80px;
    left: -101vw;
    transition: 0.3s;
  }
  #area-menu-mobile #menu-principal ul {
    gap: 20px;
  }
  #area-menu-mobile #menu-principal ul li a {
    font-size: 21px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--cor-4);
    text-transform: uppercase;
  }
  #area-menu-mobile #menu-principal ul li a.active {
    color: var(--cor-1);
    font-weight: 700;
  }
  #area-menu-mobile #menu-mobile-social ul {
    gap: 50px;
  }
  #area-menu-mobile #menu-mobile-social ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--cor-2);
  }
  #area-menu-mobile.active {
    left: 0;
  }
  header h1 img {
    height: 40px;
  }
  footer #contatos {
    text-align: left;
  }
  footer .chamada {
    margin-bottom: 10px;
  }
  footer #agencia {
    text-align: center;
  }
  /*INTERNAS*/
  .topo-interna {
    margin-bottom: 30px;
  }
}
/*-sm*/
@media (max-width: 767.98px) {
  footer #icone-whatsapp {
    right: 15px;
    bottom: 15px;
    z-index: 300;
    width: 40px;
    height: 40px;
    position: fixed;
    top: auto;
  }
  footer #icone-whatsapp img {
    width: 40px;
  }
}
/*-mobile*/
@media (max-width: 575.98px) {
  footer > .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  /*INTERNAS*/
  .banner-interna .conteudo h2 {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1200px;
  }
}

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