@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    outline: none;
    font-family: "Inter", sans-serif;
}

body{
    background-color: #f1f6fc31;
}

section, footer {
    padding: 54px 0;
}

h3{
    color: #171717b2;
    font-size: 50px;
}

p{
    color: #0000009c;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.btn-static {
    background-color: #0098FF;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: 0.1s;
}

.btn-static:hover{
    background-color: #007dd1;
}

.btn {
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    cursor: pointer;
    display: inline-block;
    transition: 0.1s;
}

.btn.animate-btn{
    animation: animate-outline 1s ease-out infinite;
}



@keyframes animate-outline {
    from{
        outline: 0px solid #0098FF;
    }
    to{
        outline: 15px solid #4f9bf900;
    }
}

header {
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px;
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul a {
    color: white;
    margin: 0 25px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
}

nav ul a:not(.btn)::after {
    content: "";
    background-color: #0098FF;
    height: 3px;
    width: 0%;
    display: block;
    margin: 0 auto;
    transition: 0.3s;
}

nav ul a:hover::after {
    width: 100%;
}

nav ul img {
    display: none;
}



/* MENU MOBILE */

nav .menu-icon {
    cursor: pointer;
    font-size: 25px;
    color: white;
    display: none;
}

nav .close-icon {
    display: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
}




.banner {
    display: flex;
    justify-content: center;
}

.banner-text {
    margin: 150px;
    text-align: center;
    padding: 0 90px;
}

.banner .banner-text h1 {
    font-size: 96px;
    color: white;
}

.banner .banner-text p {
    font-size: 20px;
    color: #ffffffb7;
    font-weight: lighter;
    margin: 18px 0;
}

/* FACA MAIS */

.faca-mais .container {
    display: flex;
    align-items: center;
}

.faca-mais .faca-mais-text {
    width: 50%;
    padding: 0 40px;
}

.faca-mais .faca-mais-text h3 {
    font-size: 56px;
}

.faca-mais .faca-mais-text p {
    margin: 5px 0 10px 0;
}

.faca-mais .faca.mais-img {
    width: 50%;
}

.faca-mais .faca.mais-img img {
    width: 100%;
}


/* DEPOIMENTOS */

.depoimentos h3 {
    text-align: center;
}

.depoimentos p {
    margin-bottom: 20px;
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.depoimentos .card-item {
    background-color: #dcdcdc;
    margin: 15px;
    border-radius: 14px;
    text-align: center;
    width: 350px;
    transition: 0.3s;
}

.depoimentos .card-item img {
    border-radius: 100px;
    width: 80px;
    display: block;
    margin: 20px auto;
}

.depoimentos .card-item .nome-user {
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
    transition: 0.5s;
}

.depoimentos .card-item .depoimento-user {
    font-size: 15px;
    padding: 0 15px;
    transition: 0.5s;
}

.depoimentos .card-item .estrelas {
    margin: 15px 0;
    border-top: 2px solid #71767a23;
}

.depoimentos .card-item .estrelas i {
    color: #0098FF;
    margin-top: 15px;
    font-size: 20px;
    transition: 0.5s;
}

.depoimentos .card-item:hover {
    background-color: #0098FF;
    margin-top: -5px;
}

.depoimentos .card-item:hover .nome-user, 
.depoimentos .card-item:hover .depoimento-user,
.depoimentos .card-item:hover .estrelas i {
    color: white;
}


/* CLIENTES */

.clientes h3,
.clientes p {
    text-align: center;
}

.clientes .container div{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}


/* FOOTER */

.footer {
    background-color: #001829;
    text-align: center;
}

.footer i {
    color: #0098FF;
    font-size: 19px;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    margin: 3px;
}

.footer p {
    margin-top: 10px;
    color: white;
}


/* PÁGINA SOBRE */

.sobre .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sobre .sobre-text{
    width: 50%;
    padding-right: 40px;
}

.sobre .sobre-text p {
    margin: 18px 0;
    color: #000000a6;
}

.sobre .sobre-img {
    width: 50%;
}

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



/* PÁGINA SERVIÇOS */

.servicos h3 {
    text-align: center;
}

.servicos .container > p {
    text-align: center;
}

.servicos .rows-cards{
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.servicos .row-card-item{
    background-color: #dcdcdc;
    width: 350px;
    padding: 20px;
    border-radius: 14px;
    margin: 20px;
    transition: 0.5s;
}

.servicos .row-card-item:hover {
    background-color: #0098FF
}

.servicos .row-card-item:hover p{
    color: white;
}

.servicos .row-card-item img {
    background-color: #0098FF;
    border-radius: 14px;
    width: 70px;
    padding: 9px;
}

.servico .row-card-item p.nome-servico {
    margin: 5px 0;
    transition: 0.5s;
}

.servico .row-card-item p.descricao-servico {
    transition: 0.5s;
}

    /* DADOS SERVIÇOS */

.dados{
    background: #dcdcdc;
}    

.dados .container{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.dados .dados-item{
    text-align: center;
    margin: 15px;
    color: #000000be;
}

.dados .dados-item img{
    background-color:  #0098FF;
    border-radius: 14px;
    padding: 10px;
    margin-bottom: 15px;
    width: 80px;
}

.dados .dados-item p {
    font-size: 18px;
}

.dados .dados-item p strong {
    font-size: 28px;
}


    /* PÁGINA CONTATO */

.contato-info{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}    

.contato-info .left-side{
    width: 50%;
    padding: 30px;
    background-color: #0098FF;
    border-radius: 14px;
    margin-right: 50px;
    height: fit-content;
}

.contato-info .left-side div {
    display: flex;
    align-items: center;
    margin-top: 10px; 
}

.contato-info .left-side div i {
    font-size: 24px;
    margin-right: 20px;
    color: white;
}

.contato-info .left-side div p {
    font-size: 17px;
    color: white;
}

.contato-info .right-side {
    width: 50%;
}

.contato-info .right-side input {
    display: block;
    width: 100%;
    margin-bottom: 10px;
    height: 47px;
    padding: 15px;
    border-radius: 9px;
    transition: 0.5s;
    border: 1px solid #f1f1f1;
    color: #212121;
    font-weight: lighter;
}

.contato-info .right-side input:focus,
.contato-info .right-side textarea:focus{
    border-color: #0098FF;
}

.contato-info .right-side textarea {
    border: 1px solid #f1f1f1;
    color: #212121;
    border-radius: 9px;
    margin-bottom: 10px;
    padding: 15px;
    width: 100%;
    transition: 0.5s;
    resize: none;
}

.contato-info .right-side button {
    border: none;
}

.btn-ml {
    margin-left: 40px;
}

body.galeria-page {
    background-color: #0b1d2d;
}

@media(max-width: 830px){
    /* MENU MOBILE */
    .ul{
        position: fixed;
        top: 0;
        left: 0;
        background: #0b1d2d;
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        clip-path: circle(0% at 100% 0);
        transition: 0.7s;
    }

    .ul.open {
        clip-path: circle(141.4% at 100% 0);
    }
    .ul a {
        margin: 10px 0;
        font-size: 16px;
    }
    nav .menu-icon{
        display: block;
    }
    nav .close-icon {
        display: block;
        position: absolute;
        top: 46px;
        right: 28px;
    }

    nav ul img {
        display: block;
        margin-bottom: 50px;
    }

    /* PÁGINA HOME RESPONSIVO */


    .banner .banner-text{
        padding: 0;
        margin: 80px;
    }
    .banner .banner-text h1{
        font-size: 80px;
    }

    .banner .banner-text p{
        font-size: 15px;
    }


    /* PÁGINA HOME RESPONSIVO */


    .faca-mais .faca-mais-text {
        margin-top: 10px;
        padding: 0 20px;
        order: 1;
    }
    .faca-mais .container{
        flex-direction: column;
    }
    .faca-mais .faca-mais-text h3{
        font-size: 48px;
    }
    .faca-mais .faca-mais-text,
    .faca-mais .faca-mais-img{
        width: 100%;
        height: auto;
    }

    .depoimentos .card-item{
        width: 100%;
    }


    /* PÁGINA SOBRE RESPONSIVO */

    .sobre .container{
        flex-direction: column-reverse;
    }

    .sobre .sobre-img,
    .sobre .sobre-text{
        width: 100%;
    }

    .sobre .sobre-text{
        margin-top: 40px;
    }

    /* PÁGINA CONTATO RESPONSIVO */

    .contato .contato-info{
        flex-direction: column;
    }
    .contato-info .right-side,
    .contato-info .left-side{
        width: 100%;
    }

    .contato-info .right-side{
        margin-bottom: 30px;
    }

    .contato-info .left-side{
        margin-bottom: 50px;
    }
}

@media (max-width:500px) {
    .banner .banner-text h1{
        font-size: 50px;
    }
   
}

.nav-img{
    height: 300px !important;
}

.map-size {
    width: 800px;
}

@media (max-width:576px) {
    .img-lc{
        width: 100%;
    }
    .btn-static {margin-top: 20px;}
    .btn-ml {margin-top: 20px; margin-left: 0;}
    .nav-img{
        height: 100px !important;
    }
    .map-size {
        width: 100%;
    }
}

