/*@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    scroll-behavior: smooth;
}

.container{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}


/* Menu Style */


.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    border-bottom-left-radius: 28px;
}

.navbar.sticky{
    padding: 15px 0;
    background: #49fa02c2;
    box-shadow: -8px 0px 20px #000000ad;
}

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

.navbar .logo a{
    text-shadow: 0px 0px 1px black;
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}

.navbar .logo a span{
    color: #49FA02;
}

.navbar.sticky .logo a span{
    color: #111;
    transition: all 0.3s ease;
}

.navbar .menu li{
    list-style: none;
    display: inline-block;
}

.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.66);
    margin-left: 25px;
    transition: color 0.3s ease;
}

.navbar .menu li a:hover{
    color: #49FA02;
}

.navbar.sticky .menu li a{
    color: black;
}

.navbar.sticky .menu li a:hover{
    color: white;
}

/* Menu btn */


.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}

.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: #49FA02;
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.scroll-up-btn:hover{
    filter: brightness(80%);
}

.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}


/* Home */


.home{
    display: flex;
    flex-direction: column;
    background: linear-gradient(60deg, rgba(0, 0, 0, 0.987), rgb(0 0 0 / 94%)) no-repeat center;
    height: 100vh;
    color: #fff;
    min-height: 500px;
    position: relative;
}

.home #bg{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 1;
}

.home .container{
    margin: auto auto 0 auto;
    width: 1300px
}

.home .home-content .text-1{
    font-family: 'Orbitron', sans-serif;
    font-size: 17px;
}

.home .home-content .text-2{
    font-family: 'Orbitron', sans-serif;
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
    letter-spacing: 1px;
    overflow: visible;
    position: relative;
}

.home .home-content .text-3{
    font-family: 'Orbitron', sans-serif;
    font-size: 30px;
    margin: 5px 0;
}

.home .home-content .text-3 span{
    color: #49FA02;
    font-weight: 500;
}

.home .home-content .text-4{
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 20px;
    color: #49FA02;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0px 0px 5px aliceblue;
    position: relative;
}

.home .home-content .text-4::first-letter{
    font-size: 30px
}

.home .home-content .text-4:after{
    content: 'full-stack';
    font-size: 13px;
    color: #fff;
    font-weight: 300;
    margin-left: 0px;
    margin-top: 25px;
    position: absolute;
    width: max-content;
}

.home .btn-cv{
    margin: 15px auto auto auto;
    max-width: 1300px;
    width: 1300px;
    z-index: 5;
}

.home .btn-cv a{
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    background: #49FA02;
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    border-radius: 6px;
    border: 2px solid #49FA02;
    transition: all 0.5s ease;
    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.66);
    font-weight: 700;
    max-width: 375px;
}

.home .btn-cv a:hover{
    color: #49FA02;
    background: none;
}

.home .btn-cv a i{
    font-size: 35px;
    margin-left: 15px;
    font-weight: 550;
    text-align: right;
}


/* Codes Similares */


section{
    padding: 100px 0;
}

.about, .services, .skills, .projects, .contact{
    font-family: 'Orbitron', sans-serif;
}

.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

section .title{
    position: relative;
    text-align: center;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 40px;
    padding-bottom: 20px;
}

section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}

section .title::after{
    position: absolute;
    bottom: -12px;
    left: 50%;
    font-size: 15px;
    font-weight: 700;
    color: #49FA02;
    padding: 5px;
    background: #fff;
    transform: translateX(-50%);
}


/* about */


.about .title::after{
    content: "Quem sou eu";
}

.about .about-content .left{
    width: 45%;
}

.about .about-content .left img{
    height: 635px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #49FA02;
    box-shadow: 5px 0px 15px #00000052;
}

.about .about-content .right{
    width: 53%;
}

.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}

.about .about-content .right .text span{
    color: #49FA02;
    font-weight: 800;
    text-shadow: 0px 0px 0.3px black;
}

.about .about-content .right p{
    font-family: 'Poppins', sans-serif;
        max-width: 530px;
}

.about .about-content .right a{
    text-align: justify;
    display: inline-block;
    background: #49FA02;
    color: #fff;
    font-size: 20px;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid #49FA02;
    transition: all 0.5s ease;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.66);
    font-weight: 700;
}

.about .about-content a:hover{
    color: #49FA02;
    background: none;
}


/* Services */


