footer.footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    justify-items: center;
    align-items: center;
    width: fit-content;
    padding: 3vw;
    background-color: #343434;
    width: 100vw;
    color: white;
    font-family: "Montserrat";
}
.logosf-footer,
.contacto-footer,
.servicios-footer {
    min-height: 15vw;
    height: auto;
    border-right: 1px dashed white;
    padding-right: 2vw;
}

.logosf-footer {
    width: 25vw;
}
.contacto-footer {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
.contacto-footer a {
    color: white;
    font-weight: 700;
    transition: all 0.3s ease;
}
.contacto-footer a:hover {
    color: #f0831f;
    transform-origin: right left;
    transform: scale(1.01);
}
.servicios-footer {
    width: 90%;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}
.servicios-footer a {
    color: white;
    border-bottom: 1px solid grey;
}
.copyright-banner {
    color: white;
    background-color: #4d4d4d;
    padding: 2vw;
    font-size: clamp(0.9rem, 1vw, 2rem);
    font-weight: 400;
}

@media (max-width: 768px) {
    footer.footer {
        grid-template-columns: repeat(1, 1fr);
        gap: 3vw;
        padding: 3vw;
    }

    .logosf-footer,
    .contacto-footer,
    .servicios-footer {
        min-height: 15vw;
        height: auto;
        border: none;
        border-bottom: 1px dashed white;
        padding: none;
        padding-bottom: 4vw;
        width: 100%;
    }
    .servicios-footer {
        border: none;
    }
    .copyright-banner {
        padding: 4vw;
        font-size: clamp(0.9rem, 2.5vw, 2rem);
    }
    .copyright-banner p {
        margin-bottom: 1vw;
    }
}
