@import url(//fonts.googleapis.com/css?family=Nunito);

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    font-family: 'Nunito', sans-serif;
}

:root {
    --primaria: #ffffff;
    --padrao: #8fbaff;
    --grass: rgba(0, 0, 0, 0.9);
    --font: #000000;
    --background: #000000;
    --background-2: #051631;
}

body {
    background-color: #000000;
    color: var(--primaria);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    height: auto;
    position: relative;
    z-index: 0; 
}

/* --------------- GRAIN FUNDO --------------- */ 

.grain {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1; 
}

.grain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(https://upload.wikimedia.org/wikipedia/commons/5/5c/Image_gaussian_noise_example.png);
  opacity: 0.1;
  pointer-events: none;
  z-index: 1; 
}

/* --------------- PARTICULAS FUNDO --------------- */ 

.particulas{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: 
    radial-gradient(circle 3000px at 100% 10%,  #19b363, transparent 20%),
    radial-gradient(circle 3000px at 0% 90%,  #19b363, transparent 20%),
    var(--background);
}

/* --------------- SEPARADOR PAGINAS --------------- */

hr {
  border-left: 40vw solid transparent;   
  border-right: 40vw solid transparent;  
  border-radius: 10px;
  border-top: 1px solid #ffffff;    
  align-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

/* --------------- MENU NAVEGAÇÃO --------------- */ 

.navegacao {
    z-index: 2;
    display: flex;
    position: fixed;
    justify-content: center;
    top: 5px;
    left: 50%;
    background: rgb(255, 255, 255);
    transform: translateX(-50%);
    width: max-content;
    padding: 0.3rem 7rem;
    border-radius: 50px;
    backdrop-filter: blur(3.8px);
    -webkit-backdrop-filter: blur(3.8px);
}

.menu {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 1.5rem;
}

.menu-hamburguer{
    display: none;
}

.name {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    color: #000000;
    font-size: 1rem;
}

.namedev {
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    color: #9FFF60;
    font-size: 1rem;
    padding: 0.6rem;
    margin-left: -10px;
    font-weight: bold;
}

.menu-link{
    display: flex;
    text-decoration: none;
    color: #a9a9a9;
    font-size: 1.2rem;
    position: relative;
    padding: 0.4rem;
    transition: transform 0.3s, color 0.3s;
}

.menu-link:hover {
    color: #000000;
    transform: scale(1.1);
}

.menu-link.active{
    color: #000000;
    transform: scale(1.1);
}

/* BANDEIRAS PT EN */

.bandeiras{
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
}

.bandeiras .fi{
    font-size: 1.3rem;
    border-radius: 3px;
}

.bandeiras button {
    filter: grayscale(100%);
    background: none;
    border: none;
}

.bandeiras .fi:hover {
    transform: scale(1.1);
}

.bandeiras button.active{
        filter: grayscale(0%);
        transform: scale(1.1);
}

/* --------------- PAGINA INICIAL --------------- */ 

.texto-ola{
    font-size: 2.2rem;
}

.cor-ola{
    margin-left: -7px;
    color: #9FFF60;
}

.cabecalho {
    min-height: 100vh;
    display: block;
    justify-content: center;
    align-items: center;
    text-align: left;
    position: relative;
}

.background {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./img/fundo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; 
  opacity: 0.5;
}

.cabecalho-conteudo {
    display: flex;
    flex-direction: row;     
    align-items: center;
    justify-content: center;
    gap: 90px;        
    border-radius: 50px;
    padding: 40px 20px;
    margin-left: auto;
    margin-right: auto; 
    max-width: 80%;
}

.foto-perfil {
    margin-top: 120px;
    display: flex;
    width: 25%;
    height: auto;
    border-radius: 20px;
     z-index: 1;
}

.cabecalho-texto {
    margin-top: 7rem;
    border-radius: 50px;
    padding: auto;
    display: flex;
    flex-direction: column;  
    justify-content: center;

}

.cabecalho-nome {
    color: #ffffff;
    display: flex;
    flex-direction: column;
    font-size: 2.7rem;
    font-weight: 900;    
}

.cabecalho-subtitulo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #9FFF60;
}

/* EFEITO SCROLL TECNOLOGIAS */
.tecnologias-prog {
    width: 30rem;
    max-width: 90vw;
    display: flex;
    flex-shrink: 0;
    flex-direction: column;
    gap: 1rem 0;
    position: relative;
    padding: 1.5rem 0;
    overflow: hidden; 

    -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
    );
    mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}

.loop-slider {
  .inner {
    display: flex;
    width: fit-content;
    animation-name: loop;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: var(--direction);
    animation-duration: var(--duration);
  }
}

.tag {
  display: flex;
  align-items: center;
  gap: 0 0.2rem;
  color: #ffffff;
  font-size: 0.9rem;
  border-radius: 25px;
  padding: 0.7rem 1rem;
  margin-right: 1rem;
  box-shadow: 
    0 0.1rem 0.2rem rgb(0 0 0 / 20%),
    0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);

  
  span {
    font-size: 1rem;
    color: #9FFF60;
  }
}

