:root {
  --cor-azul: #1397d5;
  --cor-borda-input-hover: rgb(19, 151, 213, .35)
}

body {
  font-size: 18px;
  font-family: "Instrument Sans", sans-serif;
}

a {
  /* color: #fff; */
  text-decoration: none;
}

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{
  flex: 1;
}

._header__logo>img{
  max-height: 80px;
}

._header__nav{
  flex: 1;
}

._header__cta{
  flex: 1;
  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: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .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: center center;
  position: relative;
  padding: 120px 0;
  color: #fff;
  height: 100dvh;
  display: flex;
  align-items: center;
}

._hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .65);
  z-index: 1;
}

._hero .container-xl {
  position: relative;
  z-index: 2;
}

._hero__infos h1 {
  font-weight: 700;
}

._hero__wrapper {
  display: grid;
  height: 100dvh;
  color: #fff;
}

/* @media(min-width:768px) {
  ._hero__wrapper {
    grid-template-columns: 70% 30%;
  }
} */

._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;
}

.lista-beneficios {
  list-style: none;
  margin-top: 16px;
}

.lista-beneficios li {
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 2;
  margin-bottom: 12px;
}

.lista-beneficios li span {
  background-color: var(--cor-azul);
  width: 42px;
  height: 42px;
  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;
}

.beneficio-item:hover {
  border-color: #fff;
  transform: scale(1.1);
}

.beneficio-item svg {
  width: 90px;
  height: 90px;
  fill: #fff;
}

.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;
}

.maquete-lista li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  line-height: 110%;
  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: #111;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  flex-shrink: 0;
  position: relative;
  transition: .3s all ease-in-out;
}

.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(19, 151, 213, .25) 0%, rgba(19, 151, 213, .25) 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;
}

.odometer,
.odometer-label {
  font-size: 48px;
  color: var(--cor-azul);
}

.odometer-label {
  margin-left: 8px;
}

.accordion,
.accordion-button {
  background-color: transparent !important;
  color: #fff;
}

.accordion-button {
  position: relative;
  padding-left: 1.5rem;
  background-color: transparent !important;
  box-shadow: none !important;
  font-size: 20px !important;
}

.accordion-icon {
  position: absolute;
  left: 0rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: thin;
  color: #fff;
  transition: transform 0.3s ease;
  user-select: none;
}

.accordion-button:not(.collapsed) {
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-body {
  color: #fff;
  padding: 0 !important;
}

.accordion-button:not(.collapsed) {
  color: #fff;
}

.accordion-item {
  border: none;
  border-bottom: 1px solid rgb(247, 247, 247, .15) !important;
  background-color: transparent !important;
  box-shadow: none !important;
}

.accordion-button:hover {
  color: var(--cor-azul);
}

.accordion-body p {
  font-weight: 300 !important;
}

.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: var(--cor-azul);
}

.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;
}

._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: rgb(14, 15, 17, 1);
}

.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: 14px;
  font-weight: 100 !important;
  margin-top: 60px;
  opacity: .35;
}

/* Responsive */
@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 {
    padding-left: 0;
  }

  .maquete-lista li {
    padding-right: 0;
  }

}