/* Variables */
:root {
    --tp-blue: #005eb8; /* Azul Gobierno/Admin */
    --tp-white: #ffffff;
    --tp-hover: #00448a;
    --tp-text: #333333;
    --tp-gray-bg: #f4f4f4;
}

/* MENÚ TIPO IMAGEN ADJUNTA */
.transparencia-nav-bar {
    background-color: var(--tp-blue);
    width: 100%;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tn-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: stretch;
}

.tn-item {
    color: var(--tp-white);
    text-decoration: none;
    display: flex;
    align-items: center; /* Centrado vertical */
    padding: 10px 15px;
    flex: 1; /* Distribución equitativa */
    border-right: 1px solid rgba(255,255,255,0.2);
    transition: background 0.3s;
    min-height: 60px;
}

.tn-item:hover {
    background-color: var(--tp-hover);
    color: var(--tp-white);
}

.tn-item.home {
    flex: 0 0 50px;
    justify-content: center;
    font-size: 1.2rem;
}

.tn-icon {
    font-size: 1.8rem; /* Iconos grandes como la imagen */
    margin-right: 10px;
    display: flex;
    align-items: center;
}

.tn-label {
    font-size: 0.85rem;
    line-height: 1.1;
    font-weight: 500;
}

/* DASHBOARD HOME */
.tp-dashboard {
    max-width: 1000px;
    margin: 40px auto;
}

.tp-search-container {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--tp-gray-bg);
    border-radius: 8px;
}

.tp-search-input {
    width: 100%;
    max-width: 600px;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 30px;
    font-size: 1.1rem;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tp-card {
    background: white;
    border: 1px solid #eee;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    text-decoration: none;
    color: var(--tp-text);
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.tp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-color: var(--tp-blue);
}

.tp-card i {
    font-size: 3rem;
    color: var(--tp-blue);
    margin-bottom: 15px;
    display: block;
}

.tp-card h3 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--tp-blue);
}