/* =====================================================
   CONTATO
===================================================== */

.contato {
    width: 100%;

    padding: 60px 0 35px 0;

    background: #ffffff;
}


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

.contato-container {
    width: 100%;

    max-width: 1400px;

    margin: 0 auto;
}


/* =====================================================
   CABEÇALHO
===================================================== */

.contato-cabecalho {
    width: 100%;

    margin-bottom: 60px;

    padding: 42px 45px 38px 45px;

    background: #eeeeee;
}


.contato-cabecalho span {
    display: block;

    margin-bottom: 13px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    line-height: 1;

    font-weight: 400;

    letter-spacing: 4px;

    color: #9fa4a8;

    text-transform: uppercase;
}


.contato-cabecalho h2 {
    margin: 0;

    font-family: 'Oswald', Arial, Helvetica, sans-serif;

    font-size: 62px;

    line-height: 1;

    font-weight: 600;

    letter-spacing: -1px;

    color: #153b67;

    text-transform: uppercase;
}


/* =====================================================
   DUAS COLUNAS
===================================================== */

.contato-intro {
    width: calc(100% - 90px);

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 55px;

    align-items: stretch;
}


/* =====================================================
   MAPA
===================================================== */

.contato-mapa {
    width: 100%;

    height: 520px;

    overflow: hidden;

    background: #eeeeee;
}


.contato-mapa iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


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

.contato-conteudo {
    width: 100%;

    min-height: 520px;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
}


/* =====================================================
   TÍTULO
===================================================== */

.contato-conteudo h3 {
    margin: -4px 0 25px 0;

    font-family: 'Oswald', Arial, Helvetica, sans-serif;

    font-size: 45px;

    line-height: 1.02;

    font-weight: 600;

    letter-spacing: -0.4px;

    color: #153b67;

    text-transform: uppercase;
}


/* =====================================================
   TEXTO INTRODUTÓRIO
===================================================== */

.contato-introducao {
    max-width: 650px;

    margin: 0 0 15px 0;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.65;

    font-weight: 400;

    color: #555555;
}


.contato-introducao strong {
    font-weight: 700;

    color: #153b67;
}


/* =====================================================
   ITENS DE CONTATO
===================================================== */

.contato-item {
    width: 100%;

    padding: 16px 0;

    border-bottom: 1px solid #e3e3e3;
}


.contato-label {
    display: block;

    margin-bottom: 6px;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 10px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 2px;

    color: #a6a6a6;

    text-transform: uppercase;
}


/* =====================================================
   LINKS
===================================================== */

.contato-item a {
    display: inline-block;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 16px;

    line-height: 1.5;

    font-weight: 600;

    color: #153b67;

    text-decoration: none;

    transition: color 0.3s ease;
}


.contato-item a:hover {
    color: #0792bc;
}



/* =====================================================
   ENDEREÇO
===================================================== */

.contato-endereco a {
    font-size: 14px;

    line-height: 1.6;

    font-weight: 400;

    color: #555555;
}


.contato-endereco a:hover {
    color: #153b67;
}


/* =====================================================
   BOTÃO
===================================================== */

.contato-botao {
    display: inline-block;

    margin-top: 25px;

    padding: 15px 25px;

    background: #153b67;

    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;

    font-size: 11px;

    line-height: 1;

    font-weight: 700;

    letter-spacing: 0.7px;

    text-decoration: none;

    text-transform: uppercase;

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.contato-botao:hover {
    background: #0792bc;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =====================================================
   NOTEBOOK
===================================================== */

@media screen and (max-width: 1250px) {

    .contato-intro {
        width: calc(100% - 60px);
    }


    .contato-cabecalho {
        padding-left: 30px;

        padding-right: 30px;
    }


    .contato-conteudo h3 {
        font-size: 41px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 1000px) {

    .contato {
        padding-top: 50px;

        padding-bottom: 80px;
    }


    .contato-cabecalho {
        margin-bottom: 45px;

        padding-top: 35px;

        padding-bottom: 32px;
    }


    .contato-cabecalho h2 {
        font-size: 54px;
    }


    .contato-intro {
        gap: 40px;
    }


    .contato-mapa {
        height: 500px;
    }


    .contato-conteudo {
        min-height: 500px;
    }


    .contato-conteudo h3 {
        font-size: 37px;
    }


    .contato-introducao {
        font-size: 14px;

        line-height: 1.6;
    }

}


/* =====================================================
   TABLET PEQUENO
===================================================== */

@media screen and (max-width: 800px) {

    .contato-intro {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .contato-mapa {
        height: 420px;
    }


    .contato-conteudo {
        min-height: auto;
    }

}


/* =====================================================
   CELULAR
===================================================== */

@media screen and (max-width: 600px) {

    .contato {
        padding: 40px 0 60px 0;
    }


    .contato-cabecalho {
        margin-bottom: 35px;

        padding: 30px 22px 27px 22px;
    }


    .contato-cabecalho span {
        margin-bottom: 10px;

        font-size: 10px;

        letter-spacing: 3px;
    }


    .contato-cabecalho h2 {
        font-size: 43px;
    }


    .contato-intro {
        width: calc(100% - 44px);

        gap: 30px;
    }


    .contato-mapa {
        height: 330px;
    }


    .contato-conteudo h3 {
        margin-bottom: 22px;

        font-size: 34px;

        line-height: 1.04;
    }


    .contato-introducao {
        font-size: 15px;

        line-height: 1.65;
    }


    .contato-item {
        padding: 15px 0;
    }


    .contato-item a {
        font-size: 15px;
    }


    .contato-endereco a {
        font-size: 14px;
    }


    .contato-botao {
        margin-top: 25px;

        padding: 15px 20px;
    }

}