.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4%;
}

:root{
    --cor1: #9500A4;
    --cor2: #008ED5;
}

/* ESTILO DO CABEÇALHO */

header {
    width: 100%;
    height: auto;
    padding: 30px 2%;
    box-shadow: 2px 2px 7px 0px #00000043;
    z-index: 99999;
    position: sticky;
    top: 0;
    left: 0;
    background-color: var(--cor1);
}

.ajuste-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logotipo {
    width: 20%;
}

.logo-mob {
    display: none;
}

.logotipo img {
    width: 75%;
    max-width: 280px;
}

.menu-desk {
    width: 80%;
    text-align: right;
}

.menu-desk nav a {
    color: #fff;
    font-weight: 600;
    padding: 10px 15px;
    text-decoration: none;
    font-size: 14px;
    transition: .2s;
}

.menu-desk nav a.cliente-btn {
    background-color: var(--cor2);
    color: #fff;
    border-radius: 10px;
    transition: .2s;
    box-shadow: 2px 2px 7px 0px #00000043;
    padding: 5px 20px;
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
}

.menu-desk nav a.cliente-btn i {
    font-size: 28px;
    margin-right: 10px;
    color: #fff;
}

.menu-desk nav a:not(.cliente-btn):hover {
    color: var(--cor2);
}

.menu-desk nav a.cliente-btn:hover {
    background-color: var(--cor2);
    color: #fff;
    transform: scale(1.05);
}


.anatel{
    width: 100%;
}

.div-anatel{
    text-align: center;
}

.img-anatel{
    width: 20%;
}
/* ESTILO DO MENU MOBILE */

.menu-mobile {
    width: 100%;
    height: 0;
    background-color: var(--cor2);
    position: fixed;
    top: 100px;
    left: 0;
    visibility: hidden;
    transition: .5s;
    overflow: hidden;
    z-index: 9999;
}

.menu-mobile nav a {
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    padding: 15px 0;
    font-size: 26px;
    font-weight: 300;
    transition: .2s;
}

.menu-mobile nav a:hover {
    background-color: var(--cor1);
    color: #fff;
    transform: scale(1.05);
}

#btn-menu {
    background: transparent;
    width: 40px;
    height: 40px;
    outline: none;
    cursor: pointer;
    border: 0;
    transition: .2s;
    display: none;
    position: relative;
    top: 3%;
    right: 0;
    margin-right: 20px;
}

.linha {
    position: relative;
    top: 3px;
    height: 4px;
    background: #fff;
    width: 40px;
    display: block;
    margin: 8px auto;
    transform-origin: center;
    transition: .2s;
    border-radius: 20px;
}

#btn-menu.ativo .linha:nth-child(1) {
    transform: translateY(12px) rotate(-45deg);
    background-color: #fff;
}

#btn-menu.ativo .linha:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
    background-color: #fff;
}

#btn-menu.ativo .linha:nth-child(2) {
    width: 0;
}

@media screen and (max-width: 980px) {
    header {
        background-color: var(--cor1);
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999999999;
    }

    .menu-desk {
        display: none;
    }

    .logo-desk {
        display: none;
    }

    .logo-mob {
        display: block;
    }

    .logotipo {
        width: 25%;
    }

    .logotipo img {
        width: 70%;
        min-width: 120px;
        max-width: 320px;
    }

    #btn-menu {
        display: block;
    }

    .menu-mobile.abrir {
        visibility: visible;
        height: calc(100vh - 100px);
    }
}

section.acesso-rapido {
    padding: 80px 0;
    background-color: #e6e6e6;
}

.ajuste-acesso {
    justify-content: center;
    gap: 60px;
    display: flex;
    margin-top: 60px;
}

.ajuste-acesso a {
    text-decoration: none;
}

.ajuste-acesso button {
    width: 260px;
    display: flex;
    align-items: center;
    text-align: left;
    font-weight: 200;
    padding: 10px 20px;
    border: 0;
    background-color: #fff;
    border-radius: 40px 0px 40px 0;
    font-size: 18px;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: .2s;
    box-shadow: 0px 8px 0px 0px var(--cor1);
}

.ajuste-acesso button span {
    font-weight: 600;
    color: var(--cor1);
    font-size: 20px;
}

.ajuste-acesso button:hover {
    transform: scale(.9);
}

.ajuste-acesso button i {
    font-size: 3rem;
    margin-right: 20px;
    color: #000;
}

@media screen and (max-width: 980px) {
    .ajuste-acesso {
        gap: 30px;
        align-items: center;
        flex-direction: column;
    }
}

footer {
    padding: 50px 0 20px 0;
    background-color: #000;
}

.line-top,
.line-down {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-box {
    width: 25%;
    text-align: center;
}

.footer-box img {
    width: 50%;
}

.footer-box:nth-child(2) {
    color: #fff;
    font-size: 20px;
}

.footer-box:nth-child(2) i {
    color: #fff;
    background-color: var(--cor1);
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    margin-right: 15px;
}

.footer-box button:hover {
    transform: scale(.9);
}

.footer-box:nth-child(3) p {
    color: #fff;
}

.footer-box:nth-child(3) button {
    width: 190px;
    height: 40px;
    color: #fff;
    background-color: var(--cor1);
    font-size: 22px;
    border: 0;
    border-radius: 15px;
    cursor: pointer;
    transition: .2s;
}

.footer-box:nth-child(4) button {
    width: 50px;
    height: 50px;
    color: #fff;
    background-color: var(--cor1);
    font-size: 22px;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: .2s;
}

.line-down {
    display: flex;
    justify-content: space-around;
}

.line-down,
.line-meedle {
    border-top: 2px solid #353535;
    padding-top: 20px;
}

.line-down p,
.line-meedle p {
    color: #fff;
}

.line-down .footer-box-2:nth-child(2) {
    text-align: right;
}

.line-down img {
    width: 50%;
}

.line-meedle {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.line-meedle h4 {
    color: var(--cor1);
    font-size: 23px;
    margin-bottom: 15px;
}

.line-meedle a {
    display: block;
    color: #fff;
    margin-bottom: 10px;
}

.line-meedle p {
    margin-bottom: 15px;
    color: #fff;
}

.line-meedle i {
    font-size: 22px;
    color: var(--cor1);
    margin-right: 15px;
}

/* .endereco{
    cursor: pointer;
    text-decoration: underline;
} */

@media screen and (max-width: 980px) {
    footer {
        padding: 50px 5% 20px 5%;
    }

    .line-top,
    .line-down {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;

        flex-direction: column;
    }

    .line-meedle {
        flex-direction: column;
    }

    .line-meedle div {
        margin-bottom: 40px;
    }

    .footer-box {
        width: 100%;
        text-align: center;
        margin-bottom: 40px;
    }

    .footer-box:nth-child(3) {
        text-align: center;
    }

    .line-down {
        border-top: 2px solid #353535;
        padding-top: 20px;
    }

    .line-down p {
        text-align: center;
        font-size: 12px;
    }

    .line-down .footer-box-2:nth-child(3) {
        text-align: center;
        margin-top: 40px;
    }

    .img-anatel{
    width: 60%;
    }

}

@media screen and (min-width:768px) and (max-width:992px){

    .footer-box:nth-child(2), .footer-box:nth-child(3) {
    font-size: 16pt;
    }

    .line-meedle a, .line-meedle p{
        font-size: 16pt;
    }

    .line-down p{
        font-size: 16pt !important;
    }

    .line-down img {
    width: 70% !important;
    }
}