@font-face {
  font-family: 'Neue Plak Condensed ExtraBlack';
  src: url('/fonts/Neue Plak Condensed ExtraBlack.woff') format('woff');
  font-style: normal;
  font-weight: 900;
}

@font-face {
  font-family: 'Neue Plak Light';
  src: url('/fonts/Neue Plak Light.woff') format('woff');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'Neue Plak Text Black';
  src: url('/fonts/Neue Plak Text Black.woff') format('woff');
  font-style: normal;
  font-weight: 900;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Neue Plak Light', sans-serif;
  background-color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 20px 60px;
}

.container {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.titulo-suerte {
  font-family: 'Neue Plak Condensed ExtraBlack', sans-serif;
  font-size: 42px;
  text-align: center;
  color: #000;
  margin-bottom: 12px;
}

.faq-icon {
  text-align: center;
  margin-bottom: 16px;
  font-size: 48px;
  color: #000;
}


.sub {
  text-align: center;
  font-size: 16px;
  font-family: 'Neue Plak Light', sans-serif;
  margin-bottom: 32px;
  color: #555;
}

.faq-item {
  border: 1.5px solid #000;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.faq-item h2 {
  font-size: 18px;
  font-family: 'Neue Plak Text Black', sans-serif;
  margin-bottom: 10px;
  color: #000;
}

.faq-item p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

/* Footer bÃ¡sico */
footer {
  width: 100%;
  text-align: center;
  padding: 20px 16px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #000;
}

