/* Start custom CSS for html, class: .elementor-element-755b8fb */:root {
    --empo-blue: #0a6fb5;
    --empo-green: #6dbe45;
    --border-color: #e0e0e0;
}

.transparencia-wrapper {
    max-width: 950px; /* Ancho ajustado para la fuente más grande */
    margin: 0 auto;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: #333;
}

/* --- HEADER & BUSCADOR --- */
.transparencia-header {
    margin-bottom: 40px;
}

.transparencia-header h2 {
    color: var(--empo-blue);
    font-size: 2.6rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Buscador 100% plano, sin bordes iniciales ni sombras */
.transparencia-search-box {
    display: flex;
    align-items: center;
    background-color: #f4f6f8; 
    border: 2px solid transparent; /* Borde invisible preparándose para el clic */
    border-radius: 8px;
    padding: 5px 20px;
    transition: background-color 0.3s, border-color 0.3s;
}

/* Al hacer clic: Fondo blanco y borde azul neto, cero sombras */
.transparencia-search-box:focus-within {
    background-color: #ffffff;
    border-color: var(--empo-blue); 
}

.search-icon {
    display: flex;
    align-items: center;
    color: var(--empo-blue);
    margin-right: 15px;
    pointer-events: none; 
}

.search-input {
    flex-grow: 1;
    width: 100%;
    padding: 15px 0;
    font-size: 1.4rem; 
    border: none;
    background: transparent;
    color: #333;
}

.search-input:focus {
    outline: none; /* Evita el borde por defecto del navegador */
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* --- ACORDEONES --- */
.t-accordion {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Resaltado para hallazgos obligatorios */
.t-accordion.highlight {
    border-left: 6px solid var(--empo-green);
}

.t-accordion summary {
    padding: 22px 25px;
    font-size: 1.5rem; /* Títulos grandes */
    font-weight: 600;
    color: var(--empo-blue);
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: background-color 0.2s;
}

/* Accesibilidad teclado */
.t-accordion summary:focus-visible {
    outline: 3px solid var(--empo-green);
    outline-offset: -3px;
    border-radius: 6px;
}

.t-accordion summary:hover {
    background-color: #f9fbfd;
}

/* Quitar flecha por defecto de <details> en Safari/Chrome */
.t-accordion summary::-webkit-details-marker {
    display: none;
}

/* Flecha personalizada a la derecha */
.t-accordion summary::after {
    content: "▼";
    position: absolute;
    right: 25px;
    font-size: 1.2rem;
    color: #888;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-accordion[open] summary::after {
    transform: rotate(180deg);
    color: var(--empo-blue);
}

.t-accordion[open] summary {
    border-bottom: 1px solid var(--border-color);
}

/* --- ANIMACIÓN SUAVE DEL CONTENIDO --- */
.t-accordion-content-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

.t-accordion[open] .t-accordion-content-wrapper {
    max-height: 1500px; /* Alto suficientemente grande para el contenido */
    opacity: 1;
}

/* --- LISTADO INTERNO --- */
.t-accordion-content {
    padding: 25px 30px;
    background-color: #fafafa;
    border-radius: 0 0 6px 6px;
}

.t-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t-list li {
    margin-bottom: 12px;
    border-bottom: 1px dashed #e5e5e5;
}

.t-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.t-list a {
    text-decoration: none;
    color: #444;
    display: block;
    padding: 12px 0;
    transition: color 0.2s, transform 0.2s;
    font-size: 1.3rem; /* Enlaces grandes y cómodos */
    line-height: 1.4;
}

.t-list a:hover, .t-list a:focus {
    color: var(--empo-blue);
    text-decoration: underline;
    outline: none;
    transform: translateX(5px); /* Efecto sutil al hacer hover */
}

/* --- ÍTEMS EXPLICATIVOS SIN ENLACE --- */
.t-list .no-link-title {
    display: block;
    padding: 12px 0 5px 0; /* Padding superior igual a los enlaces, inferior reducido para el párrafo */
    font-size: 1.3rem; /* Exactamente el mismo tamaño que tus <a> */
    color: #444; /* Mismo color que tus <a> */
    font-weight: 600; /* Ligera negrita para distinguirlo del texto explicativo */
    line-height: 1.4;
}

.t-list .no-link-desc {
    font-size: 1.05rem; /* Tamaño más discreto para la nota */
    color: #666;
    margin: 0 0 15px 25px; /* Elimina los márgenes por defecto del <p> y alinea con el texto */
    line-height: 1.5;
}

/* --- ESTILOS PARA SUBMENÚS (Listas anidadas) --- */
.t-list .t-list {
    margin-left: 20px; /* Sangría hacia la derecha */
    padding-left: 15px;
    border-left: 2px solid var(--border-color); /* Línea guía vertical */
    margin-top: 5px;
    margin-bottom: 10px;
}

/* Bordes más sutiles para los items internos */
.t-list .t-list li {
    border-bottom: 1px dotted #ccc;
    margin-bottom: 8px;
}

.t-list .t-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Enlaces internos más pequeños para diferenciar nivel */
.t-list .t-list a {
    font-size: 1.15rem; 
    padding: 8px 0;
    color: #555;
}

/* Pequeña viñeta para los submenús */
.t-list .t-list a::before {
    content: "↳ ";
    color: var(--empo-blue);
    margin-right: 5px;
    opacity: 0.7;
}

/* Ajuste de los spans (títulos sin link) dentro de submenús */
.t-list .t-list .no-link-title {
    font-size: 1.15rem;
    padding: 8px 0;
}/* End custom CSS */