 .integridad-transparencia {
     line-height: 1.6;
     color: var(--text-color);
     background-color: var(--black-bg-color);
     padding: 20px;
     .container {
         max-width: 1000px;
         margin: 0 auto;
         background: var(--body-color);
         padding: 40px;
         border-radius: 8px;
         box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     }
     header {
         border-bottom: 2px solid var(--secondary-color);
         padding-bottom: 20px;
         margin-bottom: 30px;
         display: flex;
         justify-content: space-between;
         align-items: center;
         flex-wrap: wrap;
     }

     .header-title h1 {
         color: var(--text-color);
         font-size: 24px;
         text-transform: uppercase;
         letter-spacing: 0.5px;
     }

     .header-title h2 {
         color: var(--secondary-color);
         font-size: 18px;
         font-weight: 600;
         margin-top: 5px;
     }

     .header-meta {
         text-align: right;
         font-size: 14px;
         color: #666;
     }

     /* Sistema de Tabs */
     .tabs {
         display: flex;
         flex-wrap: wrap;
         border-bottom: 2px solid var(--border-color);
         margin-bottom: 25px;
         

     .tab-btn {
         background: none;
         border: none;
         padding: 12px 20px;
         cursor: pointer;
         font-size: 15px;
         font-weight: 600;
         color: var(--text-color);
         opacity: 0.7;
         transition: all 0.3s ease;
         border-bottom: 3px solid transparent;
         margin-bottom: -2px;
     }

     .tab-btn:hover {
         color: var(--primary-color);
         opacity: 1;
     }

     .tab-btn.active {
        opacity: 1;
         color: var(--secondary-color);
         border-bottom-color: var(--secondary-color);
         &::after{
            content: none;
         }
     }
     }

     .tab-content {
         display: none;
         animation: fade-code-In  0.5s ease;
     }

     .tab-content.active {
         display: block;
         background-color: var(--body-color);
        &::after{
            content: none;
        }
     }

     h3 {
         color: var(--primary-color);
         margin-bottom: 15px;
         font-size: 20px;
         border-left: 4px solid var(--secondary-color);
         padding-left: 10px;
     }

     p {
         margin-bottom: 15px;
         text-align: justify;
         color: var(--text-color);
         opacity: 0.9;
     }

     .highlight-box {
         background-color: #f0fdfa;
         border-left: 4px solid var(--secondary-color);
         padding: 15px;
         color: var(--black-bg-color);
         margin-bottom: 20px;
         font-style: italic;
     }

     ul {
         margin-bottom: 20px;
         padding-left: 20px;
     }

     li {
         margin-bottom: 8px;
     }

     /* Grilla de Principios */
     .grid-container {
         display: grid;
         grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 20px;
         margin-top: 15px;
     }

     .card {
         background: var(--bg-light);
         padding: 20px;
         border-radius: 6px;
         border-top: 3px solid var(--primary-color);
     }

     .card h4 {
         color: var(--primary-color);
         margin-bottom: 8px;
         font-size: 16px;
     }

     /* Listas de prohibición */
     .prohibition-list li {
         list-style-type: none;
         position: relative;
         padding-left: 25px;
     }

     .prohibition-list li::before {
         content: "✕";
         position: absolute;
         left: 0;
         color: #d9534f;
         font-weight: bold;
     }

     footer {
         margin-top: 40px;
         padding-top: 15px;
         border-top: 1px solid var(--border-color);
         text-align: center;
         font-size: 13px;
         color: var(--text-color);
     }

     @keyframes fade-code-In {
         from {
             opacity: 0;
             transform: translateY(5px);
         }

         to {
             opacity: 1;
             transform: translateY(0);
         }
     }

     @media (max-width: 768px) {
         .tabs {
             flex-direction: column;
         }

         .container{
            padding: 20px
         }

         .tab-btn {
             text-align: left;
             border-bottom: none;
             border-left: 3px solid transparent;
         }

         .tab-btn.active {
             border-left-color: var(--secondary-color);
             border-bottom-color: transparent;
         }

         header {
             flex-direction: column;
             align-items: flex-start;
             gap: 10px;
         }

         .header-meta {
             text-align: left;
         }
     }
 }