/* CONTENEDOR */
.contenedorFooter {
    background: #020617;
    color: #ffffff;
    font-family: Arial, sans-serif;
}

/* CONTENIDO GENERAL */
.contenedorFooter .container {
    max-width: 1200px;
}

/* TITULOS */
.footer-title {
    color: #38bdf8;
    font-weight: 600;
    margin-bottom: 18px;
    font-size: 18px;
}

/* TEXTO */
.contenedorFooter p {
    font-size: 14px;
    margin: 8px 0;
    color: #e2e8f0;
}

/* LINKS */
.contenedorFooter a {
    color: #cbd5f5;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 👇 ARREGLO CLAVE (links visibles SIEMPRE) */
.footer-list a {
    color: #cbd5f5 !important;
    display: inline-block;
    white-space: nowrap;
}

.contenedorFooter a:hover {
    color: #38bdf8;
    padding-left: 4px;
}

/* ICONOS */
.contenedorFooter i {
    color: #38bdf8;
    min-width: 18px;
}

/* CONTACTO (ALINEACIÓN PERFECTA) */
.contacto p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

/* LISTAS */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

/* REDES */
.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    font-size: 20px;
    margin-right: 12px;
    color: #cbd5f5;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #38bdf8;
    transform: scale(1.2);
}

/* LOGOS */
.footer-logo {
    max-width: 140px;
    width: 100%;
    height: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: 0.3s;
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* COPYRIGHT */
.footer-bottom {
    background: #020617;
    color: #94a3b8;
    padding: 18px;
    font-size: 13px;
    letter-spacing: 0.5px;
}