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

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

.carousel {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  position: relative;
  border-radius: 80px 80px 0 0;
  top: -157px;
}
@media (max-width: 768px) {
  .carousel {
    top: -31px;
    border-radius: 30px 30px 0 0;
  }
}
.carousel ul .carousel__item {
  padding: 88px 0;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 55px;
  width: fit-content;
}
@media (max-width: 768px) {
  .carousel ul .carousel__item {
    padding: 37px 10px 0;
    gap: 27px;
    width: 100%;
  }
}
.carousel ul .carousel__item.swiper-slide-prev {
  opacity: 0.65;
}
.carousel ul .carousel__item.swiper-slide-prev .carousel__content {
  opacity: 0;
}
.carousel ul .carousel__item.swiper-slide-next {
  opacity: 0.65;
}
.carousel ul .carousel__item.swiper-slide-next .carousel__content {
  opacity: 0;
}
.carousel ul .carousel__item figure {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  max-width: 978px;
}
.carousel ul .carousel__item figure img {
  display: block;
  width: 100%;
  height: 326px;
  object-fit: cover;
  max-width: 700px;
}
@media (min-width: 1024px) {
  .carousel ul .carousel__item figure img {
    max-width: 978px;
  }
}
@media (max-width: 768px) {
  .carousel ul .carousel__item figure img {
    max-width: 302px;
    height: 119px;
  }
}
.carousel ul .carousel__item figure figcaption {
  display: none;
}
.carousel ul .carousel__item .carousel__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
  max-width: 682px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .carousel ul .carousel__item .carousel__content {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    gap: 18px;
  }
}
.carousel ul .carousel__item .carousel__title {
  color: #121212;
  font-size: 2.438rem;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 768px) {
  .carousel ul .carousel__item .carousel__title {
    font-size: 30px;
  }
}
.carousel ul .carousel__item .carousel__description {
  color: #121212;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.65;
}
@media (max-width: 768px) {
  .carousel ul .carousel__item .carousel__description {
    font-size: 14px;
  }
}
.carousel ul .carousel__item .carousel__link {
  color: #121212;
  background-color: #8DC63F;
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 20px 30px;
  height: 50px;
}
@media (max-width: 768px) {
  .carousel ul .carousel__item .carousel__link {
    width: 208px;
    max-width: 208px;
    height: 43px;
  }
}
.carousel .swiper-pagination {
  top: 434px !important;
  height: 40px;
}
@media (max-width: 768px) {
  .carousel .swiper-pagination {
    position: initial;
    margin-top: 30px;
  }
}
.carousel .swiper-pagination .swiper-pagination-bullet {
  background-color: transparent;
  width: 12px;
  height: 12px;
  border: solid #4A4A4A 1px;
}
.carousel .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #8DC63F;
  border-color: #8DC63F;
  opacity: 1;
}

