body {
  font-family: 'Space Grotesk', Arial, sans-serif;
  background-color: #0d001a;
  background-image:
    linear-gradient(rgba(255,79,163,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(138,43,226,0.25) 1px, transparent 1px);
  background-size: 40px 40px;
  color: #ffd6f0;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;

  background-image:
    radial-gradient(2px 2px at 20% 30%, #ffffff, transparent),
    radial-gradient(1px 1px at 80% 20%, #ffb6ff, transparent),
    radial-gradient(1.5px 1.5px at 60% 70%, #c9b6ff, transparent),
    radial-gradient(1px 1px at 30% 80%, #ffffff, transparent),
    radial-gradient(2px 2px at 90% 60%, #ffb6ff, transparent);

  background-repeat: repeat;
  background-size: 200px 200px;
  opacity: 0.6;
  z-index: -1;
}
@keyframes starsMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -300px;
  }
}

body::before {
  animation: starsMove 40s linear infinite;
}

body {
  cursor: crosshair;
}
.top .brand {
  display: flex;
  flex-direction: column;
  align-items: center;  /* centraliza horizontalmente */
  justify-content: center; /* centraliza verticalmente */
  gap: 10px;
  width: 100%;  /* importante para centralizar o título na tela */
  text-align: center; /* garante que o h1 fique centrado */
}


.menu {
  display: flex;
  gap: 15px; /* espaço entre os links */
  margin: 0;  /* remove margin extra */
}


.top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px 60px;
  position: relative;
}
.top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    #ff4fa3,
    #8a2be2,
    transparent
  );
  opacity: 0.6;
}

.logo {
  font-size: 50px;
  letter-spacing: 2px;
  color: #ffd6ff;
  text-shadow:
    0 0 8px rgba(255, 79, 163, 0.8),
    0 0 16px rgba(138, 43, 226, 0.6);
}
.top.home .menu {
  display: none;
}

.menu a {
  margin-left: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  letter-spacing: 1px;
  color: #ff4fa3;
  border: 2px solid #ff4fa3;
  text-decoration: none;
  transition: all 0.3s ease;
}
.menu a:hover {
  background: rgba(255, 79, 163, 0.15);
  color: #ffd6ff;
  box-shadow:
    0 0 10px rgba(255, 79, 163, 0.8),
    0 0 20px rgba(138, 43, 226, 0.6);
  transform: translateY(-2px);
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  color: #ff4fa3;
}
.card {
  background: #ffcce6;
  width: 700px;
  position: relative;
  margin: 80px auto;
  padding: 40px;
  border-radius: 50px 60px 50px 60px;
  border: 3px solid #ff4fa3;
  box-shadow:
    0 0 20px rgba(255, 79, 163, 0.6),
    0 0 40px rgba(138, 43, 226, 0.3);
    color: #4a004a;

}
.card {
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.card:hover {
  box-shadow:
    0 0 30px rgba(255, 79, 163, 0.8),
    0 0 60px rgba(138, 43, 226, 0.6);
  transform: translateY(-6px);
}
.button:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 0 20px rgba(255, 79, 163, 0.9),
    0 0 40px rgba(138, 43, 226, 0.8);
}

.card h2 {
  color: #8a2be2;
}
.status {
  font-family: monospace;
}

.card p {
  color: #4a004a;
}
.status {
  font-size: 11px;
  margin: 18px 0 10px;
  letter-spacing: 0.5px;
  font-family: monospace;
  text-align: left;

  background: linear-gradient(
    90deg,
    #ff4fa3,
    #8a2be2,
    #4fdcff,
    #ff4fa3
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: rgbText 6s linear infinite;
}
.dots {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  width: 0;
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  to {
    width: 1.2em;
  }
}


h1 {
  font-size: 48px;
  margin-top: 0;
}
h2 {
  font-size: 52px;
  letter-spacing: 3px;
  color: #8a2be2;
  text-shadow:
    2px 2px #ff4fa3,
    0 0 10px rgba(138, 43, 226, 0.6);
}
.content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.text {
  max-width: 360px;
}
.text h2 {
  margin-top: 0;
  margin-bottom: 15px;
  text-align: left;
}


.text {
  width: 60%;
}

.content img {
  width: 250px;
}
header {
  text-align: center;
  padding: 40px;
  color: #ff4fa3;
}
.buttons {
  margin-top: 20px;
}

.button {
  display: inline-block;
  margin-right: 15px;
  padding: 12px 26px;
  background: linear-gradient(45deg, #ff4fa3, #8a2be2);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(255,79,163,0.6);
}
.button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 25px rgba(138,43,226,0.8);
}
.tagline {
  font-size: 12px;
  opacity: 0.7;
  margin-top: 20px;
  letter-spacing: 1px;
  text-align: left; 
}


.content img {
  width: 480px;               /* tamanho da persona */
  margin-top: -50px;
  margin-bottom: -50px;
  transform: translateX(-20px);  /* move 20px para a esquerda */
  filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.6));
}


nav a {
  margin-left: 20px;
  text-decoration: none;
  font-weight: bold;
  color: #ff4fa3;
  transition: all 0.3s ease;
}
nav a:hover {
  color: #8a2be2;
  text-shadow: 0 0 8px rgba(138, 43, 226, 0.6);
}

