:root {
  --cor-azul: #cfbeb4;
  --cor-borda-input-hover: rgb(164, 187, 181, .35)
}

html {
  scroll-behavior: smooth;
}

.bg-faq {
  background-color: #e9e5e2;
}

body {
  font-size: 18px;
  font-family: "Instrument Sans", Arial, sans-serif;
}

a {
  text-decoration: none;
}

.bg-dark {
  background-color: #cfbeb4 !important;
}

header {
  background-color: var(--cor-azul);
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  transition: transform 0.3s ease;
}

header.hide {
  transform: translateY(-100%);
}

header.show {
  transform: translateY(0);
}

._header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

._header__logo {
  padding: 8px 0;
}

._header__logo>img {
  max-height: 56px;
}

._header__nav {
  flex: 1;
}

._header__cta {
  display: flex;
  justify-content: end;
}

._header__nav ul {
  padding: 0;
  justify-content: center;
  margin: 0;
  list-style: none;
  display: flex;
  gap: 36px;
}

._header__nav ul li a {
  line-height: 4;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  transition: 0.4s ease-in-out;
  position: relative;
  padding-bottom: 4px;
  text-decoration: none;
  color: #fff;
}

._header__nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  width: 0%;
  height: 2px;
  bottom: 0;
  background-color: #fff;
  transition: all 0.2s ease-in-out;
}

._header__nav ul li a:hover {
  color: #fff;
}

._header__nav ul li a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001;
}

@media(max-width:768px) {
  ._header__wrapper {
    display: flex;
    justify-content: center;
  }

  .menu-toggle {
    margin-left: auto;
  }
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin: 4px 0;
}

.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 10px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -10px);
}

._cta {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 56px;
  border: 2px solid #fff;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.3s ease;
  overflow: hidden;
  font-size: 18px;
  transition: .3s all ease-in-out;
  width: fit-content;
}

._cta__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 56px;
  overflow: hidden;
  position: relative;
}

._cta__label span {
  transition: transform 0.3s ease-in-out;
  line-height: 56px;
}

._cta__label span:nth-child(1) {
  transform: translateY(0);
  opacity: 1;
  transition: 0.4s ease-in-out;
}

._cta__label span:nth-child(2) {
  transform: translateY(40%);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s ease-in-out;
}

._cta:hover {
  border-color: #fff;
  color: #fff;
}

._cta:hover ._cta__label span:nth-child(1) {
  transform: translateY(-40%);
  opacity: 0;
}

._cta:hover ._cta__label span:nth-child(2) {
  transform: translateY(0);
  opacity: 1;
}

._hero {
  background-color: #f7f7f7;
  background-size: cover;
  background-position: bottom center;
  position: relative;
  padding: 0 0 16rem 0;
  display: flex;
  align-items: center;
  min-height: 100dvh;
}

@media(min-width:996px) {
  ._hero {
    width: 100%;
    margin-top: 86px;
    padding-top: 160px;
    color: #fff;
    min-height: 60vh;
  }
}

._hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #0E0F11;
  background: linear-gradient(52deg, rgba(14, 15, 17, 1) 0%, rgba(14, 15, 17, 0) 46%);
  background: transparent;
  z-index: 1;
}

._hero .container-xl {
  position: relative;
  z-index: 2;
}

.hero-bianca {
  background-image: url(../img/bghero2.jpg);
  padding-top: 64px;
  height: 100dvh;
  width: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  color: #fff;
}

._hero__infos h1 {
  font-weight: 700;
  font-size: clamp(20px, 4.444vw, 40px);
}

@media(max-width:960px) {
  ._hero__infos {
    gap: 16px;
  }

  ._hero__description {
    font-size: 16px;
  }

  ._hero__infos h1 {
    font-size: clamp(20px, 4.444vw, 36px);
    line-height: 1.5;
  }

  ._hero__infos .fs-4 {
    font-size: calc(1.2rem + .1vw) !important;
    line-height: 1.5;
  }
}

._hero__wrapper {
  display: grid;
  color: #fff;
}

._hero__infos {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  flex-grow: 1;
}

._hero__image {
  display: flex;
  align-items: center;
}

._hero__image img {
  margin-top: 120px;
}

.btn-primary {
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border-radius: 999px;
}

.btn-cta-1 {
  display: flex;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(28.05deg, rgb(171, 117, 53, .8) 0%, rgb(252, 211, 95) 50%, rgb(171, 117, 53, .8) 100%);
  color: #000;
  font-weight: 550;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 16px;
  height: 68px;
  padding: 0 28px;
  gap: 16px;
  box-shadow: 0px 4px 25px 2px rgba(207, 190, 180, 0.3);
  transition: all 0.25s ease-in-out;
  overflow: hidden;
  align-items: start;
  position: relative;
  text-transform: uppercase;
  width: fit-content;
  font-size: clamp(1rem, 4vw, 1.2rem);
}

