* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

* {
  position: relative;
  z-index: 1;
}

body {
  font-family: 'Inter';
  font-size: 16px;
  overflow-x: hidden;
}

#cabecalho {
  background-color: #FFF9F0;
  padding: 0.8em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cabecalho ul li a {
  text-decoration: none;
  color: #2E1B09;
  margin: 1.2em;
  font-weight: 400;
}

#cabecalho ul {
  list-style-type: none;
  display: flex;
  margin: 0;
  justify-content: center;
}

#container {
  display: flex;
  align-items: center;
  flex-direction: column;
  background:
    linear-gradient(to bottom, #BB3B1A, #FE9309, #FFA078);
}

#container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/src/img/sbc.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

#patrocinadores{
  background-color: #ddd5cc;
  padding: 4em;
}

.imagem-animada {
  position: relative;
  width: 200px;
  height: auto;
  animation: mover 5s infinite linear;
}

@keyframes mover {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

#evento{
  display: flex;
  align-items: center;
  flex-direction: column;
  background:
    linear-gradient(to bottom, #BB3B1A, #FE9309, #FFA078);
    padding-bottom: 10em;
    padding-top: 3em;
}

#evento::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* width: 800px;
  height: 800px; */
  background: url('/src/img/ballons.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.15;
  z-index: 0;
}

#rodape{
  background-color: #DBD6D0;
  color: #2E1B09;
  padding: 1.2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.borda{
  border: 1px solid #FFF6EC;
  margin-top: 1em;
  width: 50em;
  box-shadow: 1px 1px 7px 1px #FFDFAE;
  margin-bottom: 1em;
}

.text {
  font-size: 1.4em;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: #FFF6EC;
  font-weight: bold;
}

.text2{
  color: #390F0F;
  text-transform: uppercase;
  font-weight: bolder;
  font-size: 1.2em;
  margin-top: 5em;
  margin-bottom: 1em;
}

.text3{
  color: #FFF6EC;
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: center;
}

.text3 .margem{
  margin-top: 1em;
}

.fonte-pixel {
  font-family: 'Pixelify Sans';
  font-size: 14em;
  color: #FFF6EC;
}

.button2 {
  color: #e1e1e1;
  font-family: inherit;
  font-weight: 800;
  cursor: pointer;
  position: relative;
  border: none;
  background: none;
  text-transform: uppercase;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: color;
}

.button2:focus,
.button2:hover {
  color: #2E1B09;
}

.button2:focus:after,
.button2:hover:after {
  width: 80%;
  left: 10%;
}

.button2:after {
  content: "";
  pointer-events: none;
  bottom: -2px;
  left: 50%;
  position: absolute;
  width: 0%;
  height: 1px;
  background-color: #2E1B09;
  transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  transition-duration: 400ms;
  transition-property: width, left;
}

/* INSCREVA-SE BUTTON */

.button {
  margin-bottom: 3em;
  cursor: pointer;
  margin-top: 3em;
  position: relative;
  padding: 10px 24px;
  font-size: 18px;
  color: #390F0F;
  border: 2px solid #390F0F;
  /* border: none; */
  border-radius: 34px;
  background-color: transparent;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  border-radius: inherit;
  scale: 0;
  z-index: -1;
  background-color: #FFE7C8;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
  scale: 3;
}

.button:hover {
  color: #390F0F;
  scale: 1.1;
  box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.button:active {
  scale: 1;
}

.roadmap-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
  position: relative;
  height: 500px;
}

.roadmap-container::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #ddd;
  transform: translateX(-50%);
  z-index: 0;
}

.roadmap-step {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

.circle {
  width: 60px;
  height: 40px;
  border-radius: 50%;
  background-color: #007bff;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.roadmap-step .left, .roadmap-step .right {
  width: 70%;
  text-align: center;
  color: white;
  font-weight: bold;
  font-size: 1.6em;
}

.roadmap-step .left {
  text-align: right;
  padding-right: 20px;
}

.roadmap-step .right {
  text-align: left;
  padding-left: 20px;
}

.roadmap-step p {
  margin: 0;
  font-size: 14px;
}

.roadmap-step .circle {
  background-color: #2F2009;
}

/* EMOJIS */

#rodape ul {
  list-style: none;
  margin-bottom: 0;
}

.example-2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.example-2 .icon-content {
  margin: 0 10px;
  position: relative;
}
.example-2 .icon-content .tooltip {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 6px 10px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  font-size: 14px;
  transition: all 0.3s ease;
}
.example-2 .icon-content:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}
.example-2 .icon-content a {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #4d4d4d;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover {
  box-shadow: 3px 2px 45px 0px rgb(0 0 0 / 12%);
}
.example-2 .icon-content a svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.example-2 .icon-content a:hover {
  color: white;
}
.example-2 .icon-content a .filled {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: #000;
  transition: all 0.3s ease-in-out;
}
.example-2 .icon-content a:hover .filled {
  height: 100%;
}


.example-2 .icon-content a[data-social="instagram"] .filled,
.example-2 .icon-content a[data-social="instagram"] ~ .tooltip {
  background: linear-gradient(
    45deg,
    #405de6,
    #5b51db,
    #b33ab4,
    #c135b4,
    #e1306c,
    #fd1f1f
  );
}
.example-2 .icon-content a[data-social="youtube"] .filled,
.example-2 .icon-content a[data-social="youtube"] ~ .tooltip {
  background-color: #ff0000;
}

.example-2 .icon-content a[data-social="discord"] .filled,
.example-2 .icon-content a[data-social="discord"] ~ .tooltip {
  background-color: #7289da;
}

@media (min-width: 992px) {
  #container {
    padding: 2em;
  }

  .fonte-pixel {
    font-size: 10em;
  }

  .text {
    font-size: 2em;
  }

  .text2{
    font-size: 1em;
    text-align: center;
  }

  .roadmap-step .left, .roadmap-step .right {
    font-size: 1.4em;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  #cabecalho ul li a {
    font-size: 14px;
    margin: 0.5em;
  }

  .fonte-pixel {
    font-size: 7em;
  }

  .text {
    font-size: 1.6em;
  }

  .text2{
    font-size: 1em;
    text-align: center;
  }

  .roadmap-step .left, .roadmap-step .right {
    font-size: 1.2em;
  }

  #evento {
    padding: 5em 2em;
  }

  .button {
    font-size: 16px;
    padding: 8px 20px;
  }
}

@media (max-width: 767px) {
  #cabecalho {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #cabecalho ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .fonte-pixel {
    font-size: 4em;
  }

  .text, .text2 {
    font-size: 1.2em;
    text-align: center;
    margin: 0.5em;
  }

  .roadmap-container {
    height: auto;
    margin: 20px 0;
  }

  .roadmap-step .left, .roadmap-step .right {
    font-size: 1em;
    width: 45%;
  }

  .circle {
    width: 30px;
    height: 30px;
  }

  #evento {
    padding: 2em 1em;
  }

  .button {
    font-size: 14px;
    padding: 6px 15px;
  }
}

@media (max-width: 480px) {
  #cabecalho ul li a {
    font-size: 12px;
    margin: 0.3em;
  }

  .fonte-pixel {
    font-size: 3em;
  }

  .text, .text2 {
    font-size: 1em;
  }

  .circle {
    width: 25px;
    height: 25px;
  }

  .roadmap-step .left, .roadmap-step .right {
    font-size: 0.8em;
  }

  .button {
    font-size: 12px;
    padding: 5px 10px;
  }
}