/* NESAGAVIRIA - Footer */
/* ================= FOOTER ================= */
.footer {
    padding: 80px 0 30px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-gray) 100%);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.link {
    flex: 1;
    min-width: 200px;
}

.link h3 {
    font-size: 20px;
    color: var(--color-white);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.link h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--color-secondary);
}

.link ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link a {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
    display: inline-block;
}

.link a:hover {
    color: var(--color-secondary);
    transform: translateX(5px);
}

.link--footer-contact {
    flex: 1.15;
    min-width: min(100%, 280px);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list__item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.footer-contact-list__icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    margin-top: 2px;
    color: #ffffff;
    filter: drop-shadow(0 0 10px rgba(125, 212, 176, 0.45));
    line-height: 0;
}

.footer-contact-list__icon svg {
    display: block;
    width: 26px;
    height: 26px;
}

.footer-contact-list__text {
    min-width: 0;
    flex: 1;
}

.footer-contact-list__label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 6px;
}

.footer-contact-list__value {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.link .footer-contact-list__value a {
    display: inline;
    color: rgba(255, 255, 255, 0.88);
    transform: none;
}

.link .footer-contact-list__value a:hover {
    color: var(--color-secondary-light);
    transform: none;
    text-decoration: underline;
}

.footer-contact-list__sep {
    color: rgba(255, 255, 255, 0.45);
    font-weight: 400;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