.services, .projects{
    color: #fff;
    background: #111;
}

.services .title::before,
.projects .title::before{
    background-color: #fff;
}

.services .title::after,
.projects .title::after{
    background: #111;
    content: "O que eu faço";
}

.services .serv-content .card{
    margin-top: 35px;
    width: calc(33% - 20px);
    height: 215px;
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 40px 25px;
    transition: all 0.8s ease;
}

.services .serv-content .card:hover{
    background: #49FA02;
}

.services .serv-content .card .box{
    transition: all 0.8s ease;
}

.services .serv-content .card:hover .box{
    transform: scale(1.05);
}

.services .serv-content .card i{
    font-size: 50px;
    color: #49FA02;
    transition: all 0.8s ease;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.66);
}

.services .serv-content .card:hover i{
    color: #fff;
}

.services .serv-content .card .text{
    font-size: 21px;
    font-weight: 700;
    margin: 35px 0 7px 0;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.66);
}


/* Skills */


.skills .title:after{
    content: "O que eu sei"
}

.skills .skills-content .column{
    width: calc(50% - 30px);
}

.skills .skills-content .left .text{
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 10px;
}

.skills .skills-content .left p{
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.skills .skills-content .right{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.skills .skills-content .right .box-logos{
    max-width: 65px;
    
}

.skills .skills-content .right .box-logos img{
    /*width: 100%;*/
    object-fit: cover;
}

/*.skills .skills-content .right .bars{*/
/*    margin-bottom: 15px;*/
/*}*/

/*.skills .skills-content .right .info{*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: space-between;*/
/*}*/

/*.skills .skills-content .right .span{*/
/*    font-weight: 500;*/
/*    font-size: 18px;*/
/*}*/

/*.skills .skills-content .right .line{*/
/*    margin-top: 6px;*/
/*    height: 5px;*/
/*    width: 100%;*/
/*    background: lightgrey;*/
/*    border-radius: 3px;*/
/*    position: relative;*/
/*}*/

/*.skills .skills-content .right .line::before{*/
/*    content: "";*/
/*    position: absolute;*/
/*    height: 100%;*/
/*    left: 0;*/
/*    top: 0;*/
/*    background: #49FA02;*/
/*    border-radius: 5px;*/
/*}*/

/*.skills-content .right .html::before{*/
/*    width: 90%;*/
/*}*/

/*.skills-content .right .css::before{*/
/*    width: 80%;*/
/*}*/

/*.skills-content .right .js::before{*/
/*    width: 85%;*/
/*}*/

/*.skills-content .right .ts::before{*/
/*    width: 85%;*/
/*}*/

/*.skills-content .right .react::before{*/
/*    width: 70%;*/
/*}*/

/*.skills-content .right .node::before{*/
/*    width: 80%;*/
/*}*/

/*.skills-content .right .pg::before{*/
/*    width: 90%;*/
/*}*/

/*.skills-content .right .mongo::before{*/
/*    width: 75%;*/
/*}*/

/*.skills-content .right .figma::before{*/
/*    width: 70%;*/
/*}*/

/*.skills-content .right .git::before{*/
/*    width: 85%;*/
/*}*/

/*.skills-content .right .php::before{*/
/*    width: 75%;*/
/*}*/


/* Projects */


.projects .title::after{
    content: "Projetos no ar";
}

.projects .carousel .card{
    margin-top: 35px;
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    transition: all 0.5s ease;
}

.projects .carousel .card:hover{
    background: #49FA02;
}

.projects .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    height: 325px;
}

.projects .carousel .card:hover .box{
    transform: scale(1.05);
}

.projects .carousel .card .text{
    font-size: 19px;
    font-weight: 700;
    margin: 15px 0 7px 0;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.66);
}

.projects .carousel .card p{
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.66);
}

.projects .carousel .card img{
    /*height: 150px;*/
    /*width: 150px;*/
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #49FA02;
    transition: all 0.5s ease;
}

.projects .carousel .card:hover img{
    border-color: #fff;
}

.owl-dots{
    text-align: center;
    margin-top: 20px;
}

.owl-carousel .owl-item img{
    width: 150px;
}

.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #49FA02!important;
    transition: all 0.5s ease;
}

.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}

.owl-dot.active,
.owl-dot:hover{
    background: #49FA02!important;
}


/* Contact */


.contact .title::after{
    content: "Entre em contato";
}

.contact .contact-content .column{
    width: calc(50% - 30px);
}

