/* ===== Footer Pro - Futbol (adaptado de Deli) ===== */
.footer-pro {
    background: var(--gris, #f5f5f5);
    color: #cfd6dd;
}

.footer-pro .container {
    overflow: hidden;
    background: linear-gradient(180deg, #1f4f96 0%, #163f7c 55%, #0f2f62 100%);
    border-radius: 12px 12px 0 0;
    box-shadow: 0 -2px 14px rgba(0, 0, 0, .06);
    padding: 28px 20px 10px;
    max-width: 100%;
    margin: 0;
}

/* Grid layout (4 columnas) */
.footer-pro .footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 0;
    padding-bottom: 14px;
}

.footer-pro .footer__col {
    padding: 0 28px;
}

.footer-pro .footer__col:first-child {
    padding-left: 15px;
}

/* Dividers (solo desktop) */
@media (min-width: 992px) {
    .footer-pro .footer__col + .footer__col {
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
}

/* Logo */
.footer-pro .footer__logo {
    width: 120px;
    height: auto;
    display: block;
    margin: 0 auto 14px;
}

/* Tagline */
.footer-pro .footer__tagline {
    margin: 10px auto;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    max-width: 280px;
    text-align: center;
}

/* Titles + green underline */
.footer-pro .footer__title {
    font-size: 18px;
    font-weight: 700;
    color: #e8edf3;
    margin-bottom: 10px;
    position: relative;
    display: block;
    width: 100%;
}

.footer-pro .footer__title::after {
    content: "";
    display: block;
    margin-top: 6px;
    width: 64px;
    height: 2px;
    background: #1e6fd9;
    border-radius: 10px;
    opacity: 0.95;
}

/* Lists */
.footer-pro .footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-pro .footer__list li {
    margin: 10px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-pro .footer__list a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-pro .footer__list a:hover {
    color: #1e6fd9;
}

/* Social buttons */
.footer-pro .footer__social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-pro .footer__social-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.footer-pro .footer__social-btn svg {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.75);
}

.footer-pro .footer__social-btn:hover {
    transform: translateY(-1px);
    background: rgba(30, 111, 217, 0.18);
    border-color: rgba(30, 111, 217, 0.5);
}

.footer-pro .footer__social-btn:hover svg {
    fill: #1e6fd9;
}

/* Icon list (Contacto + Confianza) */
.footer-pro .footer__list--icons li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-pro .fi {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex: 0 0 18px;
    display: inline-block;
    position: relative;
}

.footer-pro .fi::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #e6e6e6;
    opacity: 0.95;
    border-radius: 4px;
    -webkit-mask: var(--mask) center / contain no-repeat;
    mask: var(--mask) center / contain no-repeat;
}

/* SVG masks */
.footer-pro .fi--pin {
    --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5 7 13 7 13s7-8 7-13a7 7 0 0 0-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
}

.footer-pro .fi--phone {
    --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.5 3 3.6 5.1 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.2 1 .3 2 .5 3.1.5.7 0 1.3.6 1.3 1.3V21c0 .7-.6 1.3-1.3 1.3C10.6 22.3 1.7 13.4 1.7 2.3 1.7 1.6 2.3 1 3 1h3.4c.7 0 1.3.6 1.3 1.3 0 1.1.2 2.1.5 3.1.1.4 0 .9-.2 1.2l-2.4 2.2z'/%3E%3C/svg%3E");
}

.footer-pro .fi--mail {
    --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer-pro .fi--clock {
    --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 11h-4v-2h2V7h2v6z'/%3E%3C/svg%3E");
}

.footer-pro .fi--shield {
    --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z'/%3E%3C/svg%3E");
}

.footer-pro .fi--futbol {
    --mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm0 3l2.5 1.8-.9 2.9H10.4l-.9-2.9L12 5zm-5.4 4.3l2.8.4 1 2.8-1.7 2.3H5.8l-.6-2.8 1.4-2.7zm.8 7.9l.5-2.8 2.6-.9 1.7 2.3v2.9l-2.5.8-2.3-2.3zm7.2 2.3l-2.5-.8v-2.9l1.7-2.3 2.6.9.5 2.8-2.3 2.3zm2.6-5.1H14.3l-1.7-2.3 1-2.8 2.8-.4 1.4 2.7-.6 2.8z'/%3E%3C/svg%3E");
}

/* Bottom bar */
.footer-pro .footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 18px;
    padding-top: 18px;
    text-align: center;
}

.footer-pro .footer__bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 13px;
}

.footer-pro .footer__admin {
    color: #1e6fd9;
    margin-left: 8px;
    text-decoration: none;
}

.footer-pro .footer__admin:hover {
    text-decoration: underline;
}

/* Brand column centered */
.footer-pro .footer__col:first-child {
    text-align: center;
}

.footer-pro .footer__about__logo {
    display: flex;
    justify-content: center;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .footer-pro .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .footer-pro .footer__col + .footer__col {
        border-left: none !important;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-pro .footer__col:nth-child(2) {
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-pro .footer__col {
        text-align: center;
        padding: 0 15px;
    }

    .footer-pro .footer__title {
        text-align: center;
    }

    .footer-pro .footer__title::after {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-pro .footer__list {
        display: inline-block;
        text-align: left;
    }

    .footer-pro .footer__list--icons li {
        justify-content: flex-start;
    }

    .footer-pro .footer__social {
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .footer-pro .footer__top {
        grid-template-columns: 1fr;
    }

    .footer-pro .footer__col:first-child .footer__logo {
        width: 96px;
    }

    .footer-pro .container {
        border-radius: 12px 12px 0 0;
        padding: 24px 15px 10px;
    }
}
