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

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

.logomobile {
  padding: 20px;
  width: auto;
  height: auto;
  max-height: 50vh;
}

@media (max-width: 768px) {
  .logomobile {
    width: 100%;
    padding: 20px;
  }
}
.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-section {
  padding-top: 2rem;
  margin-bottom: 4rem;
}

.button-container {
  text-align: center;
  margin-bottom: 2rem;
}

.banner {
  background-image: url(https://i.imgur.com/3NNLPME.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0D0D0D;
  color: #FFFFFF;
  height: 900px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 50px;
}

.content-wrapper {
  background-color: #0e0e0e;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  min-height: 500px;
  padding: 50px;
  margin-top: -150px;
  border-radius: 100px 100px 0 0;
  box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.3);
  /* Adiciona sombra no topo */
}

.content {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.content p {
  line-height: 150%;
}

.content.container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .content.container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: space-between;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
    height: auto;
    padding: 20px;
  }
  .content img {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
.btn-custom {
  background-color: #94C11C;
  color: #FFFFFF;
  border: none;
  border-radius: 40px;
  padding: 15px;
  font-size: 20px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: inline-block;
  width: 100%;
  margin-top: 50px;
  transition: background-color 0.3s;
  text-align: center;
  font-weight: 600;
}

.btn-custom:hover {
  background-color: #7DAA1F;
}

.help-section {
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background-image: url("https://i.imgur.com/VN7X2KQ.jpeg");
  /* Link fictício */
  background-size: cover;
  /* Faz a imagem cobrir toda a seção */
  background-position: center;
  /* Centraliza a imagem */
  border-radius: 30px 30px 0px 0px;
}

.help-section h2 {
  text-align: center;
  margin-bottom: 30px;
}

.help-section .card {
  background-color: #8DC63F;
  border-radius: 1rem;
  margin: 10px;
  display: flex;
  align-items: start;
  justify-content: center;
}

@media (min-width: 640px) {
  .card-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
}
@media (min-width: 1024px) {
  .card-container {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: none;
    align-items: stretch;
  }
}
.card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 14px 14px;
  border-radius: 12px;
  background-color: #8DC63F;
  color: #121212;
}

.info-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 50px 0;
}

.info-section .button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  flex-direction: row;
}

.info-section .button-text {
  margin-left: 20px;
  font-size: 16px;
  text-align: center;
}

.circle {
  width: 10px;
  height: 10px;
  background-color: #94C11C;
  border-radius: 50%;
  margin: 0 5px;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 100;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .info-section .button-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .info-section .button-container .btn-custom {
    margin-bottom: 10px;
  }
  .info-section .button-text {
    margin-left: 0;
    text-align: center;
  }
  .circle {
    display: none;
  }
}
/* Adicionando o estilo para o conteúdo ocupar 100% */
.full-width {
  width: 100% !important;
}

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: greenyellow;
  box-shadow: 0 0 0 2px greenyellow;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: greenyellow;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: greenyellow;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px greenyellow;
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.help-section h1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 2.5rem;
  text-align: center;
}

.cortextospan {
  color: #CDDC39;
}

.container-fluid.info-section {
  background-image: url("https://i.imgur.com/2oyUqXW.jpeg");
  /* Imagem de fundo */
  background-size: cover;
  /* Faz com que a imagem cubra todo o container */
  background-attachment: fixed;
  /* Mantém a imagem fixa no scroll */
  background-position: center;
  /* Centraliza a imagem */
  background-repeat: no-repeat;
  /* Evita que a imagem se repita */
  position: relative;
  /* Necessário para o overlay de opacidade */
}

.container-fluid.info-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  /* Cor com opacidade de 30% */
  z-index: 1;
  /* Coloca o overlay abaixo do conteúdo */
}

.logo-container {
  position: relative;
  z-index: 3;
  /* Mantém a logo acima do fundo e do overlay */
}

.info-section-content {
  position: relative;
  /* Mantém o conteúdo acima do overlay */
  z-index: 2;
  text-align: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: solid 1px #8dc63f;
  background: rgba(141, 198, 63, 0.1098039216);
}

footer {
  max-width: 1240px;
  /* Define a largura máxima */
  margin: 0 auto;
  /* Centraliza o footer */
  background-color: #121212;
  /* Define a cor de fundo do footer */
  padding: 20px;
  /* Adiciona um espaço interno */
  color: #fff;
  /* Define a cor do texto para garantir contraste */
}

/* Para garantir que o fundo cubra toda a área */
body {
  background-color: #121212;
  /* Para garantir que a cor #121212 cubra as laterais da página */
}

.news-section {
  padding: 50px;
  background-color: #f5f5f5;
}

.news-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.news-item {
  width: 30%;
  margin: 10px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  border-radius: 0.5rem;
}

.news-item:hover {
  transform: scale(1.02);
}

.read-more {
  color: #94C11C;
  text-decoration: none;
  font-weight: bold;
  display: block;
  width: fit-content;
  margin-top: 0.5rem;
}

/* Estilos responsivos */
@media (max-width: 768px) {
  .news-item {
    width: 100%;
    /* Um item por linha em telas menores */
    margin: 10px 0;
  }
}
.nav navbar-nav {
  flex-wrap: none;
}

.e-notifica a {
  background-color: rgba(0, 59, 111, 0);
}

.footer .menu--last ul li a {
  margin-bottom: 5px;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/*# sourceMappingURL=E-notifica.css.map */
