@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Sedgwick+Ave+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caveat&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Righteous&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
*::-webkit-scrollbar{
    width: 15px;
}
*::-webkit-scrollbar-track {
    background: white;
}
*::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: rgb(87, 19, 19);
    border: 2px solid white;
}
html{
    overflow: hidden;
}

div#load{
    height: 100vh;
    width: 100vw;
    display: flex;
    position: fixed;
    background-color: #000000;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

div#load img{
    width: calc(100%/2.1);
}
header{
    font-family: 'Poppins';
    display: flex;
    justify-content: space-between;
    width: 100vw;
    align-items: center;
    padding: 0 50px;
    font-size: 1.1rem;
}
header img{
    opacity: 0;
    width: 80px;
    transition: .1s;
    animation: leftanimation 1s ease forwards;
    animation-delay: 3000ms;
}
header ul{
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 5px;
}

header ul li a{
    text-decoration: none;
    color: black;
    opacity: 0;
    transition: .1s;
    animation: linkanimation .5s ease forwards;
    font-weight: 500;
}
header ul li a#active{
    color: rgb(87, 19, 19);
}
header ul li a:hover{
    color: rgb(87, 19, 19); 
}
header div#menu-icon{
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
header div#menu-icon span{
    display: none;
    width: 30px;
    height: 3px;
    transition: .5s all;
    background-color: black;
}
header div#menu-icon span#bar{
    width: 20px;
}
header div.on span#bar{
    transform: translateX(200px);
    opacity: 0;
}
header div.on span#rotate1{
    transform: translateY(9px) rotate(45deg);
    background-color: rgb(87, 19, 19);
}
header div.on span#rotate2{
    transform: translateY(-7px) rotate(-45deg);
    background-color: rgb(87, 19, 19);
}

div#container-first{
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
div#container-first-info{
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    font-family: 'Poppins';
    font-weight: 900;
}
div#container-first-info div img{
    width: calc(100%/1.5);
    animation: photoanimation 5s linear infinite;
}
div#container-first-info div#box-photo{
    width: 40vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#container-first-info div#box-message div{
    display: flex;
    flex-direction: column;
    width: 40vw;
    padding: 20px;
}
div#container-first-info div#box-message div h2{
    opacity: 0;
    animation: rightanimation 1s ease forwards;
    width: 100%;
    animation-delay: 3000ms;
}
div#container-first-info div#box-message div h3:first-child{
    opacity: 0;
    animation: topanimation 1s ease forwards;
    animation-delay: 3000ms;
}
div#container-first-info div#box-message div h3:last-child{
    opacity: 0;
    animation: bottomanimation 1s ease forwards;
    animation-delay: 3000ms;
}
div#container-first-info div#box-message div#container-message div#info-container{
    font-size: 2rem;
    gap: 10px;
}
div#container-first-info div#box-message div#container-message div#social-container{
    display: flex;
    flex-direction: row;
    font-size: 2rem;
    gap: 10px;
}
div#container-first-info div#box-message div#container-message div#social-container a{
    display: flex;
    text-decoration: none;
    border: 2px solid rgb(87, 19, 19);
    padding: 5px;
    border-radius: 50%;
    color: rgb(87, 19, 19);
    align-items: center;
    opacity: 0;
    transition: .1s all;
    animation: rightanimation 1s ease forwards;
}
div#container-first-info div#box-message div#container-message div#social-container a:hover{
    background-color: rgb(87, 19, 19);
    color: white;
    box-shadow: 0px 0px 20px rgb(87, 19, 19) ;
}
div#container-first-info div#box-message div p{
    min-width: 100%;
}
div#container-first-info div#box-message div span{
    color: rgb(87, 19, 19) ;
}
div#container-first-info div#box-message a#btn{
    width: 50%;
    padding: 10px;
    font-size: .9rem;
    text-align: center;
    background-color: transparent;
    outline: none;
    border: 3px solid rgb(87, 19, 19);
    background-color: rgb(87, 19, 19);
    color: white;
    border-radius: 20px; 
    font-weight: normal;
    margin-top: 10px;
    transition: .15s all;
    text-decoration: none;
}
div#container-first-info div#box-message div a#btn:hover{
    border-color: rgb(143, 52, 52);
    background-color: white;
    color: rgb(87, 19, 19);
    box-shadow: 0px 0px 20px rgb(87, 19, 19);
}
.delayAnimation{
    animation-delay: calc(3000ms * var(--i)) !important;
}
/* About Me */

