@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2");
}

@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-regular-400.woff2") format("woff2");
}

/* ===================== RESET ===================== */

:root {
  --font-heading: 'Fredoka One', cursive;
  --font-body: 'Jost', sans-serif;
  --font-code: 'Courier New', monospace;
  --font-minecraft: 'VT323', monospace;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  background-color: #01111a;
  color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
li,
label,
input,
textarea,
select,
button {
  font-family: var(--font-body);
}

code,
pre,
kbd,
samp {
  font-family: var(--font-code);
}

/* ===================== TIPOGRAFIA ===================== */

h1,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
}

h2,
h3 {
  font-family: var(--font-minecraft) !important;
  font-weight: 400;
  line-height: 1.2;
}

/* ===================== ESCALA TIPOGRÁFICA ===================== */

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }

.display-1,
.display-2,
.display-5 {
  font-family: var(--font-heading);
}

.display-4,
.display-7,
.mbr-text {
  font-family: var(--font-body);
}

.display-1 {
  font-size: 4.6rem;
  line-height: 1.1;
}

.display-2 {
  font-size: 3rem;
  line-height: 1.1;
}

.display-4 {
  font-size: 1.1rem;
  line-height: 1.5;
}

.display-5 {
  font-size: 2rem;
  line-height: 1.3;
}

.display-7 {
  font-size: 1.2rem;
  line-height: 1.5;
}

/* ===================== UTILITÁRIOS ===================== */

.mbr-section-title {
  margin-bottom: 1rem;
}

.mbr-text {
  margin-bottom: 1rem;
}

