/*=============================================
HOME
=============================================*/

:root {
    --background-color: black;
    --nav-color: #7aff00;
}

.home-body {
    background-color: var(--background-color);
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    margin-top: 20px;
    width: 500px;
}

.logo img {
    width: 100%;
}

.sucursal1,
.sucursal2,
.sucursal3 {
    overflow: hidden;
}

.sucursal1 img,
.sucursal2 img,
.sucursal3 img {
    width: 100%;
    overflow: hidden;
    transition: all 400ms;
}


.sucursal1:hover img,
.sucursal2:hover img,
.sucursal3:hover img {
    transform: scale(1.06);
    filter: contrast(80%);
}

.home-footer {
    width: 100%;
    height: 80px;
    background-color: var(--nav-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.home-footer a,
.home-footer a:visited {
    display: inline-block;
    color: #212529;
    transition: font-size 400ms;
}

.home-footer a:hover {
    opacity: 0.8;
}