﻿/* ===========================
   LOGOS (mask) — responsivas
=========================== */

#logo-fecomercio,
#nova-logo-fecomercio,
#logo-senac,
#logo-ifpd {
    display: inline-block;
    background: #fff; /* cor do logo */
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
}

/* Fecomércio */
#logo-fecomercio {
    width: 150px;
    height: 50px;
    -webkit-mask-image: url(../../img/logo/fecomerciologo.svg);
    mask-image: url(../../img/logo/fecomerciologo.svg);
}

/* Nova Fecomércio */
#nova-logo-fecomercio {
    width: 180px;
    height: 80px;
    position: absolute;
    bottom: 10px;
    -webkit-mask-image: url(../../img/logo/nova-logo-fecomercio.svg);
    mask-image: url(../../img/logo/nova-logo-fecomercio.svg);
}

/* Senac */
#logo-senac {
    width: 80px;
    height: 60px;
    -webkit-mask-image: url(../../img/logo/senaclogo.svg);
    mask-image: url(../../img/logo/senaclogo.svg);
}

/* IFPD */
#logo-ifpd {
    width: 80px;
    height: 60px;
    -webkit-mask-image: url(../../img/logo/ipdclogo.svg);
    mask-image: url(../../img/logo/ipdclogo.svg);
}

/* Proporção automática (sem distorcer) */
@supports (aspect-ratio: 1 / 1) {
    #logo-fecomercio {
        height: auto;
        aspect-ratio: 3 / 1;
        max-width: 170px;
    }

    #nova-logo-fecomercio {
        height: auto;
        aspect-ratio: 9 / 4;
        max-width: 210px;
    }

    #logo-senac,
    #logo-ifpd {
        height: auto;
        aspect-ratio: 4 / 3;
        max-width: 110px;
    }
}

/* Tablets */
@media (max-width: 991.98px) {
    #logo-fecomercio {
        width: 160px;
        height: 54px;
    }

    #nova-logo-fecomercio {
        width: 190px;
        height: 84px;
    }

    #logo-senac,
    #logo-ifpd {
        width: 90px;
        height: 68px;
    }
}

/* Mobile */
@media (max-width: 575.98px) {
    #logo-fecomercio {
        width: 140px;
        height: 46px;
    }

    #nova-logo-fecomercio {
        width: 170px;
        height: 76px;
    }

    #logo-senac,
    #logo-ifpd {
        width: 80px;
        height: 60px;
    }
}

/* ===========================
   FOOTER — Azul Sesc
=========================== */

.site-footer {
    background: var(--azul-sesc) !important;
    color: rgba(255, 255, 255, .92);
    padding: 28px 0 0;
}

    .site-footer a {
        color: rgba(255, 255, 255, .92);
        text-decoration: none;
    }

        .site-footer a:hover {
            color: #fff;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

.site-footer__grid {
    row-gap: 18px;
}

.site-footer__logo {
    max-width: 220px;
    height: auto;
}

/* Títulos */
.site-footer__title {
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .95);
}

/* Listas */
.site-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
    font-size: 13px;
}

    .site-footer__list li {
        line-height: 1.25;
    }

/* ===========================
   Redes sociais — PADRÃO PRINT (GRID)
=========================== */

.site-footer__social-col {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.site-footer__social-grid {
    display: grid;
    grid-template-columns: repeat(3, 50px);
    gap: 18px;
    /* melhora alinhamento do grid */
    justify-items: center;
    align-content: start;
}

.site-footer__social-link {
    width: 50px;
    height: 50px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .10);
    border: 2px solid rgba(255, 255, 255, .35);
    color: #fff;
    font-size: 22px;
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

    .site-footer__social-link:hover {
        background: rgba(255, 255, 255, .16);
        border-color: rgba(255, 255, 255, .70);
        transform: translateY(-2px);
        text-decoration: none;
    }

    /* Acessibilidade (teclado) */
    .site-footer__social-link:focus-visible {
        outline: 3px solid rgba(255, 255, 255, .75);
        outline-offset: 3px;
        text-decoration: none;
    }

    /* Se usar bootstrap-icons */
    .site-footer__social-link i {
        line-height: 1;
        display: inline-flex;
    }

    /* O X costuma ficar “menor” visualmente */
    .site-footer__social-link .bi-twitter-x {
        font-size: 24px;
    }

    /* Se ainda tiver <img> em alguns, mantém; se for tudo <i>, pode remover */
    .site-footer__social-link img {
        width: 22px;
        height: 22px;
        object-fit: contain;
        display: block;
    }

/* ===========================
   Footer bottom
=========================== */

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .22);
}

    .site-footer__bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, .90);
    }

/* ===========================
   Responsivo Footer
=========================== */

@media (max-width: 991.98px) {
    .site-footer {
        padding-top: 22px;
    }

    .site-footer__col,
    .site-footer__title {
        text-align: center;
    }

    .site-footer__social-col {
        justify-content: center;
        margin-top: 14px;
    }
}
