@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,600;0,700;0,800;0,900;1,200;1,500;1,800&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    scroll-behavior: smooth;
    text-decoration: none;
}
h2{
    margin-top: 30px;
}

:root{
    --tex-color:#eee9e9;
    --hover-color:#51ca92;
    --bg-color:#010412;
    --secon-bg-color:#292e33;
    --big-font:2.5rem;
    --norma-font:2rem;
    --neon-box-shadow: 0 0.rem #00effb;
    --h2-font:3rem;
    --font-neon-text-shadow:0 0 10px rgba(18,247,255, 0.3),
    0 0 20px rgba(18, 247, 255, 0.3)
    0 0 30px rgba(18, 247, 255, 0.3),
    0 0 40px rgba(18, 247, 255, 0.3),
    0 0 70px rgba(18, 247, 255, 0.3),
    0 0 80px rgba(18, 247, 255, 0.3),
    0 0 100px rgba(18, 247, 255, 0.3),
    0 0 150px rgba(18, 247, 255, 0.3);
}

::-webkit-scrollbar{
    height: 0;
    width: .5rem;
}

::-webkit-scrollbar-track{
    background: var(--secon-bg-color);
}

::-webkit-scrollbar-thumb{
    background: var(--hover-color);
    border-radius: 5rem;
}


body{
    font-family: "poppins", sans-serif;
    background-color: var(--bg-color);
    color: var(--tex-color);
}

header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom:1px solid transparent ;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 10%;
}

header.sticky{
    background: var(--bg-color);
    border-bottom: 1px solid var(--secon-bg-color);
    padding: 12px 10%;
} /*Mantém o header parado, ver js*/

.logo{
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

span{
    color: var(--hover-color);
}

.navlist,
.nav{
    display: flex;
}

.navlist a,
.nav a{
    color:var(--tex-color);
    font-weight: 600;
    padding:10px 20px;
}

.navlist a:hover,
.nav a:hover{
    color: var(--hover-color);
    text-shadow: 0 0 10px rgba(718, 247, 255, 0.6),
    0 0 20px rgba(18, 247, 255, 0.6),
    0 0 30px rgba(18, 247, 255, 0.6),
    0 0 40px rgba(18, 247, 255, 0.6),
    0 0 70px rgba(18, 247, 255, 0.6),
    0 0 80px rgba(18, 247, 255, 0.6),
    0 0 100px rgba(18, 247, 255, 0.6),
    0 0 150px rgba(18, 247, 255, 0.6);
}

.navlist a.active,
.nav a.actve{
    color:var(--hover-color)
}

#menu-icon{
    font-size: 1.8rem;
    z-index: 10001;
    cursor: pointer;
    margin-left: 25px;
    border-radius: 3px;
    color:var(--tex-color);
    display: none;
}

section{
    padding: 100px 10%;
}
/*-----HOME-------------------------------------------------------------*/

