@import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');
@import url('https://fonts.googleapis.com/css?family=Poppins:500&display=swap');
*{
    padding: 0%;
    margin: 0%;
    letter-spacing: 1.5px;
    box-sizing: border-box;
}

input[type=number] {
  -moz-appearance: textfield;
}
html{
    background: #101010;

  }
#loader{
      display: none;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      height:100vh;
      position: fixed;
      z-index:100;
      font-family: poppins, sans-serif, serif;
      background-color: #202020;
      color: whitesmoke;
      font-size: 70px;
      width: 100%;
  }
body{
    user-select: none;
    height: auto;
    overflow-x: hidden;
    width: 100%;
    background: #171717;
}
#header{
    background:#171717;
    height: 100vh;
    width: 100%;;
    overflow: hidden;
    animation: scale 1.5s ease;
    position:relative;
    display: block;
}
#particles{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100vw;
    background-size: cover;
    background-position: 50% 50%;
    display: block;
}
#navigation-content{
    height: 100vh;
    width: 100%;
    position:fixed;
    z-index: 5;
    background-color:#020202;
    transform: translateY(-200%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
#navigation-bar{
    position: fixed;
    height: 100px;
    width: 100%;
    z-index: 3;
    padding: 10px;
    background:transparent;
    overflow: hidden;
}
.menubar{
    position: absolute;
    right:4%;
    top: 40%;
    cursor: pointer;
    opacity: .8;
    transition: all .4s ease;
}
.menubar span{
    position: relative;
    background-color:transparent;
    height:2px;
    width: 20px;
    display: block;
    margin:6px;
    border-radius: 20px;
}
.menubar .first-span{
    width:35px;
}
.menubar .first-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 50%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .5s ease;

}
.menubar .second-span{
    width:35px;
}
.menubar .second-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 75%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .3s ease;
}
.menubar .third-span{
    width:35px;
}
.menubar .third-span::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top:0;
    right:0;
    background-color:whitesmoke;
    transition: all .3s ease;
}
.menubar:hover .second-span::before , .menubar:hover .first-span::before {
    width: 100%;
}
.menubar:hover{
    opacity: 1;
}
.close-first , .close-second{
 height: 2px;
 width: 35px;
 background-color: whitesmoke;
 display: block;
 margin: 4px;
 cursor: pointer;
 padding: 1px;
 border-radius: 20px;
}
.close-first {
    transform: rotate(45deg);
}
.close-second{
    transform: rotate(-45deg);
}
.navigation-close{
    position: absolute;
    top: 6%;
    right:4%;
    padding: 10px;
    cursor: pointer;
    transition: all.3s ease;
    opacity: .8;
}
.navigation-close:hover{
    opacity: 1;
    transform: rotate(90deg);
}
.logo img{
    height: 80px;
    position: absolute;
    top: 3%;
    left: 2.5%;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
    transition: all .4s ease;
}
.logo img:hover{
    opacity: 1;
    transform: rotate(-45deg);
}
#navigation-bar img{
    height: 80px;
    position: absolute;
    ;
    top: 15%;
    left: 2.5%;
    opacity: .8;
    transition: all .4s ease;
}
#navigation-bar img:hover{
    opacity: 1;
    transform:rotate(-45deg);
}
.header-image img{
    height: 100vh;
    float: right;
}
.header-image{
    float: right;
    background-size: cover;
    background-position: center;
    width: 40%;
    height: 100vh;

}
.header-content{
    height: 100vh;
    width: 100%;
    float: left;
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: center;
    color: whitesmoke;
    font-family: Quicksand, sans-serif, serif;
    font-weight: 400;
    letter-spacing: 1px;
    flex-direction: column;
    font-size: 50px;
    z-index: 1;
}
.header-content-box{
    z-index: 2;
    text-align: center;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;

}
.header-content .firstline{
    z-index: 2;
    font-weight:700;
    font-family: poppins, sans-serif, serif;
    font-size: 65px;
}
.header-content .secondline{
    z-index: 2;
    font-size: 30px;
    padding-top:20px ;
    font-weight:500;
    color: rgb(255, 255, 255,.8);
}
.slash{
    animation-name: animateslash;
    animation-duration: .8s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.social-media-links{
    height: 100vh;
    position: absolute;
    z-index: 2;
    padding: 60px;
    width: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.social-media{
    color: white;
    width:  21px;
    opacity: .6;
    margin: 8px;
    transition: all .4s ease;
}
.social-media:hover{
    opacity: 1;
    transform: scale(1.1);
}
.navigation-links{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: poppins, sans-serif;
}
.navigation-links a{
    padding:10px;
    text-decoration: none;
    color: white;
    font-size: 30px;
    opacity: .7;
    transition: all .4s ease;
}
.navigation-links a:hover{
    opacity: 1;
}
.navigation-links a::before{
    content: "";
    position: absolute;
    top:50%;
    left: 50%;
    display: flex;
    justify-content: center;
    transform: translate(-50%,-50%);
    align-items: center;
    font-size: 5em;
    font-weight: 400;
    font-family: Quicksand, sans-serif;
    color:rgb(255, 255, 255,.1);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    letter-spacing: 100px;
    transition: all .4s ease;
}
.navigation-links a:hover::before{
    content: attr(data-text);
    opacity: 1;
    letter-spacing: 10px;
}
#breaker{
    height: 100vh;
    width: 200%;
    background-color: #c70039;
    opacity: 1;
    animation: breakeranimate 2s linear;
    display: none;
    transition: all .4s ease;
    border-radius: 5px;
    z-index: 10;
    position: fixed;
}
.color{
    color: #c70039;
    transition: all .4s ease;
}

/* About */
#about{
    background-color: #101010;
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}
#about-content{
    display: flex;
    flex-direction:column;
    align-items: center;
    color: whitesmoke;
    justify-content: center;
    height: auto;
    width: 100%;
    padding:30px;
}
#about-content a{
    text-decoration: none;
    font-family: Quicksand, sans-serif;
    font-weight: 400;
    font-size: 35px;
    color: #c70039;
    transition: all .4s ease;
}
.about-header {
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: Quicksand, sans-serif;
    color: whitesmoke;
    padding: 30px 10px 15px;
    font-weight: 900;
}
.about-first-paragraph{
    color: whitesmoke;
    justify-content: center;
    text-align: justify;
    font-size: 20px;
    font-family: poppins, sans-serif;
    width: 50%;
    padding: 30px;
    font-weight: 400;
}
.about-first-paragraph .color{
    font-size: 40px;
}
.about-first-line{
    font-size: 35px;
    opacity: 1;
    margin-bottom: 10px;
    display: block;
}
.about-second-line{
    opacity: .8;
    font-size: 15px;
    font-weight: 100;
}
.about-main{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    padding-left: 50px;
    padding-right: 50px;
    flex-direction: row;
}