.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact .contact-content .left p{
    text-align: justify;
    font-family: 'Poppins', sans-serif;
}

.contact .contact-content .left .icons{
    margin: 10px 0;
}

.contact .contact-content .left .icons .row{
    display: flex;
    height: 65px;
    align-items: center;
}

.contact .contact-content .left .icons .row .info{
    margin-left: 30px;
}

.contact .contact-content .row i{
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.66);
    font-size: 25px;
    color: #49FA02;
}

.contact .contact-content .info .head{
    font-weight: 500;
}

.contact .contact-content .info .sub-title{
    color: #333;
    font-family: 'Poppins', sans-serif;
}

.contact .right .text{
    margin-bottom: 20px;
}

.contact .right form .fields{
    display: flex;
}

.contact .right form .field,
.contact .right form .fields .field{
    position: relative;
    height: 35px;
    width: 100%;
    margin-bottom: 15px;
}

.contact .right form .textarea{
    width: 100%;
    height: 80px;
}

.contact .right form .name{
    margin-right: 10px;
}

.contact .right form .email{
    margin-left: 10px;
}

.contact .right form .field input,
.contact .right form .textarea textarea{
    border: none;
    border: 1px solid lightgray;
    border-radius: 6px;
    height: 100%;
    width: 100%;
    outline: none;
    font-size: 15px;
    padding-left: 8px;
    font-family: 'Poppins', sans-serif;
}

.contact .right form .textarea textarea{
    resize: none;
}

.contact .right form .field label{
    position: absolute;
    top: 0;
    left: 8px;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 400;
    color: #666;
    pointer-events: none;
    transition: 0.5s;
}

@keyframes borda{
    to{border: 1px solid rgba(240, 248, 255, 0.774); color:rgba(0, 0, 0, 0.774) ;}
    from{border:1px solid #49fa02; color: #49fa02;}
}

.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #49FA02;
    animation: borda 1.5s ease infinite;
    color: #111;
}

.contact .right form .field input:focus ~ label,
.contact .right form .field input:valid ~ label,
.contact .right form .field textarea:focus ~ label,
.contact .right form .field textarea:valid ~ label{
    top: -22px;
    left: 5px;
    color: #49FA02;
    font-size: 10px;
}

.contact .right form .d-flex{
    display: flex;
    align-items: center;

    justify-content: space-between;
}

.contact .right form .button{
    height: 43px;
    width: 170px;
}

.contact .right form .button button{
    width: 100%;
    height: 100%;
    border: 2px solid #49FA02;
    background-color: #49FA02;
    color: #fff;
    text-shadow: 0px 0px 1px rgba(0, 0, 0, 0.66);
    font-size: 18px;
    font-weight: 650;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.5s ease;
}

.contact .right form .button button:hover{
    color: #49FA02;
    background: none;
}

.contact .right form .d-flex .message{
    margin-right: 15px;
    padding: 10px;

    font-size: 12px;
    font-weight: 700;
    color: #fff;
    border-radius: 6px;
}

.contact .right form .d-flex .message-danger{
    background-color: rgba(255, 0, 0, 0.556);
}

.contact .right form .d-flex .message-success{
    background-color: #3fc90890;
}


/* Footer */


.footer{
    margin-top: 100px;
    border-top: 3px solid #444;
    padding-top: 4px;
    border-top-right-radius: 28px;
    box-shadow: 10px 20px 40px black;
    background-color: rgba(17, 17, 17, 0.941);
}

.footer .container{
    flex-wrap: wrap;
    flex-direction: row;
    display: flex;
}

.footer-texts{
    margin: auto;
}

.footer-icons{
    margin: 15px auto;
}

.footer-icons a{
    margin: 0px 15px;
    text-decoration: none;
}

.footer-icons .i-footer{
    font-size: 25px;
    color: aliceblue;
    text-decoration: none;
    transition: all 0.5s ease;
}

.i-footer:hover{
    color: #3fc908;
}

.footer .footer-texts a{
    font-weight: 850;
    color: #49fa02;
    text-decoration: none;
}

.footer .footer-texts a:hover{
    filter: brightness(80%);
}

.footer-texts p{
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: aliceblue;
    margin: 0;
    font-display: swap;
}


/* Responsividade */