div#container-about{
    width: 100vw;
    min-height: 100vh;
    padding: 150px 0;
    font-family: 'Poppins', sans-serif;
}
div#container-title-about{
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}
fieldset {
    width: calc(100%/2);
    border-top: 2px solid black !important;
    border: none;
    text-align: center;
 }
 fieldset legend {
     padding: 0px 50px;
     font-size: 2rem;
     font-weight: bold;
     letter-spacing: 0.045em;
 }
 div#about-info{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 div#about-info div#container-about-img{
    width: 40vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
 }
 div#about-info div#container-about-img img{
    width: calc(100%/1.3);
    animation: photoanimation 5s linear infinite;
 } 
 div#container-about-text{
    width: 60vw;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
 }
 div#container-about-text div#box-about-text{
    width: 90%;
    line-height: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: 'Roboto';
    font-weight: bold;
    padding: 30px;
    position: relative;
    font-size: 1.3rem;
}
div#container-about-text div#box-about-text::after{
    content: '';
    position: absolute;
    width: calc(100%/2);
    background-color: black;
    height: 3px;
    bottom: 0;
}
div#container-button-about{
    display: flex;
    flex-direction: row;
    padding: 30px;
    gap: 30px;
}
div#container-button-about a{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 20%;
    font-size: 1rem;
    padding: 5px;
    outline: none;
    border: 3px solid rgb(87, 19, 19);
    background-color: transparent;
    color: black;
    border-radius: 10px; 
    font-weight: normal;
    transition: .15s all;
    text-decoration: none;
}
div#container-button-about a#btn-github{
    font-size: 2rem;
    width: 15%;
}
div#container-button-about a:hover{
    background-color: rgb(87, 19, 19);
    color: white;
    box-shadow: 0px 0px 20px rgb(87, 19, 19);
}


/* BORDAS CUSTOMIZADAS */
.section-custom-border1{
    margin-bottom: -1px;
    -webkit-clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
clip-path: polygon(0 0, 100% 100%, 100% 100%, 0% 100%);
}
.section-custom-border2{
    -webkit-clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 0, 0 0);
    clip-path: polygon(50% 0, 100% 0, 100% 100%, 0 0, 0 0);
    margin-top: -1px;
}

/* Portfolio */
   
div#container-portfolio{
    min-height: 100vh !important;
    width: 100vw;
    background-color: black;
    padding: 100px 0;
}

div#container-content{
    min-height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    flex-direction: column;
}
div#container-content div#box-text{
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: bold;
    width: 100vw;
    text-align: center;
    color: white;
    padding: 20px;
}
div#container-content div#box-content-main{
    display: flex;
    min-height: 80vh;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
}
div#container-content div#container-text{
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
div#container-content div#box-portfolio-text{
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

div#container-content div#portfolio-text{
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    overflow: hidden;
}

div#container-content div#portfolio-text div{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 2rem;
    font-family: 'Poppins';
    text-transform: uppercase;
    font-weight: bold;
    color: white;
    height: 100%;
    overflow: hidden;
}
div#container-content div#portfolio-text div#div-port{
    justify-content: start;
    height: 100%;
}
div#container-content div#portfolio-text div#div-folio{
    justify-content: end;
    height: 100%;
}

.section-custom-border1, .section-custom-border2{
    height: 10vh;
    width: 100vw;
    background-color: black;
    
}
    /* Projetos */
div#box-projects{
    width: 100%;
    flex: 6;
    display: flex;
    padding-top: 2%;
    flex-direction: column;
    gap: 30px;
    min-height: 80vh;
}
    /* Project Models */

