.footer {
    width: 100%;
    height: auto;
    background-color: var(--negro);
    color: var(--gris_claro);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;

    .footer_sup {
        width: 80%;
        height: 150px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;

        .logo {
            width: 200px;
            height: 100px;
        }
        .citas {
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
            font-size: 1em;
            color: var(--blanco);
            gap: 10px;
            .telefono_citas {
                font-size: 2em;
                color: var(--rosa);
            }
        }

        .redes {
            color: var(--blanco);
            width: 400px;
            height: 80px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;
            z-index: 6;
            gap: 20px;
            .circle {
                width: 40px;
                height: 40px;
                cursor: pointer;
                background-color: var(--semiblanco);
                border-radius: 50%;
            }
            .circle:hover {
                background-color: var(--rosa);
            }
        }
    }
    .footer_body {
        width: 80%;
        height: auto;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        border-top: solid 1px var(--semiblanco);
        border-bottom: solid 1px var(--semiblanco);
        padding-top: 20px;
        padding-bottom: 20px;
        gap: 20px;
        .body_tittle {
            font-size: 1.2em;
            font-weight: 600;
            color: var(--blanco);
        }
        .body_logo {
            height: 150px;
            max-width: 250px;
        }

        .columna {
            width: 40%;
            min-width: 350px;
            max-width: 400px;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            gap: 10px;
            font-size: 1em;
            font-weight: lighter;
            .columna_tittle {
                font-size: 1.2em;
                font-weight: normal;
                letter-spacing: .25em;
                color: var(--blanco);
            }
        }
    }
    .footer_inf {
        width: 80%;
        height: 100px;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        color: var(--gris_claro);
        font-size: 1em;
        font-weight: lighter;
    }
}


@media screen and (max-width: 990px) {
    .footer {

        .footer_sup {
            flex-direction: column;
            gap: 20px;
            padding-bottom: 20px;
            width: 80%;
            height: auto;
            .redes {
                justify-content: center;
            }
        }

        .footer_body {
            width: 70%;

            .columna {
                width: 90%;
                height: auto;
            }
            .columna_der {
                width: 90%;
                height: auto;
                padding: 20px 0;
            }
        }
        .footer_inf {
            justify-content: center;
            width: 80%;
        }
    }
}