.about-img img{
    width: 100%;
    height:auto;
    padding: 30px;
    border-radius: 40px;
}
.about-img {
    width: 800px;
    height:600px;
    padding: 10px 30px 30px;
    border-radius: 40px;
}

.skills-stack {
    width: 100%;
    margin-top: 15px;
    text-align: center;
    background-color: whitesmoke;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}
.skills-stack h2 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 15px;
}
.skills-stack-icons {
    display: flex;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.skills-stack-icons img {
    height: 30px;
    width: 30px;
    transition: transform 0.3s ease-in-out;
}
.skills-stack-icons img:hover {
    transform: scale(1.8);
}
.cv {
    padding-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.cv a button{
    border:none;
    padding: 15px 30px;
    color: whitesmoke;
    background: #c70039;
    outline: none;
    font-size:20px;
    font-family: Quicksand, serif;
    border-radius: 10px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    transition: all .4s ease;

}
.cv a button:hover{
    opacity: 1;
    transform: scale(1.05);
}

/* Academic */
#academic{
    background-color: #101010;
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}
#academic-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: whitesmoke;
    justify-content: center;
    height: auto;
    width: 100%;
    padding: 30px;
}
#academic-content a {
    text-decoration: none;
    font-family: Poppins, sans-serif;
    font-size: 18px;
    color: whitesmoke;
    margin-bottom: 8px;
    transition: all .4s ease;
}
.academic-header {
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: Quicksand, sans-serif;
    color: whitesmoke;
    padding: 30px 10px 15px;
    font-weight: 900;
}
.academic-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    padding-left: 50px;
    padding-right: 50px;
    flex-direction: column;
}
.academic-img img {
    width: 100%;
    height: 380px;
    padding: 30px;
    border-radius: 40px;
}
.academic-img {
    width: 550px;
    height: auto;
    padding: 10px 30px 30px;
    border-radius: 40px;
}
.academic-first-paragraph {
    color: whitesmoke;
    justify-content: flex-start;
    font-size: 20px;
    font-family: Poppins, sans-serif;
    width: 80%;
    padding: 20px;
    font-weight: 400;
    line-height: 1.5;
}
.academic-first-paragraph h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.academic-first-paragraph ul {
    list-style: none;
    padding-left: 0;
}
.academic-first-paragraph ul ul {
    padding-left: 50px;
}
.academic-first-paragraph ul li{
    font-size: 18px;
    color: whitesmoke;
    margin-bottom: 8px;
}

