:root {
    --azul-claro: #F6F9FE;
    --branco: #fff;
    --preto: #000;
    --preto-transparencia: #0000006e;
    --preto-fosco: #262626;
}

* {
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    line-height: auto;
    text-decoration: none;
    box-sizing: border-box;
    font-weight: inherit;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    background-color: var(--azul-claro);
    scroll-behavior: smooth;
}

body {
    width: 100vw;
    overflow-x: hidden;
    background-color: var(--azul-claro) !important;
}

section {
    width: 100vw;
    background-color: var(--azul-claro) !important;
}

.btnPrincipal {
    font-family: "Figtree", sans-serif;
    font-weight: 500;
    text-decoration: none;
    background-color: var(--azul-claro);
    color: var(--preto-fosco);
    border: 1px solid var(--preto-fosco);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    border-radius: 10px;
    text-align: center;
}

.btnConversar {
    background-color: #04297a;
    color: var(--branco);
    text-decoration: none !important;
    border-radius: 12px;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    font-size: 16px;
    padding: 10px 10px;
}

.imgCliente {
    display: flex;
    justify-content: center;
    width: 96.7vw !important;
    left: 3%;
    position: relative;
    border-radius: 12px;
    background-color: var(--azul-claro) !important;
    margin: 7rem 0 5rem -2rem;
    overflow: hidden;
}

.paginas-topo {
    padding: 0 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.paginas-topo img {
    width: 100%;
}

.pagina-descricao {
    padding: 5rem 20rem !important;
}

.pagina-descricao h2 {
    font-family: "Figtree", sans-serif;
    font-weight: 600;
}

.pagina-descricao p {
    font-family: "Figtree", sans-serif;
    font-weight: 400;
}

.pagina-descricao .acoes {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
    padding: 0 8rem !important;
}

.titulo-pagina {
    position: absolute;
    left: 16%;
    top: 5rem;
}

.titulo-pagina h2 {
    font-family: "Figtree", sans-serif;
    font-weight: 600;
    font-size: 45px;
}

.rota {
    background-color: var(--branco);
    width: 72%;
    padding: 7px 20px;
    border-radius: 8px;
}

.rota p {
    color: #868686;
    margin: 0px;
}

.rota p span {
    color: var(--preto-fosco);
    font-weight: 500;
    margin: 0px;
}

hr.linha {
    position: relative;
    left: 15%;
    width: 67.6%;
}

#pagina-acoes {
    display: flex;
    padding: 5rem 25rem;
    align-items: center;
    justify-content: center;
}

#pagina-acoes span {
    font-size: 27px;
    font-weight: 500;
}


@media (min-width: 320px) and (max-width: 768px) {
    .imgCliente {
        height: 12rem;
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .titulo-pagina {
        position: absolute;
        left: 3%;
        top: 4rem;
    }

    .titulo-pagina h2 {
        font-size: 32px;
    }

    .rota {
        width: 95% !important;
    }

    .rota p {
        font-size: 14px;
    }

    .imgCliente {
        left: 1%;
        border-radius: 14px;
        margin: 8px 0 2rem 0px !important;
    }

    .pagina-descricao {
        padding: 3rem 10px 3rem 10px !important;
    }

    .pagina-descricao p {
        line-height: 16px;
        font-size: 14px;
    }

    .paginas-topo {
        padding: 0 9px !important;
        display: flex;
    }

    .pagina-descricao .acoes {
        margin: 4rem 0;
        padding: 0 8px !important;
    }

    .acoes h3 {
        font-size: 22px;
        margin: 0px;
        line-height: 23px;
    }

    hr.linha {
        left: 3%;
        width: 93.6%;
    }

    #pagina-acoes {
        padding: 4rem 10px;
        gap: 1rem;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .rota p {
        font-size: 12px !important;
    }
}

@media (min-width: 1921px) and (max-width: 2560px) {
    .titulo-pagina {
        left: 19%;
        top: 12rem;
    }

    .rota p {
        color: #868686;
        margin: 0px;
        font-size: 25px;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
	body {
		width: 100%;
	}
	
	section {
		width: 100%;
	}
}