/* =============== */
/* FOOTER     */
/* =============== */

.footer {
    background: #2b2b2b;
    color: #ccc;
    padding: 60px 20px 30px;
    margin-top: 80px;
    border-top: 5px solid #947e1e;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

/* LINKS RELACIONADOS */
.footer-links {
    margin-bottom: 45px;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-bottom: 2px solid #947e1e;
    padding-bottom: 8px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
}

.footer-links a:hover {
    color: #fff;
    background: #947e1e;
    border-color: #947e1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer-links a i {
    font-size: 1rem;
}

/* =============== */
/* WIDGETS (MODIFICADO) */
/* =============== */

.footer-widgets {
    display: block; /* Bloque simple en vez de grid para 1 sola columna */
    max-width: 800px; /* Ancho controlado para que no se estire demasiado */
    margin: 0 auto 40px auto;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center; /* Centrado para un solo widget */
}

.footer-widget-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 12px;
}

.footer-widget ul li:last-child {
    border-bottom: none;
}

.footer-widget a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-widget a:hover {
    color: #947e1e;
    padding-left: 5px;
}

/* COPYRIGHT */
.footer-copy {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #888;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .footer-links ul {
        flex-direction: column;
        align-items: center;
    }
    .footer-links a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}