<style>
  .acordeon {
    width: 100%;
    margin: 20px auto;

  }

  .acordeon-item {
    border-top: 1px solid #ccc;
  }

  .acordeon-item:first-child {
    border-top: none;
  }

  .acordeon-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    padding: 10px;
    background: #caa35f;
    cursor: pointer;
    color: #fff;
  }

  .acordeon-content {
    max-height: 0;
    font-size: 12px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
    padding: 0 10px;
    text-align: justify;
  }

  input[type="checkbox"] {
    display: none;
  }

  input[type="checkbox"]:checked ~ .acordeon-content {
    max-height: 200px; /* ajusta según el contenido */
    padding: 10px;
  }
  .desc{
    font-size: 12px;

  }

  /* mostrar en PC, ocultar en móvil */
  .elemento-pc {
display: block;
}

@media screen and (max-width: 768px) {
.elemento-pc {
  display: none;
}
}
/* ocultar en PC, mostrar en móvil */
.elemento-movil {
display: none;
}

@media screen and (max-width: 768px) {
.elemento-movil {
  display: block;
}
}
</style>