div#box-projects div#projects-models{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
div#box-projects div#projects-models ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 10px;
    gap: 20px;
}
div#box-projects div#projects-models ul li{
    cursor: pointer;
    display: block;
    font-family: 'Poppins';
    border: 1px solid black;
    box-shadow: 0px 0px 10px #393737;
    color: #9D9696;
    background-color: transparent;
    padding: 5px 10px;
    font-size: 0.7rem;
    font-weight: 600;
    transition: .5s all;
}
div#box-projects div#projects-models ul li:hover{
    border: 1px solid white;
    color: white;
    background-color: transparent;
}
div#box-projects div#projects-models ul li.ativo{
    border: 1px solid white;
    color: white;
    background-color: transparent;
}
    /* Projects armazenamento */

div#box-projects div#projects-armazenamento ul{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px;
}
div#box-projects div#projects-armazenamento ul li{
    display: none;
    text-decoration: none;
    width: 400px;
    position: relative;
}

div#box-projects div#projects-armazenamento ul li.ativo{
    display: block;
}
div#box-projects div#projects-armazenamento ul li img{
    width: 100%;
}

div#box-projects div#projects-armazenamento ul li div#box-info-project{
    font-family: 'Poppins';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    visibility: hidden;
    transition: .1s;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div{
   flex: 1;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    flex: 5;
    font-size: 1rem;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#info p{
    font-size: .8rem;
    text-align: center;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#info p#long-text{
    font-size: .7rem;
    text-align: center;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies{
    display: flex;
    justify-content: center;
    width: 100%;
    align-items: center;
    padding: 10px;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    width: 100%;
    padding: 0;

}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li{
    width: auto;
    display: flex;
    justify-content: center;
    list-style: none;
    align-items: center;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li i{
    font-size: 1.2rem;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li i.b{
    color: white;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li i.fa-laravel{
    font-size: .9rem;
    font-weight: bold;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#button-project{
    width: 100%;
    padding: 10px;
    text-decoration: none;
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex: 2;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#button-project a{
    display: flex;
    text-decoration: none;
    justify-content: center;
    text-align: center;
    align-items: center;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#button-project label{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    align-items: center;
}
div#box-projects div#projects-armazenamento ul li div#box-info-project div#button-project i{
    display: block !important;
    font-size: 2rem;
    color: white;
}

i.off{
    cursor: default;
    color: red !important;
}
i.on{
    cursor: pointer;
    color: green !important;
}

div#box-projects div#projects-armazenamento ul li div p{
    font-size: .7rem;
}
div#box-projects div#projects-armazenamento ul li:hover img{
    filter: brightness(.3);
    transition: .3s all;
}
div#box-projects div#projects-armazenamento ul li:hover div{
    visibility: visible;

}
div#box-projects div#projects-armazenamento ul li div{
    color: white;

}

/* Skills */

div#container-skills{
    min-height: 100vh;
    width: 100vw;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 100px;
}
div#container-skills div#box-text{
    width: 100vw;
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 2rem;
}
div#container-skills div#container-skills-content{
    height: 100%;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
}
div#container-skills div#box-skills{
    padding: 20px;
    height: 100%;
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}
div#container-skills div#box-text-skills{
    padding: 10px;
    align-items: center;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    letter-spacing: 1px;
    font-size: 1rem;
    transform: rotate(-90deg);
    
}
div#container-skills div#box-text-skills label{
    padding: 10px;
    position: relative;
}
div#container-skills div#box-text-skills label::before{
    content: "";
    position: absolute;
    height: 2px;
    width: 80%;
    background-color: black;
    bottom: 0;
}
div#container-skills div#skills{
    flex: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    border-right: 4px solid black;
}
div#container-skills div#skills div{
    padding: 20px;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    align-items: center;
    box-shadow: 0px 0px 15px #E7DDDD;
    font-size: 1rem;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    transition: .2s all;
}
div#container-skills div#skills div i{
    font-size: 5rem;
}
div#container-skills div#skills div:hover {
    color: rgb(87, 19, 19);
    transform: scale(1.1);
}

/* FOOTER */