.section {
  background-color: #0E0E0E;
  padding: 100px 0;
  display: flex;
  min-height: 575px;
  flex-direction: column;
  justify-content: center;
}
.section--background {
  background-position: center 97px;
  background-repeat: no-repeat;
}
.section .col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section .col article {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  max-width: 475px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.section__title {
  border-radius: 100px;
  padding: 12px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  height: 36px;
  background-color: #8DC63F;
  color: #121212;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 0.875rem;
  /* 171.429% */
  position: relative;
  z-index: 2;
  margin-bottom: 24px;
}
.section__subtitle {
  font-size: 2.875rem;
  font-style: normal;
  font-weight: 400;
  line-height: min(47px, 8.5vw);
  color: #fff;
  white-space: pre-wrap;
  max-width: 475px;
  margin-bottom: 24px;
}
.section__description {
  font-size: min(1rem, 3vw);
  font-style: normal;
  font-weight: 400;
  line-height: min(24px, 4vw);
  color: #fff;
  max-width: 644px;
  opacity: 0.65;
  position: relative;
  z-index: 2;
}
.section__list {
  padding-top: 15px;
  display: flex;
  gap: 6px 7px;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 264px;
}
.section__list li {
  background-image: url(../img/check.svg);
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 18px;
  flex-basis: 48.5%;
}
.section__list li p {
  color: #fff;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
.section__image {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.section__image img {
  display: block;
  max-width: 100%;
  object-fit: contain;
}
.section__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  gap: 10px;
  padding: 12px 30px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5rem;
  background-color: #8DC63F;
  color: #121212;
}
.section__link:hover {
  background-color: #fff;
  color: #000;
}
.section__link--black {
  color: #121212;
}
.section--certification {
  background-color: #121212;
}
@media screen and (min-width: 768px) {
  .section--certification {
    padding-bottom: 138px;
  }
}
.section--certification .row {
  flex-direction: row-reverse;
  gap: 0 116px;
  flex-wrap: nowrap;
}
.section--certification .row .col {
  width: 100%;
  max-width: 580px;
  flex-basis: 100%;
}
@media (max-width: 768px) {
  .section--certification .row .col {
    max-width: 100%;
  }
}
.section--certification .row .col ~ .col {
  max-width: 485px;
}
@media (max-width: 768px) {
  .section--certification .row .col ~ .col {
    max-width: 100%;
  }
}
.section--certification .ask-me {
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .section--certification .ask-me {
    max-width: 475px;
    margin: 0 auto;
    width: 100%;
  }
}

.ask-me {
  padding-bottom: 68px;
}
@media (max-width: 768px) {
  .ask-me {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
}
.ask-me__section {
  margin-bottom: 10px;
  border-radius: 4px;
  overflow: hidden;
}
.ask-me__section[open] summary::after {
  background-image: url(../img/minus.svg);
  width: 14px;
  height: 2px;
}
.ask-me__title:not(h2) {
  height: 62px;
  background-color: #8DC63F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #121212;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 0 27px;
  cursor: pointer;
  position: relative;
}
.ask-me__title:not(h2)::after {
  background-image: url(../img/plus.svg);
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 8px;
}
@media screen and (min-width: 768px) {
  .ask-me__title:not(h2)::after {
    width: 14px;
    height: 14px;
    right: 20px;
  }
}
@media (max-width: 768px) {
  .ask-me__title:not(h2) {
    height: initial;
    padding: 6px 9px;
    line-height: 18px;
    min-height: 38px;
  }
}
.ask-me__description {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  background-color: #527523;
  padding: 23px 27px;
  text-align: justify;
  text-justify: inter-word;
}
@media (max-width: 768px) {
  .ask-me__description {
    padding: 6px 12px;
  }
}

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

.floating-button-wrapper {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: fit-content;
  z-index: 1001;
}

.floating-button {
  border-radius: 999px;
  padding: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgb(37, 211, 102);
  transition-property: all;
  transition-duration: 150ms;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.15));
}

.floating-button:hover {
  background-color: rgb(66, 232, 127);
  transform: scale(1.1);
}

.links-sistemas {
  display: flex;
  font-weight: 600;
  gap: 1rem;
}

.links-sistemas-header li {
  width: fit-content;
}

.links-sistemas-footer {
  flex-direction: row !important;
}

.links-sistemas li a {
  transition: background-color ease-in-out 175ms;
  width: max-content;
  border-radius: 40px;
  padding: 7px 20px;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
}

.header__button {
  width: 100%;
}

#menu-header-menu-e-registro {
  flex-direction: row;
  gap: 0.5rem 1rem;
}

.links-sistemas li:nth-child(1) > a {
  background-color: #8DC63F;
  color: #242424;
}

.links-sistemas li:nth-child(1) > a:hover {
  background-color: #a3d65c;
}

.links-sistemas li:nth-child(2) > a {
  background-color: #003b6f;
  color: #fff;
}

.links-sistemas li:nth-child(2) > a:hover {
  background-color: #044c8a;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .links-sistemas-header {
    /* Empilha os itens verticalmente em telas menores */
    justify-content: flex-end;
    gap: 0.2rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .links-sistemas-header li a {
    font-size: 0.75rem;
    /* Ajusta o tamanho da fonte para telas menores */
    padding: 8px 15px;
    /* Ajusta o espaçamento interno em telas menores */
  }
}

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