.home{
    min-height: 100vh;
    height: 100%;
    width: 100%;
    display: flex;
    grid-template-columns: repeat(2,1rf);
    grid-gap: 4em;
    align-items: center;
    

    background-image: url("img/spacial5.jpg"); /* Replace with your actual image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.home-content{
    max-width:100%;
}

.home-content h1{
    font-size: var(--big-font);
    font-weight: 700;
}

.change-text{
    font-size: 1.5rem;
    font-weight: 600;
}

.change-text h3{
    display: inline-flex;
    margin: 0;
    vertical-align: top;
}

.change-text h3 .word{
 position: absolute;
 display: flex;
 opacity:0;
}

.change-text h3 .word .letter{
    transform-origin: center center 25px;
}

.change-text h3 .word .letter.out{
    transform: rotateX(90deg);
    transition: 0.32s cubic-bezier(0.6,0,0.7,0.2);
}

.change-text h3 .word .letter.in{
  transition: 0.38s ease;
}

.change-text h3 .word .letter.behind{
    transform: rotateX(-90deg);
}

.home-content p{
    color:#bdbdbd;
    line-height: 1.6;
}

.info-box{
    display:inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 300px;
    margin: 1rem 0 2rem;
}

.info-box h5{
    font-weight: 600;
    color: var(--tex-color);
    font-size: 1rem;
}

.info-box span{
    font-size: .9rem;
    color: #bdbdbd;
}

.btn-box{
display: flex;
justify-content: space-between;
width: 320px;
height: 45px;
}

.btn-box .btn{
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width:150px ;
    height: 100%;
    background: var(--hover-color);
    color: var(--bg-color);
    font-size: 1rem;
    letter-spacing: 1px;
    font-weight: 600;
    transition: .6s;
    box-shadow: var(--neon-box-shadow);
    border-radius:5px ;
    position: relative; 
    overflow: hidden;
    z-index: 1;
    border: 2px solid var(--hover-color);
}

.btn:hover{
    color: var(--hover-color);
}

.btn::before{
content: "";
position:absolute;
top: 0;
left: 0;
background:var(--bg-color);
width:0;
height: 100%;
z-index: -1;
transition: .4s;
}

.btn:hover::before{
    width: 100%;
}

.btn:nth-child(2){
    background: var(--bg-color);
    color: var(--hover-color);
}

.btn:nth-child(2):hover{
    color: var(--bg-color);
}

.btn:nth-child(2)::before{
    background: var(--hover-color);
}

.social-icons{
    margin-top:30px;
    display: flex;
    justify-content: space-between;
    width: 220px;
    height: 40px;
    margin-bottom: 20px;
}

.social-icons a{
display: inline-flex;
width: 50px;
height: 100%;
justify-content: center;
align-items: center;
background: var(--bg-color);
color: var(--hover-color);
border: 2px solid var(--hover-color);
transition: .6s;
box-shadow: 0 0 0 0.0rem #12f7ff;
border-radius: 5px;
position: relative;
z-index: 1;
overflow: hidden;
}

.social-icons a:hover{
    color: var(--bg-color);
}

.social-icons a::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width:0;
    height: 100%;
    background: var(--hover-color);
    transition: .6s;
    z-index: -1;
}

.social-icons a:hover::before{
    width: 100%;
}

.home-image{
    position: relative;
    
    
    


}

.img-box{
    text-align: center;
}

.img-box img{
    width: 1000px;
    max-width: 100%;
    height: 90vh;
}

.liquid-shape{
    position: absolute;
    display: flex; /*mudar assim que colocar a img*/
    width: 110%;
    height: 110%;
    z-index: -1;
    top: 0%;
}

.liquid-shape:nth-child(2){
    filter:blur(50px)
}

/*About--------------------------------------------------------------------------*/

.about{
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap:2em;
    background: var(--secon-bg-color);
}

.about .img-about{
    text-align: center;
    position: relative;
}

.about.img-about img{
    max-width: 400px;
    height: 40vh;
    width: 100%;
}

.about-content span{
    color: #fdfdfd;
    font-size: .8rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform:uppercase ;
}

.about-content h2{
    color: var(--hover-color);
    font-weight: 700;
    font-size: var(--norma-font);
}

.about-content h3{
font-weight: 600;
font-size: 1.5rem;
margin-bottom: .2rem;
}

.about-content p{
    color: #fdfdfd;
    font-weight: 300;
    margin-bottom: 1.5rem;
}


.info-about1,
.info-about2,
.info-about3,
.info-about4,
.info-about5,
.info-about6{
    background: var(--bg-color);
    font-size: 1rem;
    position: relative;
    padding:30px;
    width: auto;
    height: auto;
    display: block;
    flex-direction: row;
    justify-content: space-between;
    box-shadow: var(--neon-box-shadow);
    border: 1px solid var(--hover-color);
    outline: 2px solid var(--bg-color);
    z-index: 100;
    animation: morph 6s linear infinite;
}






