* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: Arial, sans-serif;
}

header {
    padding: 10px 4%;
}

body {
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: #000000;
  }



.statusbar-desktop {
    border-radius: 40px;
display: flex;
justify-content: space-between;
align-items: center;
}

.logotipo {
    margin-left: 5%;
    padding: 5px;
    align-items: center;
    display: flex;
    width: 250px;
}

.minha-img {
    width: 50px;
    border-radius: 60%;
    object-fit: cover;
}

.titulo {
    padding: 5px;
    margin-left: 15px;
}

.titulo .nome {
    font-size: 18px;
    color: #ffffff;
    font-weight: bold;
}

.titulo .skill {
    font-size: 15px;
    color: #747373;
}

.statusbar-desktop nav {
    margin-right: 10%;
    z-index: 1000;
    padding: 10px;
}

.statusbar-desktop nav ul {
    display: flex;
    list-style: none;
    gap: 70px;
}

.statusbar-desktop nav ul li {
    padding: 3px;
}

.statusbar-desktop nav ul li a {
    font-size: 13px;
    text-decoration: none;
    color: #ffffff;
    transition: ease 0.3s color;
}

.statusbar-desktop nav ul li a:hover {
    color: #2c4fd1;
}

@media (max-width:767px) {
    .statusbar-desktop {
        display: none;
    }
    header {
        border: none;
    }
}

.statusbar-mobile {
    display: flex;
    align-items: center;
    padding: 7px 10%;
    justify-content: space-between;
    z-index: 4;
    position: relative;
}

@media (min-width:766px) {
    .statusbar-mobile {
        display: none;
    }
}

.statusbar-mobile .logotipo-mobile img {
    border-radius: 60%;
    width: 40px;
}

.statusbar-mobile nav {
    padding: 10px;
    border-radius: 7px;
    background-color: #5756566e;
    position: absolute;
    margin-top: 240px;
    margin-left: 63%;
    text-align: center;
    display: none;
}

.statusbar-mobile nav.active {
    display: flex;
}

.statusbar-mobile nav ul {
    display: flex;
    gap: 20px;
    flex-direction: column;
    list-style: none;
}

.statusbar-mobile nav ul li a{
    text-decoration: none;
    font-size: 18px;
    color: #fff;
    transition: ease 0.3s color;
}

.statusbar-mobile nav ul li a:hover {
    color: #2c4fd1;
}

.statusbar-mobile .btn-nav {
    padding: 5px;
}

.statusbar-mobile .btn-nav button {
    font-size: 35px;
    color: #fff;
    background-color: transparent;
    border: none;
    cursor: pointer;
}


/*Main topo do site*/

section.topo-site {
    background-color: black;
    position: relative;
    width: 100%;
    height: 700px;
    padding: 40px 4%;
}

@media (min-width: 1200px) {
    section.topo-site {
        height: 850px;
    }
}

#tsparticles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;  /* <- Adicione essa linha! */
}

section.topo-site .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

section.topo-site .center {
    padding: 30px;
    align-items: center;
    text-align: center;
    z-index: 1;
}

section.topo-site .center .img-topo {
    margin-top: 10%;
}

section.topo-site .center .img-topo img {
    width: 75%;
    animation: flutuar 3s ease-in-out infinite;
}

@media (max-width:766px) {
    section.topo-site .center .img-topo img {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 40%;
        width: 350px;
    }
}

@keyframes flutuar {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

section.topo-site  .center .text-topo h1{
    color: #2c4fd1;
    letter-spacing: 5px;
    font-size: 50px;
    line-height: 45px;
}

section.topo-site  .center .text-topo p {
    letter-spacing: 3px;
    line-height: 20px;
    color: #fff;
    font-size: 20px;
}



/*Section about*/

section.about {
    padding: 60px 4%;
}

.about .container-about {
    max-width: 1200px;
    margin: 0 auto;
}

.about .container-about .flex-about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 200px;
}

@media (max-width:766px) {
    .about .container-about .flex-about {
        flex-wrap: wrap;
        gap: 25px;
    }
}

.img-about img {
    border-radius: 10px;
    width: 200px;
}

.about .container-about .flex-about .text-about {
    padding: 5px;
}

.curriculo {
    display: flex;
    justify-content: center;
    padding: 5px;
}

