/* =====================================================
   PORTFÓLIO PESSOAL - RAFAEL SILVA
   -----------------------------------------------------
   Tecnologias:
   - HTML5
   - CSS3
   - Responsividade Mobile

   Estrutura:
   1. Reset Global
   2. Cabeçalho
   3. Primeira Sessão (Hero)
   4. Segunda Sessão (Sobre Mim)
   5. Terceira Sessão (Habilidades)
   6. Quarta Sessão (Projetos)
   7. Quinta Sessão (Contato)
   8. Rodapé
   9. Responsividade Mobile
===================================================== */

/* ==========================================================
   MENU HAMBÚRGUER
========================================================== */

.menu-toggle{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 34px;
    color: #000;
    z-index: 1001;
}


/* ================= RESET GLOBAL ================= */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* REMOVER COR AZUL PADRÃO DOS LINKS */
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}
* {
  -webkit-touch-callout: none;
}
/* ===================================================================
   2. CONFIGURAÇÕES GERAIS
   -------------------------------------------------------------------
   Define configurações globais da página.
=================================================================== */

/* Fonte padrão do site */
body {
  font-family: Arial, sans-serif;
  
  
}
html {
    scroll-behavior: smooth;
}

/* ================= CABEÇALHO ================= */
/* Header fixo com efeito de blur */
header {
  display: flex;
  background: rgba(20, 20, 20, 0.2);
  width: 100%;
  justify-content: space-between;
  padding: 1.6%;
  position: fixed;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 999;
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
  border: 1px solid rgba(255,255,255,.15);
}



/* Área do nome/logo */
.h {
  width: 20%;
}

/* Lista do nome/logo */
.h ul {
  list-style-type: none;
  width: 60%;
  font-size: 24px;
}

/* Menu de navegação */
nav ul {
  display: flex;
  gap: 24px;
  list-style-type: none;
}

/* ===================================================================
   4. ESTRUTURA GERAL DAS SEÇÕES
   -------------------------------------------------------------------
   Configuração padrão aplicada a todas as sections.
=================================================================== */

