/* Footer Webéalo Creative Agency – Versión Marfil Premium */

.footer-webealo {
    background: #e8e2d3;
    padding: 70px 30px 40px;
    text-align: center;
    color: #333;
    font-family: "Inter", sans-serif;
}

.footer-inner {
    max-width: 900px;
    margin: 0 auto;
}

/* Logo */
.footer-logo img {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.1));
    transition: transform .3s ease;
}

.footer-logo img:hover {
    transform: scale(1.04);
}

/* Tagline */
.footer-tagline {
    color: #b38b3a;
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

/* Menu */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.footer-nav li a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: opacity .2s ease, color .2s ease;
}

.footer-nav li a:hover {
    opacity: .7;
    color: #b38b3a;
}

/* Redes sociales */
.footer-social {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-social a {
    color: #b38b3a;
    border: 2px solid #b38b3a;
    width: 38px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: #b38b3a;
    color: #fff;
    transform: translateY(-2px);
}

/* Copyright */
.footer-copy {
    font-size: 0.9rem;
    color: #444;
    opacity: 0.7;
}

/* Móvil */
@media (max-width: 600px) {
    .footer-nav {
        flex-wrap: wrap;
        gap: 12px;
        font-size: 0.95rem;
    }
}