* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 24px 16px;
  background-image: url("/assets/imagem/background.jpg");
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-color: rgba(172, 80, 0, 0.3);
  z-index: 0;
}

.dust-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.dust {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 220, 120, 0.45);
  animation: dust-move 8s linear infinite;
}

@keyframes dust-move {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(-60px) translateX(20px); opacity: 0.8; }
  90%  { opacity: 0; }
  100% { transform: translateY(-120px) translateX(-15px); opacity: 0; }
}

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

.logo {
  width: 320px;
  max-width: 60vw;
  height: auto;
  margin: 0 0 24px;
}

.links {
  display: flex;
  margin: 0;
  justify-content: center;
}

.btn {
  display: block;
  margin: 0 0 15px;
  padding: 10px 20px;
  width: 220px;
  font-size: 22.4px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-align: center;
  border-radius: 8px;
  background: linear-gradient(90deg, #FFB347 0%, #FF4800 100%);
  box-shadow: 0 0 0 2px #fff, 0 2px 8px rgba(255,255,255,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px #fff, 0 4px 14px rgba(255,255,255,0.3);
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 18px 0 0;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  opacity: 0.95;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons a:hover {
  transform: translateY(-2px);
  opacity: 1;
}

.social-icons svg {
  width: 28px;
  height: 28px;
}

.footer {
  color: #fff;
  font-size: 12.8px;
  margin: 30px 0 12.8px;
  line-height: normal;
}

.path-choice {
  width: 100%;
  max-width: 1500px;
  margin: 28px auto 0;
}

.path-choice__title {
  display: inline-block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 22px;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(0,0,0,0.45);
  border: 1px solid rgba(255,255,255,0.25);
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

.path-choice__grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.path-card {
  position: relative;
  flex: 1 1 190px;
  min-width: 0;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  background-image: url("/assets/imagem/background.jpg");
  background-size: cover;
  background-position: center;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.55), 0 10px 26px rgba(0,0,0,0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
}

.path-card--legal::before {
  background: linear-gradient(180deg, rgba(20,60,110,0.35), rgba(8,24,48,0.85));
}

.path-card--ilegal::before {
  background: linear-gradient(180deg, rgba(110,15,15,0.4), rgba(28,5,5,0.88));
}

.path-card--cultural::before {
  background: linear-gradient(180deg, rgba(20,90,40,0.4), rgba(6,28,12,0.88));
}

.path-card--sobrenatural {
  filter: grayscale(0.85);
}

.path-card--sobrenatural::before {
  background: linear-gradient(180deg, rgba(70,70,75,0.45), rgba(18,18,20,0.9));
}

.path-card__badge {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 4px 12px;
  border-radius: 20px;
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 0 2px #fff, 0 10px 26px rgba(0,0,0,0.5);
}

.path-card__icon {
  position: relative;
  z-index: 1;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.path-card__icon svg {
  width: 50px;
  height: 50px;
}

.path-card__label {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.discord-cta {
  margin: 28px auto 0;
  text-align: center;
}

.discord-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #FFB347 0%, #FF4800 100%);
  color: #fff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 0 0 2px #fff, 0 4px 14px rgba(0,0,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.discord-btn svg {
  width: 22px;
  height: 22px;
}

.discord-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px #fff, 0 6px 18px rgba(0,0,0,0.45);
}

@media (max-width: 480px) {
  .discord-btn {
    padding: 10px 22px;
    font-size: 13.5px;
  }

  .discord-btn svg {
    width: 18px;
    height: 18px;
  }

  .logo {
    width: 220px;
    margin-bottom: 16px;
  }

  .path-choice__title {
    font-size: 15px;
  }

  .path-card {
    max-width: 220px;
    height: auto;
    gap: 10px;
  }

  .path-card__icon {
    width: 52px;
    height: 52px;
  }

  .path-card__icon svg {
    width: 40px;
    height: 40px;
  }

  .path-card__label {
    font-size: 21px;
  }

  .btn {
    width: 190px;
    font-size: 17px;
    padding: 9px 16px;
    margin-bottom: 12px;
  }

  .social-icons {
    gap: 18px;
    margin-top: 14px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
  }

  .social-icons svg {
    width: 24px;
    height: 24px;
  }
}

@media (max-width: 340px) {
  .logo {
    width: 180px;
  }

  .btn {
    width: 160px;
    font-size: 15px;
  }
}

@media (max-height: 700px) {
  body {
    align-items: flex-start;
  }
}
