body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

/* HERO */
.hero {
  background: url("https://picsum.photos/1200/500") center/cover;
  height: 60vh;
  position: relative;
}

.overlay {
  background: rgba(0,0,0,0.6);
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.overlay h1 {
  font-size: 2.5em;
}

button {
  background: #6c2bd9;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 20px;
}

/* INFO */
.info {
  text-align: center;
  padding: 40px;
}

.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
}

/* ETAPAS */
.etapas {
  padding: 40px;
  background: #eee;
}

.etapa {
  background: #2e1a47;
  color: white;
  padding: 20px;
  margin: 10px 0;
  border-radius: 10px;
}

/* INSCRIPCION */
.inscripcion {
  padding: 40px;
  text-align: center;
}

.accordion .item {
  margin: 10px 0;
}

.accordion button {
  width: 100%;
}

.content {
  display: none;
  background: #ddd;
  padding: 10px;
}

/* GALERIA */
.galeria {
  padding: 40px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
}

/* FAQ */
.faq {
  padding: 40px;
}

/* FOOTER */
footer {
  background: #2e1a47;
  color: white;
  text-align: center;
  padding: 20px;
}