.about-page span{
    color: var(--hover-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.about .img-about{
    text-align: center;
    position: relative;
}

.about.img-about img{
    max-width: 400px;
    height: 40vh;
    width: 100%;
}

/*ABOUT-PAGE*/

.about-page h2{
    text-align: center;
    margin-bottom: 15px;

}




/*Services-------------------------------------------------------------------------------------------*/
.main-text{
    width: 100%;
    text-align:center;
    margin-bottom:2rem;
    color: var(--hover-color);
}

.main-text h2{
    font-weight: 700;
    font-size:var(--norma-font);
}

.main-text{
    color:#fdfdfd;
    font-size: .8rem;
    font-weight: 200;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-services{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    grid-gap: 2rem;
    margin-bottom: 40px;
}

.section-services .service-box{
    flex: 1 1 18rem;
    padding: 2rem 1rem 2rem;
    text-align: center;
    background: var(--secon-bg-color);
    transition: transform .4s;
    border-radius: 10px;
}

.service-btn{
width: auto;
justify-content: center;
}

.service-box:hover{
transform: translateY(-.7rem);
}

.service-icon{
    border: 2px solid var(--hover-color);
    padding: 2rem;
    background: var(--bg-color);
    display: flex;
    align-items: center;
    font-size: 2rem;
    border-radius: 50%;
    position: relative;
    color: var(--hover-color);
    box-shadow: var(--neon-box-shadow);
    outline: 3px solid var(--bg-color);
}

.service-box h3{
   margin-top: 10px;
   font-size: 1.5rem;
}

.service-box p{
margin: 2rem 0 1.5rem 0;
font-weight: 300;
letter-spacing: 1px;
color: #bdbdbd;
line-height: 1.6;
}

/*sKILLS----------------------------------------------------------------------------------------------------------------------*/

.skills{
    background: var(--secon-bg-color);
}

.skill-main{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-row-gap:30px;
    grid-column-gap:50px ;
}

.skill-bar{
    margin-bottom: 2.3rem;
}
 
.skill-main h3{
margin-bottom: 2.rem;
font-size: var(--norma-font);
text-align: center;
}

.skill-left .skill-bar .info{
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 10px;
}

.skill-left .skill-bar .bar{
width: 100%;
height: 10px;
background-color: var(--bg-color);
border-radius: 25px;
margin-top: 10px;
position: relative;
}

.skill-bar .bar span{
    width: 50%;
    height:10px;
    position: absolute;
    left: 0;
    background: var(--hover-color);
    border-radius: 25px;
    box-shadow: var(--neon-box-shadow);
}

.skill-bar .bar .html{
    width: 90%;
    animation: html 2s;
}
.skill-bar .bar .css{
    width: 80%;
    animation: css 3s;
}
.skill-bar .bar .javascript{
    width: 66%;
    animation: javascript 5s ;
}
.skill-bar .bar .designer{
    width: 90%;
    animation: designer 5s;
}

/*Skills right*/
.professional{
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.box{
    position: relative;
    margin: 10px 0;
    flex: 1 1 15rem;
}

.box .text{
    text-align: center;
    color: #fff;
    font-size: 1rem;
}

.box .text big{
   font: 400;
   letter-spacing: 1px;
   position: absolute;
   top: 40%;
   left: 50%;
   transform: translate(-50%, -50%);
}

.box .text small{
    display: block;
    font-weight: 600;
}

.circle{
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    /*border: 2px solid #fff; quadrados em volta do circulo*/
}

.circle .points{
    width: 2px;
    height: 10px;
    background-color: var(--bg-color);
    position: absolute;
    border-radius: 3px;
    transform: rotate(calc(var(--i)*var(--rot))) translateY(-45px);
}

.points.marked{
    animation: glow 0.04s linear forwards;
    animation-delay: calc(var(--i)*0.05s);
}

/*Adminastração page*/
/* ofertas candidatura */
.ofertas-info{
    display: flex;
    padding: 20px;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row;
}

.box-2 {
    width: 30%;
    height: auto;
    padding: 10px;
    border: 1px solid #ccc;
    background-color:var(--secon-bg-color);
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    margin: 10px 10px;
    text-align: center;
  }

  
  
  
  .box-2 h2 {
    font-size: 15px;
    line-height: normal;
  }

  .ofertas .heading{
    text-align: center;
    margin: 30px;
  }

  .ofertas .heading-1 h5{
    text-align: center;
    margin: 25px;
    color: var(--hover-color);
  }
  
  .ofertas .heading-1{
    text-align: center;
    margin: 30px;
    border: 2px solid #000;
    font-size: 25px;
    background: var(--secon-bg-color);
    height: auto;
  }

  .ofertas .heading-1 P{
    color: #f5f5f5;
    text-align: center;
    font-size: medium;
    line-height: 30px;
    margin: 15px;
    padding:20px; 
  }

.ofertas .btn-box{
    margin-left: 100px;
}


 /* Designs  */
 table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  
  th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    border: 1px solid var(--tex-color);
  }

  th {
    background-color: var(--secon-bg-color);
  }
  
  


#design-page .btn-box{
    margin-top: 20px;
}

/*PORTFOLIO--------------------------------------------------------------------------------------------------------------------*/

.filter-buttons{
margin: 2rem;
text-align: center;
}

.filter-buttons .btn{
    background: none;
    outline: none;
    border: none;
    cursor: pointer;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .4px;
    margin-left: 1.3rem;
    color: var(--tex-color);
}

.filter-buttons .btn:hover{
    color: var(--hover-color);
}

.portofolio-gallery{
    display: grid;
    grid-template-columns: repeat(auto-fill , minmax(270px , 1fr));
    gap: 2rem;
}

.port-box{
    position: relative;
    border-radius:15px;
    overflow: hidden;
    background: #000000;
    display: flex;
    grid-template-rows: 1fr auto ;
    align-items: center;
    border: 2px solid var(--hover-color);
    box-shadow: var(--neon-box-shadow);
    padding: 50px;
}

.port.image{
    display: flex;
    align-items: center;
    justify-content: center;
    height:100%;
    width: 100%;
}

.port-image img,
.port-image video{
    width:100% ;
    opacity: 0.4;
    height: 100%;
    transition: .5s;
}

.port-content{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity:1;
    background: linear-gradient(rgba(0,0,0,.2),transparent);
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    transition: 0.5s;
    padding: 0 2rem;
}

.port-box:hover{
    opacity:1000;
    
}

.port-box:hover .port-image img{
    transform: scale(1.1);
}



.port-content h3{
    font-size: 1rem;
    font-weight: 600;
   
}

.port-content p{
    font-size: .8rem;
    margin: 5px 0 15px 0;
}

.port-content a{
    background: #fff;
    border-radius:50% ;
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    align-self: flex-start;
    height: 30px;
    width: 30px;
    border:1px solid var(--hover-color) ;
    outline: 2px solid #fff;
    margin-bottom: 10px;
    cursor: url(img/aligthmtio.png);
}

.port-content a i{
    font-size: 1rem;
    color: var(--bg-color);
}


/*---Contact----------------------------------------------------------------------------------------------------------------*/

.contact{
    background:var(--secon-bg-color);
    width: 100%;
}
 
.contact form{
    text-align: center;
    max-width: 50rem;
    margin: 1rem auto;
    margin-bottom: 3rem;
}

.contact form input,
 .contact form textarea{
   width: 100%;
   color: var(--tex-color);
   background: var(--bg-color);
   margin-bottom: .8rem;
   border: 2px solid var(--tex-color);
   border-radius: 5px ;
   padding: .7rem;
}

.contact form textarea{
    resize:none;
}

.formBtn{
    display: flex;
    justify-self:center;
    width: 100%;
   
}

.formBtn .btn{
cursor: pointer;
font-size: 1rem;
}

/* SECTION SUBMIT-----------------------------------------------------*/
   
.submit h3{
    margin: 0;
    padding-top:50px ;
     color: var(--hover-color);
     font-size: 20px;
     background: var(--secon-bg-color);
     height: 30vh;
     text-align: center;
     width: 100%;
   }


/*FOOTER------------------------------------------------------------------------------------------*/
footer{
 padding: 1.5rem 10%;;
 display: flex;
 align-items: center;
 justify-content: space-between;
}

footer p{
    color: #bdbdbd;
}

footer a{
    display: inline-flex;
    justify-content: center;
    color: var(--tex-color);
    background: var(--hover-color);
    padding: .6rem;
    border-radius: 5px;
}

footer a i{
    font-size: 1rem;
    color: var(--secon-bg-color);
}




/*parallax--------------- controla o aparecimento dos itens-------------------------------------------------------------------------------*/

.scroll-scale{
    opacity: 1;
    transform: scale(.9);
    transition: all 2s;
}

.scroll-bottom{
   opacity: 1;
   transform: translateY(300px);
   transition: 3s;
}

.scroll-top{
    opacity: 1;
    transform: translateY(-300px);
    transition: 3s;
 }

.show-items{
    opacity: 1;
    transform: translateX(0);
}


/*--galeria---------------------------------------------------------------*/

#product-details{
    width: 100%;
   margin-top: 11%;
}



#product-details .product-box{
    width: 100%;
    padding:0 20% ;
    border: 1px solid var(--bg-color);
}