.btn-cta-1:hover {
  color: #000 !important;
  background: linear-gradient(28.05deg, rgb(214, 169, 64) 0%, rgb(252, 211, 95) 50%, rgb(214, 169, 64) 100%);
  box-shadow: 0px 5px 35px -3px rgba(255, 168, 0, 1);
}

.btn-cta-1 .line {
  height: 68px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.btn-cta-1 .line-2 {
  opacity: 0;
}

.btn-cta-1 .line-1,
.btn-cta-1 .line-2 {
  transition: .4s all ease-in-out;
}

.btn-cta-1:hover .line-1 {
  transform: translateY(-100%);
  opacity: 0;
}

.btn-cta-1:hover .line-2 {
  transform: translateY(-100%);
  opacity: 1;
}

.btn-cta-1 svg {
  position: relative;
  top: 50%;
  transform: translate(0%, -50%);
  transition: .35s all ease-in-out;
}

.btn-cta-1:hover svg {
  transform: translate(25%, -50%);
}

@keyframes pulseButton1 {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 99, 71, 0.15);
    filter: blur(20);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(255, 99, 71, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 99, 71, 0);
  }
}

.btn-cta-1--verde {
  color: #fff !important;
  background: linear-gradient(28.05deg, rgba(76, 175, 80, 0.8) 0%, rgba(33, 130, 33, 0.95) 50%, rgba(76, 175, 80, 0.8) 100%);
  box-shadow: 0px 4px 25px 2px rgba(33, 130, 33, 0.3);
}

.btn-cta-1--verde:hover {
  color: #fff !important;
  background: linear-gradient(28.05deg, rgba(56, 187, 63, 1) 0%, #218221 50%, rgba(56, 187, 63, 1) 100%);
  box-shadow: 0px 5px 35px -3px rgba(52, 209, 52, 1);
}

.lista-beneficios {
  list-style: none;
  margin-top: 16px;
}

.lista-beneficios li {
  display: flex;
  align-items: start;
  gap: 12px;
  line-height: 1.3;
  margin-bottom: 12px;
}

.lista-beneficios li span {
  background-color: var(--cor-azul);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
}

.lista-beneficios li span svg {
  fill: #fff;
  width: 28px;
  height: 28px;
}

.beneficio-item {
  display: grid;
  place-items: center;
  border: 1px solid transparent;
  padding: 1.85vw;
  border-radius: 12px;
  transition: .3s all ease-in-out;
  margin: 0 60px;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-size: 20px;
}

.beneficio-item:hover {
  border-color: #fff;
  transform: scale(1.1);
}

.beneficio-item svg {
  width: 90px;
  height: 90px;
  fill: #fff;
}

.beneficio-item img {
  max-height: 90px;
  filter: invert(50);
  margin-bottom: 20px;
}

.maquete {
  margin-bottom: 0;
  overflow: hidden;
}

.maquete img {
  transition: 1s all ease;
  margin-top: 20px;
}

.maquete:hover img {
  transform: scale(1.15);
}

.maquete-lista {
  list-style: none;
  font-weight: 600;
  padding: 0;
  display: grid;
}

@media(min-width:768px) {
  .maquete-lista {
    grid-template-columns: repeat(2, 1fr);
  }
}

.maquete-lista li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-size: 22px;
  line-height: 130%;
  margin-bottom: 36px;
  padding-right: 60px;
  transition: .3s all ease-in-out;
}

.maquete-lista li:hover {
  color: var(--cor-azul);
}

.maquete-lista li:hover .circulo {
  background-color: var(--cor-azul);
}

.maquete-lista li .circulo {
  background-color: #b49f93;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  flex-shrink: 0;
  position: relative;
  transition: .3s all ease-in-out;
  margin-top: 5px;
}

.maquete-lista li .circulo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1397D5;
  background: radial-gradient(circle, rgba(164, 187, 181, .85) 0%, rgba(164, 187, 181, .85) 100%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: -1;
}

.maquete-lista li:hover .circulo::after {
  transform: translate(-50%, -50%) scale(1.25);
  opacity: 1;
}

.maquete-lista li div svg {
  fill: #fff;
  width: 40px;
  height: 40px;
}

.sinais-lista {
  list-style: none;
  font-weight: 600;
  padding: 0;
  gap: 10px;
  display: grid;
}

.sinais-lista li {
  display: flex;
  align-items: start;
  gap: 12px;
  font-weight: 300;
  line-height: 150%;
  padding-right: 60px;
  transition: .3s all ease-in-out;
  font-size: 18px;
}

.sinais-lista li:hover {
  color: var(--cor-azul);
}

