﻿@media screen and (min-width: 1690px) {
    .main-footer {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        height: 12rem;
        width: 100%;
        background-color: var(--colorGrayFooter);
        grid-area: footer;
    }

    .main-footer-sociales{
        display: flex;
        flex-direction: column;
        gap: 1rem;

    }

        .main-footer-sociales > div {
            display: flex;
            flex-direction: row;
            gap: 2rem;
            align-items: center;
            justify-content: center;
        }

    .main-footer-sociales img {
        height: 2.3rem;
        width: 2.3rem;
    }

    .main-footer-terminos {
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }

        .main-footer-terminos > div {
            display: flex;
            flex-direction: row;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-terminos > img {
            height: 3rem;
            width: 10rem;
        }

        .main-footer-terminos > div div:not(:last-child) {
            border-right: 0.1rem solid var(--colorWhite);
            padding-right: 0.7rem;
        }

        .main-footer-terminos > div span {
            font-family: var(--fuenteLightLight);
            font-weight: 400;
            font-size: 1.1rem;
            color: var(--colorWhite);
        }

        .main-footer-terminos > div a {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 1.1rem;
            color: var(--colorMenuDrop);
            text-decoration: none;
        }
}

/* Schermi Desktop o Portatili */
@media screen and (min-width: 1280px) and (max-width: 1689px) {
    .main-footer {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        height: 12rem;
        width: 100%;
        background-color: var(--colorGrayFooter);
        grid-area: footer;
    }

    .main-footer-sociales {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .main-footer-sociales > div {
            display: flex;
            flex-direction: row;
            gap: 2rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-sociales img {
            height: 2.3rem;
            width: 2.3rem;
        }

    .main-footer-terminos {
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }

        .main-footer-terminos > div {
            display: flex;
            flex-direction: row;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-terminos > img {
            height: 3rem;
            width: 9rem;
        }

        .main-footer-terminos > div div:not(:last-child) {
            border-right: 0.1rem solid var(--colorWhite);
            padding-right: 0.7rem;
        }

        .main-footer-terminos > div span {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 1.1rem;
            color: var(--colorWhite);
        }

        .main-footer-terminos > div a {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 1.1rem;
            color: var(--colorMenuDrop);
            text-decoration: none;
        }
}

/* Tablet in modalità horizontal */
@media screen and (min-width: 737px) and (max-width: 1279px) {
    .main-footer {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        justify-content: center;
        height: 12rem;
        width: 100%;
        background-color: var(--colorGrayFooter);
        grid-area: footer;
    }

    .main-footer-sociales {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .main-footer-sociales > div {
            display: flex;
            flex-direction: row;
            gap: 2rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-sociales img {
            height: 1.8rem;
            width: 1.8rem;
        }

    .main-footer-terminos {
        display: flex;
        flex-direction: row;
        gap: 3rem;
    }

        .main-footer-terminos > div {
            display: flex;
            flex-direction: row;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-terminos > img {
            height: 2rem;
            width: 7rem;
        }

        .main-footer-terminos > div div:not(:last-child) {
            border-right: 0.1rem solid var(--colorWhite);
            padding-right: 0.7rem;
        }

        .main-footer-terminos > div span {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--colorWhite);
        }

        .main-footer-terminos > div a {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--colorMenuDrop);
            text-decoration: none;
        }
}

/* Tablet in modalità verticale */
@media screen and (min-width: 481px) and (max-width: 736px) {
    .main-footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        height: 15rem;
        width: 100%;
        background-color: var(--colorGrayFooter);
        grid-area: footer;
    }

    .main-footer-sociales {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .main-footer-sociales > div {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-sociales img {
            height: 1.8rem;
            width: 1.8rem;
        }

    .main-footer-terminos {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

        .main-footer-terminos > div {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-terminos > img {
            height: 2rem;
            width: 7rem;
        }

        .main-footer-terminos > div div:not(:last-child) {
            border-bottom: 0.1rem solid var(--colorWhite);
            padding-bottom: 0.7rem;
        }

        .main-footer-terminos > div span {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--colorWhite);
        }

        .main-footer-terminos > div a {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--colorMenuDrop);
            text-decoration: none;
        }
}

/* Smartphone o piccoli Tablet */
@media screen and (max-width: 480px) {
    .main-footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
        height: 15rem;
        width: 100%;
        background-color: var(--colorGrayFooter);
        grid-area: footer;
    }

    .main-footer-sociales {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

        .main-footer-sociales > div {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-sociales img {
            height: 1.8rem;
            width: 1.8rem;
        }

    .main-footer-terminos {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        justify-content: center;
    }

        .main-footer-terminos > div {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            align-items: center;
            justify-content: center;
        }

        .main-footer-terminos > img {
            height: 2rem;
            width: 7rem;
        }

        .main-footer-terminos > div div:not(:last-child) {
            border-bottom: 0.1rem solid var(--colorWhite);
            padding-bottom: 0.7rem;
        }

        .main-footer-terminos > div span {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--colorWhite);
        }

        .main-footer-terminos > div a {
            font-family: var(--fuenteLight);
            font-weight: 400;
            font-size: 0.8rem;
            color: var(--colorMenuDrop);
            text-decoration: none;
        }
}