.foter {
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    color: #000;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.foter hr {
    border: none;
    border-top: 1px solid #d7d7d7c7;
    margin: 20px 0;
}

.foter .container {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.foter .logos {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: center;
    margin-bottom: 20px;
}

.foter .logos img {
    max-height: 60px;
}

.foter .contact-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    align-content: center;
    flex-wrap: wrap;
}

.foter .contact-info a {
    color: #000;
    text-decoration: none;
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-size: 18px;
}

.foter .contact-info a i {
    margin-right: 10px;
    max-height: 24px;
    color: #04347d;

}

.foter .barra {
    background: #d7d7d7c7;
    height: 50px;
    width: 100%;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.foter .barra ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 65%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.foter .barra ul li a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
}

.foter .barra ul li {
    margin: 0 10px;
}

.foter p {
    margin: 5px 0;
    text-align: center;
    font-size: 16px;
}

@media (max-width: 768px) {

    .foter{
        width: 100%;
    }
    .foter .container {
        flex-direction: column;
        align-items: center;
    }

    .foter .contact-info {
        align-items: center;
        text-align: center;
    }

    .foter .contact-info a {
        justify-content: center;
    }

    .foter .logos {
        justify-content: center;
    }

    .foter .barra ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        flex-direction: row;
    }

    .foter .barra ul li {
        margin: 5px 10px;
    }
}

/* Animaciones para los botones de la barra */
.foter .barra ul li a {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #707070;
}

.foter .barra ul li a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #04347d;
    transform: scaleX(0);
    transition: all 0.4s ease;
}

.foter .barra ul li a:hover::before {
    transform: scaleX(1);
}

.foter .barra ul li a:hover {
    color: #04347d;
}