/*** 

====================================================================
  visita Audioguia
====================================================================

 ***/
	.contenido {
      display: none;
      margin-top: 10px;
    }

    h2.titulo-punto {
      cursor: pointer;
      background-color: #f0f0f0;
      padding: 10px 12px;
      border-radius: 8px;
      transition: background-color 0.3s;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 1.2em;
    }

    h2.titulo-punto:hover {
      background-color: #e0e0e0;
    }

    h2.titulo-punto.activo {
      background-color: #fa6c00;
      color: white;
    }

    .flecha {
      display: inline-block;
      transition: transform 0.3s ease;
    }

    h2.titulo-punto.activo .flecha {
      transform: rotate(90deg);
    }

    section {
      margin-bottom: 30px;
    }
    
    figure {
    margin-bottom: 1.5em; /* separación entre figuras */
    /*text-align: center;  centra imagen y pie */
  }
	
	figcaption {
    font-size: 0.8em;
    line-height: 1.4;
  }