section {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* ===================================================================
   5. BOTÕES GLOBAIS
   -------------------------------------------------------------------
   Estilos compartilhados por todos os botões do portfólio.
=================================================================== */

button {
  opacity: 1;
  transition: 0.3s;
  cursor: pointer;
}

/* Hover dos botões nos cards iniciais */
.DivCards button:hover {
  opacity: 0.7;
  background-color: rgb(160, 2, 2);
  color: white;
}

/* Inverte cor da imagem dentro do botão */
.DivCards button:hover img {
  filter: brightness(0) invert(1);
}

/* ===================================================================
   6. PRIMEIRA SESSÃO (HERO)
   -------------------------------------------------------------------
   Área de apresentação principal do portfólio.

   Contém:
   • Nome profissional
   • Cargo
   • Botões de navegação
   • Redes profissionais
=================================================================== */

.primeira_sessao {
  background-image: url(asseds/retro-digital-art-illustration-person-using-radio-technology.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  min-height: 100vh;
  
  justify-content: center;
  align-items: center;
  display: flex;

  color: rgb(255, 240, 240);
  position: relative;
  z-index: 1;

  /* Título principal */
  h1 {
   font-size: clamp(3rem, 6vw, 5rem);
    margin-top: 0;
    text-align: center;
  }

  /* ==========================================================
   TÍTULO PRINCIPAL
========================================================== */

  .titulo_principal{
    font-size: clamp(2.8rem, 5vw, 5rem);
    margin-bottom: 10px;
}

/* ==========================================================
   CARD CENTRAL DA HERO
========================================================== */

.div_section{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);

    padding: 40px;
    border-radius: 20px;

    max-width: 700px;
    width: 90%;
}
}

/* ==========================================================
   BOTÕES DE AÇÃO DA HERO
========================================================== */

.DivCards{
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.DivCards button{
    min-width: 170px;
    height: 50px;

    border-radius: 12px;
    border: none;

    font-size: 16px;
    font-weight: 600;
}

/* ================= CARDS INICIAIS ================= */
.DivCards {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;

  /* Botões como cards */
  button {
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 9px;
    text-align: left;
    border-radius: 10px;
    border: none;
    padding: 1px 29px;
    display: inline-flex;

    /* Ícones dentro do botão */
    img {
      width: 35px;
      height: 40px;
      object-fit: contain;
    }
  }
}

/* Botão secundário */
.ver_projeto {
  background-color: rgba(255, 243, 243, 0.563);
  color: black;
  font-size: 16px;
}

/* ==========================================================
   ÍCONES E INFORMAÇÕES PROFISSIONAIS
========================================================== */
.item,
.item2,
.item3{
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.2rem;
}
.item img,
.item2 img,
.item3 img{
    width: 30px;
    height: 30px;
    
}
/* Ajustes das imagens */
.item img {
  width: 35px;
  height: 40px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}




/* ===================================================================
   7. SEGUNDA SESSÃO (SOBRE MIM)
   -------------------------------------------------------------------
   Apresentação profissional, trajetória, objetivos e experiências.
=================================================================== */

.segunda_sessao {
  align-items: center;

  /* Texto principal da apresentação */
  .texto_sobre_mim {
    max-width: 1200px;
    margin: 2%;
    padding: 30px 35px;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 9px 10px rgba(0, 0, 0, 0.03);
    color: #4b5563;
    line-height: 1.8;
  }

  /* Card de destaque */
  .card-highlight {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9fafb;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
    border-bottom: 2px solid #d4d1d1;
    box-shadow:0 9px 10px rgba(203, 201, 201, 0.249);
    margin: 5%;
  }

  /* Título */
  h2 {
    display: flex;
    justify-content: center;
    font-size: 55px;
    padding: 4%;
    margin-top: 4%;
  }

  /* Container dos cards */
  .DivCards2 {
    flex-wrap: wrap;
    display: flex;
    margin: 4%;
    max-width: 100%;
    gap: 30px;
    justify-content: center;
  }

/* Cards de informações */

  .card1, .card2, .card3, .card4 {
  flex: 1 1 400px;
  padding: 20px 40px;
  border-radius: 14px;
  border: 2px solid #e5e7eb;
  box-shadow: 0 9px 10px rgba(0, 0, 0, 0.03);

  max-width: 500px;
    p{
    color: #4b5563;
    margin: 5px;
  }

    img {
      background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 6px;
    }
  }
.card1_img,
.card2_img,
.card4_img,
.img_h3_desenvolvimento{
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.card1_img h3,
.card2_img h3,
.card3_img h3,
.card4_img h3{
    margin: 0;
}
  /* Hover dos cards */
  .card1:hover,
  .card2:hover,
  .card3:hover,
  .card4:hover {
    border: 2px solid #b9b7b7;
  }
}

/* ===================================================================
   8. TERCEIRA SESSÃO (HABILIDADES)
   -------------------------------------------------------------------
   Demonstra os conhecimentos técnicos do profissional.

   Categorias:
   • Banco de Dados
   • Programação
   • Desenvolvimento Web
   • Análise e Visualização de Dados
=================================================================== */
/* ===================================================================
   6. TERCEIRA SESSÃO (HABILIDADES TÉCNICAS)
   -------------------------------------------------------------------
   Seção responsável por apresentar as principais competências
   técnicas do desenvolvedor.

   ORGANIZAÇÃO:
   • Banco de Dados
   • Programação
   • Desenvolvimento Web
   • Análise e Visualização de Dados

   COMPONENTES:
   • Cards informativos
   • Tags de tecnologias
   • Efeitos Hover
   • Resumo profissional
=================================================================== */

.terceira_sessao {

  /* Centraliza todo o conteúdo da seção */
  align-items: center;

  /* ===============================================================
     TÍTULO PRINCIPAL DA SEÇÃO
  =============================================================== */
  h2 {
    font-size: 50px;
    padding: 3%;
    margin-left: -2%;
    margin-top: 4%;
  }

  /* ===============================================================
     CARD 5 — BANCO DE DADOS
     ---------------------------------------------------------------
     Exibe conhecimentos relacionados a:
     • SQL
     • PostgreSQL
     • Modelagem de Dados
     • Consultas e Manipulação
  =============================================================== */

  .banco_de_dados {
    display: flex;
    align-items: center;
    padding: 4%;
    gap: 10px;

    img{
      background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 4px;
    }
  }

  .card5 {
    justify-content: center;
    align-items: center;
    width: 280px;
  }

  .border_card5 {
    border-radius: 7px;
    border: 2px solid #e5e7eb;
    height: 120px;
    max-width: 458px;
    width: 100%;
  }

  .border_card5:hover {
    border: 2px solid #b9b7b7;
  }

  /* Tecnologias do card */
  .buton_card5 {
    display: flex;
    gap: 5%;
    justify-content: center;

    button {
      border-radius: 999px;
      border: none;
      height: 20px;
      width: 80px;
      background-color: rgba(188, 206, 251, 0.244);
      color: black;
    }
  }

  .buton_card5 button:hover {
    background-color: #02122c;
    color: whitesmoke;
  }

  /* ===============================================================
     CONTAINER GERAL DOS CARDS
     ---------------------------------------------------------------
     Organiza todos os cards da seção utilizando Flexbox.
  =============================================================== */

  .buton_terceira_sessao {
    flex-wrap: wrap;
    display: flex;
    margin: 4%;
    align-items: center;
    max-width: 100%;
    gap: 30px;
    justify-content: center;
  }

  /* ===============================================================
     CARD 6 — PROGRAMAÇÃO
     ---------------------------------------------------------------
     Tecnologias de desenvolvimento utilizadas em projetos.
  =============================================================== */

  .programacao {
    display: flex;
    align-items: center;
    padding: 4%;
    gap: 10px;

    img{
      background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 4px;
    }
  }

  .card6 {
    justify-content: center;
    align-items: center;
    width: 280px;
  }

  .border_card6 {
    border-radius: 7px;
    border: 2px solid #e5e7eb;
    height: 120px;
    max-width: 458px;
    width: 100%;
  }

  .border_card6:hover {
    border: 2px solid #b9b7b7;
  }

  /* Tecnologias de programação */
  .buton_card6 {
    display: flex;
    gap: 5%;
    justify-content: center;
    align-items: center;

    button {
      border-radius: 999px;
      border: none;
      width: 70px;
      height: 20px;
      background-color: rgba(188, 206, 251, 0.244);
    }

    .jav {
      width: 80px;
    }
  }

  .buton_card6 button:hover {
    background-color: #02122c;
    color: whitesmoke;
  }

  /* ===============================================================
     CARD 7 — DESENVOLVIMENTO WEB
     ---------------------------------------------------------------
     Tecnologias utilizadas na construção de aplicações web.
  =============================================================== */

  .card7 {
    justify-content: center;
    align-items: center;
    gap: 5%;
    width: 100%;
  }

  .border_card7 {
    border-radius: 7px;
    border: 2px solid #e5e7eb;
    height: 120px;
    max-width: 458px;
    width: 100%;
  }

  .border_card7:hover {
    border: 2px solid #b9b7b7;
  }

  .buton_card7 {
    display: flex;
    gap: 7px;
    justify-content: center;
    align-items: center;

    button{
      border-radius: 999px;
      border: none;
      width: 50px;
      margin-top: -2.5%;
      height: 20px;
      background-color: rgba(188, 206, 251, 0.244);
    }

    .resp{
      width: 130px;
    }

    .jav{
      width: 80px;
      max-width: 999%;
    }
  }

  .buton_card7 button:hover {
    background-color: #02122c;
    color: whitesmoke;
  }

  /* ===============================================================
     CARD 8 — ANÁLISE E VISUALIZAÇÃO DE DADOS
     ---------------------------------------------------------------
     Competências relacionadas à análise de informações,
     estatística e criação de dashboards.
  =============================================================== */

  .desenvolvimento_web {
    display: flex;
    align-items: center;
    padding: 4%;
    gap: 10px;
    white-space: auto;
    max-width: 450px;

    img{
      background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 4px;
    }
  }

  .analise_e_visualizacao {
    display: flex;
    align-items: center;
    padding: 2.5%;
    gap: 10px;

    img{
      background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 7px;
    }
  }

  .border_card8 {
    border-radius: 7px;
    border: 2px solid #e5e7eb;
    height: 120px;
    max-width: 458px;
    width: 100%;
  }

  .border_card8:hover {
    border: 2px solid #b9b7b7;
  }

  .buton_card8 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;

  button{
      border: none;
      border-radius: 999px;
      height: 20px;
      width: 70px;
      background-color: rgba(188, 206, 251, 0.244);
    }

    .dataanaly{
      width: 90px;
    }

    .statist{
      width: 120px;
    }

    .datavi{
      width: 120px;
    }
  }

  .buton_card8 button:hover {
    background-color: #02122c;
    color: whitesmoke;
  }

  /* ===============================================================
     CARD 9 — RESUMO PROFISSIONAL
     ---------------------------------------------------------------
     Espaço destinado a apresentar uma visão geral das
     competências técnicas e perfil profissional.
  =============================================================== */

  .card9{
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    width: 50%;
    gap: 10px;
    padding: 2%;

    h3 {
      font-size: 25px;
      padding: 3%;
      justify-content: center;
      display: flex;
    }

    p{
      text-indent: 30px;
      padding-left: 5px;
      line-height: 1.5;
      color: #4b5563;
    }
  }

}


                                   /* ================= QUARTA SESSÃO ================= */
  

.quarta_sessão{

  

  h2{
    font-size: 50px;
    padding: 3%;
    justify-content: center;
    display: flex;
    
    margin-top: 8%
    
  }
  
  .subtitulo{
    justify-content: center;
    display: flex;
    color: #4b5563;
    font-size: 18px;
    padding: 5%;
    
    margin-top: -5%;
    
  }


.card10,
.card11,
.card12,
.card13 {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  flex-wrap: wrap;
  flex: 1 1 45%;
  max-width: 500px;
}

.card10:hover{
 border: 2px solid #b9b7b7;
}

.card11:hover{
 border: 2px solid #b9b7b7;
}

.card12:hover{
 border: 2px solid #b9b7b7;
}

.card13:hover{
 border: 2px solid #b9b7b7;
}


.vdd {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  
}

 .dashboard_de_visualização,
.aplicacaoweb,.scripts_automacao{

 display: flex;
    align-items: center;
    padding: 4%;
    gap: 10px;

    img{
      background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 4px;
    }
    
  }

.sistema_e_analise {
    display: flex;
    align-items: center;
    gap: 15px;
  
    img{
    background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 5px;
    }
    

    
.database_button{
        border: 2px solid #dbd9d97a;
        width: 74px;
        border-radius: 16px;
        background-color: white;
        margin-top: 5px;
    }

}

  .postgre, .sql, .dbeaverbutton, .databutton{
      border: none;
      background-color: rgba(188, 206, 251, 0.244) ;
      margin-top: 10px;
      border-radius: 16px;
  
  }
  
  .sql{
      width: 60px;
    

    }
    .dbeaverbutton{
      width: 70px;
    }
    .dbeaverbutton:hover{
      background-color: #02122c;
      color: whitesmoke;
    }
    .postgre:hover{
      background-color: #02122c;
      color: whitesmoke;
    }
    .sql:hover{
      background-color: #02122c;
      color: whitesmoke;
    }
    .databutton:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

   .postgre{
    width: 90px;
   }
   .databutton{
    width: 99px;
   }
  
  .buttons{
    display: flex;
    gap: 20px;
    
  }


 .paragrafo{ 
  margin-top: 20px;
   line-height: 1.5; 
   color: #4b5563;
 }

.button_github, .button_ver_mais{
  display: flex;
    align-items: center;
    background-color: white;
    width: 120px;
     border: 1px solid black;
     border-radius: 7px;
     outline: none;
    justify-content: center;
     
    img{
      width: 30px;
     }
    
}

.button_github:hover{
  background-color: #02122c;
  color: whitesmoke;
  
}
.button_github:hover img{
   filter: brightness(0) invert(1);
}


.button_git_ver_mais{
  display: flex;
  gap: 10px;
  
}

.button_ver_mais:hover{
  background-color: #02122c;
  color: whitesmoke;
  
}
.button_ver_mais:hover img{
   filter: brightness(0) invert(1);
}


.dashboard_de_visualização22{
   display: flex;
    align-items: center;
    gap: 15px;
  
    img{
    background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 9px;
    }
    

    
.database_button{
        border: 2px solid #dbd9d97a;
        width: 74px;
        border-radius: 16px;
        background-color: white;
        margin-top: 5px;
    }

}

.python1{
  width: 70px;
}
.python1:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.PowerBI1{
  width: 70px;
}
.PowerBI1:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.data_visualization{
  width: 120px;
}
.data_visualization:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.Statistics1{
  width: 80px;
}
.Statistics1:hover{
      background-color: #02122c;
      color: whitesmoke;
    }


.python1, .PowerBI1, .data_visualization, .Statistics1{
      border: none;
      background-color: rgba(188, 206, 251, 0.244) ;
      margin-top: 10px;
      border-radius: 16px;
      margin-top: 33px;
  
  }


   
.button_git_ver_mais1{
  display: flex;
  gap: 20px;
  margin-top: -1px;
  
}

.button_github:hover{
  background-color: #02122c;
  color: whitesmoke;
  
}
.button_ver_mais:hover img{
   filter: brightness(0) invert(1);
} 



.analytics{
  border: 2px solid #dbd9d97a;
        width: 74px;
        border-radius: 16px;
        background-color: white;
        margin-top: 5px;
}


.aplicacaoweb{
   display: flex;
    align-items: center;
    gap: 15px;
  
    img{
    background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 5px;
    }
    
}



.html, .css, .java_script, .responsive{
      border: none;
      background-color: rgba(188, 206, 251, 0.244) ;
      margin-top: 10px;
      border-radius: 16px;
      margin-top: 33px;
  
  }



  
.html{
  width: 50px;
}
.html:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.css{
  width: 47px;
}
.css:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.java_script{
  width: 90px;
}
.java_script:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.responsive{
  width: 130px;
}
.responsive:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.web_development{
  border: 2px solid #dbd9d97a;
        width: 135px;
        border-radius: 16px;
        background-color: white;
        margin-top: 5px;
}
.aplicacaoweb{
  display: flex;
    align-items: center;
    gap: 15px;
    margin: -4%;
  
    img{
    background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 5px;
    }
    
  }

.Automation, .data_processing, .python2, .sql2{
      border: none;
      background-color: rgba(188, 206, 251, 0.244) ;
      margin-top: 10px;
      border-radius: 16px;
      margin-top: 33px;

  
  }
.buttons3{
  display: flex;
    gap: 20px;
    margin-top: -29px;
}


 
.python2{
  width: 60px;
}
.python2:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.sql2{
  width: 47px;
}
.sql2:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.Automation{
  width: 90px;
}
.Automation:hover{
      background-color: #02122c;
      color: whitesmoke;
    }

.data_processing{
  width: 115px;
  height: 16px;
}
.data_processing:hover{
      background-color: #02122c;
      color: whitesmoke;
    }


.scripts_automacao{
  display: flex;
    align-items: center;
    gap: 15px;
    margin: -4%;
}
    .scripts_automacao img{
    background-color: #dbd9d97a;
      border-radius: 6px;
      padding: 6px;
     
    }

.automation{
  border: 2px solid #dbd9d97a;
        width: 90px;
        border-radius: 16px;
        background-color: white;
        margin-top: 5px;
}







}


                                      /* QUINTA SESSÃO Vamos Conversar  */

.quinta_sessao{


h2{
  font-size: 50px;
    justify-content: center;
    display: flex;
    margin-top: 10%;
    
    
}

.paragrafo_contato{
    justify-content: center;
    display: flex;
    color: #4b5563;
    font-size: 18px;
   
    
    margin-top: 3%;
    
}
.card14,.card15, .card16{
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  align-items: center;     /* centraliza horizontal */
  justify-content: center; /* centraliza vertical (se tiver altura) */
  text-align: center;      /* centraliza textos */
  display: flex;
  flex-direction: column;
  margin-top: 6%;
  flex-wrap: wrap;
  
  
}

.card14:hover{
 border: 2px solid #b9b7b7;
}

.card15:hover{
 border: 2px solid #b9b7b7;
}

.card16:hover{
 border: 2px solid #b9b7b7;
}


.cards-container{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.Visitar_git{
  margin-top: 10px;
  border-radius: 5px;
  width: 100px;
  border: 1px solid black;
}
.Visitar_git:hover{
  background-color: #02122c;
      color: whitesmoke;
}
.conectar_linkedin{
  margin-top: 10px;
  border-radius: 5px;
  width: 147px;
  border: 1px solid black;
}
.conectar_linkedin:hover{
  background-color: #02122c;
      color: whitesmoke;
}
.enviar_email{
  margin-top: 10px;
  border-radius: 5px;
  width: 100px;
  border: 1px solid black;
}
.enviar_email:hover{
  background-color: #02122c;
      color: whitesmoke;
}

.paragrafo_linkedin{
  margin-top: 5px;
}

.email_entre{
  margin-top: 6px;
}


}
.quinta_sessao p{
    color: #4b5563;
   }

.card-highlight2 {
    
    padding: 15px;
    background-color: #f9fafb;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
    border-bottom: 2px solid #d4d1d1;
    box-shadow:0 9px 10px rgba(203, 201, 201, 0.249);
    margin: 30px auto;
    width: 78%;
    
    
  }
.info_insta{
  display: flex;
  justify-content: center;
  
  img_insta a{
    display: flex;
  }
  .img_insta{
    margin: -5px 6px 0 6px;
   height: 25px;
   
    
  }
  a {
  text-decoration: none;
  gap: 80px;
  
}
  a:hover {
   opacity: 0.7;
  
}
.info_insta p{
  gap: 10px;
}
}

.rodape{
    text-align: center;
  padding: 20px;
}

  
  .header_name{
    text-decoration: none;
    color: black;
  }


  
/* ==========================================================
   MENU HAMBÚRGUER
========================================================== */

.menu-toggle{
    display: none;
    background: transparent;
    border: none;
    font-size: 34px;
    cursor: pointer;
    z-index: 1001;
}

.overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
}

.overlay.active{
    opacity: 1;
    visibility: visible;
}


              /*   REPOSIVIDADE DO SITE PARA APARELHOS MOVEIS  */




/* ================= RESPONSIVIDADE MOBILE ================= */

@media screen and (max-width: 700px){

  .DivCards button,
.buton_card5 button,
.buton_card7 button,
.buton_card8 button,
.buttons button{
    font-weight:700;
    color:black;
}
  button {
    font-weight: 700;
    color: black;}

button :hover{
  color: whitesmoke !important;

}
  .header_name{
    display: flex;
    width: 140px;
  }

  

  /* ================= CARDS SOBRE MIM ================= */

  .card1,
  .card2,
  .card3,
  .card4{
    flex: 1 1 100%;
  }

  .DivCards2{
    width: 100%;
    padding: 0 10px;
  }

  .card1 .card1_img,
  .card2 .card2_img,
  .card4 .card4_img,
  .img_h3_desenvolvimento{
    display: flex !important;
    align-items: center;
    gap: 15px !important;
    width: 100%;
  }
  

  .card1 h3,
  .card2 h3,
  .card3 h3,
  .card4 h3{
    width: auto !important;
    font-size: 22px;
  }

  .card1 p,
  .card2 p,
  .card3 p,
  .card4 p{
    width: 100%;
    word-break: break-word;
    line-height: 1.4;
  }

  /* ================= TERCEIRA SESSÃO ================= */

  .terceira_sessao h2{
    font-size: clamp(18px, 8vw, 50px);
    word-break: break-word;
    text-align: center;
  }

  .border_card5,
  .border_card6,
  .border_card7,
  .border_card8{
    max-width: 100%;
    height: auto !important;
    padding-bottom: 15px;
  }

  .border_card5,
  .border_card7{
    min-height: 128px;
  }

  .desenvolvimento_web{
    gap: 8px !important;
    display: flex;
    align-items: center;
    
  }

  .desenvolvimento_web h3{
    font-size: 20px;
    white-space: normal;
    line-height: 1.1;
    
  }

  .buton_card5,
  .buton_card7,
  .buton_card8{
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center;
    padding: 8px;
  }

  .buton_card5 button,
  .buton_card7 button,
  .buton_card8 button{
    width: auto !important;
    min-width: fit-content;
    padding: 4px 10px;
    font-size: 12px;
  }

  /* ================= CARD 9 ================= */

  .card9{
    width: 90% !important;
    padding: 20px;
  }

  .card9 h3{
    width: 100% !important;
    text-align: center;
  }

  .card9 p{
    text-align: left;
    line-height: 1.6;
  }

  /* ================= QUARTA SESSÃO ================= */

  .quarta_sessão h2{
    font-size: clamp(18px, 9vw, 30px);
    word-break: break-word;
    text-align: center;
    width: 100% !important;
  }

  .subtitulo{
    text-align: center;
    padding: 0 15px;
  }

  .card10,
  .card11,
  .card12,
  .card13{
    width: 85% !important;
    max-width: 350px !important;
    margin: 0 auto;
  }

  .buttons{
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }
  
  .buttons3{
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    
    
  
  }

.buttons1{
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
    
  }

.buttons1,
.python1,
.PowerBI1,
.data_visualization,
.Statistics1{

  color:black
}

  .buttons2{
  display: flex;
    gap: 4px;
    flex-wrap: wrap;
}



  .button_git_ver_mais,
  .button_git_ver_mais1{
    flex-wrap: wrap;
    justify-content: center;
  }

.vdd, .card10{
  width:auto !important;
  
}


.quinta_sessao h2{
    font-size: 2rem;
    text-align: center;
    line-height: 1.1;
    margin-top: 20%;
}

.paragrafo_contato{
    text-align: center;
    padding: 0 20px;
    font-size: 16px;
}

.cards-container{
    flex-direction: column;
    align-items: center;
}

.card14,
.card15,
.card16{
    width: 90%;
    max-width: 320px;
    margin-top: 20px;
}


.card9{
    width: 90% !important;
    margin: 20px auto;
    padding: 20px;
}

.card9 h3{
    font-size: 2.5rem;
    text-align: center;
    line-height: 1.1;
}

.card9 p{
    text-indent: 0;
    text-align: left;
}


.card-highlight2{
    width: 90%;
    padding: 20px;
    margin: 25px auto;
}


.info_insta{
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.info_insta a{
    gap: 5px;
}

.rodape{
      padding: 20px 10px;
    text-align: center;
}

  .rodape p{
    font-size: 14px;
    line-height: 1.5;
  }


.primeira_sessao{
    padding: 0 20px;
    text-align: center;
}

.primeira_sessao h1{
    font-size: 32px;
    margin-top: 0;
}

.item,
.item2,
.item3{
    justify-content: center;
    text-align: center;
    font-size: 16px;
}

.item img,
.item2 img,
.item3 img{
    width: 24px;
    height: 24px;
}


.DivCards{
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.DivCards button{
    width: 220px;
    height: 45px;
    margin: 0;
    justify-content: center;
}



.primeira_sessao::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
}

.primeira_sessao > *{
    position: relative;
    z-index: 2;
}


.item{
    margin-top: 10px;
}

.item2,
.item3{
    margin-top: 8px;
}

.card17 h2{
    font-size: 30px;
}

}


/* TABLET  */

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

  .cards-container{
      display:flex;
      justify-content:center;
      gap:15px;
      flex-wrap:wrap;
  }

  .card14,
  .card15,
  .card16{
      width:220px;
      min-height:180px;
  }

.paragrafo_contato{
    text-align: center;
    max-width: 700px;
    margin: 20px auto;
    padding: 0 20px;
    line-height: 1.5;
}

  .h .header_name{
    white-space: nowrap;
    font-size: 20px;
}

.menu-toggle{
    display: block;
    position: relative;
    background: transparent;
    border: none;
    font-size: 34px;
    cursor: pointer;
    transition: .3s;
    color: #000000;
}

.navegacao{
    position: fixed;
    top: 0;
    right: -280px;

    width: 260px;
    height: 100vh;

    background: rgba(20,20,20,.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    justify-content: center;
    align-items: center;

    transition: right .35s ease;

    box-shadow: -20px 0 50px rgba(0,0,0,.35);

    z-index:1000;
}

.navegacao ul{
    list-style: none;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    gap: 30px;

    width: 100%;
    padding: 0;
    margin: 0;
}

.navegacao li{
    opacity:0;
    transform:translateX(30px);
    transition:.35s;
}

.navegacao.active li{
    opacity:1;
    transform:translateX(0);
}

.navegacao a{
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: .5px;

    transition: .25s;
}

.navegacao a:hover{
    color:#6C63FF;
    transform: translateX(10px);
}

.navegacao.active{
    right: 0;
}

.menu-toggle.active{
    transform: rotate(90deg);
    color: white;
}
.vdd{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.card10,
.card11,
.card12,
.card13{
    width: 90%;
    max-width: 500px;
}

}




