.academic-first-paragraph ul li.color::before {
    content: "•";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Work */
#work {
    background-color: #101010;
    display: none;
    width: 100%;
    height: auto;
    overflow: hidden;
}
#work-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: whitesmoke;
    justify-content: center;
    height: auto;
    width: 100%;
    padding: 30px;
}
#work-content a {
    text-decoration: none;
    font-family: Quicksand, sans-serif;
    font-weight: 400;
    font-size: 35px;
    color: #c70039;
    transition: all .4s ease;
}
.work-header {
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: Quicksand, sans-serif;
    color: whitesmoke;
    padding: 30px 10px 15px;
    font-weight: 900;
}
.work-main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: auto;
    padding-left: 50px;
    padding-right: 50px;
    flex-direction: column;
}
.work-first-paragraph {
    color: whitesmoke;
    justify-content: flex-start;
    font-size: 20px;
    font-family: Poppins, sans-serif;
    width: 80%;
    padding: 20px;
    font-weight: 400;
    line-height: 1.5;
}
.work-first-paragraph h2 {
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}
.work-first-paragraph ul {
    list-style: none;
    padding-left: 0;
}
.work-first-paragraph ul ul {
    padding-left: 50px;
}
.work-first-paragraph ul li{
    font-size: 18px;
    color: whitesmoke;
    margin-bottom: 8px;
}