#product-details .product-img{
    width:100%;
    height:70vh;
}



#product-details .product-title{
    font-size: 20px;
}

#product-details .price{
    text-transform: capitalize;
    font-size: 20px;
}

.product-short-des{
    font-size: 15px;
    line-height: 25px;
    height: auto;
    padding: 2% 6%;
}

#product-details i{
     margin-left: 40px;
    padding: 10px;
    border-radius: 5px;
    background: var(--tex-color);
    border: 1px solid var(--tex-color);
    font-size: 20px;
    cursor: pointer;
    text-transform: capitalize;
    text-align: center;
    bottom: 5px;
    right: 20%;
    left: 50%;
}
#product-details i:hover{
   
   background:var(--hover-color2) ;
   transform: 1s;
}

.details-des{
    padding: 2% 4%;
    text-transform: capitalize;

}


.des{
color: var(--secon-bg-color-bg-color);
line-height: 20px;
}





/*keyframes--------------------------------------------------------------------------------------------------------------------*/

@keyframes morph{
    0%,
    100% {
        border-radius:40% 60% 70% 30%/ 40% 40% 60% 50%;
    }
    30%{
        border-radius:70% 30% 50% 50%/ 30% 30% 70% 70%;
    }
    60%{
        border-radius:100% 60% 60% 100%/ 100% 100% 60% 60%;
    }
    80%{
        border-radius:69% 31% 66% 34%/ 21% 30% 70% 79%;
     }
}

