﻿:root {
    --color--background--gradient--main: #fafafa;
    --color--background--gradient--secondary: #fafafa;
}

.footer-container {
    background: rgb(19,33,51);
    /*background:#fff;*/
    position:relative;
    /*z-index:-1;*/
}

.footer-wrap {
    max-width: 1000px;
    /*padding: 2rem 0 0 0;*/
}

.footer-title {
    /*color: #000;*/
    color:#fff;
    margin-bottom: 1rem;
    font-size: 18px;
    font-weight:600;
}

    .footer-title i {
        font-size: 1.4rem;
    }

.footer-link {
    color: rgba(255,255,255,0.50);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size:14px;
    font-weight:500;
    width:fit-content;
}
.footer-link:hover{
    color:rgba(255,255,255,1);
}

.footer-icon {
    width: 32px;
    height: auto;
    margin-right: 5px;
}

.politicas {
    font-size: 12px;
    color: #fff;
}

    .politicas p {
        color: rgba(255,255,255,0.5);
    }

    .politicas a {
        color:#fff !important;
        text-decoration: none;
        font-weight: 500;
    }

        .politicas a:hover {
            text-decoration: underline;
        }

.footer-contactos ul {
    padding: 0;
    list-style-type: none;
}

    .footer-contactos ul li {
        list-style: none;
    }

        .footer-contactos ul li a {
            width: 50px;
            height: 50px;
            background-color: #fff;
            text-align: center;
            line-height: 47px;
            font-size: 25px;
            margin-right: 1rem;
            display: block;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            border: 3px solid #fff;
            z-index: 1;
        }

            .footer-contactos ul li a .icon {
                position: relative;
                color: #262626;
                transition: .5s;
                z-index: 3;
            }

            .footer-contactos ul li a:hover .icon {
                color: #fff;
                transform: rotateY(360deg);
            }

            .footer-contactos ul li a:before {
                content: "";
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                height: 100%;
                background: #f00;
                transition: .5s;
                z-index: 2;
            }

            .footer-contactos ul li a:hover:before {
                top: 0;
            }

        .footer-contactos ul li:nth-child(1) a:before {
            background: #3b5999;
        }

        .footer-contactos ul li:nth-child(2) a:before {
            background: rgb(138,58,185);
            background: linear-gradient(180deg, rgba(138,58,185,1) 0%, rgba(233,89,80,1) 35%, rgba(252,204,99,1) 100%);
        }

        .footer-contactos ul li:nth-child(3) a:before {
            background: #0077b5;
        }

@media only screen and (max-width: 768px) {
    .footer-container{
        padding-bottom:0;
    }
    .footer-wrap {
        padding: 2rem 2rem 5rem 2rem;
    }

    .footer-title {
        font-size:14px;
        margin-top: 1rem;
        margin-bottom:0.8rem;
    }
    .footer-link{
        font-size:12px;
    }
    .politicas{
        font-size:10px;
    }

}
