:root {
    --blanco: #FFFFFF;
    --amarillo-pastel: #FFF1A6;
}

.footer-link {
    color: var(--blanco);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, transform 0.2s;
}

.footer-link:hover {
    color: #d27ba6;
    transform: translateX(5px);
}

.btn-floating {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-floating:hover {
    opacity: 0.85;
}