@font-face {
    font-family: "FuturaCondensed";
    src: url("../fuente/futura-condensed.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

footer {
    background-color: #444545;
    color: #fff;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
    padding: 10px;
    margin-top:-40px;
}

.logo p {
    font-size: 16px;
    font-weight: bold;
    font-family: "FuturaCondensed", sans-serif;
}

.about, .services, .contact, .soport {
    flex: 1;
    min-width: 150px;
    text-align: justify;
    margin: 20px;
}

.about h3, .services h3, .contact h3, .soport h3{
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 200;
    letter-spacing: 1px;
    color: #ffffff;
    text-align: left;
    font-family: "FuturaCondensed", sans-serif;
}

.services ul {
    list-style: disc;
    padding-left: 20px;
    margin: 25px 0;
}

.services li {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 14px;
    line-height: 12px;
    margin-bottom: 5px;
    font-family: "FuturaCondensed", sans-serif;
}

.about p {
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 14px;
    margin: 25px 0;
    font-family: "FuturaCondensed", sans-serif;
}

.contact p {
    margin: 5px 0;
    font-family: "FuturaCondensed", sans-serif;
}
.soport p{
    margin: 5px 0;
    font-family:"FuturaCondensed", sans-serif;
}

a {
    color: #ffffff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.social-icons2 {
    display: flex;
    margin-top: 15px;
    align-items: center;
    gap: 10px;
    margin-bottom:20px;
}

.social-icons2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    border-radius: 50%;
    background-color: #787878;
    color: white;
    font-size: 15px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.social-icons2 a:hover {
    background-color: #f90042;
}

.logofooter img {
    height: 150px;
    width: 150px;
    margin-bottom: 20px;
}

.logofooter {
    margin-right: 30px;
}

.footer-bottom {
    text-align: right;
    margin-top: 5px;
    padding-top: 20px;
    border-top: 1px solid #787979;
    font-size: 12px;
    max-width: 100%;
    margin-left: auto;
}

/* Responsivo */
@media screen and (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 90%;
        margin: 0 auto;
    }
    
    .about, .services, .contact, .soport {
        width: 100%;
        margin: 10px 0;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .logofooter {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }
    .logofooter img {
        margin-left: 20px; /* Ajusta el valor según lo necesites */
    }
}