.pie{
    background-color: var(--negro);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;

   .pie_sup {
       width: 80%;
       max-width: 1200px;
       height: 200px;
       display: flex;
       flex-direction: row;
       align-items: center;
       justify-content: flex-start;
       gap: 50px;
       .sello {
           width: 180px;
       }
       .descripcion {
           min-width: 400px;
           max-width: 500px;
           display: flex;
           flex-direction: column;
           align-items: flex-start;
           justify-content: center;
           color: var(--gris_claro);
       }
       .direccion {
           min-width: 400px;
           max-width: 500px;
           display: flex;
           flex-direction: column;
           align-items: flex-start;
           justify-content: center;
           color: var(--gris);
       }
   }
    .copyright {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 20px;
        font-size: .85em;
        font-weight: lighter;
        color: var(--gris_claro);
        padding: 50px 0;
        .legal{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 20px;
            color: var(--rojoclaro);
        }
    }
}

/* MAXIMIZAR Y MINIMIZAR  */


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

    .pie {
        .pie_sup {
            padding-top: 20px;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            height: auto;
            padding-bottom: 20px;
        }
        .copyright {
           justify-content: center;
            text-align: center;
            padding-bottom: 100px;
        }
    }
}
