* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
  }
  
  body {
    background-color: #02111B;
    overflow-x: hidden !important;

  }

  hr {
    border:  1px solid #010d14;
    width: 100%;
  }
  
  #section-formulario{
    margin-top: 15vh;
  }


  a{
    text-decoration: none;
    color: #fff;
    font-weight: 100;    
}

 .navbar {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 30px;
  color: white;
  width: 90%;
  margin: 0 auto !important;
  position: fixed;
  margin-left: 5% !important;
  
  top: 10px;
  z-index: 9999;
  background: rgba(53, 53, 53, 0.35);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur( 13.5px );
  -webkit-backdrop-filter: blur( 13.5px );
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.055);

}

.navbar .meu-nome {
  font-size: 1.5em;
  background: linear-gradient(to right, #5eff50 0%, #1863DC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.nav-desktop ul, li, a{
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;

}

.navbar a {
  color: white;
  text-decoration: none;

}

.navbar a:hover {
 background: linear-gradient(90deg, #5eff50, #1863DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 1s;
    opacity: 0.8;

}

.menu-btn {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Menu mobile (inicialmente escondido) */
.nav-mobile {
  display: none;
  flex-direction: column;
  background-color: #444;
  padding: 10px 20px;
}

.nav-mobile ul {
  list-style: none;
  padding: 0;
}

.nav-mobile li {
  margin: 10px 0;
}

.nav-mobile a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  opacity: 0.5;
}

/* Responsivo */
@media (max-width: 991.98px) {
  .nav-desktop {
    display: none;
  }

  .menu-btn {
    display: block;
    
  }

  .navbar{
    width: 100% !important;
    margin-left: 0px !important;
    top: 0px !important;
    flex-direction: row-reverse;
  }

  .nav-mobile ul{
    text-align: center !important;
    margin-top: -50%;
    font-size: 20px;
    font-weight: 600;
 
  }

  .nav-mobile a:hover{
    background: linear-gradient(90deg, #5eff50, #1863DC);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.5s;
    font-size: 30px;
    font-weight: 600;
    opacity: 1;
  }

  .nav-mobile.active {
    display: flex;
    margin-top: 100px !important;
    background-color: #02111b;
    border: 1px solid #333;
  }
}


  /*BANNER PRINCIPAL */
  #banner-principal{
    display: flex;
    justify-content: space-between; 
    align-items: center;
    height: 90vh;
    animation: fadeIn 1.5s ease-in forwards;
    max-width: 1440px;
    width: 100%;

    margin: 0 auto !important;
    margin-top: 70px !important;
    overflow-x: hidden;

  }

  #titulo-funcao{
    width: 50%;
    justify-content: center;
    margin-left: 150px;
  }

  #titulo-funcao h1 {
    font-size: 70px;
    background: #89d85b;
    background: linear-gradient(to right, #5eff50 0%, #1863DC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 70px;
    font-weight: 900;
  }

  .destaque-text{
    font-weight: 700;
    color: #b7ebb0;
  }
  
  #titulo-funcao p {
    font-size: 15px;
    color: #b4b4b4;

  }

  #titulo-funcao #button-conheca{
    font-size: 15px;
    width: 150px;
    padding: 10px;
    border-radius: 125px;
    text-align: center;
    margin-top: 30px;
    border:  1px outset #48d43f;


}