div#footer{
    width: 100vw;
    box-shadow: 0px 0px 10px rgb(89, 84, 84);
    margin-top: 50px;
}
div#footer div#container-info-footer{
    width: 100%;
    padding: 80px;
    background-image: url(img/bg-footer.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: space-around;
    align-items: center;
    color: white;
}
div#footer div#container-info-footer div#container-data-social{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 100px;
    padding: 20px;
}
div#footer div#container-info-footer div#container-data-social div{
    display: flex;
    flex-direction: column;
}
div#footer div#container-info-footer div#container-data-social div:last-child ul{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row !important;
    gap: 10px;
    font-size: 1.5rem;
    text-decoration: none;
}
div#footer div#container-info-footer p{
    font-size: 1rem;
    font-weight: bold;
    font-family: 'Poppins';
    text-transform: uppercase;
}

div#footer div#container-info-footer div:last-child ul li a{
    color: rgb(205, 140, 140);
    transition: .2s all;
}
div#footer div#container-info-footer div:last-child ul li a:hover{
    color: white;
}
div#footer div#container-info-footer div.list-info{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}
div#footer div#container-info-footer div.list-info ul{
    display: flex;
    justify-content: center;
    align-items: left;
    flex-direction: column;
    gap: 20px;
}div#footer div#container-info-footer div#box-datas{
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}
div#footer div#container-info-footer div#box-datas ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
div#footer div#container-info-footer div#box-datas ul li i{
    font-size: 1.2rem;
    font-weight: bold;
    color:rgb(205, 140, 140);
}
/* Responsividade */

@media screen and (max-width: 1200px) {
    div#container-first-info div#box-message div#container-message div#info-container{
        font-size: 1.3rem;
    }
    div#box-projects div#projects-armazenamento ul li{ 
        width: 350px;
    }
    div#box-projects{
        flex: 4;
    }

    /* SKILLS */

    div#container-skills div#skills div{
        width: 100px;
        height: 100px;
        padding: 0;
        font-size: .8rem;
    }
    div#container-skills div#skills div i{
        font-size: 4.5rem;
    }
    div#container-skills div#box-text-skills label{
        /* background-color: red; */
        padding: 0;
    }
    div#container-skills div#box-text-skills label::before{
        width: 100%;
        bottom: -5px;
    }
}
@media screen and (max-width: 940px) {
    div#container-first-info div#box-message div#container-message div#info-container{
        font-size: 1.1rem;
    }
    div#box-about-text{
        min-width: 60vw;
        max-width: 60vw;
    }
    div#box-about-text p{
        width: auto;
        font-size: .9rem;
    }
    div#container-button-about{
        padding: 20px 10px;
    }
    div#container-button-about a{
        min-width: 120px;
    }

    /* portfolio */

    div#container-content div#portfolio-text div{
        font-size: 1.8rem;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li i{
        font-size: 1rem;
    }

}
@media screen and (max-width: 800px) {
    header{
        font-size: .8rem;
    }
    header img{
        width: 60px;
    }
    div#container-first-info{
        display: flex;
        flex-direction: column;
    }
    div#container-first-info div#box-photo, div#container-first-info div#box-message{
        width: 100vw;
        display: flex;
    }
    div#container-first-info div#box-message {
        height: 100%;
        font-size: 1rem;
        padding: 0;
    }
    div#container-first-info div#box-message div#container-social-input{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: calc(100vw/2);
        align-items: center;
    }
    
    div#container-first-info div#box-message div#container-message div#info-container{
        font-size: 1rem;
        width: calc(100vw/2);
    }
    div#container-first-info div#box-message div#container-message{
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        align-items: center;
    }
    div#container-first-info div#box-photo{
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-direction: column;
    }
    div#container-first-info div#box-photo img{
        width: 200px;
    }
    div#container-first-info div#box-message div#container-social-input a#btn{
        padding: 5px;
        min-width: 120px;
    }

}
@media screen and (max-width: 745px) {
    header ul{
        position: absolute;
        flex-direction: column;
        background-color: rgb(87, 19, 19);
        top: 80px;
        right: -200%;
        width: 100%;
        padding: 20px;
        transition: .5s all;
        align-items: center;
        justify-content: center;
        align-items: center; 
        gap: 50px;
        z-index: 100;
        padding-top: 0;
    }
    header ul.on{
        right: 0;
    }
    header ul.on a{
        color: white;
    }
    header ul.on a:hover{
        color: rgb(111, 57, 57);
    }

    header div#menu-icon{
        display: flex;
        padding: 10px;
    }
    header div#menu-icon span{
        display: block;
    }
    div#container-first-info div#box-message div#container-message div#info-container{
        font-size: 1rem;
    }
    div#container-first-info div#box-message div#container-social-input a#btn{
        padding: 5px;
        min-width: 130px;
    }

    /* ABOUT ME */

    div#container-about-img{
        min-width: 100%;
    }
    div#about-info div#container-about-img img{
        width: calc(100%/3);
    } 
    div#about-info{
        flex-direction: column;
    }
    div#container-about-text{
        width: 100vw;

    }
    div#box-about-text{
        min-width: 100vw;
    }
    div#box-about-text::after{
        left: calc(50%/2);
    }
    div#box-about-text p{
        font-size: .9rem;
    }
    div#container-button-about {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    div#container-button-about a{
        min-width: 100px;
    }
    div#container-button-about a:first-child{
        padding: 8px 0px;
        font-size: .7rem;
    }

    /* PORTFOLIO */

    div#container-content{
        /* min-height: 100vh; */
    }
    div#container-content div#box-text{
       display: none;
    }
    div#container-content div#box-content-main{
        flex-direction: column;  
        min-height: 60vh;
    }
    div#container-content div#container-text{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    div#container-content div#box-portfolio-text{
        width: 100vw;
        height: 80%;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    div#container-content div#portfolio-text{
        gap: 10px;
        padding: 0;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 10px;
    }
    div#container-content div#portfolio-text div{
        display: flex;
        flex-direction: row;
        padding: 0px;
        font-size: 1.5rem;
        min-width: 30%;
        gap: 10px;
    }
    div#box-projects{
        width: 100vw;
        padding: 20px;
    }
    div#box-projects div#projects-armazenamento ul{
        height: 100%;
    }
    div#box-projects div#projects-armazenamento ul li{
        width: 350px;
    }

    /* Skills */
    div#container-skills div#box-skills{
        width: 100%;
    }
    div#container-skills div#box-text-skills{
        flex: 1;
        width: auto;
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    div#container-skills div#box-text-skills label{
        font-size: .8rem;
        letter-spacing: 1px;
    }
    div#container-skills div#skills{
        justify-content: center;
        align-items: center;
    }

    /* FOOTER */

    div#footer div#container-info-footer{
        flex-direction: column;
        gap: 30px;
        padding: 40px 0;
    }
    div#footer div#container-info-footer div#container-data-social{
        width: 100%;
        justify-content: space-around;
    }
}

