@charset "UTF-8";
/*******************/
/* ==========================================
   RESET CSS MODERNO
   ========================================== */
@import url("https://fonts.googleapis.com/css2?family=Michroma&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  margin: 0;
  background: #000;
  background: linear-gradient(120deg, #220e04, #000, #130f08);
  background-size: 400% 400%;
  animation: gradientBody 12s ease infinite;
}

@keyframes gradientBody {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
img,
picture,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  font-size: 16px;
  line-height: 20px;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

textarea {
  resize: vertical;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**********/
/********
BORDA ANIMADA
***********/
.borda-bottom-animada {
  position: relative;
}

.borda-bottom-animada::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #f4d349, #fff, #f4d349, transparent);
  animation: luzBottom 3s linear infinite;
}

@keyframes luzBottom {
  from {
    left: -100%;
  }
  to {
    left: 200%;
  }
}
.borda-top-animada {
  position: relative;
}

.borda-top-animada::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #ab6f00, #f4d349, #ab6f00);
  background-size: 300% 100%;
  animation: moverTopo 4s linear infinite;
}

@keyframes moverTopo {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 300% 50%;
  }
}
/********/
.borda-animada {
  position: relative;
  padding: 20px;
  border-radius: 16px;
}

.borda-animada::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(90deg, #ab6f00, #f4d349, #ab6f00);
  background-size: 300% 100%;
  animation: moverBorda 4s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

@keyframes moverBorda {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 300% 50%;
  }
}
.grid_botao {
  width: 100%;
  float: left;
  padding-top: 20px;
  padding-bottom: 20px;
}