.work-first-paragraph ul li.color::before {
    content: "•";
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* Contact*/
#contact{
    display: none;
    height: auto;
    text-align: center;
    width: 100%;
    background: #101010;
    position: relative;
}
.contact-header{
    height: auto;
    width: 100%;
    text-align: center;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    font-family: Quicksand, sans-serif;
    color: whitesmoke;
    padding: 60px 10px 30px;
    font-weight: 900;
}
.contact-header-caption{
    padding: 10px;
    color: whitesmoke;
    opacity: .9;
    font-family:Quicksand, sans-serif;
    font-size: 18px;
}
.contact-content{
    width: 90%;
    margin: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.contact-info{
    width: auto;
    height: 500px;
    background: url(../images/persuit.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 16px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}
.contact-info::before{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #101010;
    opacity: .8;
    pointer-events: none;
}
.contact-form{
    height: 550px;
    padding-right:40px;
    width: 60%;
    display: flex;
    flex-direction: column;
}
.contact{
    display: flex;
    position: absolute;
    width: 10%;
    right: 0;
    top: 0;
    height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 3;
}
.contact a{
    z-index: 3;
}
.contact img{
    margin:10px;
    height:30px;
    opacity: .6;
    transition: all .4s ease;
}
.contact img:hover{
    opacity: 1;
    transform: scale(2.1);
}
.input-line {
    width: 100%;
    height: auto;
    gap: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
.input-name {
    width: 100%;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    color: whitesmoke;
    font-family: poppins, sans-serif;
    font-size: 18px;
}
.input-email {
    width: 100%;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    color: whitesmoke;
    font-family: poppins, sans-serif;
    font-size: 18px;
}
.input-subject {
    width: 100%;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    color: whitesmoke;
    font-family: poppins, sans-serif;
    font-size: 18px;
}
.input-textarea {
    width: 100%;
    padding: 10px 20px;
    margin: 5px 0;
    height: 150px;
    border-radius: 8px;
    outline: none;
    background: #050505;
    border: none;
    color: whitesmoke;
    font-family: poppins, sans-serif;
    font-size: 18px;
}
form{
    display: flex;
    flex-direction: column;
    height: auto;
    width:auto;
    align-items: center;
    position: relative;
}
.form-header{
    font-size: 24px;
    font-family: poppins, sans-serif;
    font-weight: 400;
    color: whitesmoke;
    padding: 28px;
}
form button{
    padding:8px 24px;
    font-family: poppins, sans-serif;
    font-size:20px;
    color: whitesmoke;
    background: #c70039;
    opacity: .8;
    margin: 20px;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all .4s ease;
}
form button:hover{
  opacity: 1;
}
.contact-info-header{
    position: relative;
    z-index: 2;
    font-size: 24px;
    font-family: poppins, sans-serif;
    font-weight: 400;
    color: whitesmoke;
    padding: 30px;
}
.contect-info-content-line{
    height: auto;
    padding: 10px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    margin-left: 100px;
}
.contact-info-icon-text{
    color: whitesmoke;
    padding:15px;
    font-family: poppins, sans-serif, serif;
}
.contact-info-icon-text h6{
    font-size: 15px;
    opacity: .8;
}
.contact-info-icon-text p{
    font-size: 14px;
    opacity: .7;
}

.input-file {
    display: none;
}
.file-label {
    padding: 8px 24px;
    font-family: poppins, sans-serif;
    font-size: 18px;
    color: whitesmoke;
    background: #BB0035;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    margin: 10px 0;
}
.file-label:hover {
    opacity: 0.8;
}

/* Page */
.html{
    display: inline-block;
    position: absolute;
    left: 5%;
    top:30%;
}
.html-prog{
   width:100%;
   height:40px;
   border-radius: 10px;
   background: #191919;
   box-shadow:0 0 25px rgb(0,0,0,.1);
   position: relative;
   overflow: hidden;
}
.html-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:95%;
    border-radius: 10px;
    background: #c70039;
}
.js-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    font-family: poppins, sans-serif;
    justify-content: center;
    transition: all .4s ease;
    width:90%;
    border-radius: 10px;
    background: #c70039;
}
.adobe-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:83%;
    border-radius: 10px;
    background: #c70039;
}
.php-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    width:85%;
    border-radius: 10px;
    background: #c70039;
    transition: all .4s ease;
}
.jquery-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .4s ease;
    width:94%;
    border-radius: 10px;
    background: #c70039;
}
.seo-progress{
    position: absolute;
    top:10%;
    left:1%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    width:84%;
    border-radius: 10px;
    transition: all .4s ease;
    background: #c70039;
}
.header-caption{
    opacity:.8;
    display: block;
    font-size: 20px;
    font-family: Quicksand, sans-serif;
    padding: 8px;
    padding-top: 15px;
    color: whitesmoke;
    font-weight: 400;
}
 button:hover .index{
     position: relative;
    z-index: 4;
}
.button{
    text-align: center;
}
.cursor{
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    border: 1px solid whitesmoke;
    background: transparent;
    pointer-events: none;
    position: fixed;
    top: -25px;
    left: -25px;
    z-index: 10;
    opacity: .6;
    transition:  scale .5s ease;
}
.cursor-small{
    height: 50px;
    width: 50px;
    display: block;
    border-radius: 50%;
    border: 1px solid whitesmoke;
    background: transparent;
    pointer-events: none;
    position: fixed;
    top: -25px;
    left: -25px;
    z-index: 10;
    opacity: .6;
    transition:  scale .4s ease;
}
.icon{
    height:40px;
    opacity: .8;
}
.footer{
    background: #080808;
    width: 100%;
    padding: 20px;
    color: whitesmoke;
    display: flex;
    flex-direction: row;
    font-family: poppins, sans-serif;
    align-items: center;
    justify-content: center;
}
.footer .footer-text{
    position: relative;
    display: inline;
    font-size: 12px;
    font-weight: 400;
    opacity: 1;
}
.color-changer{
    height: auto;
    width: auto;
    display: flex;
    flex-direction: row;
    position: fixed;
    right:-150px;
    top:40%;
    z-index: 4;
    color:black;
    transition:all .4s ease;
}
.color-changer-active{
    right:0;
    transition:all .4s ease;
}
.color-panel{
    height: 45px;
    cursor: pointer;
    width:45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    background: whitesmoke;
}
.color-panel img{
    height: 40px;
    width:40px;
    padding:2px;
    animation: rotate 2s linear infinite;
}
.colors ul{
    display: flex;
    flex-wrap: wrap;
    height: auto;
    max-width: 150px;
    text-align: center;
    justify-content: center;
    margin-top: 10px;
}
.colors li{
    height: 30px;
    width: 30px;
    margin: 5px;
    border-radius: 20%;
    position: relative;
    overflow: hidden;
}
.colors li a{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.color-red{
    background: #c70039;
}
.color-purple{
    background: #481380;
}
.color-green{
    background: #04A777;
}
.color-blue{
    background: #035aa6;
}
.color-malt{
    background: #00909e;
}
.color-orange{
    background: #dd7631;
}
.color-selector{
    height:auto;
    width:150px;
    padding: 10px;
    background: whitesmoke;
    font-family: poppins, sans-serif;
    font-size: 16px;
    display: flex;
    color: black;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.color-selector li{
  list-style: none;
}

/* kits and keyframes */
::-webkit-scrollbar{
    width: 4px;
    color:#c70039;
    transition: all .4s ease;
}
::-webkit-scrollbar-thumb {
    background: #c70039;
    border-radius: 4px;
    width: 4px;
    transition: all .4s ease;
  }
::-webkit-scrollbar-track {
    background: #101010;
    border-radius: 4px;
    width: 4px;
  }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@keyframes animateslash{
    0%{
        opacity: 1;
        z-index: 2;
    }
    100%{
        opacity: 0;
        z-index: 0;
    }
}
@-webkit-keyframes animateslash{
    0%{
        opacity: 1;
        z-index: 2;
    }
    100%{
        opacity: 0;
        z-index: 0;
    }
}
@keyframes breakeranimate{
    0%{ transform : translateX(-100%)}
    50%{ transform : translateX(0%) }
    100%{ transform : translateX(100%) }
 }
 @-webkit-keyframes breakeranimate{
     0%{ transform : translateX(-100%) }
     50%{ transform : translateX(0%) }
     100%{ transform : translateX(100%) }
 }
 @keyframes scale{
     0%{
         transform: scale(.6);
     }
     100%{
         transform: scale(1);
     }
 }
 @-webkit-keyframes breakeranimate{
     0%{
         transform: scale(.6);
     }
     100%{
         transform: scale(1);
     }
 }
 @keyframes rotate{
     0%{
    transform: rotate(0deg);
     }
     100%{
    transform: rotate(360deg);
     }
 }
 @-webkit-keyframes rotate{
     0%{
         transform: rotate(0deg);
          }
          100%{
         transform: rotate(360deg);
          }
 }

 /* Media Queries */
@media screen and (max-width: 480px) {
     /* Geral */
     html, body {
         font-size: 14px; /* Ajusta a base do font-size */
     }

     ul {
         padding-left: 10px;
     }

     ul li {
         font-size: 14px;
         margin-bottom: 8px;
         line-height: 1.3em;
         list-style-position: inside;
     }

     .cursor{
         display: none;
     }

     #loader {
         display: none;
         font-size: 28px;
     }

     #breaker {
         display: none !important;
         animation: none !important;
         transition: none !important;
     }

     .html-prog {
         height: 20px;
     }

     .html-progress, .js-progress, .php-progress, .jquery-progress, .adobe-progress, .seo-progress {
         height: 15px;
     }


     /* Home */
     .header-content {
         text-align: center;
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         padding: 0 10px;
         font-size: 14px;
     }

     .header-content-box {
         padding: 0;
     }

     .header-content .firstline {
         font-size: 32px;
     }

     .header-content .secondline {
         font-size: 18px;
     }

     .header-image img {
         height: auto;
         width: 100%;
     }

     .logo img {
         height: 50px;
         top: 5%;
     }

     .social-media-links {
         height: 195%;
         flex-direction: row;
         padding: 25px 20px;
     }

     .social-media {
         width: 15px;
     }

     social

     .navigation-links a {
         font-size: 24px;
         padding: 5px;
     }

     #navigation-bar, #navigation-content {
         padding: 5px;
     }

     .menubar {
         top: 5%;
         right: 1%;
     }

     .menubar span {
         width: 15px;
         margin: 4px;
     }

     .menubar .first-span,
     .menubar .second-span,
     .menubar .third-span {
         width: 15px;
     }


     /* About */
     .about-header {
         font-size: 28px;
         text-align: center;
     }

     .header-caption {
         font-size: 14px;
         text-align: center;
     }

     .about-main {
         flex-direction: column;
         padding-left: 30px;
         padding-right: 30px;
     }

     .about-first-paragraph {
         font-size: 14px;
         width: 100%;
         padding: 0;
         text-align: justify;
     }

     .about-first-paragraph .color {
         font-size:20px;
     }

     .about-first-line {
         font-size: 18px;
         opacity: 1;
         margin-bottom: 10px;
         display: block;
     }

     .about-img {
         width: 100%;
         height: auto;
         order: 2;
         margin-top: 20px;
         padding: 0;
     }
     .about-img img {
         padding: 0;
         border-radius: 15px;
     }


     .skills-stack-icons img {
         height: 25px;
         width: 25px;
     }

     .skills-stack-icons img:hover {
         transform: scale(1.3);
     }

     .cv a button {
         padding: 10px 20px;
         font-size: 18px;
     }

     /* Academic */
     .academic-header {
         font-size: 28px;
         text-align: center;
     }

     .academic-first-paragraph {
         font-size: 14px;
         padding: 10px;
         text-align: center;
     }

     .academic-first-paragraph h2 {
         text-align: center;
     }

     .academic-first-paragraph ul {
         text-align: left;
     }

     .academic-first-paragraph ul li {
         font-size: 14px;
     }

     /* Work */
     .work-header {
         font-size: 28px;
         text-align: center;
     }

     .work-first-paragraph {
         font-size: 14px;
         padding: 10px;
         text-align: center;
     }

     .work-first-paragraph h2 {
         text-align: center;
     }

     .work-first-paragraph ul {
         text-align: left;
     }

     .work-first-paragraph ul li {
         font-size: 14px;
     }

     /* Contact */
     .contact-header {
         font-size: 28px;
         text-align: center;
     }

     .contact-header-caption {
         font-size: 14px;
         padding: 5px;
     }

     .contact-content {
         flex-direction: column-reverse;
     }

     .contact-info {
         width: 100%;
         order: -1;
         margin-bottom: 20px;
     }

     .contact-info img {
         height: auto;
     }

     .contact-form {
         padding: 0;
         width: 100%;
     }

     .input-line {
         flex-direction: column;
         gap: 10px;
     }

     .input-name, .input-subject, .input-textarea {
         width: 100%;
         padding: 10px;
         font-size: 16px;
     }

     form button {
         width: 100%;
         font-size: 16px;
     }

     .contact-info {
         margin-top: 20px;
     }

     .contact-info-icon-text {
         color: whitesmoke;
         padding: 15px;
         font-family: poppins, sans-serif, serif;
     }

     .contact-info-icon-text h6 {
         font-size: 14px;
         opacity: .8;
     }

     .contact-info-icon-text p {
         font-size: 12px;
         opacity: .7;
     }

     .contect-info-content-line {
         margin-left: 30px;
     }

     .contect-info-content-line img {
         height: auto;
     }

     /* Footer */
     .footer {
         font-size: 10px;
         padding: 10px;
     }

     .footer .footer-text {
         font-size: 10px;
     }
 }

