*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: "Montserrat", sans-serif;
    /* font-family: "Poppins", sans-serif; */
    scroll-behavior: smooth;
}

h1, h2, p, ul, hr{
    margin: 0;
    padding: 0;
}

a{
    text-decoration: none;
    color: inherit;
}

body{
    background-color: #f2f2f2;
    /* background-color: #1b1717e6; */
}

section .title{
    text-align: center;
    padding: .5rem;
    margin-top: 2rem;
    text-transform: uppercase;
    font-weight: 500;
    background-color: #C94E1A;
    color: #ffffff;
    
    /* text-decoration: 3px underline #C94E1A;
    text-underline-offset: 5px; */

    /* background-color: #C94E1A;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-transform: uppercase;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); */

}

section .subTitle{
    text-align: center;
    padding: 1rem;
    background-color: #1B1717;
    color: #ffffff;
    font-weight: 300;
}

.btnSoliciteOrcamento{
    margin: auto;
    margin-top: 1rem;
    padding: .5rem 1rem;
    border: none;
    border-radius: 1rem;
    width: fit-content;
    
    display: flex;
    justify-content: center;
    align-items: center;
    
    color: #000000;
    /* font-size: 1rem; */
    font-size: clamp(1rem, 0.9193rem + 0.3119vw, 1.2rem);
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: none;
    text-decoration: none;
    background-color: #0CC143;
    /* box-shadow: 0px 0px 6px 1px rgb(0, 255, 76); */

    cursor: pointer;

    transition: all .3s ease-in-out;

    i{
        margin-left: .5rem;
    }

    &:hover{
        transform: scale(1.1);
        /* background-color: #ffffff; */
        /* box-shadow: inset 0px 0px 0px 3px #0CC143; */
        
    }
}

section.floatBtn{
    display: flex;
    flex-direction: column;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

section.floatBtn a{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0CC143;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
}

@media (min-width: 1024px) {
    /* section:not(section.floatBtn, section.banner){
        margin: 0 2rem;
    } */

    .section{
        max-width: 60vw;
        margin: auto;
    }

    /* section{
        margin: 0 2rem;
    } */

    .btnSoliciteOrcamento{
        padding-left: 2rem;
        padding-right: 2rem;
    }
}