/*****
Fontes
******/
.fonte_principal {
  font-family: "Michroma", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.texto-gradient {
  display: inline-block;
  background: linear-gradient(90deg, #ffa000, #ffd538, #ffa000);
  background-size: 300% 300%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: gradientTexto 10s ease-in-out infinite;
}

@keyframes gradientTexto {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/***********/
@keyframes subirDestaque {
  0% {
    height: 100%;
    opacity: 1;
  }
  5% {
    height: 0;
    opacity: 1;
  }
  100% {
    height: 0;
    opacity: 1;
  }
}
@keyframes trocarFundo {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logoAnimacao {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
    top: -50%;
  }
  100% {
    opacity: 0;
  }
}
.destaque {
  width: 100%;
  height: 100%;
  float: left;
  z-index: 1000;
  overflow: hidden;
  background: #000000;
  background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(11, 6, 0) 100%);
  -webkit-box-shadow: 2px 6px 16px -3px rgba(0, 0, 0, 0.67);
  box-shadow: 2px 6px 16px -3px rgba(0, 0, 0, 0.67);
}
.destaque::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #1F1102;
  background: linear-gradient(294deg, rgb(31, 17, 2) 0%, rgb(11, 6, 0) 100%);
  opacity: 0;
  animation: trocarFundo linear both;
  animation-timeline: scroll(root);
}
.destaque .logo {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  opacity: 1;
}
@media only screen and (min-width: 600px) {
  .destaque .logo {
    margin-left: -399px;
    margin-top: -120px;
  }
}
@media only screen and (max-width: 600px) {
  .destaque .logo {
    width: 350px;
    margin-left: -175px;
    margin-top: -45px;
  }
}
.destaque::after {
  content: "";
  width: 100%;
  height: 70px;
  background: url("images/descer.png") top center no-repeat;
  position: absolute;
  bottom: 0;
  z-index: 2;
  animation: flutuar 2s ease-in-out infinite;
}

.destaque_animation {
  position: fixed;
  animation: subirDestaque linear both;
  animation-timeline: scroll(root);
}
.destaque_animation .logo {
  animation: logoAnimacao linear both;
  animation-timeline: scroll(root);
}

.destaque_firefox {
  height: 100vh;
}

@keyframes flutuar {
  0% {
    background-position: center calc(50% - 5px);
  }
  50% {
    background-position: center calc(50% + 5px);
  }
  100% {
    background-position: center calc(50% - 5px);
  }
}
.central {
  margin: 0 auto;
}
@media only screen and (min-width: 600px) {
  .central {
    width: 1000px;
  }
}
@media only screen and (max-width: 600px) {
  .central {
    width: 90%;
  }
}

.btn-grad {
  background-image: linear-gradient(to right, #000 0%, #6e5a19 51%, black 100%);
}

.btn-grad {
  margin: 0 auto;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 0 20px #524516;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  display: block;
  outline: none;
  border: none;
  border: 2px solid #ffd437;
}

.btn-grad:hover {
  background-position: right center;
  text-decoration: none;
  border: 2px solid #fff;
  color: #ffd437;
  box-shadow: 0 0 40px #ffd437;
}

/*****
Carrosel
******/
.carousel {
  margin: 0 auto;
  padding: 20px 0;
  max-width: 100%;
  overflow: hidden;
  display: flex;
}
.carousel > * {
  flex: 0 0 100%;
}

@media only screen and (min-width: 600px) {
  .carrosel_mobile {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .carrosel_desktop {
    display: none;
  }
}
.card {
  color: white;
  border-radius: 24px;
  box-shadow: rgba(0, 0, 0, 0.1) 5px 5px 20px 0;
  font-size: xx-large;
  justify-content: center;
  align-items: center;
  background: #ccc;
  overflow: hidden;
  /*
  &:nth-child(1) {
    background: #7958ff;
  }

  &:nth-child(2) {
    background: #5d34f2;
  }

  &:nth-child(3) {
    background: #4300da;
  }
  */
}
@media only screen and (min-width: 600px) {
  .card {
    width: 25%;
  }
}
@media only screen and (max-width: 600px) {
  .card {
    width: 50%;
  }
}

.group {
  display: flex;
  gap: 20px;
  /*Adicione padding à direita para criar um espaço entre o último e o primeiro cartão. */
  padding-right: 20px;
  will-change: transform; /* Devemos ser gentis com o navegador - informar o que vamos animar. */
}

.carrosel_movimento_automatico {
  animation: carroselMovimentoInfinito 30s linear infinite;
}

@keyframes carroselMovimentoInfinito {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.carrosel_movimento_esquerda {
  animation: carroselEsquerda linear;
  animation-timeline: scroll(root);
}

@keyframes carroselEsquerda {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.carrosel_movimento_direita {
  transform: translateX(-100%);
  animation: carroselDireita linear;
  animation-timeline: scroll(root);
}

@keyframes carroselDireita {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
/*****
Sobre
******/
.sobre {
  width: 100%;
  height: 100%;
  float: left;
  padding-top: 550px;
  padding-bottom: 150px;
}
.sobre .titulo {
  font-size: 30px;
  line-height: 34px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.sobre .titulo strong {
  color: #ffd437;
}
.sobre p {
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  color: #fff;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}
.sobre p strong {
  font-size: 15px;
  text-align: center;
  margin-bottom: 20px;
  display: block;
  text-align: center;
  text-transform: uppercase;
}
@media only screen and (min-width: 600px) {
  .sobre p {
    width: 70%;
  }
}

.sobre_mozilla {
  padding-top: 150px;
}

/*****
Informações
******/
.informacoes {
  width: 100%;
  float: left;
  padding-top: 100px;
  padding-bottom: 100px;
}
.informacoes .bl1 {
  float: left;
}
@media only screen and (min-width: 600px) {
  .informacoes .bl1 {
    width: 30%;
    margin-top: 150px;
  }
}
@media only screen and (max-width: 600px) {
  .informacoes .bl1 {
    width: 100%;
    margin-bottom: 20px;
  }
}
.informacoes .bl1 .titulo {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  font-size: 40px;
  line-height: 42px;
  margin-bottom: 30px;
}
.informacoes .bl1 p {
  text-align: center;
  color: #fff;
}
@media only screen and (min-width: 600px) {
  .informacoes .bl2 {
    width: 30%;
    float: left;
    margin-left: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .informacoes .bl2 {
    width: 100%;
    float: left;
    margin-bottom: 20px;
  }
}
.informacoes .bl2 .video {
  -webkit-box-shadow: 2px 3px 50px 1px rgba(244, 211, 73, 0.41);
  box-shadow: 2px 3px 50px 1px rgba(244, 211, 73, 0.41);
}
.informacoes .bl3 {
  float: right;
}
@media only screen and (min-width: 600px) {
  .informacoes .bl3 {
    width: 30%;
    margin-top: 105px;
  }
}
@media only screen and (max-width: 600px) {
  .informacoes .bl3 {
    width: 100%;
  }
}
.informacoes .bl3 .item {
  padding-left: 40px;
  padding-right: 10px;
  position: relative;
  margin-bottom: 20px;
}
.informacoes .bl3 .item i {
  position: absolute;
  left: 0;
  top: 50%;
  font-size: 30px;
  margin-top: -15px;
}
.informacoes .bl3 .item p {
  color: #fff;
}
@media only screen and (min-width: 600px) {
  .informacoes .grid_botao {
    margin-top: 50px;
  }
}

/*****
PATROCINIO
******/
.patrocinio {
  width: 100%;
  float: left;
  padding-top: 50px;
  padding-bottom: 50px;
}
.patrocinio .carousel {
  width: 100%;
  float: left;
}
.patrocinio .investidores .titulo {
  font-size: 30px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
}
.patrocinio .investidores .itens {
  margin: 0 auto;
}
.patrocinio .investidores .itens:after {
  content: " ";
  display: block;
  clear: both;
}
@media only screen and (min-width: 600px) {
  .patrocinio .investidores .itens {
    width: 70%;
  }
}
@media only screen and (max-width: 600px) {
  .patrocinio .investidores .itens {
    width: 80%;
  }
}
.patrocinio .investidores .itens .item {
  float: left;
}
@media only screen and (min-width: 600px) {
  .patrocinio .investidores .itens .item {
    width: 50%;
  }
}
@media only screen and (max-width: 600px) {
  .patrocinio .investidores .itens .item {
    width: 100%;
  }
}
.patrocinio .investidores .itens .item .espacamento {
  padding: 20px;
  border: 1px solid #262626;
  margin: 15px;
  -webkit-border-radius: 12px;
  -moz-border-radius: 12px;
  border-radius: 12px;
}
.patrocinio .investidores .itens .item .espacamento img {
  display: block;
  width: 60%;
  margin: 0 auto;
}
.patrocinio .investidores .itens .item .espacamento:hover {
  box-shadow: 0 0 10px #ffd437;
}
.patrocinio .embaixadores {
  width: 100%;
  float: left;
  margin-top: 30px;
  margin-bottom: 30px;
}
.patrocinio .embaixadores .espacamento {
  padding: 20px;
}
.patrocinio .embaixadores .espacamento:after {
  content: " ";
  display: block;
  clear: both;
}
.patrocinio .embaixadores .espacamento .titulo {
  margin-top: 18px;
  text-transform: uppercase;
  float: left;
}
@media only screen and (min-width: 600px) {
  .patrocinio .embaixadores .espacamento .titulo {
    font-size: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .patrocinio .embaixadores .espacamento .titulo {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.patrocinio .embaixadores .espacamento p {
  float: right;
  color: #fff;
}
@media only screen and (min-width: 600px) {
  .patrocinio .embaixadores .espacamento p {
    width: 60%;
  }
}

/****
faq
*****/
.faq {
  width: 100%;
  float: left;
  padding-top: 50px;
  padding-bottom: 50px;
}
.faq .titulo {
  font-size: 30px;
  line-height: 33px;
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.faq .titulo strong {
  display: block;
}

.faq-item {
  border: 1px solid #262626;
  border-radius: 18px;
  margin-bottom: 18px;
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.faq-question::after {
  /*content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: .3s;*/
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  padding: 0 20px;
}

.faq-answer p {
  color: #fff;
}

.active {
  /*-webkit-box-shadow: 2px 3px 19px 2px rgba(244,211,73,0.23); 
  box-shadow: 2px 3px 19px 2px rgba(244,211,73,0.23);*/
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 20px 20px;
}

/****
Rodapé
*****/
.rodape {
  width: 100%;
  float: left;
  padding-top: 50px;
  padding-bottom: 50px;
}
.rodape img {
  width: 250px;
  display: block;
  margin: 0 auto;
  margin-bottom: 30px;
}
.rodape p {
  font-size: 8px;
  line-height: 10px;
  color: #505050;
  text-align: center;
}
.rodape p strong {
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
}

::-webkit-scrollbar {
  width: 5px;
}

/* fundo */
::-webkit-scrollbar-track {
  border-radius: 10px;
  background: #000;
}

/* cor */
::-webkit-scrollbar-thumb {
  background: #E88A00;
  background: linear-gradient(0deg, rgb(232, 138, 0) 0%, rgb(255, 212, 16) 100%);
  border-radius: 10px;
}

/* cor hover */
::-webkit-scrollbar-thumb:hover {
  background: #E88A00;
  background: linear-gradient(183deg, rgb(232, 138, 0) 0%, rgb(255, 212, 16) 100%);
}

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