/* ESTILO GERAL*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
    font-size: 20px;
}


 

body{
    background-color: #1a1a1a;
    height: 100vh;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
}

.flex{
    display:flex;
}


.btn-contato button{
    padding: 10px 40px;
    font-size: 18px;
    font-weight: 150;
    background-color: orange;
    border: 0 ;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}

h2.titulo span{
    color: white;
    font-size: 38px;
    text-align: center;
}

h2.titulo{
    color: white;
    font-size: 38px;
    text-align: center;
}

/*ESTILO DO CABEÇALHO*/
header{
    padding: 52px 4%;
}

header > .interface{
    display:flex;
    align-items: center;
    justify-content: space-between;
}

header a{
    color: white;
    text-decoration: none;
    display:inline-block;
    transition: 0.2s;
}

header nav.menu-desktop a:hover{
    color: darkorange;
    transform: scale(1.25);
}

header nav ul{
    list-style-type: none;
}

header nav.menu-desktop ul li{
    display: inline-block;
    padding: 0 40px;
}



button:hover, form .btn-enviar input:hover{
    box-shadow: 0px 0px 12px white;
    transform: scale(1.1);
}

/*FONTES*/
.bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* <uniquifier>: Use a unique and descriptive class name
 <weight>: Use a value from 300 to 900*/

.rubik-uniquifier {
  font-family: "Rubik", sans-serif;
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
}

/* ESTILO DO MENU MOBILE */

.btn-abrir-menu i{
    color: orange;
    font-size: 40px;
}

.menu-mobile{
    background-color: rgb(0, 0, 0);
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
    width: 0%;
    overflow: hidden;
    transition: .5s;
    border-radius: 10px;
}

.menu-mobile.abrir-menu{
    width: 70%;
}

.menu-mobile.abrir-menu ~.overlay-menu{
    display: block;
}

.menu-mobile .btn-fechar{
    padding: 20px 5%;
}

.menu-mobile .btn-fechar i{
    color: orange;
    font-size: 30px;

}

.menu-mobile nav ul{
    text-align: right;

}

.menu-mobile nav ul li a{
    color: white;
    font-size: 22px;
    font-weight: 500;
    padding: 20px 8%;
    display: block;
}

.menu-mobile nav ul li a:hover{
    background-color: orange;
    color: black;
}


.overlay-menu{
    background-color: rgba(0, 0, 0, 0.733);
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
    display: none;
}

  /*ESTILO DO TOPO DO SITE*/

  section.topo-do-site{
    padding: 40px 4%;
}


section.topo-do-site .flex{
    align-items: center;
    justify-content: center;

}

.topo-do-site h1{
    color: white;
    font-size: 24px;
    line-height: 14px;
}

strong {
    color: #fd8300;
}

.topo-do-site .txt-topo-site h1 span{
    color: white;
}

.topo-do-site .txt-topo-site p{
    color: white;
    font-size: initial;
    margin: 26px 0;
}


.topo-do-site .img-topo-site img{
    position: relative;
    animation: flutuar 2s ease-in-out infinite alternate;
    border-radius: 10px;
    
}


@keyframes flutuar{
    0%{
        top: 0;
    }
    100%{
        top: 30px;
    }
}


/*ESTILO DAS ESPECILAIDADES*/
section.especialidades{
    padding: 40px 4%;
}

section.especialidades .flex{
    gap: 60px;
}

.especialidades .especialidades-box{
    color: white;
    padding: 40px;
    border-radius: 10px;
    /*border: 1px solid white ;*/
    margin-top: 25px;
    transition: .15s;
    cursor: pointer;

}

.especialidades .especialidades-box:hover{
    scale: 1.1;
    box-shadow: 0 0 20px white;
}

.especialidades .especialidades-box i{
    font-size: 50px;
    color: orange;
}

.especialidades .especialidades-box h3{
    font-size: 28px;
    margin: 15px 0;

}

.especialidades .especialidades-box p{
    font-size: medium;
}

.especialidades .especialidades-box  .bi-badge-3d-fill{
    color: blue;
}

/*ESTILO SOBRE*/
section.sobre{
    padding: 40px 4%;
}


section.sobre .flex{
    align-items: center;
    gap: 60px;
}


.sobre .txt-sobre{
    color: white;
}

.sobre .txt-sobre h2{
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
}