/* =============== */

@keyframes loop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.sociais {
    margin-top: 10px;
    justify-content: flex-start;
    display: flex;
    gap: 0.6rem;
    
}

.sociais a{
    text-decoration: none;
    border: none;
}

.sociais i{
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    color: #000000;
    padding: 1.1rem;
    transition: all 0.2s ease;   
    width: 20px;
    height: 20px;
    line-height: 25px;
    box-shadow: 
    0 0.1rem 0.2rem rgb(0 0 0 / 20%),
    0 0.1rem 0.5rem rgb(0 0 0 / 30%),
    0 0.2rem 1.5rem rgb(0 0 0 / 40%);
    background-color: #ffffff;
}

.sociais i:hover{
   transform: scale(1.05);
}

.botoesInicio a{
    display: inline-flex;
    margin-top: 1rem;
    margin-bottom: 1rem;
    text-decoration: none;
    color: #000000;
    background: linear-gradient(135deg, #9FFF60, #ffffff);
    border-radius: 25px;
    padding: 0.6rem 1.2rem;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.botoesInicio a:nth-child(2){
    margin-left: 0.5rem;
    color: #000000;
    background: #ffffff;
}

.botoesInicio i{
    margin-left: 0.3rem;
}

.botoesInicio a:hover{
    transform: scale(1.02);
}

.texto-role{
    margin-top: 20px;
}

.cabecalho-mouse {
    margin: 20px;
    display: flex;
    justify-content: center;
    text-align: center;
}

.scroll-downs {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 34px;
  height: 55px;
}

.mousey {
  width: 3px;
  padding: 6px 10px;
  height: 25px;
  border: 2px solid #ffffff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}

.scroller {
  width: 2px;
  height: 7px;
  border-radius: 25%;
  background-color: #ffffff;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(10px); opacity: 0;}
}

h1{
    font-weight: bold;
    margin: 2px;
}

.role-div {
    display: flex;            
    flex-direction: column;   
    align-items: center;     
    width: 100%;              
    margin-top: 20px;        
    
}

/* --------------- PAGINA SOBRE MIM --------------- */ 

.sobre {
    padding: 10rem 2rem;
    color: #fff;
    position: relative;
}

.backgroundD {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./img/fundoD.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; 
  opacity: 0.5;
}

.sobre-titulo {
    letter-spacing: 2px;
    font-size: 2.4rem;
    color: #ffffff;
    text-align: left;
}

.sobre-intro {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 3rem;
    margin-top: 1rem;
    text-align: left;
}

.sobre-container-2col {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.sobre-col-esquerda {
  flex: 1.2;
}

.sobre-col-direita {
  flex: 1;
}

.sobre-bloco h3 {
  color: #9FFF60;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-align: left;
}

.sobre-bloco p {
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: left;
  opacity: 0.9;
  font-size: 0.9rem;
  max-width: 100%;
}

.skills-bar-container {
  width: 100%;
  list-style: none;
  margin-top: 2rem;
  padding: 0;
}

.skills-bar-container li {
  width: 100%;
  padding: 5px;
  margin-bottom: 20px;
  position: relative;
}

.progressbar-title {
  color: #fff;
  margin-bottom: 0.5rem;
}

.progressbar-title h3 {
  display: inline-block;
  font-size: 1rem;
  margin-right: 10px;
}

.progressbar-title .percent {
  position: absolute;
  right: 5px;
  top: 0;
}

.bar-container {
  width: 100%;
  height: 5px;
  background: #4c4c4c;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  
}

.skills-bar-container .progressbar{
  position: absolute;
  width: 0%;
  height: 100%;
  background-color: #9FFF60; 
  border-radius: 5px;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
  animation-delay: .2s;
}

@keyframes progress-html { from { width:0%; } to { width:55%; } }
@keyframes progress-css { from { width:0%; } to { width:55%; } }
@keyframes progress-javascript { from { width:0%; } to { width:40%; } }
@keyframes progress-git { from { width:0%; } to { width:60%; } }
@keyframes progress-uiux { from { width:0%; } to { width:55%; } }

#progress-html { animation-name: progress-html; }
#progress-css { animation-name: progress-css; }
#progress-javascript { animation-name: progress-javascript; }
#progress-git { animation-name: progress-git; }
#progress-uiux { animation-name: progress-uiux; }

/* --------------- PAGINA PROJETOS --------------- */ 

.backgroundE {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./img/fundoE.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; 
  opacity: 0.5;
}

/* TITULOS E TEXTOS */
.projetos-titulo {
  letter-spacing: 2px;
  margin-top: 5rem;
  font-size: 2.4rem;
  color: #ffffff;
}

.projetos-desc {
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.8rem 1rem 0;
}

.tech-badge {
  background: linear-gradient(135deg, #9FFF60, #ffffff);
  color: #000000;
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
  white-space: nowrap;
}

.projetos-section {
  padding: 4rem 10rem;
  text-align: center;
  position: relative;
}

.projetos-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  padding-bottom: 1rem;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.06) 0%,
    rgba(255,255,255,0.03) 60%,
    rgba(255,255,255,0.02) 100%
  );
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  box-shadow:
    0 6px 18px rgba(0,0,0,0.45),    
    inset 0 1px 0 rgba(255,255,255,0.02); 
}



.card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.proj-titulo {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #ffffff;
  font-weight: bold;
  text-align: left;
  padding: 0 1rem;
}

.proj-info {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: #ffffff;
  text-align: left;
  padding: 0 1rem;
}

.proj-desc {
  font-size: 0.9rem;
  margin-top: 0.7rem;
  margin-bottom: 1rem;
  color: #ffffff;
  padding: 0 1rem;
  text-align: left;
}

.botoesProjeto {
  display: flex;
  gap: 0.8rem;
  padding: 0 1rem; 
  margin-top: auto;
}

.botoesProjeto a {
  display: flex;         
  align-items: center; 
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 20px;
  transition: transform 0.2s ease;
}

.botoesProjeto a:hover {
  transform: scale(1.05);
}

.botoesProjeto a i {
  margin-right: 0.5rem;  
  font-size: 1.1rem;    
}


/* --------------- PAGINA CONTATOS --------------- */ 

.contatos {
    min-height: 100vh;
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; 
}
  
.background2 {
  position: absolute; 
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('./img/fundoP.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -2; 
  opacity: 0.5;
}

.contatos-titulo {
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    color: #ffffff;
    font-size: 2.4rem;
}

.paragrafo-contatos{
    margin-top: 1rem;
    font-size: 1rem;
    color: #ffffff;
}

.contatos-conteudo {
    margin-top: 2rem;
    display: flex;   
    align-items: center;
    justify-content: center;
    gap: 60px;                
}

.formulario-sociais {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

.formulario-envio {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    text-align: center;
    align-items: center;  
    flex-direction: column;  
}

.contatos-info {
    margin-top: -2.8rem;
    background: rgba(255, 255, 255, 1);
    padding: 10px 30px;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: #000000;
    text-align: left;
    min-width: 250px;
    box-shadow: 
      0 0.1rem 0.2rem rgb(0 0 0 / 20%),
      0 0.1rem 0.5rem rgb(0 0 0 / 30%),
      0 0.2rem 1.5rem rgb(0 0 0 / 40%);
    transition: transform 0.3s ease;
    width: 100%;
}

.contatos-info h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    color: #000000;
}

.contatos-info p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contatos-info i {
    color: #9FFF60;
}

.botao-envio {
    font-size: 1rem;
    text-decoration: none;
    color: var(--primaria);
    display: flex;
    margin: 10px auto;
    width: fit-content;
    padding: 12px 45px;
    border-radius: 20px;
    background-color: #000;
    transform: scale(1);
    transition: all 0.2s;
}

.botao-envio i {
    font-size: 20px;
}

.botao-envio:hover {
    transform: scale(1.05);
    background-color: #151515;
}

.contatos form {
    background: rgba(255, 255, 255, 1);
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    width: 100%;
    margin-top: 3rem;
    box-shadow: 
      0 0.1rem 0.2rem rgb(0 0 0 / 20%),
      0 0.1rem 0.5rem rgb(0 0 0 / 30%),
      0 0.2rem 1.5rem rgb(0 0 0 / 40%);
}

form input, form textarea {
    width: 96%;
    border: 0;
    outline: none;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin: 15px;
    color: #ffffff;
    font-size: 1rem;
    border-radius: 10px;
    resize: none;
}

#msg {
    font-size: 1rem;
    color: var(--primaria);
    margin-top: 20px;
    display: block;
    text-shadow: 3px 3px 5px #9FFF60;
}

/* --------------- COPYRIGHT --------------- */ 

.copyright{
    position: inline-block;
    font-size: 0.8rem;
    width: 100%;
    text-align: center;
    background: rgb(0, 0, 0, 0.3);
    padding: 10px 0;
    font-weight: 300;
    bottom: 0;
    margin-top: -2rem;
}

.copyright i{
    color: #9FFF60;
}

/* --------------- MENU HAMBURGUER --------------- */

@media only screen and (max-width: 900px) { /* em telas até 900px ativa*/

.hamburguer {
    position: fixed;
    top: 20px;
    left: 20px;
    width: 40px;   
    height: 40px;
    cursor: pointer;
    z-index: 1000;
}

.hamburguer::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f0c9"; 
    color: #fff;
    font-size: 2.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hamburguer.active::after {
    content: "\f00d";
    font-size: 2.6rem;
}
}

/* --------------- SITE RESPONSIVO --------------- */

/* --------------- DIFERENTES TELAS --------------- */ 

/* ----- Celulares pequenos ----- */
@media only screen and (max-width: 480px) {

    /* PARTICULAS*/
.particulas{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: 
        radial-gradient(circle 1500px at 100% 10%,  #19b363, transparent 20%),
    radial-gradient(circle 1500px at 0% 90%,  #19b363, transparent 20%),
    var(--background);
}

/* MENU */
.menu {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 50%;        
    left: 0;  
    padding: 5rem 1rem;
    border-radius: 20px 20px 20px 20px;
    display: none;
}

.menu.active {
    display: flex;
}

.menu-link{
    display: flex;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    position: relative;
    padding: 0.4rem;
    transition: transform 0.3s, color 0.3s;
}

.menu-link:hover {
    color: #9FFF60;
    transform: none;
}

.menu-link.active{
    color: #9FFF60;
    transform: none;
}

.name{
    color: #fff;
}

/* NAVEGAÇÃO */
.navegacao {
    justify-content: space-between;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 90%;
    padding: 0.5rem 1rem;
}

.bandeiras .fi{
    left: 8px;
}

.name {
    font-size: 0.9rem;

}

.namedev {
    font-size: 0.9rem;
}

/* CABEÇALHO */
.cabecalho-conteudo {
    min-height: 100svh;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    max-width: 90%;
}

.foto-perfil {
    width: 50%;
    margin-top: 3rem;
    border-radius: 25px;
}

.cabecalho{
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

.texto-ola{
    font-size: 1.3rem;
}

.cor-ola{
    margin-left: -4px;
}

.cabecalho-nome {
    font-size: 1.5rem;
    margin-top: -6rem;
}

.cabecalho-subtitulo {
    font-size: 1.1rem;
}

.tecnologias-prog{
    font-size: 2rem;
}

.cabecalho-subtitulo-sociais{
    margin-top: 6rem;
    font-size: 1.1rem;
}

.sociais {
    justify-content: center;
    gap: 10px;
}

.sociais i {
    padding: 0.8rem;
    font-size: 18px;
    width: 30px;
    height: 30px;
}

.texto-role{
    display: none;
}

.cabecalho-mouse {
    display: none;
}

/* SOBRE */
.sobre {
    min-height: 100svh;
    padding: 6rem 1.5rem;
}

.conteudo-sobre {
    flex-direction: column;
    gap: 1.5rem;
}

.sobre::before{
    display: none;
}

.sobre-titulo {
    font-size: 1.8rem;
}

.sobre-desc {
    font-size: 0.8rem;
}

.sobre-bloco p {
  font-size: 0.9rem;
  max-width: 90%;
}

.sobre-paragrafo {
    font-size: 0.8rem;
}

  .sobre-container-2col {
    flex-direction: column;      
    gap: 2rem;                   
    align-items: flex-start;      
  }

  .sobre-col-esquerda,
  .sobre-col-direita {
    width: 100%;
    flex: none;                  
  }

/* PROJETOS */
.projetos-titulo{
    margin-top: 7rem;
    font-size: 1.8rem;
}

.projetos-desc{
    max-width: 100%;
    font-size: 0.8rem;
}

  .projetos-section {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .projetos-grid {
    grid-template-columns: 1fr;  
    gap: 3rem;
    margin-top: 2rem;
  }

  .card {
    max-width: 100%;
    margin: 0 auto;
  }

  .card img {
    height: 200px;
  }

  .proj-titulo {
    font-size: 1.1rem;
  }

  .proj-info {
    font-size: 0.9rem;
  }

  .proj-desc {
    font-size: 0.9rem;
  }

  /* Botões */
  .botoesProjeto {
    gap: 0.6rem;
  }

  .botoesProjeto a {
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.45rem 0.7rem;
  }

/* CONTATOS */
.contatos{
    min-height: 100svh;
}

.contatos-titulo{
    margin-top: -2rem;
    font-size: 1.8rem;
}

.contatos-info{
    align-items: center;
    justify-content: center;
    width: 90%;
    margin: 0 auto;
    margin-top: -2.8rem;  
    margin-bottom: 1rem;
}

.contatos-info h3{
    font-size: 0.9rem;
}

.contatos-info p{
    font-size: 0.8rem;
}

.paragrafo-contatos{
    font-size: 0.8rem;
    max-width: 100%;
    padding: 2rem;
    margin-top: -1rem;
    margin-bottom: -1rem;
}

.contatos form{
    width: 90%;
    margin-top: 10px;
}

.formulario-envio {
    flex-direction: column;
    width: 100%;
}

form input, form textarea{
    width: 75%;
}

.botao-envio {
    padding: 10px 30px;
    font-size: 0.9rem;
}
}

/* ----- Telas médias e Tablets ----- */

@media only screen and (min-width: 481px) and (max-width: 900px) {

    /* PARTICULAS*/
.particulas{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.5;
    background: 
        radial-gradient(circle 1500px at 100% 10%,  #19b363, transparent 20%),
    radial-gradient(circle 1500px at 0% 90%,  #19b363, transparent 20%),
    var(--background);
}

/* MENU */
.menu {
    position: fixed;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    width: 50%;        
    left: 0;  
    padding: 5rem 1rem;
    border-radius: 20px 20px 20px 20px;
    display: none;
}

.menu.active {
    display: flex;
}

.menu-link:hover {
    transform: none;
    color: #9FFF60;
}

.menu-link.active{
    transform: none;
    color: #9FFF60;
}

.name{
    color: #fff;
}

.menu-link{
    display: flex;
    text-decoration: none;
    color: #ffffff;
    font-size: 1.2rem;
    position: relative;
    padding: 0.4rem;
    transition: transform 0.3s, color 0.3s;
}

/* NAVEGAÇÃO */
.navegacao {
    justify-content: space-between;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    width: 90%;
    padding: 0.5rem 1rem;
}

.bandeiras .fi{
    left: 8px;
}

.name {
    font-size: 1.2rem;
}

.namedev {
    font-size: 1.2rem;
}

/* CABEÇALHO */
.cabecalho-conteudo {
    min-height: 100svh;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    max-width: 90%;
}

.foto-perfil {
    width: 45%;
    margin-top: 3rem;
}

.cabecalho{
    border-bottom-left-radius: 100px;
    border-bottom-right-radius: 100px;
}

.texto-ola{
    font-size: 1.7rem;
}

.cor-ola{
    margin-left: -4px;
}

.cabecalho-nome {
    font-size: 1.9rem;
    margin-top: -6rem;
}

.cabecalho-subtitulo {
    font-size: 1.3rem;
}

.tecnologias-prog{
    font-size: 3rem;
}

.cabecalho-subtitulo-sociais{
    margin-top: 6rem;
    font-size: 1.3rem;
}

.sociais {
    justify-content: center;
    gap: 10px;
}

.sociais i {
    padding: 0.8rem;
    font-size: 18px;
    width: 35px;
    height: 35px;
}

.texto-role{
    display: none;
}

.cabecalho-mouse {
    display: none;
}

/* SOBRE */
.sobre {
    min-height: 100svh;
    padding: 6rem 1.5rem;
}

.conteudo-sobre {
    flex-direction: column;
    gap: 1.5rem;
}

.sobre-titulo {
    font-size: 2.2rem;
}

.sobre-desc {
    font-size: 1rem;
}

.sobre-paragrafo {
    max-width: 80%;
    font-size: 1rem;
}

.sobre::before{
    display: none;
}

  .sobre-container-2col {
    flex-direction: column;    
    gap: 2rem;                   
    align-items: flex-start;     
  }

  .sobre-col-esquerda,
  .sobre-col-direita {
    width: 100%;
    flex: none;                 
  }

/* PROJETOS */
.projetos-titulo{
    margin-top: 7rem;
    font-size: 1.8rem;
}

.projetos-desc{
    max-width: 100%;
    font-size: 1rem;
}

  .projetos-section {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .projetos-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }

  .card {
    max-width: 100%;
    margin: 0 auto;
  }

  .card img {
    height: 200px;
  }

  .proj-titulo {
    font-size: 2.2rem;
  }

  .proj-info {
    font-size: 1rem;
  }

  .proj-desc {
    font-size: 1rem;
  }

  /* Botões */
  .botoesProjeto {
    gap: 0.6rem;
  }

  .botoesProjeto a {
    justify-content: center;
    font-size: 0.9rem;
    padding: 0.45rem 0.7rem;
  }


/* CONTATOS */
.contatos{
    min-height: 100svh;
}

.contatos-titulo{
    margin-top: 6rem;
    font-size: 2.2rem;
}

.paragrafo-contatos{
    font-size: 1rem;
}

.contatos-info{
    align-items: center;
    justify-content: center;
    width: 85%;
    margin: 0 auto;
    margin-top: -2.8rem;  
    margin-bottom: 1rem;
}

.contatos-info h3{
    font-size: 1rem;
}

.contatos-info p{
    font-size: 1rem;
}

.contatos form{
    width: 85%;
    margin-top: 10px;
}

.formulario-envio {
    flex-direction: column;
    width: 100%;
}

form input, form textarea{
    width: 70%;
}

.botao-envio {
    padding: 10px 30px;
    font-size: 0.9rem;
}
}