:root {
  --color-bg: #FAFAFA; /* fundo claro, mais suave */
  --color-bg-card: #FFFFFF; /* cards */
  --color-text: #1F1F1F; /* texto principal */
  --color-text-secondary: #4B4B4B; /* texto secundário */
  --color-primary: #5C6BC0; /* roxo moderno */
  --color-primary-hover: #3949AB; /* hover roxo escuro */
  --color-accent: #FF6F61; /* detalhes / alertas */
  --color-border: #E0E0E0; /* bordas / divisórias */
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html{
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body{
    background-color: var(--color-bg);
    font-family: "Montserrat", sans-serif;
}

.dark-theme {
  --color-bg: #1B1B1B;           /* fundo escuro clássico */
  --color-bg-card: #262626;      /* cards destacados */
  --color-text: #F2F2F2;         /* texto quase branco */
  --color-text-secondary: #CCCCCC;
  --color-primary: #D4AF37;      /* dourado sofisticado */
  --color-primary-hover: #FFD700;
  --color-accent: #E85D75;       /* rosa elegante para detalhes */
  --color-border: #333333;
}

/* Ajustes específicos */
body.dark-theme {
  background-color: var(--color-bg);
  color: var(--color-text);
}

body.dark-theme header {
  background-color: var(--color-primary);
}


body.dark-theme .sidebar {
  background-color: var(--color-bg-card);
}

.dark-theme .close-btn {
  color:#EDECF9; 
}

body.dark-theme .projeto-card,
body.dark-theme .formacao-card {
  background: var(--color-bg-card);
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

body.dark-theme .footer {
  background: #0D0D0D;
}

section, main, header, footer, .sidebar, .projetos-grid, .formacoes-container {
  transition: all 0.3s ease-in-out;
}

/* Header */
header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-primary);
    color:var(--color-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
}

.menu-btn{
    border: none;
    background: none;
    font-size: 1.6rem;
    cursor: pointer; 
    transition: opacity 1s ease;
    color: var(--color-bg);
}
.menu-btn.hidden{
    opacity: 0;
    pointer-events: none;
}

#logo{
    font-size: 1.6rem;
}

#logo a{
  text-decoration: none;
  color: var(--color-bg);
}

/* Header */

/*Sidebar*/
.sidebar{
    position: fixed;
    top: 0px;
    height: 100%;
    left: -250px;
    width: 250px;
    background-color: #EDECF9;
    padding: 1.2rem;
    transition: 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1000;

}

.sidebar.active{
    left: 0;
    opacity: 1;
}

.close-btn{
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 1rem;
  

}

.sidebar ul{
   
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    font-weight: 600;
}
.sidebar li{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 1.2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease-in-out, color 0.3s ease;

}

.sidebar a{
    color: var(--color-text);
    text-decoration: none;
}

body.dark-theme .sidebar {
  background-color: var(--color-bg-card); /* garante contraste no dark mode */
}

/*Sidebar*/

main{
    margin: 0.5rem 1rem;
    padding: 1rem;
}

/*apresentacao section*/

#apresentacao{
   padding:1rem;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1.6rem;
}

#apresentacao h1{
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;

}

#apresentacao p{
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: center;
}

#apresentacao span{
    color: var(--color-primary);
}

#apresentacao img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.redes-sociais{
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;

}

.redes-sociais li {
    list-style: none;
}

.redes-sociais i {
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: transform 0.3s ease-in-out;
}

.redes-sociais i:hover {
    transform: scale(1.2);
}

#tecnologias ul{
   
    margin-top: 0.5rem;
    gap: 0.5rem;
}

.faixa-tecnologias{
    display: flex;
    -webkit-overflow-scrolling: touch;
    padding:0; 
}

.faixa-tecnologias li{
    list-style: none;
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--color-primary);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faixa-tecnologias li i{
    font-size: 1.2rem;
    color: var(--color-bg);
}

.faixa-tecnologias li:hover {
  transform: translateY(-4px);
  background-color: var(--color-primary-hover);
}
/*apresentacao section*/

/*Habilidades*/
#habilidades{
    margin-top: 2rem;
    padding: 1rem;
}

#habilidades h2{
  color: var(--color-primary);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.skill {
  margin-bottom: 1rem;
}

.skill_nome {
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
}

.skill-barra {
  height: 20px;
  background-color: #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.skill-progresso {
  background-color: var(--color-primary);
  height: 100%;
  width: 0;
  transition: width 1.2s ease-in-out;
  position: relative;
}

.skill-porcentagem {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #fff;
  font-weight: bold;
}
/* Habilidades*/

/*Formações*/
#formacoes{
    margin-top: 2rem;
    padding: 1rem;
}

