* {
    font-family: "Poppins", sans-serif;
}

header {
    background-color: #1d253b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    background-color: white;
    border-radius: 50%;
    margin: 50px;
}

header img {
    width: 150px;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 600px;
    padding: 10px;
    box-sizing: border-box;
}

.btn-whatsapp {
    box-sizing: border-box;
    padding: 7px 20px;
    background-color: #33da00;
    border-radius: 10px;
    font-weight: bolder;
    color: #fff;
    margin: 20px 0;
    transition: all ease-in-out 0.3s;
    cursor: pointer;
}

.btn-whatsapp:hover {
    box-sizing: border-box;
    background-color: #33da0000;
    border: 1px solid #33da00;
    color: #33da00;

}

h3 {
    font-size: 42px;
}

.bottom-margin {
    margin-bottom: 20px;
}

.section-banner {
    width: 100%;
    height: 700px;
    /* height: 400px; */
    background-image: url('../img/suporte/banner.png');
    background-size: cover;
    background-position: center;
    border-top: 6px solid #2b3757;
    border-bottom: 4px solid #1d253b;
}



.section-serviços {
    background-color: #2b3757;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 40px;
    border-bottom: 2px solid #757c91;
}

.servico-card {
    width: 280px;
    height: 370px;
    background-color: #1d253b;
    border-radius: 5px;
    color: #fff;
    border: 1px solid #303d5f;
    box-shadow: 2px 2px 10px #1d253b;
}

.servico-card img {
    border-radius: 5px 5px 0 0;
    width: 100%;
}

.servico-texto {
    padding: 15px;
}

.servico-texto h2 {
    font-weight: bold;
}

.servico-texto p {
    font-weight: 300;
    color: #757c91;
}


.section-contato {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 500px;
    padding: 50px;
}

footer {
    background-color: #2b3757;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (max-width: 1000px) {
    
    h3{
        text-align: center;
    }

    .hero {
        padding: 5px;
    }

    .hero p {
        font-weight: 400;
        font-size: 18px;
        text-align: center;
        padding: 10px;
    }


    .btn-whatsapp {
        padding: 10px 50px;
        font-size: 25px;
    }


    .section-banner {
        background-image: url('../img/logo/logo.png');
        background-size: 300px;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #121725;
    }

    .mapa {
        width: 60%;
        box-shadow: 1px 1px 10px #1d253b;
    }

}


@media (max-width: 600px) {

    h3 {
        font-size: 30px;
        font-weight: bolder;
        text-align: center;
    }

    .hero {
        padding: 5px;
    }

    .hero p {
        font-weight: 500;
        font-size: 18px;
        text-align: center;
        padding: 5px;
    }


    .btn-whatsapp {
        padding: 20px 80px;
        font-size: 25px;
    }


    .section-banner {
        background-image: url('../img/logo/logo.png');
        background-size: 300px;
        background-repeat: no-repeat;
        background-position: center;
        background-color: #121725;
    }

    .mapa {
        width: 60%;
        box-shadow: 1px 1px 10px #1d253b;
    }

}