@media screen and (min-width: 481px) and (max-width: 768px) {
    /* Geral */
    html, body {
        font-size: 16px; /* Aumenta a base do font-size */
    }

    ul {
        padding-left: 10px;
    }

    ul li {
        font-size: 16px;
        margin-bottom: 8px;
        line-height: 1.3em;
        list-style-position: inside;
    }

    .cursor {
        display: none;
    }

    #loader {
        display: none;
        font-size: 32px;
    }

    #breaker {
        display: none !important;
        animation: none !important;
        transition: none !important;
    }

    .html-prog {
        height: 20px;
    }

    .html-progress, .js-progress, .php-progress, .jquery-progress, .adobe-progress, .seo-progress {
        height: 15px;
    }

    /* Home */
    .header-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
        font-size: 16px;
    }

    .header-content-box {
        padding: 0;
    }

    .header-content .firstline {
        font-size: 36px;
    }

    .header-content .secondline {
        font-size: 20px;
    }

    .header-image img {
        height: auto;
        width: 100%;
    }

    .logo img {
        height: 60px;
        top: 5%;
    }

    .social-media-links {
        padding: 20px;
    }

    .social-media {
        width: 15px;
    }

    .navigation-links a {
        font-size: 26px;
        padding: 5px;
    }

    #navigation-bar, #navigation-content {
        padding: 5px;
    }

    .menubar {
        top: 5%;
        right: 1%;
    }

    .menubar span {
        width: 15px;
        margin: 4px;
    }

    .menubar .first-span,
    .menubar .second-span,
    .menubar .third-span {
        width: 15px;
    }

    /* About */
    .about-header {
        font-size: 32px;
        text-align: center;
    }

    .header-caption {
        font-size: 16px;
        text-align: center;
    }

    .about-main {
        flex-direction: column;
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-first-paragraph {
        font-size: 16px;
        width: 100%;
        padding: 0;
        text-align: justify;
    }

    .about-first-paragraph .color {
         font-size:26px;
     }

     .about-first-line {
         font-size: 24px;
         opacity: 1;
         margin-bottom: 10px;
         display: block;
     }

    .about-img {
        width: 100%;
        height: auto;
        order: 2;
        margin-top: 20px;
        padding: 0;
    }

    .about-img img {
        padding: 0;
        border-radius: 15px;
    }

    .skills-stack-icons img {
        height: 25px;
        width: 25px;
    }

    .skills-stack-icons img:hover {
        transform: scale(1.3);
    }

    .cv a button {
        padding: 10px 20px;
        font-size: 20px;
    }

    /* Academic */
    .academic-header {
        font-size: 32px;
        text-align: center;
    }

    .academic-first-paragraph {
        font-size: 16px;
        padding: 10px;
        text-align: center;
    }

    .academic-first-paragraph h2 {
        text-align: center;
    }

    .academic-first-paragraph ul {
        text-align: left;
    }

    .academic-first-paragraph ul li {
        font-size: 16px;
    }

    /* Work */
    .work-header {
        font-size: 32px;
        text-align: center;
    }

    .work-first-paragraph {
        font-size: 16px;
        padding: 10px;
        text-align: center;
    }

    .work-first-paragraph h2 {
        text-align: center;
    }

    .work-first-paragraph ul {
        text-align: left;
    }

    .work-first-paragraph ul li {
        font-size: 16px;
    }

    /* Contact */
    .contact-header {
        font-size: 32px;
        text-align: center;
    }

    .contact-header-caption {
        font-size: 16px;
        padding: 5px;
    }

    .contact-content {
        flex-direction: column-reverse;
    }

    .contact-info {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }

    .contact-info img {
        height: auto;
    }

    .contact-form {
        padding: 0;
        width: 100%;
    }

    .input-line {
        flex-direction: column;
        gap: 10px;
    }

    .input-name, .input-subject, .input-textarea {
        width: 100%;
        padding: 10px;
        font-size: 18px;
    }

    form button {
        width: 100%;
        font-size: 18px;
    }

    .contact-info {
        margin-top: 20px;
    }

    .contact-info-icon-text {
        color: whitesmoke;
        padding: 15px;
        font-family: poppins, sans-serif, serif;
    }

    .contact-info-icon-text h6 {
        font-size: 16px;
        opacity: .8;
    }

    .contact-info-icon-text p {
        font-size: 14px;
        opacity: .7;
    }

    .contect-info-content-line {
        margin-left: 30px;
    }

    .contect-info-content-line img {
        height: auto;
    }

    /* Footer */
    .footer {
        font-size: 12px;
        padding: 10px;
    }

    .footer .footer-text {
        font-size: 12px;
    }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
    /* Geral */
    html, body {
        font-size: 18px; /* Aumenta a base do font-size */
    }

    ul {
        padding-left: 10px;
    }

    ul li {
        font-size: 18px;
        margin-bottom: 8px;
        line-height: 1.3em;
        list-style-position: inside;
    }

    .cursor {
        display: none;
    }

    #loader {
        display: none;
        font-size: 36px;
    }

    #breaker {
        display: none !important;
        animation: none !important;
        transition: none !important;
    }

    .html-prog {
        height: 20px;
    }

    .html-progress, .js-progress, .php-progress, .jquery-progress, .adobe-progress, .seo-progress {
        height: 15px;
    }

    /* Home */
    .header-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
        font-size: 18px;
    }

    .header-content-box {
        padding: 0;
    }

    .header-content .firstline {
        font-size: 40px;
    }

    .header-content .secondline {
        font-size: 22px;
    }

    .header-image img {
        height: auto;
        width: 100%;
    }

    .logo img {
        height: 70px;
        top: 5%;
    }

    .social-media-links {
        padding: 20px;
    }

    .social-media {
        width: 15px;
    }

    .navigation-links a {
        font-size: 28px;
        padding: 5px;
    }

    #navigation-bar, #navigation-content {
        padding: 5px;
    }

    .menubar {
        top: 5%;
        right: 1%;
    }

    .menubar span {
        width: 15px;
        margin: 4px;
    }

    .menubar .first-span,
    .menubar .second-span,
    .menubar .third-span {
        width: 15px;
    }

    /* About */
    .about-header {
        font-size: 36px;
        text-align: center;
    }

    .header-caption {
        font-size: 18px;
        text-align: center;
    }

    .about-main {
        flex-direction: column;
        padding-left: 30px;
        padding-right: 30px;
    }

    .about-first-paragraph {
        font-size: 18px;
        width: 100%;
        padding: 0;
        text-align: justify;
    }

    .about-first-paragraph .color {
         font-size:28px;
    }

     .about-first-line {
         font-size: 26px;
         opacity: 1;
         margin-bottom: 10px;
         display: block;
    }

    .about-img {
        width: 100%;
        height: auto;
        order: 2;
        margin-top: 20px;
        padding: 0;
    }

    .about-img img {
        padding: 0;
        border-radius: 15px;
    }

    .skills-stack-icons img {
        height: 25px;
        width: 25px;
    }

    .skills-stack-icons img:hover {
        transform: scale(1.3);
    }

    .cv a button {
        padding: 10px 20px;
        font-size: 22px;
    }

    /* Academic */
    .academic-header {
        font-size: 36px;
        text-align: center;
    }

    .academic-first-paragraph {
        font-size: 18px;
        padding: 10px;
        text-align: center;
    }

    .academic-first-paragraph h2 {
        text-align: center;
    }

    .academic-first-paragraph ul {
        text-align: left;
    }

    .academic-first-paragraph ul li {
        font-size: 18px;
    }

    /* Work */
    .work-header {
        font-size: 36px;
        text-align: center;
    }

    .work-first-paragraph {
        font-size: 18px;
        padding: 10px;
        text-align: center;
    }

    .work-first-paragraph h2 {
        text-align: center;
    }

    .work-first-paragraph ul {
        text-align: left;
    }

    .work-first-paragraph ul li {
        font-size: 18px;
    }

    /* Contact */
    .contact-header {
        font-size: 36px;
        text-align: center;
    }

    .contact-header-caption {
        font-size: 18px;
        padding: 5px;
    }

    .contact-content {
        flex-direction: column-reverse;
    }

    .contact-info {
        width: 100%;
        order: -1;
        margin-bottom: 20px;
    }

    .contact-info img {
        height: auto;
    }

    .contact-form {
        padding: 0;
        width: 100%;
    }

    .input-line {
        flex-direction: column;
        gap: 10px;
    }

    .input-name, .input-subject, .input-textarea {
        width: 100%;
        padding: 10px;
        font-size: 20px;
    }

    form button {
        width: 100%;
        font-size: 20px;
    }

    .contact-info {
        margin-top: 20px;
    }

    .contact-info-icon-text {
        color: whitesmoke;
        padding: 15px;
        font-family: poppins, sans-serif, serif;
    }

    .contact-info-icon-text h6 {
        font-size: 18px;
        opacity: .8;
    }

    .contact-info-icon-text p {
        font-size: 16px;
        opacity: .7;
    }

    .contect-info-content-line {
        margin-left: 30px;
    }

    .contect-info-content-line img {
        height: auto;
    }

    /* Footer */
    .footer {
        font-size: 14px;
        padding: 10px;
    }

    .footer .footer-text {
        font-size: 14px;
    }
}