@media screen and (max-width: 460px) {
    div#container-first-info div#box-message div#container-message div#info-container{
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        font-size: .8rem;
        gap: 10px;
        min-width: 100vw;
    }
    div#container-first-info div#box-message h2, div#container-first-info div#box-message h3{
        text-align: center;
        justify-content: center;
        align-items: center;
    }
    div#container-first-info div#box-message div#container-message{
        flex-direction: column;
    }
    div#container-first-info div#box-message div#container-message div{
        width: 100vw !important;
    }
    div#container-first-info div#box-message div#container-message div#social-container a{
        font-size:.7em;
        padding: 5px;
    }
    div#container-first-info div#box-message div#container-social-input{
        flex-direction: row;
        overflow-y: hidden;
    }

    /* ABOUT ME */

    div#box-about-text p{
        font-size: .7rem;
        line-height: 1.2rem;
    }
    div#about-info div#container-about-img img{
        width: calc(100%/2);
    } 
    div#container-title-about fieldset{
        width: 100%;
    }

    div#container-title-about fieldset legend{
        font-size: 1rem;
    }

    /* PORTFOLIO */

    div#box-projects div#projects-models ul li{
        cursor: pointer;
        display: block;
        font-family: 'Poppins';
        border: 1px solid black;
        box-shadow: 0px 0px 10px #393737;
        color: #9D9696;
        background-color: transparent;
        padding: 5px 10px;
        font-size: 0.5rem;
        font-weight: 600;
        transition: .5s all;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#info{
        display: flex;
        text-align: center;
        font-size: .8rem;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#info p{
        font-size: .6rem;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#info p#long-text{
        font-size: .5rem;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li i{
        font-size: .7rem;
    }

    div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li i.fa-laravel{
        font-size: .7rem;
        font-weight: bold;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#button-project i{
        display: block !important;
        font-size: 1.7rem;
        color: white;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#button-project button{
        background-color: transparent !important;
        border: none;
        outline: none;
    }
    /* SKILLS */

    div#container-skills div#box-skills{
        justify-content: space-between;
    }
    div#container-skills div#box-skills{
        width: 100%;
    }
    div#container-skills div#box-text-skills{
        flex: 2;
        justify-content: center;
        align-items: center;
    }
    div#container-skills div#box-text-skills label{
        font-size: .7rem;
        letter-spacing: 1px;
    }

    div#container-skills div#skills div{
        width: 80px;
        height: 80px;
        font-size: .6rem;
        padding: 0;
    }
    div#container-skills div#skills div i{
        font-size: 3rem;
    }


    /* FOOTER */
    div#footer div#container-info-footer{
        padding: 35px 0px;
    }
    div#footer div#container-info-footer div#container-data-social{
        justify-content: space-between;
        gap: 0;
        padding: 10px;
    }
    div#footer div#container-info-footer div#container-data-social div:last-child ul{
        font-size: 1.5rem;
    }
    div#footer div#container-info-footer div#box-datas ul li{
        font-size: .8rem;
    }
    div#footer div#container-info-footer div#container-data-social div:last-child ul{
        flex-direction: column !important;
    }
    div#footer div#container-info-footer div#box-datas ul{
        gap: 20px;
    }
}
@media screen and (max-width: 370px) {
    div#container-first-info div#box-message div#container-message div#info-container{
        height: auto;
    }
    div#container-first-info div#box-message div#container-message{
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        overflow: hidden;
        margin: 0;
    }
    div#container-first-info div#box-message h2, div#container-first-info div#box-message h3{
        font-size: .8rem;
    }
    div#container-first-info div#box-message div#container-message div#social-container{
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 10px;
    }
    div#container-first-info div#box-message div#container-social-input{
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 0;
        flex-direction: column;
        width: 100vw;
        height: auto;
    }
    div#container-first-info div#box-message div#container-social-input #button-container {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    div#container-first-info div#box-message div#container-social-input a#btn{
        margin-top: 0;
        padding: 5px;
        font-size: .5em;
        text-align: center;
        justify-content: center;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#info{
        display: flex;
        text-align: center;
        font-size: .7rem;
        gap: 5px;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#info p{
        font-size: .5rem;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#info p#long-text{
        font-size: .4rem;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li i{
        font-size: .6rem;
    }

    div#box-projects div#projects-armazenamento ul li div#box-info-project div#technologies ul li i.fa-laravel{
        font-size: .6rem;
        font-weight: bold;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#button-project{
        padding-bottom: 5px;
    }
    div#box-projects div#projects-armazenamento ul li div#box-info-project div#button-project i{
        display: block !important;
        font-size: 1.1rem;
        color: white;
    }

    /* SKILLS */

    div#container-skills div#skills div{
        width: 60px;
        height: 60px;
        font-size: .5rem;
        padding: 0;
    }
    div#container-skills div#skills div i{
        font-size: 2rem;
    }
}

/* ANIMATIONS */

@keyframes photoanimation {
    0%{
        transform: translateX(0%); 
    }
    50%{
        transform: translateX(-2%); 
    }
    70%{
        transform: translateX(0%); 
    }
    80%{
        transform: translateX(2%); 
    }
    100%{
        transform: translateX(0%);
    }
}

@keyframes rightanimation {
    0%{
        transform: translateX(200px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes leftanimation {
    0%{
        transform: translateX(-200px);
        opacity: 0;
    }
    100%{
        transform: translateX(0);
        opacity: 1;
    }
}
@keyframes topanimation {
    0%{
        transform: translateY(-200px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes bottomanimation {
    0%{
        transform: translateY(100px);
        opacity: 0;
    }
    100%{
        transform: translateY(0);
        opacity: 1;
    }
}
@keyframes linkanimation {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
@keyframes baranimation {
    0%{
        transform: translateX(0px);
        opacity: 1;
    }
    100%{
        transform: translateX(100px);
        opacity: 0;
    }
}