@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Open+Sans:wght@400;600&display=swap');

body {
  background-color: #e7e2d8;
  color: #111;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.flyer {
  background: #f5f3ee;
  border: 4px solid #111;
  padding: 2rem;
  max-width: 900px;
  box-shadow: 8px 8px 0 #111;
}

.flyer-header {
  text-align: center;
  border-bottom: 4px solid #111;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 3rem;
  letter-spacing: 2px;
}

.subtitle {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: -0.5rem;
}

.barcode {
  margin: 0.5rem auto;
  height: 25px;
  width: 180px;
  background: repeating-linear-gradient(
    to right,
    #111 0px,
    #111 2px,
    transparent 2px,
    transparent 4px
  );
}

.intro {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.avatar img {
  width: 150px;
  border: 3px solid #111;
  border-radius: 6px;
  background: #fff;
}

.procedure h2 {
  font-family: 'Archivo Black', sans-serif;
  margin-bottom: 0.5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.box {
  border: 3px solid #111;
  padding: 1rem;
  background: #dce4f5;
  box-shadow: 4px 4px 0 #111;
}

.box.cant {
  background: #e7c9c9;
}

.box.terms {
  background: #f5f1dc;
}
.box.info {
    background: #f5f1dc;
  }

.box h3 {
  font-family: 'Archivo Black', sans-serif;
  margin-top: 0;
}

.prices {
  text-align: center;
  margin-top: 3rem;
}

.prices h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    justify-items: center;
  }
  
  @media (max-width: 900px) {
    .cards {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .cards {
      grid-template-columns: 1fr;
    }
  }
  
.card {
    display: block;
    width: 260px;
    background: #fff;
    border: 3px solid #111;
    box-shadow: 6px 6px 0 #111;
    text-align: left;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 9px 9px 0 #111;
  }
  
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card h4 {
  margin: 0.5rem 1rem 0;
  font-family: 'Archivo Black', sans-serif;
}

.card p {
  margin: 0.5rem 1rem 1rem;
  font-size: 0.9rem;
}

.footer {
  border-top: 3px solid #111;
  text-align: center;
  padding-top: 1rem;
  margin-top: 2rem;
  font-size: 0.85rem;
}