.sinais-lista li:hover .circulo {
  background-color: var(--cor-azul);
}

.sinais-lista li .circulo {
  background-color: #b49f93;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  flex-shrink: 0;
  position: relative;
  transition: .3s all ease-in-out;
  margin-top: 4px;
}

.sinais-lista li .circulo::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #1397D5;
  background: radial-gradient(circle, rgba(164, 187, 181, .85) 0%, rgba(164, 187, 181, .85) 100%);
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: -1;
}

.sinais-lista li:hover .circulo::after {
  transform: translate(-50%, -50%) scale(1.25);
  opacity: 1;
}

.sinais-lista li div svg {
  fill: #fff;
  width: 40px;
  height: 40px;
}

.odometer,
.odometer-label {
  font-size: 48px;
  color: var(--cor-azul);
}

.odometer-label {
  margin-left: 8px;
}

.accordion {
  background-color: rgb(207, 190, 180, .15);
  padding: 2rem;
  border-radius: 24px;
}

.accordion,
.accordion-button {
  color: #252525;
}

.accordion-button {
  position: relative;
  padding-left: 1.5rem;
  background-color: transparent !important;
  box-shadow: none !important;
  font-size: 18px !important;
}

.accordion-icon {
  position: absolute;
  left: 0rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: thin;
  color: var(--cor-azul);
  transition: transform 0.3s ease;
  user-select: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-body {
  color: #252525;
  padding: 0 !important;
}

.accordion-button:not(.collapsed) {
  color: var(--cor-azul);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid rgb(207, 190, 180, .15) !important;
  background-color: transparent !important;
  box-shadow: none !important;
  padding: 8px 0;
}

.accordion-header {
  padding-top: 0.5 !important;
}

.accordion-item:last-child {
  border: none !important;
}

.accordion-button:hover {
  color: rgb(207, 190, 180);
}

.accordion-button:not(.collapsed) .accordion-icon {
  transform: translateY(-50%) rotate(45deg);
  color: var(--cor-azul);
}

.accordion-button::after {
  display: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #b1907d;
}

.accordion-item:last-of-type {
  border-radius: 0;
}

.orcamento {
  background-color: #f7f7f7;
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 120px 0;
  color: #fff;
}

.orcamento::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(14, 15, 17, .85);
  z-index: 1;
}

.orcamento .container-xl {
  position: relative;
  z-index: 2;
}

.orcamento input {
  outline: none;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #f7f7f7;
  color: #fff;
  padding-bottom: 12px;
  transition: .3s all ease-in-out;
}

.orcamento label {
  margin-bottom: 20px;
}

.orcamento .form-group:hover input {
  border-color: var(--cor-borda-input-hover);
}

.orcamento .form-group:hover input:focus {
  border-color: var(--cor-azul);
}

.orcamento .form-group input:focus {
  border-color: var(--cor-azul);
}

._cta2 {
  background-color: var(--cor-azul);
  border-color: var(--cor-azul);
  padding: 0 60px;
}

.mapa-localizacao {
  width: 100%;
  height: auto;
  position: relative;
}

.mapa-localizacao iframe {
  width: 100%;
  min-height: 620px;
}

.mapa-localizacao::after {
  content: '';
  background: #cfbeb4;
  background: linear-gradient(0deg, rgba(207, 190, 180, 1) 0%, rgba(207, 190, 180, 0) 100%);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  pointer-events: none;
}

.card-equipe {
  background-color: #b49f93;
  padding: 8px;
  border-radius: 16px;
  color: #fff;
  background: #cfbeb4;
  background: linear-gradient(180deg, rgba(207, 190, 180, 1) 15%, rgba(207, 190, 180, 1) 72%, rgba(207, 190, 180, 1) 100%);
  display: flex;
  flex-direction: column;
}

.card-equipe figure {
  margin-bottom: 0;
  overflow: hidden;
  border-radius: 16px;
}