.button {
    --width: 120px;
    --height: 35px;
    --tooltip-height: 35px;
    --tooltip-width: 90px;
    --gap-between-tooltip-to-button: 18px;
    --button-color: #1163ff;
    --tooltip-color: #fff;
    width: var(--width);
    height: var(--height);
    background: var(--button-color);
    position: relative;
    text-align: center;
    border-radius: 0.45em;
    font-family: "Arial";
    transition: background 0.3s;
}

.button::before {
    position: absolute;
    content: attr(data-tooltip);
    width: var(--tooltip-width);
    height: var(--tooltip-height);
    background-color: var(--tooltip-color);
    font-size: 0.9rem;
    color: #111;
    border-radius: .25em;
    line-height: var(--tooltip-height);
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) + 10px);
    left: calc(50% - var(--tooltip-width) / 2);
}

.button::after {
    position: absolute;
    content: '';
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top-color: var(--tooltip-color);
    left: calc(50% - 10px);
    bottom: calc(100% + var(--gap-between-tooltip-to-button) - 10px);
}

.button::after,.button::before {
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
}

.text {
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-wrapper,.text,.icon {
    overflow: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    color: #fff;
}

.text {
    top: 0
}

.text,.icon {
    transition: top 0.5s;
}

.icon {
    color: #fff;
    top: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon svg {
    width: 24px;
    height: 24px;
}

.button:hover {
    background: #6c18ff;
}

.button:hover .text {
    top: -100%;
}

.button:hover .icon {
    top: 0;
}

.button:hover:before,.button:hover:after {
    opacity: 1;
    visibility: visible;
}

.button:hover:after {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button) - 20px);
}

.button:hover:before {
    bottom: calc(var(--height) + var(--gap-between-tooltip-to-button));
}


.text-about h2 {
    font-size: 30px;
    color: #2c4fd1;
    text-align: center;
}

.text-about p #verMais {
    cursor: pointer;
    color: #1163ff;
}

.text-about p #esconder {
    display: inline-block;
    overflow: hidden;
    height: 2px;
}

.mostrar {
    height: auto !important;
}

.text-about p {
    margin-top: 20px;
    color: white;
    line-height: 1.6;
    font-size: 16px;
}


.skills {
    height: auto;
    padding: 40px 4%;
}

.container-skills {
    display: flex;
    height: 350px;
    padding: 20px 5%;

}

.container-skills .flex-skills {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-skills .flex-skills ul{
    list-style: none;
    display: flex;
    gap: 100px;
    padding: 5px 1%;
}

.container-skills .flex-skills ul li img {
    width: 60px;
}

@media (max-width:766px) {
    .container-skills {
        height: 200px;
    }

    .container-skills .flex-skills {
        padding: 10px;
    }

    .container-skills .flex-skills ul {
        gap: 15px;
    }
    .container-skills .flex-skills ul li img {
        width: 100%;
    }
    
}

/*SECTION PROJETOS*/
section.projetos {
    padding: 10px 3%;
    height: auto;
}

.container-projeto {
    height: auto;
    padding: 5px;
}

.text-projetos {
    padding: 5px;
    text-align: center;
}

.text-projetos p {
    color: #007BFF;
    margin: 10px;
}

.text-projetos h3 {
    color: #fff;
    font-size: 25px;
}

.container-box-projects {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10%;
    height: auto;
    gap: 5%;
}

.box-projetos {
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px;
    background-color: #292929;
    width: 350px;
    height: auto;
}

.img-projetos {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: #fff;
}

#barber {
    border-radius: 10px;
}

.box-projetos h4 {
    font-size: 18px;
    margin: 8px 0px;
    color: #fff;
}

.box-projetos p {
    color: #fff;
}

.box-projetos p.span-projeto {
    color: #1163ff;
    margin-bottom: 2px;
}

.tech-usada-projetos {
    display: flex;
    gap: 8px;
    padding: 5px;
}

.container-box-projects p {
    font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
}

.tech-usada-projetos i {
    font-size: 20px;
    color: #fff;
}

.btn-acessarSites {
    margin-top: 20px;
    padding: 5px;
}

.btn-acessarSites button {
    cursor: pointer;
    background-color: #1163ff; 
    width: 100%;
    height: 35px;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
}