#titulo-funcao #button-conheca:hover{
    cursor: pointer;
    transition: 1s  ;
    scale: 1.1;
    color: #fff;
    border:  1px outset #1863DC;


}

  #minha-foto{
    width: 50%;
    display: flex;
    position: relative;
  }

  #minha-foto img{
    display: block;
    height: auto;
    background: transparent;
  }

  #eu{
    position: relative;
    z-index: 2;
    opacity: 1;
  }

  /* RESPONSIVO BANNER  */
  @media (max-width: 991.98px) {
   #banner-principal{
    width: 100% !important;
    display: flex;
    margin: 0 auto !important;
    overflow-x: hidden;
    height: 90vh;
    }

    

    #titulo-funcao{
    width: 70%;
    justify-content: left;
    margin-left: 5vh !important;
    }

    #titulo-funcao h1{
        font-size: 24px;
        line-height: 30px;
    }

    #titulo-funcao p{
        width: 70%;
        font-size: 10px;
        z-index: 2;
    }

    #button-conheca{
        z-index: 9999 !important;
        position: absolute;
        background-color: #02111b8c;
    }
    #button-conheca:hover{
        -webkit-box-shadow: 0px 0px 31px -5px rgba(17,255,0,1);
        -moz-box-shadow: 0px 0px 31px -5px rgba(17,255,0,1);
        box-shadow: 0px 0px 31px -5px rgba(17,255,0,1);
        

    }
    #button-conheca p{
        
    }

    #titulo-funcao{

    }

    #minha-foto{
        z-index: 1;
        position: relative !important;
    }

    #minha-foto img{
        width: 500px !important;
        margin-left: -160px !important;
    }




  }

/* FIM DO BANNER PRINCIPAL */


/* SOBRE MIM */

  #sobre-mim{
    display: flex;
    color: #fff;
    height: 100vh;
    max-width: 1440px;
  width: 100%;

    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    
  }

  #quem-sou-eu{
    width: 50%;
    font-size: 60px;
    text-align: left;
    line-height: 0.95;
    justify-content: center;

  }

  #quem-sou-eu h2{
    background: linear-gradient(to right, #89d85b 0%, #1863DC 100% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 150px;
  }

  #quem-sou-eu-txt{
    width: 50%;
  }
  #quem-sou-eu-txt p{
    width: 80%;
  }

  #quem-sou-eu-txt #button-portfolio{
    font-size: 15px;
    width: 200px;
    padding: 10px;
    border-radius: 125px;
    text-align: center;
    margin-top: 30px;
    border: outset 1px #5eff51;
  }

  #quem-sou-eu-txt #button-portfolio:hover{
    cursor: pointer;
    transition: 1s  ;
    scale: 1.1;
    color: #fff;
    border:  1px outset #1863DC;

  }

  @media (max-width: 991.98px) {
    #sobre-mim{
        width: 100% !important;
        display: block;
        color: #fff;
        height:90vh;

        margin: 0 auto;
      }
    
      #quem-sou-eu{
        line-height: 0.95;
        width: 100% !important;
        text-align: left;
        justify-content: center;
        
      }
    
      #quem-sou-eu h2{
        background: linear-gradient(to right, #89d85b 0%, #1863DC 100% 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-size: 5vh;
        padding: 30px;
        width: 100% !important;
        margin-top:85px;
        margin-left: 20% !important;
        
      }
    
      #quem-sou-eu-txt{
        width: 100% !important;
        display: block !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: 10%;
        }
      #quem-sou-eu-txt p{
        font-size: 1.5vh;
      }
    
      #quem-sou-eu-txt #button-portfolio{
        font-size: 15px;
        width: 200px;
        padding: 10px;
        border-radius: 125px;
        text-align: center;
        margin-top: 30px;
        border: outset 1px #5eff50;
      }
    
      #quem-sou-eu-txt #button-portfolio:hover{
        cursor: pointer;
        transition: 1s  ;
        scale: 1.1;
        color: #fff;
      }

    
  }

  /* FIM DO SOBRE MIM */

  /*PORFÓLIO */

  #portfolio{
    color: #fff;
    height: 100vh;
    background-image: url('http://127.0.0.1:5500/imgs/gradient-porfolio.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    
}

  #portfolio h2{
    font-size:25px; 
    font-weight: 400;
    height: auto;
    align-items: center;
    display: flex;
    justify-content:center;
    padding-top: 90px;
    letter-spacing: 20px;
    background: linear-gradient(to right, #89d85b 0%, #1863DC 100% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-top: 150px;
}

  .boxs-portfolio{
    align-items: center;
    display: flex;
    justify-content: space-around;
    padding: 100px;
    background-color: transparent;
    z-index: 2;
    
  }

  #boxs{ 
    border:  1px outset #1863DC;
    width: 500px;
    height: 350px;
    border-radius: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    background: rgba(53, 53, 53, 0.35);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    backdrop-filter: blur( 13.5px );
    -webkit-backdrop-filter: blur( 13.5px );
  
  }

 #boxs p{
    text-align: center;
    color: #ffffff;
    width: 65%;
    margin: 0 auto;

  }

  #boxs h3{
    text-align: center;
    color: #fff;
    margin: 0 auto;
    padding-top: 15px;
    background: linear-gradient(to right, #89d85b 0%, #1863DC 100% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

  }
  
  #boxs:hover{
    scale: 1.1;
    cursor: pointer;
    transition: 1s;

}

  #boxs img{
    width: 100%;
    border-radius: 20px 20px 0 0;

  }

  /*RESPONSIVIDADE DO PORFÓLIO */

  @media (max-width: 991.98px){
    #portfolio{
        width: 100% !important;
        color: #fff;
        background-image: url('http://127.0.0.1:5500/imgs/gradient-porfolio.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        z-index: 1;
        margin: 0 auto;
        
    }
    
      #portfolio h2{
        font-size: 2.5vh; 
        font-weight: 400;
        height: auto;
        align-items: center;
        display: flex;
        justify-content:center;
        letter-spacing: 5px;
        background: linear-gradient(to right, #89d85b 0%, #1863DC 100% 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

    }
    
      .boxs-portfolio{
        align-items: center;
        display: block !important;
        justify-content: center;
        background-color: transparent;
        z-index: 2;
        padding: 30px;
      }
    
      #boxs{ 
        border: outset 1px #5eff50;
        width: 45vh;
        height: 30vh;
        border-radius: 20px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        margin-top: 30px;
      }
    
     #boxs p{
        margin: 0 auto;
        text-align: center;
        color: #fff;
        border-radius: 0px 0px 20px 20px;
        width: 90%;
        font-size: 10px;
      }
      
      #boxs h3{
        font-size: 15px;
        padding-top: 10px;
      }

      #boxs:hover{
        scale: 1.1;
        cursor: pointer;
        transition: 1s;
        -webkit-box-shadow: 0px 0px 80px -27px rgba(255, 255, 255, 0.432);
        -moz-box-shadow: 0px 0px 80px -27px rgba(255, 255, 255, 0.432);
        box-shadow: 0px 0px 80px -27px rgba(255, 255, 255, 0.432);
        border:  1px outset #1863DC;

    }
    
      #boxs img{
        width: 100%;
        border-radius: 20px 20px 0 0;
    
      }
  }
  /* FIM DO PORFÓLIO */


    /* FORMAÇÕES E IDIOMAS */

  #formacoes{
    height: 90vh;
    display: flex;
    margin-top: 17vh !important;
    max-width: 1440px;
