*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

html,body{
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container{
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 2%;
}

marque{
    color: #fff;
    background-color: #1E90FF;
    padding: 3px 5px;
    display: inline-block;
    font-size: 30px;
    font-weight: bold;
    margin-top: 10px;
}

.btn{
    background-color: #1E90FF;
    padding: 15px 40px;
    color: #fff;
    font-size: 17px;
    outline: 0;
    border: 0;
    cursor: pointer;
    font-weight: 500;
    text-transform: uppercase;
    font-family: "Nunito Sans", sans-serif;
    display: inline-block;
    text-decoration: none;
}

.text-line{
    display: flex;
    align-items: center;
    justify-content: left;

    h5{
        font-family: "Nunito Sans", sans-serif;
        text-transform: uppercase;
        color: #fff;
        font-size: 17px;
    }

    .line{
        height: 2px;
        width: 150px;
        background-color: #1E90FF;
        margin-left: 20px;
    }
}

.line-left{
    margin-left: 0!important;
    margin-right: 20px;
}

/* HEADER */

header{
    width: 100%;
    background-color: #fff;
    padding: 10px 0;

    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-desktop{
        list-style-type: none;

        li{
            display: inline-block;
            color: #333;
            font-size: 13px;
            font-weight: bold;
            text-transform: uppercase;
            margin: 0 10px;
            cursor: pointer;
        }
    }

    .header-contato{
        display: flex;
        align-items: center;
        justify-content: center;

        i{
            font-size: 30px;
            color: #1E90FF;
            font-weight: normal;
        }

        .text-header-contato{
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-left: 20px;

            h6{
                font-size: 15px;
                color: #333;
            }

            a{
                font-size: 15px;
                margin-top: 10px;
                color: #575757;
                text-decoration: none;
            }
        }
    }
}

/* MENU MOBILE */

.menu-mobile{
    position: absolute;
    top: 10px;
    left: 0;
    width: 100%;
    display: none;
    opacity: 0;
    transform: translateY(-100%);
    transition: 1s;
    z-index: 999;
}
  
#icon{
    font-size: 22px;
    color: #1E90FF;
    margin-right: 20px;
    display: none;
    cursor: pointer;
}
  
.hide{
    top: 100px;
    transform: translate(0);
    opacity: 1;
}
  
.menu-mobile ul{
    width: 100%;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    transition: 1s;
    overflow: hidden;
    box-shadow: 0px 13px 12px 0px rgba(0, 0, 0, 0.15);
}
  
.menu-mobile ul li{
    display: inline-block;
    width: 100%;
    text-align: center;
    color: #2e2e2e;
    border-bottom: 1px solid #1E90FF;
    padding: 20px 0 15px 0;
    max-width: 60%;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 700;
}
  
.menu-mobile ul li:last-of-type{
    border-bottom: none;
}

/* BANNER */

.banner{
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: stretch;

    .banner-left{
        width: 50%;
        background-image: url('./images/cadeado.png');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        justify-content: right;
        padding: 80px 0;

        .container-banner-left{
            width: 100%;
            max-width: 590px;

            h2{
                font-size: 40px;
                color: #fff;
                max-width: 450px;
                margin-top: 30px;
            }

            p{
                margin-top: 30px;
                color: #fff;
                max-width: 500px;
                font-size: 16px;
            }

            .btn{
                margin-top: 40px;
            }
        }
    }

    .banner-right{
        width: 50%;
        background-image: url('./images/fechadura.png');
        background-size: cover;
        background-position: center;
    }
}

/* INFO */

.info{
    width: 100%;
    padding: 50px 0;
    
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .info-left{
        display: flex;

        h2{
            font-size: 45px;
            color: #1E90FF;
        }

        .info-left-text{
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: left;
            margin-left: 50px;

            h3{
                font-size: 40px;
                color: #333;
            }

            .text-line h5{
                color: #333;
            }
        }
    }

    .info-right{
        background-color: #1E90FF;
        padding: 60px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        right: 0;
        transform: translateY(-70%);

        .wrapper-info-right{
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            padding: 0 10px;

            h3{
                font-size: 40px;
                color: #fff;
            }

            p{
                font-size: 15px;
                color: #fff;
            }
        }
    }
}

/* SOBRE */

