* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

h1, h2, h3, p {
    margin: 0;
}

h2.texto-chamada {
    color: #fff;
    font-weight: 400;
    font-size: 1.8rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
}

.uma-coluna {
    display: flex;
    flex-direction: column;
    gap: 50px;
    text-align: center;
    align-items: center;
}

.duas-colunas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.coluna-esquerda {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.coluna-esquerda p {
    text-align: justify;
}

.coluna-direita {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: justify;
}

/* header */
.header {
    background-image: url(/assets/img/bg1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

.header-conteudo {
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-conteudo img {
    width: 30%;
}

.header-conteudo i {
    color: #F18200;
    font-size: 5rem;
}

.header-conteudo h1 {
    color: #F18200;
    font-weight: 500;
    font-size: 3rem;
}

.header-conteudo h2 {
    color: #fff;
    font-weight: 400;
    font-size: 2.5rem;
}

/* empresa */
.coluna-esquerda h2 {
    color: #F18200;
    font-weight: 500;
    font-size: 2rem;
}

.coluna-direita img {
    width: 100%;
    border-radius: 10px;
}

.grade-fotos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.grade-fotos img {
    width: 100%;
}

/* chamada1 */
.chamada1 {
    background-image: url(/assets/img/bg2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.uma-coluna i {
    color: #F18200;
    font-size: 5rem;
}

.btn-fale-conosco {
    all: unset;
    border: 2px solid #fff;
    width: 200px;
    text-align: center;
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-fale-conosco:hover {
    background-color: #F18200;
}

.btn-fale-conosco a {
    color: #fff;
    text-decoration: none;
}

/* servicos */
.grade-servicos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.servicos-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.servicos-item h3 {
    font-size: 1.5rem
}

.servicos-item i {
    color: #F18200;
    font-size: 5rem;
}

/* chamada2 */
.chamada2 {
    background-image: url(/assets/img/bg3.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

/* fale conosco */
.fale-conosco {
    text-align: center;
}

.fale-conosco h2 {
    color: #F18200;
    font-weight: 500;
    font-size: 2rem;
}

.item-fale-conosco p {
    font-size: 1.2rem;
}

.item-fale-conosco i {
    font-size: 3rem;
}

.item-fale-conosco i.bi-geo-alt-fill {
    color: #FF0000;
}

.item-fale-conosco i.bi-whatsapp {
    color: #01C500;
}

.icon-social {
    display: flex;
    gap: 40px;
}

.icon-social i {
    font-size: 3rem;
    color: #000;
}

/* footer */
.footer {
    padding: 20px;
    background-color: #F18200;
    text-align: center;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.btn-whatsapp {
    background-color: #01C500;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 1rem;
    display: flex;
    transition: 0.3s;
}

.btn-whatsapp:hover {
    background-color: #009d00;
}

.btn-whatsapp i {
    margin-right: 10px;
}


@media screen and (max-width: 720px) {
    .header {
        background-attachment: unset;
    }

    .header img {
        width: 50%;
    }

    .chamada1 {
        background-attachment: unset;
    }

    .chamada2 {
        background-attachment: unset;
    }

    .duas-colunas {
        grid-template-columns: 1fr;
    }

    .grade-fotos {
        grid-template-columns: 1fr;
    }

    .grade-servicos {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .item-fale-conosco p {
        font-size: 1rem;
    }
}