width: 100%;

    margin: 0 auto;
  }

  #titulo-formacoes{
    width: 50%;
    font-size: 55px;
    text-align: left;
    line-height: 1.1;
    justify-content: center;
    display: flex;
    margin-top: 20vh;
  }

  #titulo-formacoes h2{
    background: linear-gradient(to right, #89d85b 0%, #1863DC 100% 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: 120px;  }

  #card-formacoes{
    width: 50%;
  }

  .formation-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #1863DC;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 2.5vh;
    transition: all 0.3s ease;
    width: 600px;
  }
  .formation-card:hover {
    transform: translateY(-5px);
    border-color: #5eff50;
  }
  .formation-card h3 {
    color: #5eff50;
  }
  .formation-card p {
    color: #ccc;
  }

    #idiomas {
        margin-left: 1vh;
      }
      
      #idiomas h2 {
        font-size: 28px;
        margin-bottom: 20px;
        color: #ffffff;
      }
      
      .idioma {
        margin-bottom: 5px;
      }
      
      .idioma-nome {
        font-weight: bold;
        font-size: 18px;
        display: block;
        margin-bottom: 5px;
        color: #ffffff;
      }
      
      .barra {
        background-color: #dddddd1f;
        height: 10px;
        width: 100%;
        border-radius: 5px;
        overflow: hidden;
      }
      
      .nivel {
        height: 100%;
        border-radius: 5px;
      }
      
      .fluente {
        width: 100%;
        background-color: #4CAF50;
      }
      
      .basico {
        width: 30%;
        background-color: #ffe600c7;
      }
      .intermediario {
        width: 50%;
        background-color: #1590c0;
      }
      .descricao {
        font-size: 14px;
        color: #666;
        margin-top: 5px;
      }
      
      @media (max-width: 991.98px){
        #formacoes{
            width: 100% !important;
            display: block !important;
            justify-content: center !important;
            margin: 0 auto !important;
            align-items: center !important;
            
        }

        #titulo-formacoes{
            width: 90% !important;
        }

        #titulo-formacoes h2{
            font-size: 5vh;
            margin-left: 10%;
        }

        #cards-formacoes{
            padding: 2vh;
        }
        .formation-card{
            width: 48vh !important;
            align-items: center;
            justify-content: center;
            margin: 0 auto !important;
            margin-bottom: 2vh !important;
        }

        .formation-card p{
            font-size: 1.5vh;
        }

        #idiomas{
            padding: 30px;
            width: 48vh !important;
            align-items: center;
            justify-content: center;
            margin: 0 auto !important;
            margin-bottom: 2vh !important;
        }

        .idioma{

        }

        .idioma-nome{

        }

        .barra{
            width: 40vh;
        }

      }



      /* FIM DAS FORMAÇÕES E IDIOMAS */

      /* FORMULARIO */

      








