* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

.top {
    min-width: 320px;
    min-height: 100px;
    width: 100%;
    height: 80px;
    background: linear-gradient(280deg, rgba(45, 103, 152, 1) 0%, rgba(59, 175, 191, 1) 100%);
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.logo img {
    width: 270px;
    padding-top: 5px;
}

.boxs-links {
    display: flex;
    justify-content: center;
    flex-flow: column nowrap;
}

.linha {
    min-width: 320px;
    min-height: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contatos {
    display: flex;
    flex-flow: row wrap;
    width: 900px;
    min-width: 320px;
    justify-content: space-evenly;
    margin-top: 55px;
}

.titulo {
    background: linear-gradient(280deg, rgba(45, 103, 152, 1) 0%, rgba(59, 175, 191, 1) 100%);
    position: relative;
    width: 100%;
    color: white;
    font-weight: 700;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 75px;
    letter-spacing: 1px;
}

.titulo-icone {
    text-decoration: none;
    position: relative;
    padding: 10px 15px;
    padding-right: 50px;
    border-radius: 40px;
    font-size: 1.5rem;
    text-align: center;
}

.icone-titulo {
    width: 38px;
    height: 38px;
    position: absolute;
    display: flex;
    justify-content: center;
    top: calc(0% - 1px);
    align-items: center;
    flex-direction: column;
    right: calc(0% + 10px);
}

.titulo-icone img {
    width: 30px;
    height: 30px;
}

.col-btn {
    display: flex;
    height: auto;
    width: 320px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin-bottom: 35px;
}

.btn {
    text-decoration: none;
    position: relative;
    padding: 10px 15px;
    padding-right: 50px;
    border-radius: 40px;
    text-align: center;
    background: linear-gradient(280deg, rgba(59, 175, 191, 1) 0%, rgba(45, 103, 152, 1) 100%);
}

.texto-button {
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5rem;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    text-align: center;
    color: white;
}

.telefone .texto-button {
    font-size: 1.7rem;
}

.icone img {
    width: 28px;
    height: auto;
}

.btn.whatsapp {
    background: linear-gradient(280deg, rgba(45,182,66,1) 0%, rgba(69,195,86,1) 100%);
}

.icone {
    background: linear-gradient(280deg, rgba(59, 175, 191, 1) 0%, rgba(45, 103, 152, 1) 100%);
    border-radius: 50px;
    border: solid 0.6px white;
    width: 38px;
    height: 38px;
    position: absolute;
    display: flex;
    justify-content: center;
    top: calc(0% + 2.5px);
    align-items: center;
    flex-direction: column;
    right: calc(0% + 5px);
}

.info-btn {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 600;
    line-height: 0.9rem;
    margin-top: 5px;
    position: relative;
}

.fonte-green{
    color: #3cbc4d;
}
.fonte-blue{
    color: #2f709d;
}

.whatsapp .icone {
    background: none;
    border: none;
}

.whatsapp .icone img {
    width: 45px;
    padding-top: 2px;
}

/*Box Endereços*/

.enderecos {
    width: 100%;
    justify-content: center;
    display: flex;
    flex-flow: column nowrap;
    align-content: center;
    align-items: center;
    margin-top: 22px;
}

.boxs-enderecos {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    min-width: 320px;
    justify-content: center;
    margin-top: 45px;    
}

.box-endereco {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 350px;
    border: solid 2px #2d6899;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 35px;
}

.boxs-enderecos .box-endereco {
    flex-basis: 250px;
    margin: 15px;
}

.icone-titulo-endereco {
    display: flex;
    flex-flow: column;
    justify-content: space-evenly;
    align-items: center;
    flex-basis: 120px;
    margin-bottom: 10px;
}

.icone-endereco img {
    width: 40px;
    height: 40px;
}

.titulo-endereco {
    font-size: 1.6rem;
    font-weight: 600;
    color: #005992;
}

.info-endereco {
    font-weight: 500;
    color: #005992;
    font-size: 0.9rem;
    line-height: 1.3rem;
    text-align: center;
}

.btn-criar-rota {
    margin-top: 40px;
}

a.btn-link-rota {
    display: flex;
    flex-flow: row nowrap;
    width: 188px;
    border: solid 2px #005992;
    color: #005992;
    padding: 15px 20px;
    transition: 0.5s ease;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1px;
    text-decoration: none;
}

a.btn-link-rota:hover {
    background: #005992;
    color: white;
    transition: 0.5s ease;
}

.links-uteis {
    margin-top: 50px;
    margin-bottom: 50px;
}

.links-uteis span {
    margin: 10px;
}

/*Mobile*/

@media only screen and (max-width: 760px){
    /*Box links*/
    .col-btn {
        margin-left: 10px;
        margin-right: 10px;
        margin-bottom: 25px;
    }
    /*Boxs Endereços*/
    .boxs-enderecos .box-endereco {
        flex-basis: 320px;
        margin-left: 10px;
    }
}

@media only screen and (max-width: 332px){
    .texto-button{
        font-size: 0.96rem;
    }
}
