@import url('https://fonts.googleapis.com/css2?family=Are+You+Serious&family=Pirata+One&family=Rubik+Wet+Paint&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jersey+10+Charted&display=swap');



:root {
  --body-color: #000;
  --background-color: #25173d;
  --text-color: #E1E1E1;
  --primary-color: #190d2f;
  --secondary-color: #888888;
  --terciary-color: #3a0063;
  --tag-color: #DA005B;
  --hover-color: #8B0000;
  --accent-color: #6c5ce7;
  --font-sistem: "Pirata One", system-ui;
  --font-destaque: "Are You Serious";
  --font-hover: "Rubik Wet Paint", system-ui;
  --font-title: "Jersey 10 Charted", sans-serif;
  --layout-margin: 60px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--body-color);
  background-image: url("");
  color: var(--text-color);
  font-family: var(--font-sistem);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--layout-margin);
  cursor: url('fotos/icon/icon-bat-48.png'), auto;
  background-size: cover;
  background-attachment: fixed;
  color: var(--text-color);
  position: relative;
  overflow-x: hidden;

}

a,
.clicable {
  cursor: url('fotos/icon/icons8-fangs-32.png'), pointer;
}

/* NAV BAR */
.topo-navegacao {
  width: 100%;
  max-width: 1300px;
  background: var(--primary-color);
  border-radius: 14px;
  padding: 20px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

.nav-horizontal ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}

.nav-horizontal a {
  text-decoration: none;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  transition: 0.3s ease;
}

.nav-horizontal a:hover {
  color: var(--hover-color);
  font-family: var(--font-hover);
  transform: scale(1.5);
  transition: 0.3s ease-in-out;
  padding-inline: 50px;
}

.icones {
  width: 30px;
  height: 30px;
}

.filtros {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
}

.filtro-btn {
  background: none;
  border: 1px solid var(--tag-color);
  color: var(--tag-color);
  padding: 6px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font-hover);
  transition: 0.3s;
}

.filtro-btn:hover {
  background: rgba(218, 0, 91, 0.1);
}

.filtro-btn.ativo {
  background: var(--tag-color);
  color: white;
}

.marquee-box {
  width: 100%;
  max-width: 1300px;
  overflow: hidden;
  position: relative;
  background: var(--background-color);
  border: 3px solid var(--tag-color);
  border-radius: 12px;
  padding: 8px 0;
  margin-bottom: 40px;

  box-shadow: 0 0 20px rgba(218, 0, 91, 0.4);
  background: radial-gradient(circle, #25173d 0%, #25173d 100%);
  border: 4px solid #8B0000;

  box-shadow:
    0 0 10px #DA005B,
    0 0 20px #DA005B,
    inset 0 0 10px #25173d;


}

.marquee-box:hover .marquee-text {

  animation-play-state: paused;

}

.marquee-text {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 70px;
  color: var(--tag-color);


  white-space: nowrap;
  font-family: var(--font-title);
  font-size: 70px;
  color: var(--tag-color);


  animation: scrollTexto 15s linear infinite;
}



/* animação */
@keyframes scrollTexto {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

.conteudo-filmes {
  background: var(--background-color);
  max-width: 1300px;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
}

/* === GRADE === */
.grade-filmes {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.filme-card {

  background: var(--primary-color);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 3px solid #DA005B;
  box-shadow:
    0 0 5px #DA005B,
    0 0 10px #DA005B,
    inset 0 0 5px rgba(218, 0, 91, 0.3);
}

.filme-card img {
  width: 100%;
  height: 275px;
  /* mais alto, formato poster */
  object-fit: fill;
  display: block;
  transition: transform 0.4s ease;
}

.filme-card:hover img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

/* info sempre visível */
.filme-info {
  padding: 10px 8px 15px;
  text-align: center;
  background: rgba(25, 10, 47, 0.85);
  font-family: serif;
}

.filme-info h2 {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 4px;
}

.filme-info .ano {
  font-size: 12px;
  color: var(--secondary-color);
  display: block;
  margin-bottom: 6px;
}

.btn-lermais {
  background: none;
  border: 1px solid var(--tag-color);
  color: var(--tag-color);
  font-size: 12px;
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
  font-family: var(--font-hover);
}

.btn-lermais:hover {
  background: rgba(218, 0, 91, 0.1);


}

.data-sinopse {
  font: size 29px;
  ;
  color: var(--body-color);
}


/* === MODAL === */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  z-index: 9999;
}

.modal.ativo {
  display: flex;
}

.modal-content {
  background: var(--primary-color);
  padding: 30px;
  border-radius: 12px;
  width: 90%;
  max-width: 900px;
  box-shadow: 0 0 30px rgba(218, 0, 91, 0.3);
  text-align: center;
}

.modal-content h2 {
  font-family:'Times New Roman', Times, serif;
  color: var(--tag-color);
  font-size: 20px;
 margin-bottom: 2px;
  

}

.modal-content p {
  color: var(--secondary-color);
  font-size: 15px;
  line-height: 1.5;
  font-family: 'Times New Roman', Times, serif;
    margin-bottom: 2px;

}

.modal-links {
  margin-top: 15px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.modal-links a {
  color: var(--tag-color);
  border: 1px solid var(--tag-color);
  padding: 5px 10px;
  border-radius: 6px;
  text-decoration: none;
}

.fechar {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 28px;
  color: var(--secondary-color);
  cursor: pointer;
}


/* ====== FOOTER ====== */

.rodape {
  width: 100%;
  max-width: 1300px;
  background: var(--primary-color);
  border-radius: 14px;
  padding: 20px 0;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  margin-top: 40px;

}

.contatos-links {
  text-align: center;
  padding-bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 2rem;

}

.contatos-links a {
  text-decoration: none;
  color: var(--text-color);
  display: flex;
  align-items: center;
  font-size: 18px;
}

#gitlink {
  gap: 5px;
  padding-left: 10px;
  padding-right: 20px;

}

.contatos {
  font-size: 16px;
  background-color: var(--terciary-color);
  border-radius: 10px;
  color: var(--secondary-color);
  text-decoration: none;
  padding: 0.9%;
  font-family: var(--font-sistem);
  display: flex;
  justify-content: center;

}

.rodape p {
  text-align: center;
  font-size: 16px;

}

#autor {
  text-align: center;
  font-size: 8;
  padding-top: 5px;
  color: var(--secondary-color);
  margin-top: -8px;
}

/* === EFEITO DE LUZ DO CURSOR === */
.lanterna {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  background: radial-gradient(circle 120px at center, rgba(255, 255, 255, 0.1), transparent 50%);
  mix-blend-mode: overlay;
  transition: background 0.1s ease;
  z-index: 9999;
}