/* ================================
   FUNDO COM TEXTURA DE PAPEL
================================ */
* {
  margin: 0;
  padding: 0;
}

h1 {
  font-family: "Comic Sans MS", "Brush Script MT", Arial;
  color: transparent; /* deixa o interior vazio */
  -webkit-text-stroke: 2px #000; /* espessura + cor do contorno */
  font-weight: bold; /* ajuda a ficar mais bonito */
}
.parallax-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;

  background-image: url("../images/doodle1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  filter: contrast(0.95) brightness(1.1);
  opacity: 0.2;
}

.logo {
  width: 160px;
  height: auto;
}
/* ================================
   FILTRO SKETCH
================================ */
/* Bordas tremidas (efeito desenhado) */
svg {
  position: absolute;
  width: 0;
  height: 0;
}

.step {
  animation: fade 0.3s ease;
}
@keyframes fade {
  from {
    opacity: 0;
    transform: translateX(10px);
  }
  to {
    opacity: 1;
  }
}

.step label.card {
  cursor: pointer;
  border: 2px solid #eee;
  transition: 0.2s;
}

.step input:checked + strong,
.step input:checked + span {
  color: #000;
}

.step input:checked ~ * {
  font-weight: bold;
}

.step label.card:has(input:checked) {
  border-color: #000;
  background: #f8f8f8;
}

/* ================================
   NAVBAR DESENHADA
================================ */
.navbar {
  border: 3px solid #000 !important;
  box-shadow: 3px 3px 0 #000;
  border-radius: 6px;
}

.navbar-brand,
.nav-link {
  font-weight: 700;
}

/* ================================
   TÍTULOS
================================ */
.mela-title {
  font-weight: 800;
}

/* ================================
   BOTÃO DESENHADO
================================ */
.btn-mela {
  background: #ffffff;
  border: 3px solid #000;
  color: #000;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 700;
  box-shadow: 3px 3px 0 #000;
  transition: 0.1s ease-in-out;
}

.btn-mela:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 #000;
}

/* ================================
   CARD DESENHADO
================================ */
.mela-card {
  background: #fff;
  border: 3px solid #000;
  border-radius: 8px;
  padding: 18px;
  box-shadow: 4px 4px 0 #000;
}

.mela-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  border: 3px solid #000;
  border-radius: 6px;
}

.descricao {
  min-height: 80px;
}

/* ================================
   FOOTER
================================ */
footer {
  border-top: 3px solid #000 !important;
  box-shadow: 0 -4px 0 #000;
}

/* ================================
   Hachuras leves em seções
================================ */