@keyframes html {
    0%{
        width: 0%;
    }
    100%{
        width: 72%;
    }
    
}

@keyframes javascript {
    0%{
        width: 0%;
    }
    100%{
        width: 66%;
    }
    
}

@keyframes designer {
    0%{
        width: 0%;
    }
    100%{
        width: 90%;
    }
    
}

@keyframes css {
    0%{
        width: 0%;
    }
    100%{
        width: 80%;
    }
    
}

@keyframes glow {
    0%{
        background: var(--bg-color);
       box-shadow: none;
    }
    100%{
        background:var(--hover-color);
        box-shadow: var(--neon-box-shadow);
    }
}

 
/*break point//////Mediaquery///////////////////////////////////////////////////////////////////*/

@media(max-width:991px){
 header, 
 header.sticky{
     padding:   10px 5%;
 }
 footer{
    padding: 15px 5%;
 }
 section{
    padding: 50px 5%;
 }
 .navlist a{
padding: 8px 15px;
 }

 :root{
    --big-font:2.2rem;
    --norma-font:1.8rem;
    --neon-box-shadow: 0 0 .8rem #12f7ff;
    --h2-font:3rem;
 }
 .home-content{
        margin-top: 5rem;
}
 .social-icons{
       margin-top: 2rem;

}

}

@media(max-width:768px) {
    #menu-icon{
        display: block;
        transition: all .4s ease;
    }
    #menu-icon.fa-xmark{
        transform: rotate(-180deg);
    }

    .navlist{
        display: flex;
        position: absolute;
        top: -1000px;
        right: 0;
        left: 0;
        flex-direction: column;
        background: var(--bg-color);
        text-align: right;
        padding: 0 5%;
        transition: all .45s ease;
    }
    .navlist a{
        display: block;
        padding-bottom: 1rem;
        font-size: 1rem;
    }
    .navlist.open{
       top: 100%;
    }

    .home{
        display: block;
    }
    .home-image{
        margin-bottom: 4rem;
    }

    .liquid-shape{
        width: 90%;
        left: 10%;
        top: 13%;
    }

    .about{
        flex-direction: column;
        padding: 10px;
    }

    .skill-main{
        grid-template-columns: 1fr;
    }

    .filter-buttons{
        margin: 2.5rem 0;
    }

    footer p{
        font-size: .9rem;
    }

    /*ADMIN-SERVICES*/
    .box-2 {
        display: block;
        width: 90%;
        height:auto ;
        padding: 8px;
    }

    .ofertas .btn-box{
        margin-left:10px;
    }

    .ofertas .heading-1{
        text-align: center;
        margin:8px;
        height:auto ;
      }
    
      .ofertas .heading-1 P{
        padding:0 10px ;
      }
}

@media(max-width:420px) {
    html{
        font-size: 80%;
    }
    footer p{
        font-size: .6rem;
    }
    .filter-buttons .btn{
       font-size: .8rem;
    }
    .img-about img{
        max-width: 100%;
        height: auto;
        width: 300px;
    }
    .info-about1, .info.about2, .info.about3{
        display: none;
    }
}
