/* assets/css/footer.css */

.nx-footer {
    background-color: #1a1f26 !important; /* El color oscuro de la imagen */
    color: #ffffff;
    padding-top: 80px;
    padding-bottom: 40px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-text {
    color: #a0aab5;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Títulos con la línea azul debajo */
.footer-title {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px; /* Largo de la línea */
    height: 3px; /* Grosor de la línea */
    background-color: #00aaff; /* El azul brillante de acento */
}

/* Listas de links */
.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0aab5 !important;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #00aaff !important;
    padding-left: 5px; /* Efecto sutil al pasar el mouse */
}

/* Iconos de contacto */
.footer-contact li {
    color: #a0aab5;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #00aaff;
    margin-right: 12px;
}

/* Redes Sociales */
.social-links a {
    color: #ffffff;
    font-size: 1.4rem;
    margin-right: 20px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #00aaff;
}

/* Copyright */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: #707b88;
    font-size: 0.85rem;
}