#formacoes h2 {
  color: var(--color-primary);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.formacoes-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formacao-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-left: 4px solid var(--color-primary);
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, border-left-width 0.4s ease, border-left-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.formacao-card:hover {
  border-left-width: 8px; 
  border-left-color: var(--color-primary-hover);
  transform: translateX(0) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.formacao-card.show {
  transform: translateX(0);
  opacity: 1;
}

.ano {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.formacao-info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.formacao-info p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/*Formacoes*/

/* Projetos */

#projetos {
  padding: 2rem 1rem;

}

#projetos h2{
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.projetos-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 coluna mobile */
  gap: 1.5rem;
}

.projeto-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.projeto-card:hover {
  transform: translateY(-5px);
}

.projeto-card img {
  width: 100%;
  aspect-ratio: 16/9; /* mantém proporção consistente */
  object-fit: cover;
}

.projeto-card h3 {
  margin: 0.8rem 0 0.4rem;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.projeto-card p {
  padding: 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-align: center;
}

.github-btn {
  margin: 0.8rem 0 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.github-btn:hover {
  background: var(--color-primary-hover);
}

/* Responsividade */
@media (min-width: 768px) {
  .projetos-grid {
    grid-template-columns: repeat(2, 1fr); /* tablet */
  }
}

@media (min-width: 1024px) {
  .projetos-grid {
    grid-template-columns: repeat(3, 1fr); /* desktop */
  }
}

/* Projetos */

/* Footer */

.footer {
  background: #1E1E2F;
  color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 20px;
}

.footer a:hover {
  color: var(--color-primary);
}

.container_whatsapp {
  position: fixed;      
  bottom: 20px;          
  right: 20px;           
  z-index: 2500;         
  cursor: pointer;
}

#animacao-telefone {
  width: 80px;
  height: 80px;
}

#animacao-telefone:hover {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

#tecnologias-desktop {
  display: none;
}

  .skills-container h3{
   display: none;
  }

#tecnologias_desktop{
  display: none;
}

/*Desktop*/

.list_header.desktop {
  display: none;
}

.sidebar_desktop {
  position: fixed;
  top: 60px; 
  left: 0;
  width: 250px;
  height: calc(100vh - 60px);
  padding: 2rem;
  overflow-y: auto;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15); /* sombra suave à direita */
  border-radius: 8px;
}

.sidebar_desktop img{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 8px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar_desktop p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.sidebar_desktop h2{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
 
}
.sidebar_desktop p {
  color: var(--color-text-secondary);
  text-align: center;
}

.redes_perfil {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.redes_perfil i {
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.6rem;
}

.redes_perfil i:hover{
  transform: scale(1.2);
}

.redes_perfil a {
  font-size: 1.5rem;
  color:var(--color-text-secondary);
  transition: color 0.3s;
}

.redes_perfil a:hover {
  color: #6c63ff;
}


@media(max-width:1024px){
  .sidebar_desktop{
    display: none;
  }
}


@media (min-width:1024px) {
  body{
  display: block; /* deixa como padrão */
  min-height: 100vh;
  }
   header {
    grid-column: 1 / 3;
    grid-row: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
  }
  #menu_btn{
    display: none;
  }

  #logo{

    font-size: 2rem;
  }

  
.list_header.desktop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
  gap: 1.6rem;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;

}

.itens_list {
  list-style: none;
}

.links_list {
  display: inline-block;
  font-size: 1.4rem;
  color: #F5F5F5;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}

.links_list:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.1);
}

  main {
    max-width: 1200px;
    padding: 1rem;
    margin-left: 300px;
    margin-top: 60px;

  }
  #apresentacao{
    display: none;
  }

  .skills-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  }

  .skills-container h2 {
    display: none;
  }

  .skills-container h3{
    display: block ;
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
  }

  .hard-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .soft-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

 #tecnologias {
    display: none;
  }
  #tecnologias_desktop {
    display: flex;
    justify-content: space-around;
  }

  .faixa-tecnologias{
    gap: 2rem;
  }

   #formacoes .formacoes-container {
    display: flex;         
    flex-direction: column;  
    gap: 1rem;        
  }

  #formacoes h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  #projetos h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
}

:root {
  --color-bg: #FAFAFA; /* fundo claro, mais suave */
  --color-bg-card: #FFFFFF; /* cards */
  --color-text: #1F1F1F; /* texto principal */
  --color-text-secondary: #4B4B4B; /* texto secundário */
  --color-primary: #5C6BC0; /* roxo moderno */
  --color-primary-hover: #3949AB; /* hover roxo escuro */
  --color-accent: #FF6F61; /* detalhes / alertas */
  --color-border: #E0E0E0; /* bordas / divisórias */
}


