/* ===== RESET & GLOBAL ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html,
body {
  height: 100%;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  background: #06185a;
  padding: 14px 24px;
  position: relative;
  z-index: 10000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  /* maior */
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  display: none;
}

nav {
  display: flex;
}

nav a,
.nav-link {
  background: none;
  border: none;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  padding: 10px 25px;
  font-size: 18px;
}

nav a.active {
  color: #fff;
}

/* ===== HERO / BANNER ===== */
.hero {
  background: linear-gradient(180deg, #020c30 0%, #06185a 50%, #020c30 100%);
  padding: 10px 20px 0;
  position: relative;
  z-index: 1;
}

.hero-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: flex-end;
}

.hero-personagens {
  width: 55%;
  max-width: 600px;
}

.hero-texto {
  width: 30%;
  max-width: 450px;
  margin-bottom: 50px;
  margin-left: 100px;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.45));
}

/* ===== CONTEÚDO ===== */
.content {
  padding: 70px 20px;
  text-align: center;
}

.content h1 {
  font-size: 32px;
  /* maior */
  margin-bottom: 50px;
}

.content h1 span {
  color: #2f49ff;
}

.content h2 {
  font-size: 24px;
  /* maior */
  margin-bottom: 10px;
}

.info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 40px auto;
  gap: 30px;
}

.info p {
  margin: 15px 0;
  text-align: left;
  font-size: 17px;
  /* maior */
  line-height: 1.6;
}

.info a {
  padding: 14px 30px;
  /* maior */
  border-radius: 30px;
  border: 2px solid #000000;
  background: #fff;
  color: #000000;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.info a:hover {
  border: 2px solid #000000;
  background: #000000;
  color: #ffffff;
  cursor: pointer;
}

.book {
  width: 200px;
}

.buttons {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  gap: 15px;
  justify-content: center;
  margin-top: 30px;
}

.buttons a {
  padding: 14px;
  /* maior */
  border-radius: 30px;
  background: #2f49ff;
  color: #fff;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.buttons a:hover {
  background: #0d1866;
  color: #fff;
  cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
  background: #06185a;
  color: #fff;
  text-align: center;
  padding: 25px;
}

.priv-btn {
  text-decoration: none;
  padding: 14px;
  border-radius: 30px;
  background: #06185a;
  color: #fff;
  border: 2px solid #ffffff;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.priv-btn:hover {
  background: #ffffff;
  color: #06185a;
  cursor: pointer;
}

.footer-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* ===== ANIMAÇÃO ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.footer-links {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-group {
  display: flex;
  gap: 15px;
}

.footer-group:first-child {
  margin-right: 40px;
  /* 🔥 distância maior entre os grupos */
}

.footer-links img {
  margin-top: 25px;
  height: 25px;
  opacity: 0.9;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-links img:hover {
  transform: scale(1.1);
  opacity: 1;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #06185a;
    flex-direction: column;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: all 0.3s ease;
  }

  nav.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  nav a,
  .nav-link {
    padding: 16px;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 18px;
    /* maior no mobile */
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-personagens {
    width: 100%;
    margin-top: -50px;
  }

  .hero-texto {
    width: 80%;
    z-index: 2;
    margin-left: -10px;
  }

  .info {
    flex-direction: column;
  }

  .buttons {
    grid-template-columns: 1fr;
  }
}