
/* FOOTER GENERAL */
.seccionFooter {
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    color: white;
}

/* PARTE SUPERIOR (3 COLUMNAS) */
.footerTop {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; /* responsive */
    gap: 40px;
    text-align: center;
}

/* LISTAS */
.seccionFooter ul {
    list-style: none;
    padding: 0;
}

/* LINKS */
.seccionFooter a {
    text-decoration: none;
    color:white;
    transition: 0.3s;
}

.seccionFooter a:hover {
    color: gold;
}

/* TÍTULOS */
.seccionFooter h3 {
    color: gold;
    margin-bottom: 10px;
}

/* PARTE INFERIOR */
.footerBottom {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
}