.btn-acessarSites button:hover {
    transform: scale(1.01);
    color: #000;
}


@media (max-width:766px) {
    .container-box-projects {
        flex-direction: column;
    }
}

/*LiNKS REDES SOCIAIS*/

section.links-contato {
    padding: 40px 4%;
}

.container-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    height: 150px;
    padding: 10px;
}

.box-links-icon {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box-links-icon ul {
    justify-content: center;
    gap: 130px;
    width: 100%;
    list-style: none;
    display: flex;
}

.box-links-icon ul li {
    border-radius: 10px;
}

.box-links-icon ul li a i {
    color: #2c4fd1;
    font-size: 45px;
    transition: ease 0.3s color;
}

.box-links-icon ul li:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.box-links-icon ul li a i:hover{
    color: #ffffff;
}

@media (max-width: 766px) {
    .box-links-icon ul {
        gap: 40px;
    }
}


/*FORMULARIO DE CONTATO*/

section.contato {
    height: auto;
    padding: 45px 5%;
}

.container-contato {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 10px;
}

.container-form {
    padding: 10px;
    display: flex;
    justify-content: center;
    height: auto;
    width: 90%;
}

.container-form form {
    height: auto;
    gap: 20px;
    width: 70%;
    padding: 10px;
    display: flex;
    flex-direction: column;
    background-color: #4949494f;
    border-radius: 8px;
    box-shadow: 0 3px 15px #1163ff;
}

.container-form form h1 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 5px;
    color: #ffffff;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
    margin-top: 5px;
}

.container-form form div {
    display: flex;
    flex-direction: column;
}

.container-form form div label{
    font-family: 'Poppins', sans-serif;
    padding: 5px 3%;
    color: #fafbffc5;
    font-size: 17px;
    display: inline;
    margin-bottom: 10px;
}

.container-form form div input {
    padding: 15px;
    border-radius: 5px;
    border: none;
    border-radius: 15px;
    background-color: #ccc;
    box-shadow: inset 2px 5px 10px rgba(0,0,0,0.3);
    transition: 300ms ease-in-out;
}

.container-form form div input:foco {
    background-color: white;
    transform: scale(1.05);
    box-shadow: 13px 13px 100px #969696,-13px -13px 100px #ffffff;
}

.container-form form div textarea {
    color: #fff;
    max-width: 90%;
    height: 44px;
    background-color: #05060f0a;
    border-radius: .5rem;
    padding: 0 1rem;
    border: 2px solid transparent;
    font-size: 1rem;
    transition: border-color .3s cubic-bezier(.25,.01,.25,1) 0s, color .3s cubic-bezier(.25,.01,.25,1) 0s,background .2s cubic-bezier(.25,.01,.25,1) 0s;
    outline: none;
    border-color: #05060f;
}

.container-contato button.btn-enviar {
    background-color: #1164ffc2;
    margin: 0 auto;
    width: 30%;
}

/* From Uiverse.io by KINGFRESS */ 
button.btn-enviar{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    color: white;
    background-color: #171717;
    padding: 1em 2em;
    border: none;
    border-radius: .6rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  button.btn span.text {
    letter-spacing: 2px;
    font-size: 21px;
    height: 15px;
  }
  
  button span:not(:nth-child(6)) {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    height: 30px;
    width: 30px;
    background-color: #103a8d;
    border-radius: 50%;
    transition: .6s ease;
  }
  
  button span:nth-child(6) {
    position: relative;
  }
  
  button span:nth-child(1) {
    transform: translate(-3.3em, -4em);
  }
  
  button span:nth-child(2) {
    transform: translate(-6em, 1.3em);
  }
  
  button span:nth-child(3) {
    transform: translate(-.2em, 1.8em);
  }
  
  button span:nth-child(4) {
    transform: translate(3.5em, 1.4em);
  }
  
  button span:nth-child(5) {
    transform: translate(3.5em, -3.8em);
  }
  
  button:hover span:not(:nth-child(6)) {
    transform: translate(-50%, -50%) scale(4);
    transition: 1.5s ease;
  }
    



@media (max-width:766px) {
    .container-form form {
        width: 100%;
    }

    .container-form form div textarea {
        width: 90%;
    }

    .container-contato button.btn-enviar {
        width: 50%;
    }
}