.formulario{
  background-size: cover;
  background-position: left ;
  width: 1080px;
  display: flex;
  margin: 0 auto !important;
  padding: 100px;
}

#formulario{
  width: 100% !important;
}

.txt-formulario{
  width: 50%;
  padding: 60px;
  margin-top: 150px;
}

.txt-formulario h1{
background: linear-gradient(to right, #89d85b 0%, #1863DC 100% 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
width: 140%;
font-size: 60px;
line-height:50px;
font-weight: 700;
margin-left: -50px;
}

.txt-formulario p{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-weight: 400;
color: #fff;
margin-left: -50px;
font-size: 18px;
}

.estrutura-formulario{
  width: 50%;
  padding: 30px;
  margin-top: 40px;
}

label{
  color: #ffffff;
  font-size: medium;
}

.container-form{
  background-color: #ffffff00;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  width: 100%;
  overflow: hidden;
  padding: 30px;
  display: block;
}

#form-abaixo{
  visibility: hidden}


.form-control{
  margin-bottom: 10px;
  position: relative;
  border: none;
  background-color: #d6d6d600;

}

.form-control label{
  display: inline-block;
}

.form-control input{
  border: 2px solid #e2e2e2;
  display: block;
  border-radius: 10px;
  font-size: 14px;
  padding: 10px;
  width: 100%;
}

.form-control i{
  position: absolute;
  top: 55px;
  right: 25px;
  overflow: hidden;
    visibility: hidden;
}

#form-control input{
  border: 2px solid #e2e2e2;
  display: block;
  border-radius: 10px;
  font-size: 14px;
  padding: 40px;
  width: 100%;

}

.form-control small{
  bottom: 0;
  left: 0;
  overflow: hidden;
  visibility: hidden;
}

.form button{
  background-color:#17983e;
  border: 2px solid #57ad6c;
  color: #fff;
  font-size: 14px;
  width: 60%;
  border-radius: 10px;
  padding: 10px;
  margin-top: 10px;
  cursor: pointer !important;
  margin-left:20%;
}

.form button:hover{
  scale: 1.1;
  transition: 1s;
  -webkit-box-shadow: 0px 0px 39px 0px rgba(4,255,0,0.48);
-moz-box-shadow: 0px 0px 39px 0px rgba(4,255,0,0.48);
box-shadow: 0px 0px 39px 0px rgba(4,255,0,0.48);
}

@media (max-width: 991.98px){
  #formulario{
    width: 100% !important;
  }

  .formulario{
    display: block !important;
    flex-direction: column !important;
    margin-top: -25vh !important;

  }

  .txt-formulario{
    width: 50%;
    margin-left: -10vh;

  }

  .txt-formulario h1{
    font-size:25px;
    line-height: 25px;
    width: 100%;
  }

  .txt-formulario p{
    width: 100%;
  }

  .estrutura-formulario{
    width: 45% !important;
    margin-left: -11.5%;
    margin-top: -10vh;
  }

  .container-form{
    width: 100% !important;

  }

  #form .form{

  } 

  #form-abaixo p{
  visibility: visible;    font-size: 15px;
  }

  #form-ao-lado p{
    display: none;
  }

}

      /* FIM FORMULARIO */