@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html{
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

body{
    background-color: var(--color-bg);
    font-family: "Montserrat", sans-serif;
}

.dark-theme {
  --color-bg: #1B1B1B;           /* fundo escuro clássico */
  --color-bg-card: #262626;      /* cards destacados */
  --color-text: #F2F2F2;         /* texto quase branco */
  --color-text-secondary: #CCCCCC;
  --color-primary: #D4AF37;      /* dourado sofisticado */
  --color-primary-hover: #FFD700;
  --color-accent: #E85D75;       /* rosa elegante para detalhes */
  --color-border: #333333;
}

/* Ajustes específicos */
body.dark-theme {
  background-color: var(--color-bg);
  color: var(--color-text);
}

body.dark-theme header {
  background-color: var(--color-primary);
}


body.dark-theme .sidebar {
  background-color: var(--color-bg-card);
}

.dark-theme .close-btn {
  color:#EDECF9; 
}

body.dark-theme .projeto-card,
body.dark-theme .formacao-card {
  background: var(--color-bg-card);
  box-shadow: 0 4px 8px rgba(0,0,0,0.6);
}

body.dark-theme .footer {
  background: #0D0D0D;
}


/* Header */
header{
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--color-primary);
    color:var(--color-bg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1.2rem;
}

.menu-btn{
    border: none;
    background: none;
    font-size: 1.6rem;
    cursor: pointer; 
    transition: opacity 1s ease;
    color: var(--color-bg);
}
.menu-btn.hidden{
    opacity: 0;
    pointer-events: none;
}

#logo{
    font-size: 1.6rem;
}

#logo a{
  text-decoration: none;
  color: var(--color-bg);
}

/* Header */

/*Sidebar*/
.sidebar{
    position: fixed;
    top: 0px;
    height: 100%;
    left: -250px;
    width: 250px;
    background-color: #EDECF9;
    padding: 1.2rem;
    transition: 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    z-index: 1000;

}

.sidebar.active{
    left: 0;
    opacity: 1;
}

.close-btn{
    font-size: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    margin-bottom: 1rem;
  

}

.sidebar ul{
   
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    font-weight: 600;
}
.sidebar li{
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 1.2rem;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease-in-out, color 0.3s ease;

}

.sidebar a{
    color: var(--color-text);
    text-decoration: none;
}

body.dark-theme .sidebar {
  background-color: var(--color-bg-card); /* garante contraste no dark mode */
}

/*Sidebar*/

main{
    margin: 0.5rem 1rem;
    padding: 1rem;
}

/*apresentacao section*/

#apresentacao{
   padding:1rem;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1.6rem;
}

#apresentacao h1{
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;

}

#apresentacao p{
    font-size: 1rem;
    color: var(--color-text-secondary);
    text-align: center;
}

#apresentacao span{
    color: var(--color-primary);
}

#apresentacao img{
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
}

.redes-sociais{
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0;

}

.redes-sociais li {
    list-style: none;
}

.redes-sociais i {
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: transform 0.3s ease-in-out;
}

.redes-sociais i:hover {
    transform: scale(1.2);
}

#tecnologias ul{
   
    margin-top: 0.5rem;
    gap: 0.5rem;
}

.faixa-tecnologias{
    display: flex;
    -webkit-overflow-scrolling: touch;
    padding:0; 
}

.faixa-tecnologias li{
    list-style: none;
    padding: 1rem;
    border-radius: 8px;
    background-color: var(--color-primary);
    box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.faixa-tecnologias li i{
    font-size: 1.2rem;
    color: var(--color-bg);
}

.faixa-tecnologias li:hover {
  transform: translateY(-4px);
  background-color: var(--color-primary-hover);
}
/*apresentacao section*/

/*Habilidades*/
#habilidades{
    margin-top: 2rem;
    padding: 1rem;
}

#habilidades h2{
  color: var(--color-primary);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.skill {
  margin-bottom: 1rem;
}

.skill_nome {
  font-weight: 600;
  margin-bottom: 0.3rem;
  display: block;
}

.skill-barra {
  height: 20px;
  background-color: #ddd;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.skill-progresso {
  background-color: var(--color-primary);
  height: 100%;
  width: 0;
  transition: width 1.2s ease-in-out;
  position: relative;
}

.skill-porcentagem {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #fff;
  font-weight: bold;
}
/* Habilidades*/

/*Formações*/
#formacoes{
    margin-top: 2rem;
    padding: 1rem;
}

#formacoes h2 {
  color: var(--color-primary);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.formacoes-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.formacao-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  border-left: 4px solid var(--color-primary);
  transform: translateX(-30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease, border-left-width 0.4s ease, border-left-color 0.4s ease, box-shadow 0.4s ease;
  cursor: default;
}

