.paso-a-paso-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.paso-a-paso-container {
  padding: 20px;
  border: 0.5px solid #f8e7e7;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-radius: 15px;
  margin-bottom: 20px;
  font-size: 1.15rem;
  color: #724060;
  line-height: 1.5;
  text-align: justify;
}

.checklist-item input[type="checkbox"] {
  display: none;
}

.checklist-item {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: 10px;
  vertical-align: middle;
  font-size: 1.15rem;
  color: #724060;
  line-height: 1.5;
  text-align: justify;
}

.checklist-item label::before {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid #724060;
  border-radius: 5px;
  margin-right: 10px;
  display: inline-block;
  background-color: rgba(114, 64, 96, 0.1);
  transition: all 0.25s ease-in-out;
}

.checklist-item input[type="checkbox"]:checked + label::before {
  background-color: #a070a1;
  border-color: #724060;
}

.checklist-item input[type="checkbox"]:checked + label::after {
  content: "✓";
  color: #724060;
  position: relative;
  left: 20px;
  top: 2px;
}

.paso-a-paso-container ul,
.paso-a-paso-container li {
  margin-top: 0px;
  line-height: 1.5;
  text-align: justify;
}

.participa-button {
  gap: 10px;
  display: inline-flex;
  padding: 14px 28px;
  font-size: 1.3rem;
  color: #fdf3f3;
  background: radial-gradient(circle at top left, #724060 0%, #a070a1 90%);
  border: none;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.25s ease-in-out;
  margin: 20px;
  text-decoration: none;
  width: 300px;
  justify-content: center;
  align-items: center;
  display: none;
}

.participa-button .material-symbols-outlined {
  vertical-align: middle;
  line-height: 1;
}

.participa-button:hover {
  transform: scale(1.2);
  background: radial-gradient(circle at top left, #a070a1 0%, #724060 90%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.participa-button:active {
  transform: translateY(0px);
  color: #724060;
  background: radial-gradient(circle at top left, #a070a1 0%, #f8e7e7 90%);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

@media (max-width: 800px) {
  .paso-a-paso-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
  .paso-a-paso-container {
    padding: 0px;
    border: none;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.015);
    margin-bottom: 10px;
    font-size: 0.95rem;
  }

  .checklist-item {
    font-size: 1rem;
  }
}