@media (max-width: 1300px){

    .home .container{
        margin-left: 0px;
        width: auto;
    }

    .home .home-content .text-4{
        text-align: right;
    }

    .home .btn-cv{
        width: auto;
        margin-left: 0px;
    }
}

@media (max-width: 1104px){

    .about .about-content .left img{
        width: 350px;
    }
}

@media (max-width: 991px){

    .container{
        padding: 0 50px;
    }
    
    .home .container {
        width: 100%;
        max-width: 565px;
        
    }
    
    .home .container div{
        width: 100%;
    }
    
    .home .home-content .text-2{
        font-size: 49px;
    }

    .home .home-content .text-3{
        font-size: 25px;
    }
    
    .home .home-content .text-4{
        display: flex;
        justify-content: end;
    }
    
    .home .home-content .text-4::after{
        right: -70px;   
        top: -10px;
    }
}

@media (max-width: 947px){
    
    .menu-btn{
        display: block;
        z-index: 999;
    }

    .menu-btn i.active:before{
        content: "\f00d";
    }

    .navbar .menu{
        position: fixed;
        background-color: #111;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
        border-right: 2px solid #49FA02;
    }

    .navbar .menu.active{
        left: 0;
    }

    .navbar .menu li{
        display: block;
    }

    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    
    .navbar.sticky .menu li a{
    color: white;
    }

    .home .btn-cv a{
        font-size: 23px;
        padding:  10px 30px;
        max-width: 370px;
    }

    .home .btn-cv a i{
        margin-left: 40px;
    }

    .container{
        max-width: 800px;
    }

    .about .about-content .column{
        width: 100%;
    }

    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }

    .about .about-content .right{
        flex: 100%;
    }
    
    .about .about-content .right p{
        max-width: 100%;
    }

    .services .serv-content .card{
        width: calc(50% - 10px);
        height: 225px;
        margin-bottom: 20px;
    }

    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 701px){

    .navbar.sticky .logo a{
        margin-left: 20px;
        transition: all 0.5s ease;
    }

    .container{
        padding: 0 23px;
    }
    
    .home .container {
        max-width: 515px;
    }

    .home .home-content .text-3{
        font-size: 20px;
        margin: 0px 0;
    }

    .home .btn-cv a{
        font-size: 23px;
        padding:  10px 30px;
        max-width: 364;
    }

    .services .serv-content .card{
        width: 100%;
    }
}    

@media (max-width: 600px){
    
    #home .container{
        width: 100%;
    }

    #home .container div{
        margin-bottom: 15px;
    }

    .home-content .msantos{
        width: 100%;
        max-width: fit-content;
    }

    .home .home-content .text-2{
        font-family: 'Orbitron', sans-serif;
        font-size: 1.8rem;
    }

    .home .home-content .text-3{
        font-size: 18px;
        margin: 0px 0;
    }

    .home .home-content .text-4{
        font-size: 20px;
        max-width: 315px;
    }

    .home .btn-cv a{
        font-size: 19px;
        padding: 14px 34px;
        max-width: max-content;
    }
    
    .home .btn-cv a i{
        font-size: 19px;
    }
}    

@media (max-width: 500px){
    
    .navbar .logo a{
        font-size: 24px;
    }
    
    #home .container{
        width: 100%;
    }

    .home .home-content{
        margin-top: -150px;
        width: 100%;
    }

    .home .home-content .text-3{
        font-size: 18px;
        margin: 1px 0;
    }

    .home .home-content .text-4{
        font-size: 16px;
        text-align: center;
        max-width: 290px;
    }
    
    .home .btn-cv a{
        font-size: 18px;
        padding:  11px 15px;
        width: fit-content;
    }

    .home .btn-cv{
        margin-top: -20px;
    }

    .home .btn-cv a i{
        font-size: 18px;
    }
    
    .about .about-content .left img{
        width: 320px;
    }
}    

@media (max-width: 440px){

    .home .home-content .text-4{
        width: 100%;
        max-width: 208px;
    }

    .home .btn-cv a{
        font-size: 16px;
    }

    .home .btn-cv a i{
        font-size: 16px;
    }
    
    .about .about-content .left img{
        width: 250px;
    }
    
    section .title::after {
        font-size: 12px;
    }
}

@media(max-width: 355px){
    .home .home-content .text-2{
        font-size: 18px;
    }
}

/*@media(max-width: 340px){*/
/*    .home .home-content .text-2{*/
/*        font-size: 18px;*/
/*    }*/
/*}*/