/*RODAPÉ*/

  #rodape{
  height: auto;
  min-height: 35vh;
  overflow: hidden;  }

  #rodape h3{
    text-align: center;
  background: linear-gradient(to right, #89d85b 0%, #1863DC 100% 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 30px;
    margin-top: 30px;
  }

  .logos-redes{
    display: flex;
    justify-content: center;
    padding: 20px;
  }

  #redes{
    padding: 20px;
    background: linear-gradient(to right, #89d85b 0%, #1863dc 100% 100%);
    border-radius: 20px;
    margin: 50px;
    opacity: 0.3;
  }

  #redes i{
    font-size: 50px;
    padding: 10px;
    border-radius: 15px;
    color: #fff;
  }

  #redes:hover{
    scale: 1.2;
    transition: 1s;
    opacity: 1;
  }
  
@media (max-width: 991.98px){

  #rodape h3{
    font-size: 16px;
  }

  #redes i{
    font-size: 20px;
    padding: 5px;
    border-radius: 15px;
    color: #fff;
  }

 #redes{
    padding: 20px;
    margin:15px;
    opacity: 0.3;
  }
}

/*FIM DO RODAPÉ*/




    /* CUSTOMIZAÇÃO DA BARRA DE ROLAGEM NAS CORES DA IDENTIDADE VISUAL */
  ::-webkit-scrollbar {
    width: 12px;
    height: 12px; 
  }

::-webkit-scrollbar-track {
    background: #f1f1f113; 
  }
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(#5eff51, #1863DC);
    border-radius: 6px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#48d43f, #154fc0);
  }
    /* FIM CUSTOMIZAÇÃO DA BARRA DE ROLAGEM*/
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }


.meu-ru{
  z-index: 9999;
  background: rgba(100, 100, 100, 0.35);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur( 13.5px );
  -webkit-backdrop-filter: blur( 13.5px );
  border-radius: 5px;
   margin-top: -80px;
  margin-left: 80px;
  position: fixed;
  width: 300px;
  font-size: 15px;
  color: #ffffff;
  padding: 10px;
  margin-top: ;
}
@media (max-width: 991.98px){
  .meu-ru {
    font-size: 12px;
    width: 250px;
    margin-top: ;
    margin-left:20px;
    opacity: 0.5;
    z-index: -1;
    top: auto;
    bottom: 10px;
    left: 10px;
    opacity: 0.5;
    z-index: 1;
  }
}




  /* ERROR AND SUCCESS */

   .form-control.sucess input{
    border-color: #2ecc71;
  }

  .form-control.error input{
    border-color: #e74c3c ;
  }

  .form-control.sucess .fa-check-circle{
    color: #2ecc72;
    visibility: visible;
  } 

  .form-control.error .fa-exclamation-circle{
    color: #e74c4c;
    visibility: visible;
  } 


html, body {
  max-width: 100%;
  overflow-x: hidden !important;

}


/* Correção: Precisei fazer essas alterações pois estava bugando o resposivo na versão mobile e não estava conseguindo resolver sem puxar para baixo. Data da atualização: 19/05 */

@media (max-width: 991.98px)  {
  #minha-foto img {
    width: 450px !important;
    max-width: 500px;
    margin-left: -20vh !important;
    margin-right: auto !important;
    margin-top: 50px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  #banner-principal {
    flex-direction: grid;
    align-items: center;
    text-align: left;
    padding-left: 50px;
  }

  #titulo-funcao, #minha-foto {
    width: 90% !important;
    margin: 0 auto !important;
  }

  .txt-formulario, .estrutura-formulario {
    width: 100% !important;
    margin: 0 auto !important;
    padding: 20px !important;
  }

  .formulario {
    width: 100% !important;
    padding: 30px !important;
  }

  .formation-card {
    width: 90% !important;
    max-width: 450px;
  }
}


