  
/* Seccion 2: obligas */
        #obligas {
            margin: 0 auto;
            width: 870px;
            height: 670px;
            background-color: rgba(225, 233, 237, 0.6); /* Color con 60%opacidad*/
            backdrop-filter: blur(10px); /* Efecto cristal */
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            display: flex;
            flex-direction: column;
            align-items: center;
            overflow: hidden;
        }

        /* Parte 1: namett */
#namett0 {
            height: 70px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 30px;
            font-weight: bold;
        }       
#namett {
            height: 70px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 30px;
            font-weight: bold;
        }
  #namett1 {
            height: 70px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 30px;
            font-weight: bold;
        }
#namett2 {
            height: 70px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 30px;
            font-weight: bold;
        }
#namett3 {
            height: 70px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: black;
            font-size: 30px;
            font-weight: bold;
        }
        /* Parte 2: clicart */
        #clicart {
			font-size: 20;
            display: flex;
            justify-content: center;
            gap: 8px;
            width: 100%;
            margin-bottom: 10px;
        }

        .btn-articulo {
            height: 58px;
            width: 200px;
            margin: 4px;
            background-color: #5e1040;   
            color: #ffffff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            display: flex;
            align-items: center;
         /*   justify-content: flex-start;	*/
            padding-left: 10px;
            font-size: 17px;
            transition: background-color 0.3s;
			  justify-content: center;
        }

        .btn-articulo img {
            width: 20px;
            height: 20px;
            margin-right: 10px;
        }

        .btn-articulo:hover {
            background-color: #979177;	/*7f977f;*/
        }

        /* Clase para el boton seleccionado */
        .btn-articulo.active {
            background-color: #7f977f;	/*c3ba99 !important;	*/
        }

        /* Parte 3: abreart */
        #abreart {
            width: 740px;
            height: 470px;
			
			 background-color: rgba(209, 207, 195, 0.5); /* Color #e1e9ed con 60% opacidad */
            backdrop-filter: blur(30px); /* Efecto cristal */
			
         
			
			border-bottom-left-radius: 20px;
            border-bottom-right-radius: 20px;
            margin: 0 auto;
            padding: 10px;
            box-sizing: border-box;
            overflow-y: auto;
        }

        /* Estilo de los enlaces internos */
        .enlacemed {
            display: block;
            width: 100%;
            height: 30px;
            background-color: #9F2241;
            color: #FFFFFF;
            font-size: 17px;
			        text-decoration: none;
            line-height: 30px;
            text-align: center;
            margin-bottom: 5px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .enlacemed:hover {
            background-color: #4e5c5a;
            color: white;
        }
.enlacemed1 {
            display: block;
            width: 100%;
            height: 30px;
            background-color: #235B4E;
            color: #FFFFFF;
            font-size: 17px;
			        text-decoration: none;
            line-height: 30px;
            text-align: center;
            margin-bottom: 5px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .enlacemed1:hover {
            background-color: #4e5c5a;
            color: white;
        }
.enlacemed2 {
            display: block;
            width: 100%;
            height: 30px;
            background-color: #DDC9A3;
            color: #000;
            font-size: 17px;
			        text-decoration: none;
            line-height: 30px;
            text-align: center;
            margin-bottom: 5px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .enlacemed2:hover {
            background-color: #4e5c5a;
            color: white;
        }
.enlacemed3 {
            display: block;
            width: 100%;
            height: 30px;
            background-color: #98989A;
            color: #000;
            font-size: 17px;
			        text-decoration: none;
            line-height: 30px;
            text-align: center;
            margin-bottom: 5px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        .enlacemed3:hover {
            background-color: #4e5c5a;
            color: white;
        }

        /* Ocultar contenidos por defecto */
        .contenido-art {
            display: none;
        }

        .contenido-art.show {
            display: block;
        }