.card-equipe__infos {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.negrito {
  font-weight: 700;
}

.card-equipe ul {
  display: grid;
  gap: 12px;
  padding-left: 1.2rem;
  font-size: 16px;
  margin: 8px 0 24px 0;
}

.card-equipe .atuacao {
  background-color: #cfbeb4;
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  border-radius: 16px;
  margin-top: auto;
}

.card-equipe p {
  font-size: 16px;
}

._cta2:hover {
  border-color: var(--cor-azul);
}

.contato__wrapper {
  display: grid;
}

.contato {
  background: rgb(14, 15, 17, 1);
}

.contato__item {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4d4d4d;
  border-bottom: 0;
  padding: 28px 60px;
  gap: 20px;
}

.contato__item:last-child {
  border-bottom: 1px solid #4d4d4d;
}

.contato__item svg {
  width: 20px;
  height: 20px;
  transition: .3s all ease-in-out;
}

.contato__item a {
  transition: .3s all ease-in-out;
}

.contato__item a:hover {
  color: var(--cor-azul);
}

.contato__item a:hover svg {
  color: var(--cor-azul);
}

@media(min-width:768px) {
  .contato__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .contato__item {
    border-right: 0;
    border-bottom: 1px solid #4d4d4d;
  }

  .contato__item:last-child {
    border-right: 1px solid #4d4d4d;
  }
}

footer {
  padding: 40px 0 120px 0;
  background: var(--cor-azul);
}

.footer-icone {
  background-color: #202020;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: .3s all ease-in-out;
}

.footer-icone svg {
  width: 28px;
  height: 28px;
}

.footer-widget {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

footer p {
  font-size: 16px;
  line-height: 32px;
  opacity: .7;
}

.footer-widget a {
  color: var(--cor-azul);
}

.footer-label {
  font-size: 24px;
  font-weight: 700;
  transition: .3s all ease-in-out;
}

.footer-widget:hover .footer-icone {
  background-color: var(--cor-azul);
}

.footer-widget:hover a {
  transition: .3s all ease-in-out;
}

.footer-widget:hover .footer-label,
.footer-widget:hover a {
  color: var(--cor-azul);
}

.footer-copyright {
  font-size: 16px;
  font-weight: 300 !important;
  margin-top: 60px;
  opacity: 1;
  color: #fff;
}

.redes-rodape {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: center;
}

.redes-rodape a svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.redes-rodape a {
  background-color: var(--cor-azul);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
}

.redes-rodape a:hover {
  background-color: var(--cor-azul);
}

._hero__description {
  max-width: 620px;
  margin: 0 auto;
  margin-left: 0;
}

@media (max-width: 768px) {
  ._hero {
    height: auto !important;
  }

  ._hero__wrapper {
    height: auto !important;
  }

  ._header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--cor-azul);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  header ._cta {
    display: none;
  }

  ._header__logo>img {
    max-height: 56px;
  }

  ._header__nav.active {
    max-height: 300px;
  }

  ._header__nav ul {
    flex-direction: column;
    gap: 0;
    padding: 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, .5);
  }

  .menu-toggle {
    display: flex;
  }

  ._header__nav ul li a {
    display: flex;
    justify-content: center;
    line-height: 3;
  }

  ._header__nav ul li a::after {
    display: none;
  }

  ._hero__image img {
    margin-top: 40px;
  }

  .maquete-lista,
  .sinais-lista {
    padding-left: 0;
  }

  .maquete-lista li,
  .sinais-lista li {
    padding-right: 0;
  }
}

@keyframes pulseWhatsApp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }

  70% {
    box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

._button-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 64px;
  height: 64px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: pulseWhatsApp 2s infinite;
  z-index: 999999999999999999;
}

._button-whatsapp svg {
  fill: #fff;
  width: 52px;
  height: 52px;
}

.form-container {
  max-width: 600px;
  margin: 50px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button {
  background-color: #cfbeb4;
  border-color: #cfbeb4 !important;
  outline: none;
}

@media(max-width:768px) {
  .hero-bianca {
    background-image: url(../img/bghero2-mobile.jpg);
    align-items: end;
    height: 100dvh;
    padding-bottom: 90px;
  }

  .hero-bianca ._hero__infos {
    font-size: 1.65rem;
    text-align: center;
  }

  .hero-bianca ._hero__infos p.fs-4 {
    font-size: 1.05rem !important;
    margin-bottom: 0;
    line-height: 1.5;
  }

  ._hero__description {
    font-size: 1rem !important;
  }

  ._hero__infos {
    gap: 16px;
  }

  .beneficio-item {
    margin: 0 24px;
  }
}

.form-check-input:checked {
  background-color: #cfbeb4;
  border-color: rgb(207, 190, 180);
}

.form-check-input:focus {
  border-color: #e4deda;
  outline: 0;
  box-shadow: 0 0 0 .25rem rgba(207, 190, 180, .25);
}

.form-control {
  border: var(--bs-border-width) solid #cfbeb4;
}

.form-control:focus {
  border-color: #e4deda;
  box-shadow: 0 0 0 .25rem rgba(207, 190, 180, .25);
}

.section-dra ul {
  list-style: none !important;
  padding-left: 0;
}

.section-dra ul li {
  margin-bottom: 24px;
}

.alerta-sucesso {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999999999999;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.alerta-sucesso .cmc-contato-mensagem-resultado {
  width: fit-content;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.alerta-sucesso svg {
  width: 24px;
  height: 24px;
  stroke-width: 3;
}

.alerta-sucesso .alert {
  width: fit-content;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}