[comp="links-rodape"] {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    width: 100%;
    padding: 50px 19px 0;
    flex-wrap: wrap;
}

[comp="links-rodape"] img {
    height: 100%;
    border-radius: 10px;
    object-fit: contain;
}

[comp="links-rodape"] a {
    background: #ffffff;
    display: flex;
    align-items: center;
    position: relative;
    padding: 3px 10px;
    border-radius: 7px;
    border: 1px solid #c0c0c0;
    text-transform: none;
    flex-wrap: nowrap;
    min-width: 200px;
    justify-content: center;
    height: 61px;
    text-decoration: none;
    font-size: 13px;
    max-width: 200px;
    text-align: center;
    gap: 2px;
    flex-direction: column;
    transition: all 0.2s ease;
    overflow: visible;
}

[comp="links-rodape"] a span {
    font-size: 11px;
}

[comp="links-rodape"] a:hover {
    box-shadow: 0 15px 17px -19px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
    border-color: #474747;
}

[comp="links-rodape"] a.link-destaque {
    border-color: var(--color-primary);
    background: linear-gradient(180deg, #ffffff 0%, rgba(0, 146, 69, 0.04) 100%);
    box-shadow:
        0 10px 24px -18px rgba(0, 0, 0, 0.8),
        0 0 0 1px rgba(0, 146, 69, 0.2);
    transform: translateY(-1px);
}

[comp="links-rodape"] a.link-destaque::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid rgba(0, 146, 69, 0.45);
    border-radius: 10px;
    opacity: 1;
    pointer-events: none;
    animation: linkDestaquePulse 2.2s ease-in-out infinite;
}

[comp="links-rodape"] a.link-destaque::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    top: -1px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent 0%, var(--color-primary) 50%, transparent 100%);
    opacity: 0.9;
    pointer-events: none;
}

[comp="links-rodape"] a.link-destaque:hover {
    border-color: var(--color-primary);
    box-shadow:
        0 16px 30px -20px rgba(0, 0, 0, 0.85),
        0 0 0 1px rgba(0, 146, 69, 0.3);
}

@keyframes linkDestaquePulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 0.65;
    }

    50% {
        transform: scale(1.012);
        opacity: 1;
    }
}

@media screen and (max-width: 1100px) {
    [comp="links-rodape"] {
        justify-content: center;
    }
}