nav a:hover {
  color: #ffd6ff;
  text-shadow:
    0 0 6px rgba(255, 79, 163, 0.8),
    0 0 12px rgba(138, 43, 226, 0.6);
}
.brand {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer {
  text-align: center;
  font-size: 13px;
  opacity: 0.65;
  margin: 70px 0 40px;
  letter-spacing: 1.2px;
    font-family: monospace;

}
.about-content {
  max-width: 520px;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 14px;
  line-height: 1.6;
}
.about-content {
  text-align: center;
}

.about-image {
  max-width: 260px;
  margin-bottom: 25px;
}

.about-text {
  max-width: 520px;
  margin: 0 auto;
}
.faq-card {
  margin-top: 40px;
  padding-top: 30px;
}
.divider {
  text-align: center;
  margin: 30px 0;
  opacity: 0.6;
}
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-text {
  max-width: 420px;
  margin-left: -25px;
}

.about-image {
  max-width: 260px;
}


@media (max-width: 768px) {
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
}

  .top {
    padding: 20px;
  }

  .brand {
    flex-direction: column;
    gap: 12px;
  }

  .card {
    width: 90%;
    padding: 30px;
  }

  .content {
    flex-direction: column;
    text-align: center;
  }

  .text {
    max-width: 100%;
  }

  .buttons {
    justify-content: center;
  }
}
.brand {
  flex-direction: column;
}

.menu {
  margin-top: 10px;
}
.updates {
  max-width: 900px;
  margin: 40px auto 0;
  padding: 0 20px;
}

.updates h2 {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
   position: relative;
  padding-top: 24px;
}
.updates h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #ff4fa3,
    #8a2be2,
    transparent
  );
}

.updates h2::after {
  content: " ✦";
  color: #8a2be2;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.update .thumb {
  width: 100%;
  height: 200px; /* ajusta aqui */
  overflow: hidden;
  border-radius: 12px;
  background: #000;
}
.update .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ESSENCIAL */
  display: block;
}

.update {
  background: #fff;
  max-width: 260px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 16px 16px 22px;
  border: 2px solid #ffffff;
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    0 0 25px rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.update:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 25px rgba(255, 79, 163, 0.7),
    0 0 45px rgba(138, 43, 226, 0.5);
}

.thumb {
  width: 100%;
  height: 160px;
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    #ff4fa3,
    #8a2be2
  );
  margin-bottom: 12px;
}

.update .date {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  font-family: monospace;
  letter-spacing: 1px;
  color: #666;
  text-align: center;
}

.update:nth-child(1) { transform: rotate(-2deg); }
.update:nth-child(2) { transform: rotate(1.5deg); }
.update:nth-child(3) { transform: rotate(-1deg); }

.update:hover {
  transform: rotate(0deg) translateY(-6px);
}
.poster {
  position: fixed;
  width: 180px;
  opacity: 0.18;
  filter: blur(0.3px) saturate(0.9);
  animation: float 18s ease-in-out infinite;
  transform-origin: center;
  pointer-events: none;
  user-select: none;
}

/* Cada poster com seu ângulo fixo, e pequenas variações de delay */
.p1 { top: 20%; left: 5%; --r: -9deg; --s: 1; animation-delay: 0s; }
.p2 { top: 60%; right: 5%; --r: 6deg; --s: 1; animation-delay: 0.2s; }
.p3 { top: 85%; left: 65%; --r: -3deg; --s: 1; animation-delay: 0.4s; }
.p4 { top: 20%; left: 85%; --r: -4deg; --s: 0.65; opacity: 0.10; animation-delay: 0.6s; }
.p5 { top: 55%; right: 75%; --r: 5deg; --s: 0.55; opacity: 0.21; animation-delay: 0.8s; }

/* Animação de flutuação só vertical, sem mexer em scale nem rotação */
@keyframes float {
  0%   { transform: translateY(0) rotate(var(--r)) scale(var(--s)); }
  50%  { transform: translateY(-18px) rotate(var(--r)) scale(var(--s)); }
  100% { transform: translateY(0) rotate(var(--r)) scale(var(--s)); }
}


/* ===== PERSONA ===== */
.persona {
  width: 480px;
  max-width: 100%;
  height: auto;

  margin-top: -50px;
  margin-bottom: -50px;
  transform: translateX(-20px);

  filter: drop-shadow(0 0 20px rgba(138, 43, 226, 0.6));

  position: relative;
  z-index: 2; /* garante que fica acima de tudo */
  pointer-events: none;
  user-select: none;
}


.about-image {
  width: 380px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
/* ===== ABOUT IMAGE SAFE MODE v2 ===== */
.about-content {
  position: relative;
}

/* desktop */
.about-image-wrap {
  position: absolute;
  right: -550px;
  top: 5px;
  width: 900px;   /* <<< AUMENTA AQUI */
  pointer-events: none;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(138, 43, 226, 0.6));
}

/* mobile */
@media (max-width: 768px) {
  .about-image-wrap {
    position: relative;
    right: auto;
    top: auto;
    width: 240px;
    margin: 0 auto 24px;
  }
}

