/*faixa com empresas parceiras*/
.secao-empresas {
    display: flex;
    justify-content: center;

    width: 100%;
    height: fit-content;
    padding-top: 1%;
    padding-bottom: 1%;
    background-color: white;

    background: linear-gradient(to right, #b9e9ed, white);
}

.secao-empresas div {
    display: grid;
    width: 1300px;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    align-items: center;
    justify-content: space-between;
}

.secao-empresas img {
    width: 100%;
    min-width: 90px;
    margin: 0 auto;
}

.secao-empresas .img-alta
{
    max-width: 65%; min-width: 70px;
}

/*Seção "Como funciona"*/
.secao-funciona {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    padding-top: 100px;
    background: radial-gradient(circle at 83% -550px, #50bec8, #387190 44%);
}
.secao-funciona-passos {
    display: flex;
    flex-direction: row;
    align-items: start;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.proximo {
    margin-top: 58px;
}
.secao-funciona-passos img {
    width: 150px;
}
.secao-funciona-passos h3 {
    font-size: 25px;
    margin-top: 0;
    margin-bottom: 0;
}

/*Seção "nossos serviços"*/
.nossos-servicos {
    display: flex;
    flex-direction: column;
    align-items: center;

    margin-top: 200px;
}
.nossos-servicos-conteudo{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    height: fit-content;
    max-width: 2000px;
    
}
.nossos-servicos img{
    width: 56px;
}
.nossos-servicos-botao {
    font-size: 16px;
    font-weight: 600;


    width: 170px;
    height: 150px;
    padding: 20px;
    margin-bottom: 100px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    background-color: #214e6c;   
    color: white;            

    border-style: solid;
    border-color: white;
    border-width: 2px;
    border-radius: 10px;

    position: relative;
    overflow: hidden;

    transition: color .3s ease;
    z-index: 0;
}


.nossos-servicos-botao::before {
    content: "";
    position: absolute;

    left: 0;
    top: 0;

    width: 0%;
    height: 100%;

    background: white;   
    transition: width .4s ease;

    z-index: -1;           
}

.nossos-servicos-botao:hover::before {
    width: 100%;           
}

.nossos-servicos-botao:hover {
    color: #1b1f42;          
}

.nossos-servicos-botao.ativo {
    background-color: #fefefe;
    border-color: #3fa191;
    color: #214e6c;
    box-shadow: 0 0 15px #2d9990;
}

.nossos-servicos-botao.ativo:hover {
    color: #266ce0;
}

.nossos-servicos-outdoor {
    width: 600px;
    height: 285px;
    
    background-color: #214e6c;
    border: 2px solid white;
    border-radius: 10px;
    
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    margin-top: 100px;
    box-sizing: border-box;
}

.nossos-servicos-outdoor-conteudo {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-width: 500px;
    gap: 30px;
}

.nossos-servicos-outdoor-imagem {
    height: auto;
    object-fit: contain;
}

.nossos-servicos-outdoor-textos {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.nossos-servicos-outdoor-textos h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.nossos-servicos-outdoor-textos p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.outdoor-celular {
    display: none;
}

/*Seção "Infrastrutura"*/

.infraestrutura {
    color: #1b1f42;
    background-color: white;
    background: linear-gradient(to right, #b9e9ed, white 48%);

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    max-width: 100%;
    margin: 0 auto;
    gap: 80px;

    margin-top: 200px;
    padding-top: 50px;
    padding-bottom: 50px;
    

}
.infraestrutura img {
    max-width: 40%;
}

.infraestrutura div {
    max-width: 500px;

}

.infraestrutura ul {
    display: grid;
    justify-content: space-between;
    align-items: center;
    grid-template-columns: 200px 200px;
    grid-template-rows: 1fr 1fr 1fr;

    height: 250px;

    padding-left: 0;
    margin-top: 30px;
}

/*Seção "Certificações"*/
.certificacoes{
    margin-top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.certificacoes div{
    width: 90%;
    padding: 10px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 50px;
    border-radius: 10px;

    background-color: white;
    background: linear-gradient(to right, #b9e9ed, white);

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}
.certificacoes img{
    width: 12%;
    max-width: 200px;
}

/*Seção "Sobre nós"*/
.sobre-nos {
    margin-top: 200px;
    padding-bottom: 100px;

    width: 100%;
    background: linear-gradient(to top,  #214e6c, transparent 90%);
}

.sobre-nos-conteudo {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    margin: auto;
    justify-content: center;
}


.sobre-nos ul {
    display: flex;
    flex-direction: column;
    height: 482px;
    max-width: 700px;
    justify-content: space-between;
    gap: 10px;
    padding: 0;
}

.sobre-nos li {
    display: flex;
    align-items: center;

    background-color: white;
    background: linear-gradient(to right, #b9e9ed, white 40%);
    color: #1b1f42;
    padding: 5px 20px 10px 20px;

    border-radius: 15px;
}
.sobre-nos img{
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

