@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;
}

.hero {
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  align-items: start;
  gap: 24px;
  padding: 1rem;
}
.hero__title {
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 36px;
  background-color: #242424;
  color: #fff;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.875rem;
  /* 171.429% */
  position: relative;
  z-index: 2;
}
.hero__subtitle {
  font-size: 2.325rem;
  font-style: normal;
  font-weight: 400;
  background: linear-gradient(90deg, #FFF 0%, #8DC63F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 678px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .hero__subtitle {
    font-size: 2.5rem;
    line-height: 1.25;
  }
}
.hero__description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  color: #fff;
  max-width: 644px;
  opacity: 0.65;
  position: relative;
  z-index: 2;
}
.hero__link {
  background-color: #fff;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 100px;
  width: 190px;
  height: 50px;
  color: #121212;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  position: relative;
  z-index: 2;
}
.hero__link:hover {
  background-color: #8DC63F;
}
.hero--section {
  padding-bottom: 100px;
}
.hero--section .container {
  align-items: center;
}
.hero--section .hero__title {
  margin: 0 auto;
}
.hero--section .hero__title::before {
  content: "";
  display: block;
  background-image: url(../img/document--e.svg);
  background-position: center;
  width: 19px;
  height: 19px;
}
.hero--section .hero__subtitle {
  background: linear-gradient(90deg, #FFF 0%, #8DC63F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  max-width: 100%;
  text-align: center;
}
.hero--section .hero__description {
  text-align: center;
  max-width: 644px;
  margin: 0 auto;
}
.hero--section .hero__link {
  margin: 0 auto;
}
.hero--background {
  background-image: url(../img/bg-home.svg);
  background-position: top right;
  background-repeat: no-repeat;
}
.hero--main {
  height: 900px;
}
.hero--main::before {
  content: "";
  display: block;
  height: 267px;
  width: 100%;
  background: linear-gradient(0deg, #121212 0%, rgba(18, 18, 18, 0) 100%);
  position: absolute;
  bottom: 0;
  width: 100%;
}
.hero--video {
  padding: 150px 0;
  position: relative;
  margin-top: -205px;
  border-radius: 80px 80px 0 0;
  overflow: hidden;
  background-color: #fff;
}
.hero--video::after {
  content: "";
  display: block;
  background: linear-gradient(0deg, rgba(18, 18, 18, 0.6) 0%, rgba(18, 18, 18, 0.6) 100%);
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  transition: 1s;
}
.hero--video .container {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: initial;
}
.hero--video .hero__title {
  z-index: 3;
  transition: 1s;
}
.hero--video .hero__subtitle {
  font-size: 2.925rem;
  max-width: 100%;
  font-weight: 400;
  background: initial;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: #fff;
  z-index: 3;
  transition: 1s;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .hero--video .hero__subtitle {
    font-size: 3.125rem;
  }
}
.hero--video .hero__description {
  text-align: center;
  max-width: 100%;
  opacity: 1;
  max-width: 644px;
  z-index: 3;
  transition: 1s;
}
.hero--video button {
  background-image: url(../img/player.svg);
  background-position: center;
  background-repeat: no-repeat;
  width: 95px;
  height: 92px;
  border-radius: 100%;
  background-color: transparent;
  color: transparent;
  cursor: pointer;
  position: relative;
  z-index: 3;
}
.hero--video iframe {
  position: absolute;
  width: 150%;
  height: 150%;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.hero__play button {
  opacity: 0;
  transition: 1s;
}
.hero__play button:hover {
  opacity: 1;
  transition: 1s;
}
.hero__play .hero__title {
  opacity: 0;
  transition: 1s;
}
.hero__play .hero__subtitle {
  opacity: 0;
  transition: 1s;
}
.hero__play .hero__description {
  opacity: 0;
  transition: 1s;
}
.hero__play::after {
  opacity: 0;
  transition: 1s;
}
.hero__iso-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.hero__iso-wrapper img {
  width: 100px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .hero__iso-wrapper img {
    width: auto;
    max-width: 120px;
  }
}

.news-sec {
  width: 100%;
  background-color: #fff;
  position: relative;
  padding-bottom: 30px;
}
.news-sec::before {
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  position: absolute;
  top: -30px;
  border-radius: min(80px, 7vw) min(80px, 7vw) 0 0;
  background-color: #ffffff;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .news-sec::before {
    height: 70px;
    top: -69px;
    border-radius: 80px 80px 0 0;
  }
}
@media (max-width: 700px) {
  .news-sec .container {
    padding: 0;
  }
}
.news-sec .news__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 701px) {
  .news-sec .news__container {
    padding-bottom: 50px;
  }
}
.news-sec .news__container .news__title {
  font-family: "Open Sans", sans-serif;
  font-size: min(2.438rem, 6vw);
  font-weight: 400;
  line-height: 47.19px;
  text-align: left;
  color: #121212;
}
@media (max-width: 1215px) {
  .news-sec .news__container .news__title {
    align-self: center;
  }
}
.news-sec .news__container .news__grid {
  display: flex;
  gap: 20px;
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid {
    flex-direction: column;
  }
}
.news-sec .news__container .news__grid a {
  max-height: 270px;
  overflow: hidden;
}
@media screen and (min-width: 575px) {
  .news-sec .news__container .news__grid a {
    max-height: 360px;
  }
}
@media screen and (min-width: 700px) {
  .news-sec .news__container .news__grid a {
    max-height: 330px;
  }
}
@media screen and (min-width: 1024px) {
  .news-sec .news__container .news__grid a {
    max-height: 460px;
  }
}
@media screen and (min-width: 1200px) {
  .news-sec .news__container .news__grid a {
    max-height: 500px;
  }
}
.news-sec .news__container .news__grid .main-news {
  flex: 2;
  position: relative;
}
.news-sec .news__container .news__grid .main-news .img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.news-sec .news__container .news__grid .main-news::after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 80%;
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid .main-news::after {
    height: 100%;
  }
}
.news-sec .news__container .news__grid .main-news .news__content {
  position: absolute;
  padding: 0 min(40px, 5vw) min(25px, 4vw) min(40px, 5vw);
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid .main-news .news__content {
    padding-bottom: 30px;
  }
}
.news-sec .news__container .news__grid .main-news .news__content .news__date {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: min(1rem, 3vw);
  font-style: normal;
  font-weight: 1.5rem;
  opacity: 0.65;
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid .main-news .news__content .news__date {
    font-size: min(1.3rem, 4vw);
  }
}
.news-sec .news__container .news__grid .main-news .news__content .news__subtitle {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: min(1.475rem, 3vw);
  font-style: normal;
  font-weight: 400;
  line-height: min(1.8rem, 3vw);
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid .main-news .news__content .news__subtitle {
    font-size: min(2rem, 5vw);
    line-height: min(2.4rem, 6vw);
  }
}
.news-sec .news__container .news__grid .side-news {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-sec .news__container .news__grid .side-news .news__item {
  position: relative;
}
@media screen and (min-width: 700px) {
  .news-sec .news__container .news__grid .side-news .news__item {
    width: 100%;
    max-height: 155px;
  }
}
@media screen and (min-width: 1024px) {
  .news-sec .news__container .news__grid .side-news .news__item {
    max-height: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .news-sec .news__container .news__grid .side-news .news__item {
    max-height: 240px;
  }
}
.news-sec .news__container .news__grid .side-news .news__item .img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.news-sec .news__container .news__grid .side-news .news__item::after {
  content: "";
  display: block;
  position: absolute;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
  opacity: 80%;
  width: 100%;
  height: 80%;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid .side-news .news__item::after {
    height: 100%;
  }
}
.news-sec .news__container .news__grid .side-news .news__item .news__content {
  max-height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 min(20px, 2vw) min(20px, 2vw) min(20px, 2vw);
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid .side-news .news__item .news__content {
    padding: 0 min(40px, 5vw) 30px min(40px, 5vw);
  }
}
.news-sec .news__container .news__grid .side-news .news__item .news__content .news__date {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: min(0.875rem, 1.6vw);
  font-style: normal;
  opacity: 0.65;
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid .side-news .news__item .news__content .news__date {
    font-size: min(1.3rem, 4vw);
  }
}
.news-sec .news__container .news__grid .side-news .news__item .news__content .news__subtitle {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: min(1.25rem, 1.8vw);
  font-style: normal;
  font-weight: 400;
  line-height: min(1.638rem, 2.2vw);
}
@media (max-width: 700px) {
  .news-sec .news__container .news__grid .side-news .news__item .news__content .news__subtitle {
    font-size: min(2rem, 5vw);
    line-height: min(2.4rem, 6vw);
  }
}

.post-list {
  margin: 0 auto;
  column-count: 4;
  column-gap: 30px;
}
@media screen and (max-width: 550px) {
  .post-list {
    column-count: 1;
  }
}
@media screen and (min-width: 551px) and (max-width: 800px) {
  .post-list {
    column-count: 2;
  }
}
@media screen and (min-width: 801px) and (max-width: 1500px) {
  .post-list {
    column-count: 3;
  }
}
.post-list .post__item {
  width: 100%;
  break-inside: avoid;
}
@media (min-width: 551px) {
  .post-list .post__item {
    margin-bottom: min(80px, 15vw);
    max-width: 380px;
  }
}
@media (max-width: 550px) {
  .post-list .post__item {
    height: 430px;
  }
}
.post-list .post__item .post__link {
  font-size: 0;
  position: relative;
}
@media (max-width: 550px) {
  .post-list .post__item .post__link::after {
    content: "";
    display: block;
    position: absolute;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
}
.post-list .post__item .post__link .post__img {
  margin: 0;
}
@media (max-width: 550px) {
  .post-list .post__item .post__link .post__img {
    height: 100%;
    width: 100%;
  }
}
.post-list .post__item .post__link .post__img .img {
  width: 100%;
  height: 100%;
}
@media (max-width: 550px) {
  .post-list .post__item .post__link .post__img .img {
    object-fit: cover;
    object-position: center;
  }
}
.post-list .post__item .post__link .post__img .img__postagens-relacionadas {
  height: min(447px, 50vw);
  object-fit: cover;
  object-position: center;
}
.post-list .post__item .post__link .post__img .img__postagens-relacionadas {
  object-fit: cover;
}
@media (min-width: 551px) {
  .post-list .post__item .post__link .post__img .img__postagens-relacionadas {
    height: min(447px, 50vw);
  }
}
.post-list .post__item .post__link .post__content {
  margin: min(24px, 4vw) 0 min(24px, 4vw) 0;
  z-index: 2;
}
@media (max-width: 550px) {
  .post-list .post__item .post__link .post__content {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 min(40px, 5vw) 30px min(40px, 5vw);
  }
}
.post-list .post__item .post__link .post__content .post__date {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: min(1rem, 5vw);
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.65;
}
@media (max-width: 550px) {
  .post-list .post__item .post__link .post__content .post__date {
    font-size: min(1.3rem, 4vw);
    color: #fff;
  }
}
.post-list .post__item .post__link .post__content .post__subtitle {
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: min(1.375rem, 5vw);
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 550px) {
  .post-list .post__item .post__link .post__content .post__subtitle {
    color: #fff;
    font-size: min(2rem, 5vw);
    line-height: min(2.4rem, 6vw);
  }
}
.post-list .post__item .post__link .post__content .post__span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #121212;
  font-family: "Open Sans", sans-serif;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 550px) {
  .post-list .post__item .post__link .post__content .post__span {
    color: #fff;
    margin-top: 10px;
  }
}
.post-list .post__item .post__link .post__content .post__span::before {
  content: "";
  display: block;
  background-image: url(../../img/arrow-right-black.svg);
  color: #121212;
  background-repeat: no-repeat;
  background-position: center;
  width: 17px;
  height: 17px;
}
@media (max-width: 550px) {
  .post-list .post__item .post__link .post__content .post__span::before {
    background-image: url(../../img/arrow-right.svg);
  }
}
.post-list--black {
  column-count: 3;
}
@media screen and (max-width: 550px) {
  .post-list--black {
    column-count: 1;
  }
}
@media screen and (min-width: 551px) and (max-width: 800px) {
  .post-list--black {
    column-count: 2;
  }
}
@media (min-width: 551px) {
  .post-list--black .post__item .post__link .post__content .post__date {
    color: #fff;
  }
}
@media (min-width: 551px) {
  .post-list--black .post__item .post__link .post__content .post__subtitle {
    color: #fff;
  }
}
.post-list--black .post__item .post__link .post__content .post__span {
  margin-top: 20px;
}
@media (min-width: 551px) {
  .post-list--black .post__item .post__link .post__content .post__span {
    color: #fff;
  }
  .post-list--black .post__item .post__link .post__content .post__span::before {
    background-image: url(../../img/arrow-right.svg);
  }
}

.caousel-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.caousel-background figure {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.caousel-background img {
  display: none;
}

.control {
  position: absolute;
  right: 0;
  z-index: 2;
  bottom: 250px;
  display: flex;
  width: 319px;
  gap: 29px;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .control {
    display: none;
  }
}
.control--institute {
  z-index: 2;
  bottom: 34px;
  display: flex;
  width: 100%;
  gap: 29px;
  padding: 0 30px;
}
.control--institute div.arrow {
  max-width: 95px;
}
.control div.swiper-pagination {
  position: initial;
  border-radius: 50px;
  background: #242424;
  max-width: 203px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.control div.swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background-color: #626262;
}
.control div.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8DC63F;
}
.control div.arrow {
  width: 100%;
  display: flex;
  gap: 7px;
}
.control div.arrow button {
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #242424;
  width: 44px;
  height: 44px;
  font-size: 0;
  color: #fff;
  font-weight: bold;
}
.control div.arrow button::before {
  font-size: 15px;
}
.control div.arrow button::after {
  font-size: 15px;
}
.control div.arrow button.swiper-button-prev {
  position: initial;
}
.control div.arrow button.swiper-button-next {
  position: initial;
}

.sobre .hero--main {
  height: auto;
}
@media (min-width: 768px) {
  .sobre .hero {
    height: auto;
  }
}
.sobre .hero--background {
  background-image: url(../../img/img_sobre/sobre-hero.svg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.sobre .hero--background::before {
  height: 100%;
  background: linear-gradient(to right, #121212 0%, rgba(18, 18, 18, 0) 100%);
  background-position: center;
  background-size: cover;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .sobre .hero--background {
    padding-bottom: 140px;
  }
}
.sobre .hero .container {
  padding-top: 240px;
  position: relative;
  gap: 10px;
  height: auto;
  padding-bottom: 110px;
}
.sobre .hero .container .hero__title--green {
  font-size: min(0.875rem, 4vw);
  padding: min(12px, 1.5vw) min(20px, 3vw);
  height: auto;
  color: #8DC63F;
}
.sobre .hero .container .hero__subtitle {
  font-size: 1.5rem;
  background: linear-gradient(90deg, #FFFFFF 0%, #8DC63F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  line-height: 1.3;
}
@media screen and (min-width: 1200px) {
  .sobre .hero .container .hero__subtitle {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}
.sobre .hero .container .hero__description {
  font-size: 0.9rem;
  opacity: 1;
  line-height: 1.4;
}
@media screen and (min-width: 1200px) {
  .sobre .hero .container .hero__description {
    font-size: 1rem;
  }
}
.sobre .hero .container .achievements {
  display: flex;
  gap: 11px;
  align-self: center;
  max-width: 865px;
  padding-top: min(50px, 9vw);
  position: relative;
  z-index: 2;
  flex-direction: column;
  align-self: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .sobre .hero .container .achievements {
    flex-direction: row;
    margin: 0 auto;
  }
}
.sobre .hero .container .achievements .achieves {
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 36px;
  width: 100%;
  max-width: 230px;
  background-color: #8DC63F;
  color: #0E0E0E;
  font-size: min(0.75rem, 3vw);
  font-style: normal;
  font-weight: 400;
  line-height: 0.875rem;
  position: relative;
}
.sobre .section--map {
  padding-top: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 727px) {
  .sobre .section--map {
    padding-bottom: 0;
  }
}
.sobre .section--map::before {
  content: "";
  display: block;
  width: 100%;
  height: 70px;
  position: absolute;
  top: -69px;
  border-radius: min(80px, 7vw) min(80px, 7vw) 0 0;
  background-color: #0E0E0E;
}
.sobre .section--map .container {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  padding-bottom: 70px;
}
@media screen and (min-width: 768px) {
  .sobre .section--map .container {
    flex-direction: row;
    align-items: stretch;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 1200px) {
  .sobre .section--map .container {
    transform: translateY(-145px);
  }
}
.sobre .section--map .container .card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 366px;
  padding: 15px;
  border-radius: 8px;
  background-color: #8DC63F;
  padding-right: 43px;
}
@media screen and (min-width: 768px) {
  .sobre .section--map .container .card {
    border-radius: 16px;
    gap: 10px;
  }
}
@media screen and (min-width: 1024px) {
  .sobre .section--map .container .card {
    max-width: 333px;
    padding: 20px;
  }
}
.sobre .section--map .container .card__img img {
  width: 100%;
  max-width: 22px;
}
@media screen and (min-width: 768px) {
  .sobre .section--map .container .card__img img {
    max-width: 27px;
  }
}
.sobre .section--map .container .card__text {
  display: flex;
  flex-direction: column;
}
.sobre .section--map .container .card__text .card__title {
  font-family: "Open Sans", sans-serif;
  font-size: min(1.125rem, 5vw);
  font-weight: 500;
}
.sobre .section--map .container .card__text .card__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 400;
  opacity: 0.7;
  line-height: 23px;
}
.sobre .section--map .cards-container {
  justify-content: space-between;
  max-width: 1041px;
}
@media screen and (min-width: 768px) {
  .sobre .section--map .row {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1200px) {
  .sobre .section--map .row {
    padding: 60px 34px 0;
    transform: translateY(-50px);
  }
}
@media screen and (min-width: 768px) {
  .sobre .section--map .row .col {
    flex-basis: 49%;
  }
}
.sobre .section--map .row .col .map__text {
  text-align: center;
}
@media (max-width: 768px) {
  .sobre .section--map .row .col .map__text {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .sobre .section--map .row .col .map__text {
    align-items: flex-start;
    text-align: left;
  }
}
.sobre .section--map .row .col .section__title {
  background-color: #242424;
  color: #fff;
}
.sobre .section--map .row .col .section__subtitle {
  background: linear-gradient(90deg, #FFFFFF 0%, #8DC63F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (min-width: 1200px) {
  .sobre .section--map .row .col .section__subtitle {
    font-size: 2.8rem;
  }
}
.sobre .section--map .row .col .section__description {
  margin-bottom: 24px;
}
.sobre .section--map .row .col .section__destaque {
  max-width: 484px;
  border-radius: min(16px, 3vw);
  padding: 20px 21px;
  background-color: #8BC33F;
  color: #121212;
  font-weight: 600;
  font-family: "Open Sans", sans-serif;
  font-size: min(0.875rem, 2.8vw);
  line-height: min(1.25rem, 3.5vw);
}
.sobre .section--map .row .col .section__link {
  margin-top: 20px;
}
.sobre .section--map .row .col .section__image {
  height: fit-content;
}
@media (max-width: 768px) {
  .sobre .section--map .row .col .section__image {
    margin-top: 60px;
  }
}
@media (min-width: 701px) and (max-width: 1200px) {
  .sobre .section--map .row .col .section__image {
    padding: 0 20px;
  }
}
.sobre .section--map .row .col .section__image img {
  width: 100%;
  max-width: 490px;
}
.sobre .section--map .row .col .section__image svg {
  width: 100%;
  max-width: 490px;
}
@media screen and (max-width: 500px) {
  .sobre .section--map .row .col .section__image svg {
    height: 250px;
  }
}
.sobre .section--institute {
  padding: 0;
  background-color: #fff;
  min-height: 850px;
  justify-content: space-between;
}
.sobre .section--institute .row {
  gap: 0;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 768px) {
  .sobre .section--institute .row {
    flex-direction: column;
  }
}
.sobre .section--institute .row .col {
  align-items: center;
  position: relative;
}
.sobre .section--institute .row .col .institute__img {
  width: 100%;
  height: 100%;
}
.sobre .section--institute .row .col .institute__img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 701px) {
  .sobre .section--institute .row .col .institute__img .img {
    min-height: 850px;
  }
}
@media (max-width: 768px) {
  .sobre .section--institute .row .col .institute__img .img {
    height: 300px;
  }
}
.sobre .section--institute .row .col .institute__content {
  width: 100%;
  max-width: 600px;
  gap: min(44px, 3vw);
  padding: 30px;
}
@media (max-width: 768px) {
  .sobre .section--institute .row .col .institute__content {
    align-items: center;
  }
}
.sobre .section--institute .row .col .institute__content .section__title {
  font-size: min(0.875rem, 3vw);
  margin: 0;
  color: #121212;
  background-color: transparent;
  border: 1px solid #121212;
}
.sobre .section--institute .row .col .institute__content .section__subtitle {
  width: 100%;
  margin: 0;
  font-family: "Open Sans", sans-serif;
  background: linear-gradient(to right, #121212 0%, #8DC63F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 768px) {
  .sobre .section--institute .row .col .institute__content .section__subtitle {
    text-align: center;
    font-size: 30px;
  }
}
.sobre .section--institute .row .col .institute__content .section__description-title {
  font-size: min(1.125rem, 4vw);
}
@media (max-width: 768px) {
  .sobre .section--institute .row .col .institute__content .section__description {
    text-align: center;
  }
}
.sobre .section--institute .row .col .institute__content .section__text {
  display: flex;
  flex-direction: column;
  gap: min(25px, 3vw);
  margin-bottom: 20px;
}
.sobre .section--institute .row .col .institute__content .section__text .section__description {
  color: #121212;
}
.sobre .section--athlete {
  min-height: auto;
  padding: 40px 0 0;
}
@media (min-width: 768px) {
  .sobre .section--athlete {
    padding: 40px 0 80px;
  }
}
.sobre .section--athlete .container--profile {
  width: 100%;
  max-width: 1018px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .sobre .section--athlete .container--profile {
    padding: 0;
  }
}
.sobre .section--athlete .container--profile .text__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 850px;
}
@media (max-width: 768px) {
  .sobre .section--athlete .container--profile .text__content {
    padding: 0 20px;
  }
}
.sobre .section--athlete .container--profile .text__content .profile__name {
  font-family: "Open Sans", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  background: linear-gradient(to right, #fff 0%, #8DC63F 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media screen and (min-width: 1200px) {
  .sobre .section--athlete .container--profile .text__content .profile__name {
    font-size: 3.8rem;
  }
}
.sobre .section--athlete .container--profile .text__content .profile__subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: min(1.125rem, 4vw);
  font-weight: 400;
  color: #fff;
  text-align: center;
}
.sobre .section--athlete .container--profile .text__content .profile__description {
  font-family: "Open Sans", sans-serif;
  font-size: min(1rem, 3.5vw);
  font-weight: 400;
  line-height: min(1.5rem, 4.7vw);
  color: #fff;
  opacity: 0.65;
  text-align: center;
}
.sobre .section--athlete .container--profile .profile__img {
  margin-top: 60px;
  width: 100%;
  max-width: 430px;
}
@media screen and (min-width: 768px) {
  .sobre .section--athlete .container--profile .profile__img {
    max-width: 990px;
  }
}
.sobre .section--athlete .container--profile .profile__img .img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sobre .section--athlete .container--profile .profile__info {
  width: 100%;
  max-width: 643px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .sobre .section--athlete .container--profile .profile__info {
    padding: 0 40px;
  }
}
.sobre .section--athlete .container--profile .profile__info .info__text {
  font-family: "Open Sans", sans-serif;
  font-size: min(1rem, 3.2vw);
  font-weight: 400;
  line-height: min(1.5rem, 5vw);
  text-align: left;
  color: #fff;
}
@media (max-width: 768px) {
  .sobre .section--athlete .container--profile .profile__info .info__text {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .sobre .section--certification {
    padding-top: 0;
    align-items: center;
    padding-bottom: 70px;
  }
  .sobre .section--certification .row {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .sobre .section--certification {
    padding-top: 0;
    background-color: #121212;
    padding-bottom: 0;
  }
}
.sobre .section--certification .container {
  max-width: 100%;
  position: static;
}
@media screen and (min-width: 768px) {
  .sobre .section--certification .container {
    background-color: #161616;
    border-radius: 70px 70px 0 0;
    padding-bottom: 120px;
    padding-top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .sobre .section--certification .container {
    padding-bottom: 130px;
    padding-top: 160px;
  }
}
.sobre .section--certification .row {
  width: 100%;
  max-width: 1216px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .sobre .section--certification img {
    max-width: 189px;
  }
}
.sobre .section--certification article {
  position: relative;
}
@media (max-width: 768px) {
  .sobre .section--certification article {
    padding-top: 0;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .sobre .section--certification article .section__title {
    background: #242424;
    height: 38px;
    color: #8DC63F;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .sobre .section--certification article .section__subtitle {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin: 20px 0 20px;
  }
}
@media screen and (min-width: 768px) {
  .sobre .section--certification article .section__subtitle {
    font-size: 1.575rem;
  }
}
@media screen and (min-width: 1200px) {
  .sobre .section--certification article .section__subtitle {
    font-size: 2.275rem;
  }
}
@media (max-width: 768px) {
  .sobre .section--certification article .section__description {
    font-size: 12px;
    text-align: center;
    line-height: 23px;
    margin-bottom: 13px;
  }
}
@media screen and (min-width: 768px) {
  .sobre .section--certification article .section__description {
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 15px 0 10px;
  }
}
@media screen and (min-width: 1200px) {
  .sobre .section--certification article .section__description {
    margin: 20px 0 15px;
  }
}
.sobre .section--certification article .section__list {
  padding-top: 0;
  margin-bottom: 20px;
}
@media screen and (min-width: 1200px) {
  .sobre .section--certification article .section__list {
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
  .sobre .section--certification .section__title {
    background: #242424;
    height: 38px;
    color: #8DC63F;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .sobre .section--certification .section__subtitle {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 0;
  }
}
@media (max-width: 768px) {
  .sobre .section--certification .section__description {
    font-size: 12px;
    text-align: center;
    line-height: 23px;
    margin-bottom: 0;
  }
}
.sobre .section--certification .section__coluna_video {
  display: block !important;
  padding-top: 6rem;
}
.sobre .section--certification .section__image {
  margin-bottom: 2rem;
}
@media (min-width: 720px) {
  .sobre .section--certification .section__image {
    position: sticky;
    top: 150px;
    margin-bottom: 0;
  }
}

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