.mbr-section-btn {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.mbr-fullscreen {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.mbr-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

/* ===================== LAYOUT ===================== */

html {
  scroll-behavior: smooth;
}

/* Seções */
section {
  padding: 40px 0;
  position: relative;
}

.container {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: #22a5e5;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: #47b5ed;
}

/* ===================== BOTÕES ===================== */

.btn {
  padding: 0.8rem 2rem;
  border-radius: 4px;
  font-size: 1.1rem;
  font-weight: 400;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  text-transform: none;
  font-family: var(--font-body);
}

/* Sobrescreve o btn-primary do Bootstrap */
a.btn-primary,
button.btn-primary {
  background-color: #1476a8;
  color: #ffffff !important;
}

a.btn-primary:hover,
button.btn-primary:hover {
  background-color: #106290;
  color: #ffffff !important;
}

.btn-info {
  background-color: #47b5ed;
  color: #ffffff !important;
}

.btn-info-outline {
  background-color: transparent;
  color: #47b5ed !important;
  border: 2px solid #47b5ed;
}

.btn-info-outline:hover {
  background-color: #47b5ed;
  color: #ffffff !important;
}

.btn-secondary {
  background-color: #ff6666;
  color: #ffffff !important;
}

.btn-success {
  background-color: #40b0bf;
  color: #ffffff !important;
}

/* ===================== ÍCONES ===================== */

.mbr-iconfont {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

/* ===================== RESPONSIVO ===================== */

/* ≤768px */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3rem;
  }

  .display-2 {
    font-size: 2.2rem;
  }

  .display-5 {
    font-size: 1.6rem;
  }
}

/* ≤576px */
@media (max-width: 576px) {
  .display-1 {
    font-size: 2.4rem;
  }

  .display-2 {
    font-size: 1.8rem;
  }

  .display-5 {
    font-size: 1.4rem;
  }
}

/* Ultra-small ≤360px */
@media (max-width: 360px) {
  .display-1 {
    font-size: 2rem;
  }

  .display-2 {
    font-size: 1.5rem;
  }

  .display-5 {
    font-size: 1.2rem;
  }

  .display-7 {
    font-size: 1rem;
  }

  section {
    padding: 25px 0;
  }
}

/* ===================== NAVBAR ===================== */

.navbar {
  background-color: rgba(1, 17, 26, 0.95);
  padding: 1rem 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar.navbar-scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #ffffff !important;
  text-decoration: none;
}

.logo {
  height: 3rem;
  transition: height 0.3s ease;
}

.navbar.navbar-scrolled .logo {
  height: 2.5rem;
}

.brand-text {
  font-size: 1.2rem;
  font-weight: 400;
  font-family: var(--font-body);
}

.nav-link {
  color: #ffffff !important;
  margin: 0 0.5rem;
  font-size: 1.1rem;
  font-family: var(--font-body);
  transition: color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link.active {
  color: #22a5e5 !important;
}

.nav-link:hover {
  color: #22a5e5 !important;
}

.nav-icon {
  font-size: 1rem;
  vertical-align: middle;
}

.navbar-buttons {
  margin-left: 1rem;
  display: flex;
  gap: 0.75rem;
}

.navbar-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
}

.btn-loja {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.btn-loja:hover {
  background: linear-gradient(135deg, #d97706, #b45309);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.5);
  color: #ffffff !important;
}

.btn-launcher {
  background: linear-gradient(135deg, #22a5e5, #1e8bc3);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(34, 165, 229, 0.3);
}

.btn-launcher:hover {
  background: linear-gradient(135deg, #1e8bc3, #1a7aad);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(34, 165, 229, 0.4);
  color: #ffffff !important;
}

.toggler {
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.toggler:focus {
  box-shadow: none !important;
}

.navbar .navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin: 0;
  list-style: none;
}

.navbar .navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.collapse:not(.show) {
  display: none;
}

.hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 1199px) {
  .navbar .navbar-collapse {
    margin-top: 0.5rem;
  }

  .navbar .navbar-nav {
    padding: 1rem 0;
  }

  .nav-link {
    padding: 0.5rem 1rem;
    margin: 0;
  }

  .navbar-buttons {
    margin-left: 0;
    padding: 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  .navbar-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }

  .navbar-expand-xl .navbar-collapse {
    display: flex !important;
    flex-basis: auto;
  }

  .navbar-expand-xl .navbar-nav {
    flex-direction: row;
    align-items: center;
  }

  .navbar-expand-xl .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    margin: 0;
  }

  .navbar-buttons {
    margin-left: auto;
  }
}

@media (max-width: 360px) {
  .logo {
    height: 2.2rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .hamburger {
    width: 26px;
    height: 20px;
  }

  .navbar-buttons {
    padding: 0.75rem;
  }

  .navbar-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* ===================== FOOTER ===================== */

.footer {
  background-color: #000000;
  padding: 40px 0;
  color: #888888;
}

.copyright {
  color: #888888;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
}

.disclaimer {
  color: #666666;
  margin-bottom: 0;
  font-size: 0.85rem;
  line-height: 1.4;
}

.copyright a {
  color: #22a5e5;
  text-decoration: none;
  transition: color 0.3s;
}

.copyright a:hover {
  color: #47b5ed;
}

.copyright strong {
  color: #ffffff;
}

.social-list {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.soc-item {
  display: inline-block;
}

.soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  text-decoration: none;
}

.soc-item a:hover {
  background-color: #22a5e5;
  transform: translateY(-3px);
}

.social-icon {
  font-size: 1.2rem;
  color: #ffffff;
}

@media (max-width: 991px) {
  .footer .row>div {
    text-align: center !important;
    margin-bottom: 1.5rem;
  }

  .social-list {
    justify-content: center;
  }

  .copyright {
    text-align: center;
  }
}

@media (max-width: 360px) {
  .footer {
    padding: 28px 0;
  }

  .copyright {
    font-size: 0.85rem;
  }

  .disclaimer {
    font-size: 0.78rem;
  }

  .social-list {
    gap: 0.6rem;
  }

  .soc-item a {
    width: 34px;
    height: 34px;
  }

  .social-icon {
    font-size: 1rem;
  }
}