/* Start custom CSS for html, class: .elementor-element-beb710a */:root {
    --empo-primary: #0a6fb5;
    --empo-text-dark: #2c3e50;
    --empo-text-light: #555555;
    --empo-border: #dcdde1;
    --empo-bg-hover: #f4f8fb;
}

/* Contenedor Principal */
.info-relevante-wrapper {
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    max-width: 950px;
    margin: 40px auto;
    color: var(--empo-text-dark);
}

/* Encabezado */
.info-header {
    margin-bottom: 50px;
    border-bottom: 3px solid var(--empo-primary);
    padding-bottom: 20px;
}

.info-header h2 {
    color: var(--empo-primary);
    font-size: 30px; 
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.info-header p {
    font-size: 17px; 
    color: var(--empo-text-light);
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

/* Bloques por Vigencia */
.info-year-block {
    margin-bottom: 50px;
}

.info-year-title {
    font-size: 24px;
    color: var(--empo-text-dark);
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--empo-border);
    font-weight: 600;
}

/* Tarjeta de Documento Principal (Plan de Acción) */
.info-doc-item {
    display: flex;
    align-items: center;
    padding: 20px 15px;
    border: 1px solid #eeeeee; 
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #ffffff;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.main-plan {
    background-color: #f0f7ff;
    border: 1px solid #cce0f0;
    border-left: 5px solid var(--empo-primary);
}

.main-plan:hover {
    background-color: #e6f2ff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

/* Detalles internos de la tarjeta */
.info-doc-icon {
    flex-shrink: 0;
    width: 35px;
    height: 35px;
    color: var(--empo-primary);
    opacity: 0.9;
}

.info-doc-details {
    flex-grow: 1;
    padding: 0 25px;
}

.info-doc-details h4 {
    margin: 0 0 6px 0;
    font-size: 18px;
    color: var(--empo-text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.info-doc-meta {
    margin: 0;
    font-size: 15px;
    color: #777777;
}

/* Botón de Descarga */
.info-doc-action {
    flex-shrink: 0;
}

.info-btn-descargar {
    display: inline-block;
    padding: 8px 20px;
    font-size: 16px;
    font-weight: 500;
    color: var(--empo-primary);
    background-color: transparent;
    border: 1px solid var(--empo-primary);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.info-btn-descargar:hover {
    background-color: var(--empo-primary);
    color: #ffffff;
}

/* Cuadrícula de Seguimientos Trimestrales */
.seguimiento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 15px;
    margin-bottom: 25px;
}

.seguimiento-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 10px;
    background-color: #f8f9fa;
    border: 1px solid var(--empo-border);
    border-radius: 4px;
    text-decoration: none;
    color: var(--empo-text-dark);
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
}

/* Estado Activo: Efecto Hover */
.seguimiento-card:not(.disabled-card):hover {
    background-color: var(--empo-primary);
    color: #ffffff;
    border-color: var(--empo-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(10, 111, 181, 0.2);
}

/* NUEVO: ESTADO DESHABILITADO */
.seguimiento-card.disabled-card {
    background-color: #f4f4f4;
    color: #b0b0b0;
    border-color: #e8e8e8;
    cursor: not-allowed;
    pointer-events: none; /* Esto evita que se pueda hacer clic en el enlace */
    opacity: 0.7;
}

/* Lista Histórica (Años anteriores) */
.t-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.t-list li {
    margin-bottom: 10px;
    border-bottom: 1px dashed #e5e5e5;
}

.t-list li:last-child {
    border-bottom: none;
}

.t-list a {
    text-decoration: none;
    color: #444;
    display: block;
    padding: 10px 0;
    font-size: 16px;
    transition: color 0.2s, transform 0.2s;
}

.t-list a:hover {
    color: var(--empo-primary);
    transform: translateX(5px);
}

/* Responsividad */
@media (max-width: 768px) {
    .info-doc-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 15px;
    }
    
    .info-doc-icon {
        margin-bottom: 15px;
    }
    
    .info-doc-details {
        padding: 0;
        margin-bottom: 15px;
        width: 100%;
    }
    
    .info-doc-action {
        width: 100%;
    }
    
    .info-btn-descargar {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    .seguimiento-grid {
        grid-template-columns: 1fr 1fr; /* 2 columnas en tablets */
    }
}

@media (max-width: 480px) {
    .seguimiento-grid {
        grid-template-columns: 1fr; /* 1 columna en móviles pequeños */
    }
}/* End custom CSS */