:root {
    --brand-navy: #1f1e5a;
    --brand-gold: #C6AC2D;
    --card-shadow: 0 10px 24px rgba(0, 0, 0, .06);
}

.transp-card {
    background: #fff;
    border: 1px solid #ececf5;
    border-radius: 22px;
    padding: 20px 18px 18px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    min-height: 320px;
}

.transp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, .10);
    border-color: #e3e6ff;
}

.t-icon {
    width: 126px;
    height: 126px;
    border-radius: 18px;
    background: linear-gradient(0deg, #f7f8ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4px auto 12px;
    position: relative;
    box-shadow: inset 0 0 0 1px #eef0ff, 0 8px 18px rgba(0, 0, 0, .05);
}

.t-icon img {
    max-width: 92px;
    max-height: 92px;
    object-fit: contain;
}

.t-title {
    font-weight: 800;
    color: #2b2b2b;
    line-height: 1.25;
    margin: 6px 0 12px;
}

.dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--brand-navy);
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 10px 16px;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(31, 30, 90, .25);
    transition: background .18s ease, transform .12s ease, box-shadow .18s ease;
}

.dl-btn:hover {
    background: #18174a;
    color: #fff;
    transform: translateY(-1px);
}

.dl-btn:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(31, 30, 90, .25);
}

.dl-btn i {
    font-size: 16px;
}

/* estado deshabilitado */
.dl-btn.disabled {
    pointer-events: none;
    opacity: .7;
    filter: grayscale(20%);
}

/* Responsivo */
@media (max-width:575.98px) {
    .transp-card {
        min-height: 300px;
        padding: 18px 16px;
    }

    .t-icon {
        width: 110px;
        height: 110px;
    }

    .t-icon img {
        max-width: 84px;
        max-height: 84px;
    }
}

.locations-section .underline {
    width: 120px;
    height: 3px;
    background: #1F1E5A;
}

.map-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.map-box {
    position: relative;
    width: 100%;
    aspect-ratio: 21 / 9;
    overflow: hidden;
    border-radius: 14px;
}

.map-box .gmap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: .35rem 0;
    font-size: 16px;
}

.contact-list i {
    width: 22px;
    text-align: center;
    color: #1F1E5A;
}

@media (max-width:576px) {
    .map-box {
        aspect-ratio: 16 / 10;
    }
}


.list-item li {
    font-weight: normal !important;
}

.testimonial-content h6 {
    font-weight: normal;
    /* Quita la negrita */
}

.org-chart-zoom {
    padding: 40px 0 80px;
}

.org-chart-zoom .zoom-card {
    background: #fff;
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.org-chart-zoom .zoom-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.org-chart-zoom .zoom-img {
    width: 100%;
    display: block;
    transition: transform .25s ease;
    will-change: transform;
}

/* el zoom lo maneja JS */
.org-chart-zoom .zoom-wrap:hover .zoom-img {
    transform: none;
}

.org-chart-zoom .zoom-hint {
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(31, 30, 90, .9);
    color: #fff;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0;
    transform: translateY(6px);
    transition: .3s;
}

.org-chart-zoom .zoom-wrap:hover .zoom-hint {
    opacity: 1;
    transform: translateY(0);
}

/* móvil: ocultamos ayuda */
@media (max-width:575.98px) {
    .org-chart-zoom .zoom-hint {
        display: none;
    }
}