/* ==============================
   SEÇÃO REDE
================================= */

.rede {
    position: relative;
    /*min-height: 100vh;*/
    overflow: hidden;
    /*background: url("../../images/redes/bkp-page-redes.jpg");*/
    /*background-size: cover;*/
    padding: 0 0 150px 0;
}

/* ==============================
   CONTAINER
================================= */

.rede-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 650px;
    /*display: grid;*/
    /*grid-template-columns: 45% 55%;*/
}


/* ==============================
   CONTEÚDO
================================= */

.rede-content {
    padding: 60px 30px 40px 30px;
}

.rede-content h1 {
    margin-bottom: 18px;
    font-size: 30px;
    line-height: 1;
    font-weight: 700;
    color: #008c8c;
}


.rede-intro {
    max-width: 490px;
    font-size: 26px;
    line-height: 1.3;
    color: #333;
}


/* ==============================
   DESCRIÇÃO
================================= */

.rede-description {
    max-width: 740px;
    margin: 80px 0 180px 0;
}

.rede-description h2 {
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    color: #222;
}

.rede-description p {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.35;
    color: #555;
}

/* ==============================
   NAVEGAÇÃO
================================= */

.rede-navigation {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
}

.rede-item  {
    text-decoration: none!important;
    text-align: center;
    min-width: 100px;
}

.rede-item  strong {
    display: block;
    width: 100%;
    padding: 8px 15px;
    border: 1px solid #65b9bb;
    border-radius: 30px;
    background: rgba(255,255,255,.75);
    color: #333;
    font-size: 13px;
    transition: .3s ease;
     text-align: center;  
}


.rede-item:hover strong {
    background: #008c8c;
    color: #fff;
    /*transform: translateY(-2px);*/
}


/* Ícones */
.rede-icon {
    display: block;
    text-align: center;  
}
.rede-icon img{
    width: 65px;
    height: 65px;
    color: #008c8c;
    margin-bottom: 10px;
}




/* ==============================
   RESPONSIVO
================================= */

@media (max-width: 1100px) {

    .rede-container {
        grid-template-columns: 50% 50%;
    }

    .rede-content {
        padding-left: 30px;
    }

    .rede-intro {
        font-size: 15px;
    }

    .rede-description p {
        font-size: 12px;
    }

    .rede-navigation {
        padding: 0 20px;
    }

}


/* Tablet */

@media (max-width: 768px) {

    .rede-container {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }
    .rede-content {
        padding: 40px 25px 20px;
    }


    .rede-content h1 {
        font-size: 28px;
    }

    .rede-intro {
        max-width: 100%;

        font-size: 16px;
    }

    .rede-description {
        max-width: 100%;
        margin: 30px 0 0 0;
    }

    .rede-map {
        order: -1;

        min-height: 400px;
    }

    .rede-map img {
        max-width: 600px;
    }


    .rede-navigation {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;

        margin-top: 10px;

        padding: 20px;
    }

}


/* Mobile */

@media (max-width: 480px) {
    .rede-container {

        min-height: inherit;

    }
    .rede-content {
        padding: 30px 20px;
    }
    .rede-content h1 {
        font-size: 26px;
    }
    .rede-intro {
        font-size: 15px;
    }
    .rede-description h2 {
        font-size: 16px;
    }
    .rede-description p {
        font-size: 12px;
    }
    .rede-map {
        min-height: 300px;
    }
    .rede-map img {
        width: 110%;
        max-width: none;
        margin-left: -5%;
    }
    .rede-flags {
        top: 10px;
        right: 15px;
        font-size: 16px;
    }
    .rede-navigation {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 15px;
    }
    .rede-item {
        min-width: 0;
        justify-content: center;
        padding: 6px 8px;
        font-size: 11px;
    }
    .rede-icon {
    /*        width: 22px;
            height: 22px;*/

        font-size: 14px;
    }

}