@charset "UTF-8";
@font-face {
  font-family: "SugoDisplay";
  src: url("../assets/fonts/Sugo-Pro-Classic-Light-trial.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

/* Para navegadores baseados em WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border: 2px solid transparent;
  background-clip: content-box;
}

/* Para Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.1);
}

/* Mixins */
/* VARIÁVEIS */
/* Global */
html {
  height: 100%;
  width: 100%;
  overflow: hidden;
}

body {
  background: url("../assets/images/fundo.jpg") center/cover fixed no-repeat;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* Container principal */
.index {
  width: 65%;
  height: 95%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.index.hidden {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
  display: none;
}

/* Header */
header {
  width: 100%;
  margin-top: 1.5rem;
  text-align: center;
}
header h1 {
  font-size: 4rem;
  letter-spacing: 0.1rem;
  color: #f5efe7;
  font-family: "SugoDisplay", serif;
}

/* Main */
main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo */
.main-logo {
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-logo img {
  width: 100%;
  max-height: 40vh;
}

/* Nível */
.main-nivel {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.main-nivel .nivel-text p {
  font-family: "Jura", serif;
  font-size: 1.15rem;
  color: #f5efe7;
  letter-spacing: 0.02rem;
}
.main-nivel .nivel-buttons {
  width: 100%;
  max-width: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-between;
}
.main-nivel .nivel-buttons .nivel-button {
  width: 30%;
  padding: 0.5rem 0.813rem;
  background-color: #f5efe7;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 0.25rem;
}
.main-nivel .nivel-buttons .nivel-button:hover {
  background-color: #d8c4b6;
  border: 1px solid #231c1b;
}
.main-nivel .nivel-buttons .nivel-button p {
  font-family: "Jura", serif;
  letter-spacing: 0.03rem;
  font-size: 0.8rem;
}
.main-nivel .nivel-buttons .nivel-button img {
  height: 80%;
  width: 80%;
}

/* Botão de seção */
.section-button {
  width: 100%;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-button.active {
  margin-top: 20px;
}
.section-button button {
  width: 100%;
  max-width: 20rem;
  padding: 0.4rem 0;
  font-family: "Jura", serif;
  font-size: 1rem;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0.125rem 0.125rem 0 rgba(0, 0, 0, 0.4);
  background-color: #231c1b;
  border-radius: 0.063rem 3.125rem 0.063rem 3.125rem;
}

/* Container das regras */
.section-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, z-index 0s 0.3s;
}
.section-container.active {
  opacity: 1;
  z-index: 100;
  transition: opacity 0.3s ease-in-out, z-index 0s;
}

/* Regras do jogo */
.section-rules {
  width: 80%;
  height: 90%;
  padding: 1.25rem;
  background: #fff;
  overflow-y: auto;
  border-radius: 10px;
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
}
.section-container.active .section-rules {
  opacity: 1;
  transform: translateY(0);
  max-width: 800px;
}
.section-rules .rules {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 0 10px;
}
.section-rules .rules h2 {
  text-align: center;
  margin-top: 15px;
}
.section-rules .rules .rules-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-rules .rules .rules-container h3 {
  font-family: "Jura", serif;
  font-size: 1.5rem;
}
.section-rules .rules .rules-container .top-menu-info {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.section-rules .rules .rules-container .how-play {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
}
.section-rules .rules .rules-container .how-play h4 {
  text-transform: uppercase;
  margin-top: 1rem;
}
.section-rules .rules .rules-container .how-play ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.section-rules .rules .rules-container .how-play ul img {
  margin: 5px 0;
  width: 100%;
  max-width: 300px;
}
.section-rules .rules .rules-container .how-play ul li {
  margin: 5px 0;
}
.section-rules .rules .rules-container .how-play .ball-null {
  font-size: 1.4rem;
  letter-spacing: 0.3rem;
  color: #f5efe7;
  line-height: 1rem;
}
.section-rules .rules .rules-container .how-play .emojis {
  font-size: 1.5rem;
}
.section-rules .rules .rules-container .how-play .important {
  font-family: "Jura", serif;
  font-size: 1.5rem;
  color: #213555;
}
.section-rules .close-btn {
  margin-top: 20px;
}

/* Footer */
footer {
  width: 100%;
  height: 5vh;
  padding: 0.125rem;
  background-color: rgba(35, 28, 27, 0.2509803922);
  font-family: "Poppins", serif;
  text-align: center;
  font-size: 0.6rem;
  font-weight: 300;
  color: #231c1b;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer a {
  font-family: "Poppins", serif;
  font-weight: 500;
  color: #231c1b;
  text-decoration: none;
}
footer a:hover {
  color: #f5efe7;
}

@media (max-width: 350px) and (max-height: 570px) {
  html,
  body {
    font-size: 10px;
    height: 100%;
  }
  .index {
    width: 100%;
    padding: 0 10px;
  }
}
@media (max-width: 300px) and (max-height: 600px) {
  html,
  body {
    font-size: 10px;
    height: 100%;
  }
}
@media (max-width: 400px) and (min-height: 570px) {
  html,
  body {
    font-size: 10px;
    height: 100%;
  }
}

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