#footer{
    width: 100%;
    height: auto;
    background-color: var(--font);
    box-sizing: border-box;
    padding: 10px 20px;
}

#footer-marca{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid white;
    box-sizing: border-box;
    padding-bottom: 10px;
}

#footer-logo{
    width: 70px;
    height: 70px;
    background-image: url('/img/Logo_Mini.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 70%;
    filter: brightness(4);
}

#footer h3{
    color: var(--white);
}

#footer h2{
    color: var(--white);
    font-size: 2rem;
    font-weight: 900;
}

#footer p{
    color: var(--white);
}

#footer a {
    color: var(--white);
    font-family: inherit;
    font-size: 1.25rem;
}

#footer-textos, #footer-firma{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    box-sizing: border-box;
    padding: 10px 20px;
}

#footer-servicios, #footer-cursos, #footer-proyectos{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#footer-firma{
    border-top: 1px solid var(--white);
    gap: 0;
}

#footer-firma p{
    font-size: 0.9rem;
}

#footer-firma h3{
    font-size: 1.5rem;
    font-weight: 900;
}

@media screen and (min-width: 500px) {
    #footer a {
        font-size: 1.75rem;
    }
}

@media screen and (min-width: 1023px) {
    #footer-logo{
        width: 100px;
        height: 100px;
    }

    #footer h3{
        font-size: 2.5rem;
    }
    
    #footer a {
        font-size: 2.5rem;
    }

    #footer-firma a {
        font-size: 2rem;
    }
}

@media screen and (min-width: 1082px) {
    #footer-textos{
        flex-direction: row;
        align-items: flex-start;
        gap: 70px;
    }

    #footer-logo{
        width: 70px;
        height: 70px;
    }

    #footer h3 {
        font-size: 1.75rem;
    }

    #footer a {
        font-size: 1.5rem;
        transition: all 0.2s ease;
    }

    #footer-textos a:hover{
        font-weight: 700;
    }

    #footer-firma, #footer-logo{
        border: none;
    }

    #footer-firma p{
        font-size: 0.7rem;
    }
    
    #footer-firma a{
        font-size: 1rem;
        font-weight: 900;
    }
}