/* ==============================================
   CONSOLIDATED.CSS - COMPONENTES UNIFICADOS
   ⚠️ NO DUPLICAR código de aiz-core.css
   ============================================== */

/* ===================================
   1. FOOTER - ÚNICA DEFINICIÓN
=================================== */
.aiz-footer {
    background: #151c29;
    padding-top: 70px;
}

.aiz-footer .menu a {
    color: #cfd3da;
    transition: all 0.3s ease;
}

.aiz-footer .menu a:hover {
    color: var(--primary);
}

.aiz-footer p {
    color: #cbcdd2;
}

.aiz-footer-copyright {
    border-top: 1px solid #283244;
    padding: 12px 0;
}

.aiz-front-widget .title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    color: #717b8c;
}

.aiz-front-widget .menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aiz-front-widget .menu a {
    display: inline-block;
    color: inherit;
    padding: 5px 0;
    transition: transform 0.3s;
}

.aiz-front-widget .menu a:hover {
    transform: translateX(5px);
}

