.tacol-section {
    width: 100%;
    padding: 50px 20px 60px;
    box-sizing: border-box;
    background: transparent;
}

.tacol-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    padding: 0;
    background: none !important;
    border: none !important;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.08);
}

.tacol-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

/* Fila 1: Gobierno (ancho) + Seer (cuadrado) */
.tacol-row-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Fila 2: Univalle centrado */
.tacol-row-bottom {
    display: flex;
    justify-content: center;
}

.tacol-img {
    display: block;
    object-fit: contain;
    height: auto;
    width: auto;
    transition: transform 0.3s ease;
}

.tacol-img:hover {
    transform: translateY(-4px);
}

/* Tamaños base */
.tacol-gobierno  { max-height: 200px; }
.tacol-seer      { max-height: 110px; }
.tacol-univalle  { max-height: 90px;  }

/* >= 1400px */
@media (min-width: 1400px) {
    .tacol-gobierno  { max-height: 200px; }
    .tacol-seer      { max-height: 91px; }
    .tacol-univalle  { max-height: 93px; }
}

/* <= 1200px */
@media (max-width: 1200px) {
    .tacol-gobierno  { max-height: 200px; }
    .tacol-seer      { max-height: 90px;  }
    .tacol-univalle  { max-height: 80px;  }
}

/* <= 992px */
@media (max-width: 992px) {
    .tacol-row-top { gap: 40px; }
    .tacol-logos   { gap: 35px; }
    .tacol-gobierno  { max-height: 200px; }
    .tacol-seer      { max-height: 80px; }
    .tacol-univalle  { max-height: 70px; }
}

/* <= 768px */
@media (max-width: 768px) {
    .tacol-title { font-size: 1.3rem; margin-bottom: 30px; }
    .tacol-row-top { gap: 30px; }
    .tacol-logos   { gap: 25px; }
    .tacol-gobierno  { max-height: 150px; }
    .tacol-seer      { max-height: 70px; }
    .tacol-univalle  { max-height: 60px; }
}

/* <= 480px */
@media (max-width: 480px) {
    .tacol-section { padding: 30px 15px 40px; }
    .tacol-title { font-size: 1.1rem; margin-bottom: 20px; }
    .tacol-row-top {
        flex-direction: column;
        gap: 20px;
    }
    .tacol-logos { gap: 20px; }
    .tacol-gobierno  { max-height: 120px; }
    .tacol-seer      { max-height: 55px; }
    .tacol-univalle  { max-height: 50px; }
}
