@charset "UTF-8";
/*
Theme Name: Alias
Theme URI: http://www.hudsoncarolino.com.br
Author: Hudson Carolino
Author URI: https://hudsoncarolino.com.br;
Description: Descrição do thema.
Version: 1.0

--------------------------------------------
ESTRUTURAÇÃO BASE
--------------------------------------------
**** DECLARAÇÃO DE VARIÁVEIS
**** ESTILOS GERAIS
**** BODY
**** HEADER
**** FOOTER
**** PÁGINA INICIAL
**** EXTRAS
**** @MEDIA
*/
/* DECLARAÇÃO DE VARIÁVEIS */
:root {
  font-family: "Open Sans", sans-serif;
}

/* ESTILOS GERAIS */
html,
body,
figure,
img,
div,
section,
article,
input,
header,
footer,
button,
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
a {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #121212;
}

.container {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 30px;
  /*   @media (min-width: 1200px) {
    padding: 0;
  } */
}
.container--large {
  max-width: 944px;
}

.row {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.row .col {
  flex-basis: 50%;
}

figcaption {
  display: none;
}

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 1000;
}

.cookie-consent-banner .container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #000;
  justify-content: space-between;
  width: calc(100vw - 120px);
  border-radius: 0 1rem 0 0;
  margin: 0 !important;
}

@media (min-width: 768px) {
  .cookie-consent-banner .container {
    text-align: left;
    flex-direction: row;
    align-items: center;
  }
}
@media (min-width: 1024px) {
  .cookie-consent-banner .container {
    width: calc(100vw - 220px);
    border-radius: 1rem 1rem 0 0;
    margin: 0 auto !important;
  }
}
.cookie-consent-banner button {
  background-color: #8DC63F;
  border-radius: 999px;
  color: #242424;
  font-weight: bold;
  border: none;
  padding: 1rem 1.25rem;
  margin-left: 1rem;
  cursor: pointer;
  transition: background-color ease 100ms;
}

.cookie-consent-banner a {
  color: #207cce;
}

.cookie-consent-banner a:hover {
  color: #3190e4;
  text-decoration: underline;
}

.cookie-consent-banner button:hover {
  background-color: #a3d65c;
}

.header {
  position: absolute;
  top: 36px;
  width: 100%;
  z-index: 3;
  display: flex;
  align-items: center;
  min-height: 94px;
  transition: 0.5s;
}
.header .container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .header .container {
    gap: 28px;
  }
}
.header__open {
  transition: 0.5s;
  top: 0;
}
.header__logoWrapper {
  flex-grow: 5;
  z-index: 4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__logoWrapper {
    width: 100%;
    flex-grow: initial;
    max-width: 240px;
  }
}
.header__logo {
  width: 100%;
  max-width: 140px;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: auto;
    max-width: none;
    height: 3.5rem;
  }
}
.header__nav {
  flex-grow: 2;
  transition: 0.5s;
  left: -100%;
  position: fixed;
  top: 0;
  background-color: #000;
  height: 100vh;
  width: 100%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .header__nav {
    left: 0;
    background-color: transparent;
    position: initial;
    height: initial;
  }
}
.header__nav > ul {
  display: flex;
  gap: 10px;
  padding: 100px 30px 0;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .header__nav > ul {
    flex-direction: row;
    padding: 0;
    gap: 42px;
  }
}
.header__nav > ul > li {
  position: relative;
}
.header__nav > ul > li a {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  display: flex;
  justify-content: start;
}
.header__nav > ul > li a:hover {
  color: #8DC63F;
}
.header__nav > ul > li:first-child > a::after {
  content: "";
  display: block;
  background-image: url(../img/chevron-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  width: 12px;
}
.header__nav > ul > li ul {
  display: none;
  width: 288px;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 8px;
  background: #1E1E1E;
}
@media screen and (min-width: 768px) {
  .header__nav > ul > li ul {
    position: absolute;
    left: 0;
    top: 23px;
  }
}
.header__nav > ul > li ul li {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-left: 35px;
  line-height: 17px;
}
.header__nav > ul > li ul li::after {
  content: "Contratos de financiamento veicular";
  display: block;
  opacity: 0.65;
  color: #FFF;
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 100%;
}
.header__nav > ul > li ul li::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background-position: center;
  background-size: 19px;
  background-repeat: no-repeat;
  border-radius: 9.538px;
  background-color: #121212;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.header__nav > ul > li ul li:nth-child(1)::before {
  background-image: url("/wp-content/themes/alias/img/1.svg");
}
.header__nav > ul > li ul li:nth-child(2)::before {
  background-image: url("/wp-content/themes/alias/img/2.svg");
}
.header__nav > ul > li ul li:nth-child(3)::before {
  background-image: url("/wp-content/themes/alias/img/3.svg");
}
.header__nav > ul > li ul li a {
  line-height: 18px;
}
.header__nav > ul > li:hover ul {
  display: flex;
}
.header .menu__open {
  left: 0;
  transition: 0.5s;
}
.header__button {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  z-index: 4;
  position: relative;
}
@media screen and (min-width: 768px) {
  .header__button {
    justify-content: end;
  }
}
.header__button a {
  border-radius: 40px;
  background-color: #8DC63F;
  color: #fff;
  padding: 7px 20px;
  display: inline-block;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .header__button a {
    font-size: 0.875rem;
    height: 40px;
  }
}
.header__hamburguer {
  max-width: 40px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: start;
  z-index: 4;
  position: relative;
}
.header__hamburguer button {
  font-size: 0;
  color: transparent;
  background-image: url(../img/menu.svg);
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .header__hamburguer {
    display: none;
  }
}
.header__open .header__hamburguer button {
  background-image: url(../img/botao-fechar.png);
}

