  @font-face {
  font-family: "Redaction";
  src:
    url("fonte/Redaction_50-Bold.woff2") format("woff2");
}

@font-face {
  font-family: "VictorMono";
  src:
    url("fonte/VictorMono-Bold.woff2") format("woff2");
}

@import url('https://fonts.googleapis.com/css2?family=DotGothic16&display=swap');

      body {
        font-family: "ms pgothic", "ms gothic", monospace;
        font-size: 12px;
        background-color: white;
        color: #202122;
        margin: 0;
        padding: 0;
      }

      .container {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
        padding: 10px;
      }

      header img {
        width: 100%;
        height: auto;
        max-height: 150px;
        object-fit: cover;
        display: block;
        border: 1px solid #ccc;
        box-shadow: 2px 2px 3px #9999;
        margin-bottom: 10px;
        image-rendering: pixelated;
      }

      nav {
        text-align: center;
        margin-bottom: 10px;
      }

      nav a {
        font-style: italic;
        font-size: 12px;
        margin: 0 8px;
        text-decoration: none;
        color: #7c8d7c; 
        transition: color 0.6s;
      }

      nav a:hover {
        text-decoration: none;
        color: #536257; 
      }

      h1,
      nav a {
        text-shadow: 1px 1px 0 #ccc;
      }

        h1, h2, h3, h4 {
        font-family: "Redaction";
        color: #536257;
        }
        
.carousel {
  position: relative;
  width: 80%;
  max-width: 900px;
  overflow: hidden;
  border: 2px solid #ccc;
  border-radius: 10px;
  background-color: #fefefe;
  padding: 1rem;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.film-card {
  min-width: 200px;
  text-align: center;
}

.film-card img {
  width: 100%;
  border-radius: 8px;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 0 0.5rem;
  z-index: 10;
}

.arrow.left {
  left: 0;
}

.arrow.right {
  right: 0;
}

.filmes-container {
  max-width: 800px;
  margin: 2rem auto 0 auto;
  padding: 20px;
  border: 1px dotted #;
  border-radius: 5px;
  position: relative;
  background-color: white;
  text-align: center;
}

.filmes-galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.filme {
  position: relative;
  width: 150px;
  height: 220px;
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s;
  border: 1px solid #9486b5;
  box-shadow: 5px 5px #9486b5;
}

.filme img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: 2px 2px grey;
}

.filme:hover {
  transform: scale(1.05);
}

.descricao {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 7.5em; 
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px;
  opacity: 0;
  font-size: 0.9rem;
  transition: opacity 0.3s;
  scrollbar-width: thin; 
}


.descricao::-webkit-scrollbar {
  width: 4px;
}
.descricao::-webkit-scrollbar-thumb {
  background-color: rgba(255,255,255,0.5);
  border-radius: 4px;
}


.filme:hover .descricao {
  opacity: 1;
}

.navegacao {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border: 1px dotted #9486b5;
  background-color: #f0f0f0;
  border-radius: 8px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.seta {
  background: none;
  border: none;
  font-size: 10px;
  cursor: pointer;
  font-weight: bold;
  padding: 5px 10px;
   font-family: "VictorMono";
  color: #9486b5;
  text-decoration: none;
}

.seta:hover {
   text-shadow: 1px 1px 0 #ccc;
  text-decoration: underline;
  transition: .6s;

}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal {
  background: #fff;
  padding: 1.5rem;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  font-size: 1rem;
  color: #333;
  position: relative;
}

.modal button.fechar {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #888;
}

.ler-mais {
  display: block;
  margin-top: 8px;
  font-size: 0.8rem;
  color: #ccc;
  text-decoration: underline;
  cursor: pointer;
}

.etiqueta {
  position: absolute;
  top: -12px;
  left: -20px;
  background: #9486b5;
  color: #fff;
  padding: 4px 12px;
  font-family: monospace;
  font-size: 0.8rem;
  border-radius: 8px;
  transform: rotate(-5deg);
}
        
        .site-footer {
        font-size: 10px;
        text-align: center;
        color: #999;
        margin-top: 30px;
        padding: 10px 0;
        border-top: 1px dotted #ccc;
        opacity: 0.8;
       }

        .site-footer a {
        color: #7c8d7c;
        text-decoration: none;
        }

        .site-footer a:hover {
        color: #536257;
        text-decoration: underline;
        transition: 0.3s;
        }