/* ========================= */
/* FOOTER */
/* ========================= */

.footer{
    width: 100%;
    background: #000;
    padding: 70px 8% 40px;
}

/* Línea superior */

.footer-line{
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.15);
    margin-bottom: 50px;
}

/* CONTENEDOR */

.footer-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* LOGO */

.footer-logo{
    margin-bottom: 25px;
}

.footer-logo img{
    width: 140px;
    object-fit: contain;
    display: block;
}

/* TEXTO */

.footer p{
    color: #cfcfcf;
    font-size: 15px;
    margin-bottom: 25px;
    text-align: center;
}

/* LINKS */

.footer-links{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a{
    color: #ff8800;
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s;
}

.footer-links a:hover{
    color: #fff;
}