#menu-menu-rodape-4 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

#menu-header-menu-e-registro-1 {
  height: fit-content;
}
#menu-header-menu-e-registro-1 li {
  flex-basis: 100%;
}
#menu-header-menu-e-registro-1 a {
  width: 100%;
}

.footer {
  background-color: #121212;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  .footer .row {
    justify-content: start;
  }
}
.footer .row .col ~ .col {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .footer .row .col ~ .col {
    margin-top: 20px;
    justify-content: start;
  }
}
.footer__menu {
  display: flex;
  gap: 101px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    gap: 26px;
  }
}
.footer__menu ul li a {
  color: #fff;
  font-size: 0.875rem;
  font-style: normal;
  line-height: 26px;
}
.footer__address {
  border-top: solid 1px rgba(131, 135, 138, 0.2);
  border-bottom: solid 1px rgba(131, 135, 138, 0.2);
  padding: 45px 15px;
  margin: 45px 0 17px;
  position: relative;
}
.footer__address figure {
  padding-bottom: 18px;
}
.footer__address figure img {
  max-width: 130px;
}
.footer__address address {
  max-width: 240px;
  color: #A1AEB7;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  font-family: "Open Sans", sans-serif;
  opacity: 0.65;
}
.footer__address a {
  color: transparent;
  display: block;
  width: 18px;
  height: 18px;
  background-image: url(../img/linkedin.svg);
  background-position: center;
  font-size: 0;
  position: absolute;
  right: 0;
  bottom: 45px;
}
.footer__copyright {
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer__copyright {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__copyright p {
  color: #A1AEB7;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  font-family: "Open Sans", sans-serif;
}
.footer__copyright ul {
  color: #A1AEB7;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  font-family: "Open Sans", sans-serif;
}
.footer__copyright ul li {
  display: inline;
}
.footer__copyright ul li ~ li {
  border-left: solid 1px #A1AEB7;
  padding-left: 15px;
}
.footer__copyright ul a {
  color: #A1AEB7;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  font-family: "Open Sans", sans-serif;
  padding-right: 15px;
}

.termosDeUso .title__container {
  display: flex;
  justify-content: center;
  padding-top: min(135px, 40vw);
  padding-bottom: 130px;
}
.termosDeUso .title__container .title {
  width: fit-content;
  background: linear-gradient(90deg, #FFFFFF, #8DC63F);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: min(4rem, 7vw);
  font-weight: 400;
}
.termosDeUso .termos {
  position: relative;
  top: -80px;
  border-radius: min(70px, 6vw) min(70px, 6vw) 0 0;
  display: flex;
  justify-content: center;
  padding-top: min(105px, 10vw);
  padding-bottom: min(60px, 10vw);
  background-color: #fff;
}
.termosDeUso .termos__container {
  width: 100%;
  max-width: 778px;
}
@media (max-width: 1300px) {
  .termosDeUso .termos__container {
    padding-left: min(25px, 5vw);
    padding-right: min(25px, 5vw);
  }
}
.termosDeUso .termos__container .termos__subtitle {
  padding-bottom: 10px;
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: min(1.125rem, 3.5vw);
  font-style: normal;
  font-weight: 700;
}
.termosDeUso .termos__container .termos__text {
  padding-bottom: 50px;
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: min(1.125rem, 3.5vw);
  font-style: normal;
  font-weight: 400;
  line-height: min(2.125rem, 5.5vw);
}

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