:root{
    --debugFoter: 0;
}

footer{
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    height: 700px;
    background-color: var(--azul);
    overflow: hidden;
}

#footerVan{
    --size: 300px;
    position: absolute;
    right: 20px;
    bottom: -10px;
    height: var(--size);
    width: var(--size);
    background-size: contain;
    background-image: url(../Images/vanIconAC.png);
}

#footerRoad{
    --size: 250px;
    position: absolute;
    left: 0px;
    bottom: -20px;
    height: var(--size);
    width: var(--size);
    background-size: contain;
    background-image: url(../Images/road.png);    
}

/* ? FOOTER INFO */

#footerInfo{
    width: 40%;
    border: 1px solid var(--debugFoter);
}

#footerLogo{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    color: var(--blanco);
}

#footerImg{
    width: 50%;
}

#footerText{
    width: 40%;
    font-size: 0.8rem;
    text-wrap: pretty;
}

#footerMenu{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.footerMiniMenu{
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 30%;
    color: var(--blanco);
}

.footerMenuTitle{
    color: var(--amarillo);
    font-weight: 700;
    font-size: 1.1rem;
}

.footerMiniMenu a{
    color: var(--blanco);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.footerMiniMenu a:hover{
    color: var(--amarillo);
}

/* ? FOOTER CONTACT */

#footerContact{
    width: 50%;
    padding: 0rem 2rem;
    padding-top: 4rem;
    box-sizing: border-box;
    border: 1px solid var(--debugFoter);
    color: var(--blanco);
}

#footerSub{
    color: var(--amarillo);
}

#footerTitle{
    font-size: 2rem;
}

#footerImp{
    text-indent: 12px;
    height: 40px;
    width: 60%;
    border-radius: 40px;
    border: none;
    outline: unset;
}

#footerBtn{
    background-color: var(--amarillo);
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: none;
}

#footerCopy{
    font-size: 0.8rem;
}

@media(max-width:808px){
    #footerText{
        font-size: 0.6rem;
    }

    footer{
        flex-direction: column;
        align-items: center;
        justify-content: start;
        gap: 64px;
        height: 1100px;
    }

    #footerInfo{
        width: 90%;
    }

    #footerContact{
        width: 100%;
        padding: 0 1rem;
    }

    #footerImp{
        width: 80%;
    }

    #footerVan{
        --size: 220px;
        bottom: 130px;
    }

    #footerRoad{
        --size: 200px;
    }
    
}