.sobre{
    padding: 50px 0;

    .container{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .sobre-left{
        width: 50%;

        img{
            width: 100%;
        }
    }

    .sobre-right{
        width: 50%;
        padding-left: 30px;

        .text-line h5{
            color: #333;
        }
        
        h2{
            font-size: 32px;
            color: #333;
            margin-top: 20px;
        }

        p{
            font-size: 16px;
            color: #333;
            margin-top: 20px;
        }

        ul{
            list-style-type: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            margin-top: 20px;
            grid-gap: 15px;

            li{
                display: flex;
                align-items: center;

                i{
                    color: #1E90FF;
                    font-size: 15px;
                }

                span{
                    color: #333;
                    font-size: 15px;
                    margin-left: 10px;
                }
            }
        }

        .sobre-depoimento{
            margin-top: 20px;
            background-color: #f9f9f9;
            border-left: 3px solid #1E90FF;
            display: flex;
            align-items: center;
            justify-content: space-evenly;
            padding: 20px 0;

            .sobre-depoimento-left{
                width: 65%;
                display: flex;
                flex-direction: column;
                
                span{
                    font-size: 15px;
                    font-style: italic;
                    font-weight: 300;
                    color: #575757;
                }

                h6{
                    font-size: 15px;
                    color: #333;
                    margin-top: 30px;
                }
            }

            i{
                font-size: 50px;
                color: #1E90FF;
            }
        }

        .btn{
            margin-top: 30px;
        }
    }
}

/* Aviso */

.aviso{
    width: 100%;
    padding: 130px 0;
    background-color: #181818;
    background-size: cover;
    background-position: center;
    margin-top: 70px;

    .container{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    i{
        font-size: 30px;
        color: #1E90FF;
        background-color: #fff;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    h2{
        font-size: 35px;
        color: #fff;
        margin-top: 30px;
        text-align: center;
    }

    p{
        font-size: 18px;
        color: #f9f9f9;
        max-width: 650px;
        margin-top: 40px;
        text-align: center;
        font-weight: 300;

    }

    .btn{
        margin-top: 40px;
    }
}

.diferenciais{
    width: 100%;
    padding: 100px 0;

    .container{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .wrapper-box{
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 30px;
        margin: 40px 0;
    }

    .diferenciais-text{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        .text-line h5{
            color: #333;
        }

        .line{
            width: 100px;
        }

        h3{
            font-size: 32px;
            color: #333;
            margin-top: 20px;
        }

        p{
            margin-top: 20px;
            font-size: 16px;
            color: #575757;
        }

        .btn{
            margin-top: 20px;
        }
    }

    .single-box{
        width: 100%;
        box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.1);
        padding: 40px;

        img{
            width: 70px;
        }

        h5{
            color: #333;
            margin-top: 20px;
            font-size: 22px;
        }

        p{
            color: #575757;
            margin-top: 20px;
            font-size: 14px;
        }

        a{
            margin-top: 20px;
            color: #1E90FF;
            font-size: 16px;
            display: flex;
            align-items: center;
            text-transform: uppercase;
            font-family: "Nunito Sans", sans-serif;

            i{
                margin-left: 10px;
                color: #1E90FF;
                font-size: 17px;
            }
        }
    }
}

/* Form */

.form{
    width: 100%;
    position: relative;

    .container{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        padding-top: 100px;
    }

    .img-form{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        padding-top: 40%;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/form.webp');
        background-size: cover;
        background-position: center;
    }

    h2{
        font-size: 35px;
        color: #fff;
        margin-top: 20px;
        text-align: center;
    }

    p{
        text-align: center;
        max-width: 550px;
        color: #deeedb;
        margin-top: 30px;
        font-size: 16px;
    }

    .wrapper-form{
        width: 100%;
        padding: 50px;
        background-color: #fff;
        margin-top: 70px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.1);

        .wrapper-form-left{
            width: 40%;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./images/chaves.webp');
            background-size: cover;
            background-position: center;
            padding: 40px;

            h3{
                font-size: 23px;
                color: #fff;
                font-weight: normal;
            }

            p{
                font-size: 14px;
                text-align: left;
                margin-top: 35px;
                line-height: 20px;
            }

            ul{
                list-style-type: none;
                margin-top: 50px;

                li{
                    margin-top: 20px;

                    i{
                        color: #1E90FF;
                    }

                    span{
                        margin-left: 10px;
                        color: #deeedb;
                        font-size: 14px;
                    }

                }
            }

            .btn{
                padding: 10px 20px;
                margin-top: 50px;
            }

            
        }

        .wrapper-form-right{
            width: 60%;
            padding-left: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            .w100{
                width: 100%;
            }

            .w50{
                width: 48%;
            }

            .wrapper-single-form:first-of-type{
                margin-top: 0;
            }

            .wrapper-single-form{
                width: 100%;
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: 30px;

                .single-form{
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;

                    label{
                        color: #000;
                        font-size: 17px;
                        font-weight: 600;
                        margin-bottom: 10px;
                    }

                    input, textarea, select{
                        width: 100%;
                        padding-top: 15px;
                        padding-right: 25px;
                        padding-bottom: 15px;
                        padding-left: 25px;
                        border-style: solid;
                        border-width: 1px;
                        border-color: #ededed;
                        border-top-left-radius: 0px;
                        border-top-right-radius: 0px;
                        border-bottom-right-radius: 0px;
                        border-bottom-left-radius: 0px;
                        outline: 0;
                    }

                    textarea{
                        resize: none;
                        height: 120px;
                    }
                }
            }

            .wrapper-btn-form{
                width: 100%;
                display: flex;
                align-items: flex-start;
                margin-top: 20px;
            }
        }
    }
}

.depoimentos{
    padding: 0 0 100px 0;
    
    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .text-line h5{
        color: #333;
    }

    .depoimentos-left{
        width: 50%;
        display: flex;
        flex-direction: column;
        
        h2{
            margin-top: 20px;
            color: #131313;
            font-size: 35px;
            max-width: 450px;
        }

        p{
            margin-top: 20px;
            font-size: 15px;
            color: #575757;
            max-width: 500px;
        }
    }

    .depoimentos-right{
        width: 50%;
        display: flex;
        flex-direction: column;

        p{
            font-size: 22px;
            font-weight: 400;
            color: #575757;
            font-style: italic;
        }

        .wrapper-depoimentos{
            margin-top: 40px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;

            .wrapper-depoimentos-left{
                display: flex;
                align-items: center;
                justify-content: space-between;

                .foto-depoimento{
                    width: 60px;
                    height: 60px;
                    background-color: #ccc;
                    border-radius: 50%;
                }

                .wrapper-info-depoimento{
                    display: flex;
                    flex-direction: column;
                    margin-left: 20px;

                    h3{
                        font-size: 18px;
                        color: #131313;
                        font-weight: 700;
                    }

                    h4{
                        margin-top: 10px;
                        font-size: 15px;
                        color: #575757;
                        font-weight: 300;
                    }
                }
            }

            i{
                font-size: 50px;
                color: #1E90FF;
                padding-right: 40px;
            }

        }
    }
}

footer{
    width: 100%;
    padding: 30px 0;
    background-image: url('./images/cadeado.png');
    background-position: center;
    background-size: cover;

    .container{
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    p{
        color: #ededed;
        font-size: 14px;
    }
}

@media screen and (max-width: 950px){
    .banner .banner-left{
        width: 100%;
    }

    .container-banner-left{
        max-width: none!important;
        margin: 0 auto;
        padding-left: 2%;
        padding-right: 2%;
    }

    .banner-right{
        display: none;
    }

    .info .info-left{
        flex-direction: column;
    }

    .info-left-text{
        margin-left: 0!important;
        margin-top: 20px;
    }

    .info .info-right{
        flex-direction: column;
        transform: translateY(-50%);
        right: 50px;
        padding-top: 40px;
    }

    .info .info-right .wrapper-info-right{
        margin-top: 20px;
    }

    .diferenciais .wrapper-box{
        grid-template-columns: 1fr 1fr;
    }

    .depoimentos .container{
        flex-direction: column;
    }

    .depoimentos-left{
        width: 100%!important;
    }

    .depoimentos-left h2{
        max-width: none!important;
    }

    .depoimentos-right{
        width: 100%!important;
        margin-top: 50px;
    }

    .form .img-form{
        padding-top: 70%;
    }

    .wrapper-form{
        flex-direction: column;
    }

    .wrapper-form-left{
        width: 100%!important;
    }

    .wrapper-form-left ul{
        margin-top: 20px!important;
    }

    .wrapper-form-left .btn{
        margin-top: 20px!important;
    }

    .wrapper-form-right{
        width: 100%!important;
        padding-left: 0!important;
        margin-top: 30px;
    }

    #icon{
        display: block!important;
    }

    .menu-mobile{
        display: block!important;
    }

    header .header-contato{
        display: none;
    }

    header .menu-desktop{
        display: none;
    }
}

@media screen and (max-width: 750px){
    .sobre .container{
        flex-direction: column;
    }

    .sobre .sobre-left{
        width: 80%;
    }

    .sobre .sobre-right{
        width: 100%;
        margin-top: 50px;
        padding-right: 30px;
    }
}

@media screen and (max-width: 680px){
    .info{
        padding-top: 0!important;
    }

    .info .container{
        flex-direction: column-reverse;
    }

    .info .info-right{
        position: relative;
        transform: none!important;
        flex-direction: row!important;
        right: 0!important;
        top: -30px;
    }

    .info .info-left{
        align-items: center;
        justify-content: center;
    }

    .info-left-text h3{
        font-size: 30px!important;
        text-align: center;
        margin-top: 20px;
    }

    .form h2{
        font-size: 28px!important;
    }

    .form .wrapper-form{
        padding: 30px;
    } 

    footer .container{
        flex-direction: column;
    }

    footer p{
        margin-top: 20px;
        text-align: center;
    }

    footer{
        padding-top: 20px!important;
    }

}

@media screen and (max-width: 550px){
    .diferenciais .wrapper-box{
        grid-template-columns: 1fr;
    }

    .form .img-form{
        padding-top: 130%;
    }

    .sobre .sobre-right ul{
        grid-template-columns: 1fr;
    }

    .text-line h5{
        font-size: 15px;
    }

    .container-banner-left h2{
        font-size: 35px!important;
    }

    .container-banner-left p{
        font-weight: 300;
        font-size: 14px!important;
    }
}