.sobre .txt-sobre span{
    font-size: 38px;
    color: blue;
    display: block;
}

.sobre .txt-sobre p{
    margin: 10px 0;
    font-weight: normal;
    /*text-align: justify;*/
}

.sobre .txt-sobre h4 p{
    font-size: medium;
    
}

/*.sobre .txt-sobre*/ .btn-social button{
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border: none;
    background-color: orange;
    cursor: pointer;
    margin: 0 10px;
    transition: .15s;   
}


/* ESTILO DO PORTIFÓLIO*/

section.portifolio{
    padding: 80px 4%;
    /*box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.199);*/
}

.img-port{
    width: 320px;
    height: 320px;
    border-radius: 10px;
    background-color: orange;
    background-size: contain;
    background-size: 100%;
    transition: 3s;
    cursor: pointer;
    position: sticky;
}


.img-port:hover{
    background-blend-mode: luminosity;
    transition: 3s;

}

section.portifolio .flex{
    /*gap: 80px;*/
    justify-content: space-around;
    padding: 40px 4%;

}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(8, 2, 88, 0.596);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    color: white;
    opacity: 0;
    transition: .4s;
}

.overlay:hover{
    opacity: 1;
}

/*ESTILO DO FORMULARIO DE CONTATO*/
section.formulario{
    padding: 80px 4%;

}

form{
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 40px;
}


form input, form textarea{
    width: 100%;
    background-color: rgba(48, 48, 48, 0.479);
    border: 0;
    outline: 0;
    padding: 20px 15px;
    color: white;
    font-size: 18px;
    border-radius: 2px;
}

form textarea{
    resize: none;
    max-height: 400px;

}


form input::placeholder{
color: rgba(99, 98, 98, 0.603);
}

form .btn-enviar{
    margin-top: 25px;
    text-align: center;
}

form .btn-enviar input{
    width: 120px;
    background-color: orange;
    color: black;
    font-weight: 700;
    cursor: pointer;
    transition: .15s;
}

/* ESTILO DO RODAPÉ */

footer{
    padding: 60px 4%;
    /*box-shadow: 0 0 40px 10px rgba(255, 255, 255, 0.199);*/
}

footer .flex{
    justify-content: space-between;
}

.borda {
    border-top: 2px solid orange;
}

footer .line-footer{
    padding: 20px 0;
}

footer .line-footer p i{
    color:rgb(255, 115, 0);
    font-size: 32px;
}

footer .line-footer p a{
    color: white;
    text-decoration-line: none;
}

@media screen and (max-width: 1030px){

    /*CLASSES GERAIS*/
    .flex{
        flex-direction: column;
    }
    
    .topo-do-site .flex{
        flex-direction: column-reverse;
    }

    h2.titulo span{
        font-size: 32px;
        line-height: 22px;
    }

    /*CABEÇALHO*/
    .menu-desktop, .btn-contato{
        display: none;
    }

    /* TOPO DO SITE */
    .section.topo-do-site{
        gap: 40px 8%;
    }

    .topo-do-site h1{
        font-size: 32px;
        line-height: 38px;
    }

    .topo-do-site .img-topo-site img{
        position: sticky;
        width: 100%;

    }

    /*ESTILO DAS ESPECILAIDADES*/
    section.especialidades{
        padding: 40px 8%;
    }

    /* SOBRE */
    section.sobre{
        padding: 80px 8%;
    }
    
    .sobre .txt-sobre h2 p{
        margin: 18px;
        font-size: 22px;
        line-height: 16px;
        margin-bottom: 10px;
        text-align: center;
    }

    .btn-social{
        text-align: center;
        padding: 40px;
    }
    
    .sobre .img-sobre img{
        width: 100%;
        border-radius: 10px;
        font-size: small;
    } 

    /* PORTFÓLIO */
    section.portifolio {
        padding: 80px 8%;
    }

    .img-port{
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        height: 330px;
        border-radius: 10px;
        
    }

    section.portifolio .flex{
        gap: 48px;
    }

    /* RODAPÉ */
    footer .flex{
        flex-direction: column;
        gap: 30px;
    }

    footer .line-footer{
        text-align: center;
    }
    

}

.sobre .img-sobre img{
    border-radius: 300px;
    border: 4px solid white
}

html {
    scroll-behavior: smooth;
}