.formacao-card:hover {
  border-left-width: 8px; 
  border-left-color: var(--color-primary-hover);
  transform: translateX(0) scale(1.02);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.formacao-card.show {
  transform: translateX(0);
  opacity: 1;
}

.ano {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.3rem;
}

.formacao-info h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.formacao-info p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/*Formacoes*/

/* Projetos */

#projetos {
  padding: 2rem 1rem;

}

#projetos h2{
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.projetos-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 coluna mobile */
  gap: 1.5rem;
}

.projeto-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  box-shadow: 5px 5px 15px rgba(0,0,0,0.1);
}

.projeto-card:hover {
  transform: translateY(-5px);
}

.projeto-card img {
  width: 100%;
  aspect-ratio: 16/9; /* mantém proporção consistente */
  object-fit: cover;
}

.projeto-card h3 {
  margin: 0.8rem 0 0.4rem;
  color: var(--color-primary);
  font-size: 1.1rem;
}

.projeto-card p {
  padding: 0 1rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  text-align: center;
}

.github-btn {
  margin: 0.8rem 0 1rem;
  background: var(--color-primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.github-btn:hover {
  background: var(--color-primary-hover);
}

/* Responsividade */
@media (min-width: 768px) {
  .projetos-grid {
    grid-template-columns: repeat(2, 1fr); /* tablet */
  }
}

@media (min-width: 1024px) {
  .projetos-grid {
    grid-template-columns: repeat(3, 1fr); /* desktop */
  }
}

/* Projetos */

/* Footer */

.footer {
  background: #1E1E2F;
  color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.footer a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-size: 20px;
}

.footer a:hover {
  color: var(--color-primary);
}

.container_whatsapp {
  position: fixed;      
  bottom: 20px;          
  right: 20px;           
  z-index: 2500;         
  cursor: pointer;
}

#animacao-telefone {
  width: 80px;
  height: 80px;
}

#animacao-telefone:hover {
    transform: scale(1.1);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1.1); }
    50% { transform: scale(1); }
}

#tecnologias-desktop {
  display: none;
}

  .skills-container h3{
   display: none;
  }

#tecnologias_desktop{
  display: none;
}

/*Desktop*/

.list_header.desktop {
  display: none;
}

.sidebar_desktop {
  position: fixed;
  top: 60px; 
  left: 0;
  width: 250px;
  height: calc(100vh - 60px);
  padding: 2rem;
  overflow-y: auto;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15); /* sombra suave à direita */
  border-radius: 8px;
}

.sidebar_desktop img{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: 8px 0 5px rgba(0, 0, 0, 0.1);
}

.sidebar_desktop p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.sidebar_desktop h2{
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
 
}
.sidebar_desktop p {
  color: var(--color-text-secondary);
  text-align: center;
}

.redes_perfil {
  display: flex;
  justify-content: center;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.redes_perfil i {
  transition: background-color 0.3s ease, transform 0.3s ease;
  font-size: 1.6rem;
}

.redes_perfil i:hover{
  transform: scale(1.2);
}

.redes_perfil a {
  font-size: 1.5rem;
  color:var(--color-text-secondary);
  transition: color 0.3s;
}

.redes_perfil a:hover {
  color: #6c63ff;
}


@media(max-width:1024px){
  .sidebar_desktop{
    display: none;
  }
}


@media (min-width:1024px) {
  body{
  display: block; 
  min-height: 100vh;
  }
   header {
    grid-column: 1 / 3;
    grid-row: 1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 1000;
  }
  #menu_btn{
    display: none;
  }

  #logo{

    font-size: 2rem;
  }

  
.list_header.desktop {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
  gap: 1.6rem;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;

}

.itens_list {
  list-style: none;
}

.links_list {
  display: inline-block;
  font-size: 1.4rem;
  color: #F5F5F5;
  padding: 8px;
  border-radius: 8px;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease;
}

.links_list:hover {
  background-color: var(--color-primary-hover);
  transform: scale(1.1);
}

  main {
    max-width: 1200px;
    padding: 1rem;
    margin-left: 350px;
    margin-top: 60px;
  }
  #apresentacao{
    display: none;

  }

  .skills-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;

  }

  .skills-container h2 {
    display: none;
  }

  .skills-container h3{
    display: block ;
    text-align: center;
    font-size: 2rem;
    color: var(--color-primary);
  }

  .hard-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .soft-skills {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

 #tecnologias {
    display: none;
  }
  #tecnologias_desktop {
    display: flex;
    justify-content: space-around;
  }

  .faixa-tecnologias{
    gap: 2rem;
  }

   #formacoes .formacoes-container {
    display: flex;         
    flex-direction: column;  
    gap: 1rem;        
  }

  #formacoes h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
  }

  #projetos h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
}

