* {
    outline: none;
}

main {
    display: ƒlex;
    align-items: start;
    background-color: white;
}

.main-container-conteudo-empresa {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-imagem-produtos {
    width: 100%;
    height: 200px;
    background: url("../assets/papel_de_parede_produtos_para_piscinas.jpg") center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.conteudo-pagina {
    width: 70%;
}

h1 {
    margin: 10px 0;
}

h2 {
    margin: 20px 0;
    font-weight: 300;
}

p {
    margin: 20px 0;
    font-weight: 200;
}


.header-bottom {
    background-color: #174580;
}

.conteudo-da-tela-esquerda {
    width: 70%;
}

.conteudo-da-tela-direita {
    display: flex;
    justify-content: center;
    max-height: 100px;
}

.conteudo-da-tela-direita.mobile {
    width: 100%;
}

.conteudo-da-tela-direita.desk {
    width: 30%;
}

.descricao-produto {
    display: flex;
}

.descricao-produto.mobile {
    flex-direction: column;
    align-items: center;
}

.descricao-produto.desk {
    justify-content: space-between;
    align-items: flex-start;
}


.conteudo-da-tela-direita a {
    width: 90%;
}
.conteudo-da-tela-direita a button {
    margin: 10px 0;
    width: 100%;
    height: 80px;
    border: none;
    background: none;
    background-color: #174580;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: .4s;
    cursor: pointer;
}

button img {
    width: 215px;
}

button:hover {
    transform: scale(1.05);
}