/* CSS GLOBAL */
* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

main {
    padding-top: 60px;
}

/* ROBOTO
    font-family: "Roboto", sans-serif;
    font-weight: 100;

/* main */
.home-apresentacao {
    width: 100%;
    background-image: url('../imagens/Home/Home-banner.png');
    background-size: cover;
    background-position: center right;
    box-shadow: 0px 2px 10px 10px #002A54;
}

.home-apresentacao-container {
    display: flex;
    width: 100%;
    justify-content: space-around;
    position: absolute;
    z-index: 2;
    color: white;
}

.home-apresentacao button {
    width: 150px;
    height: 40px;
    border-radius: 10px;
    border: none;
    margin-top: 30px;
    cursor: pointer;
    transition: 0.5s;
    font-family: "Roboto", sans-serif;
    font-weight: 600;
}

.home-apresentacao button a {
    color: black;
}

.home-apresentacao button a:hover {
    color: white;
}

.home-apresentacao button:hover {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    transition: 0.5s;
}

/* PRODUTOS */
.home-produtos {
    margin: 0 auto;
    max-width: 1200px;
    padding-bottom: 50px;
    text-align: center;
}

.box-titulos {
    width: 100%;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    margin-top: 20px;
}

.span-titulo {
    color: black;
    font-size: 2.5em;
    text-align: center;
    color: #002A54;
}

.home-produtos span {
    padding-bottom: 50px;
}

.produtos-box {
    width: 350px;
    height: 560px;
    border-radius: 5px;
    box-shadow: -2px 3px 6px black;
    transition: 1s;
    transform: translateY(0px);
}

.produtos-box img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.produtos-mobile-overflow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin: 50px auto;
}

/* EMPRESA */
.home-empresa {
    width: 100%;
    background-color: #002A54;
    box-shadow: 0px 2px 10px 10px #002A54;
    padding-top: 50px;
    margin-bottom: 20px;
    padding-bottom: 50px;
}

.span-nome-empresa {
    color: white;
    font-size: 2em;
    font-family: "Roboto", sans-serif;
    font-weight: 100;
}

.container-empresa {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-around;
}

.empresa-text {
    width: 500px;
    color: white;
    font-size: 1.2em;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    margin: 0px 30px;
}

.empresa-box {
    background-color: white;
    border-radius: 50%;
    box-shadow: 0px 2px 10px 2px red inset;
    text-align: center;
}

.footer {
    width: 100%;
}

/* Box whatsapp flutuante */
.container-whatsapp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 100;
    font-size: "Roboto", 'sans-serif';
    font-weight: 100;
}

.box-whatsapp a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: black;
}

@media (min-width: 751px) {

    .home-apresentacao {
        height: 90vh;
    }

    .home-apresentacao h1 {
        font-size: 3em;
        font-family: "Roboto", sans-serif;
        font-weight: 100;
        margin-bottom: 20px;
    }

    .home-aprexentacao-box {
        width: 400px;
        margin: 0px 10px;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
    }

    .home-apresentacao-container {
        flex-wrap: wrap;
        top: 40%;
        left: 40%;
        transform: translate(-40%, -40%);
    }

    /* Produtos */
    .produtos-box:hover {
        transition: 1s;
        transform: translateY(-10px);
    }

    /* Sobre empresa */
    .empresa-box {
        width: 350px;
        height: 350px;
    }

    .empresa-box img {
        max-width: 90%;
        max-height: 90%;
        margin-top: 140px;
    }

    /* Imagem whatsapp flutuante */
    .box-whatsapp img {
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 750px) {
 
    .home-apresentacao {
        height: 85vh;
        padding-bottom: 30px;
    }

    .home-apresentacao h1 {
        font-size: 2em;
        font-family: "Roboto", sans-serif;
        font-weight: 100;
        margin-bottom: 20px;
    }

    .home-apresentacao-container {
        flex-wrap: wrap;
        top: 35%;
        left: 30%;
        transform: translate(-30%, -30%);
        z-index: 2;
    }

    .home-aprexentacao-box {
        width: 290px;
        height: 300px;
        margin: 0px 0px;
        padding: 10px;
        font-family: "Roboto", sans-serif;
        font-weight: 300;
        background-color: rgba(0, 0, 0, 0.849);
        border-radius: 10px;
    }

    .home-aprexentacao-box2 {
        width: 50px;
    }

    /* Sobre empresa */
    .empresa-box {
        width: 250px;
        height: 250px;
    }

    .empresa-box img {
        max-width: 90%;
        max-height: 90%;
        margin-top: 100px;
    }


    /* Imagem whatsapp flutuante */
    .box-whatsapp img {
        width: 50px;
        height: 50px;
    }

    .box-whatsapp h5 {
        display: none;
    }
}