/** Foooter **/
.footer {
    width: 100%;
    background-color: rgb(30,30,30);
}

.footer__content {
    padding: 80px 0;
    width: min(90%, 1400px);
    margin: 0 auto;
    overflow: hidden;
}

.footer__main {
    display: grid;
    gap: 1.5rem;
    justify-items: center;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.footer__link {
    color: white;
    text-decoration: none;
}

.footer__link:hover {
    text-decoration: underline;
}

.footer__copy {
    justify-self: center;
    background-color: var(--color-primario);
    color: var(--color-secundario);
    font-weight: 500;
    padding: 4px;
    border-radius: 6px;
}

.footer__info {
    line-height: 22px;
    color: white;
}

.footer__email {
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 0 1.5rem;
    background-color: transparent;
    color: white;
}

.footer__email::placeholder {
    color: white;
}

    .footer__contact {
        text-align: center;
    }

.footer__social {
    display: grid;
    grid-auto-flow: column;
    gap: 1rem;
}

.footer__social-links {
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer__copyright {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #fff;
}

.footer__copyright-text {
    text-align: center;
    color: white;
}

/** ESCRITORIO **/
@media (width >=900px) {

    /** Foooter **/
    .footer {
    width: 100%;
    background-color: rgb(30,30,30);
    }

    .footer__content {
        background-color: rgb(30,30,30);
    }

    .footer__main {
        width: 100%;
        margin: 0 auto;
        grid-template-columns: 2fr 55% 1fr;
        grid-template-areas:
            "logo links media"
            "contact news news";
        justify-items: start;
    }

    .footer__logo-link{
        margin-left: 15px;
    }

    .footer__links {
        grid-area: links;
        width: 100%;
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer__copy {
        justify-self: start;
    }

    .footer__contact {
        grid-area: contact;
        text-align: left;
    }

    .footer__newsletter {
        grid-area: news;
        align-self: start;
        justify-self: end;
    }

    .footer__email {
        border: 1px solid #fff;
        border-radius: 6px;
        padding: 0 1.5rem;
        background-color: transparent;
        color: white;
    }

    .footer__email::placeholder {
        color: white;
    }

    .footer__social {
        grid-area: media;
        justify-self: end;
    }

    .footer__copyright {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}