
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Russo+One&display=swap");


:root {
 
  --cor-fundo:  #000; /* preto profissional */

  --cor-texto: #f2f2f2; 
  --cor-texto-suave: #b3b3b3; 


  --cor-principal:#A66CFF; 
  --cor-principal-secundaria: #D9B8FF; 
  --cor-hover: #7F2BF3; 
 
  --fonte-menu: "Russo One", sans-serif;
  --fonte-base: "Rubik", sans-serif;
}
/* ========Fim das Variáveis de projeto ==================== */
html, body {
  overflow-x: hidden; 
}

.container-topo {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto; 
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;    
}

.topo {
  background-color: var(--cor-fundo);
  height: 80px;
  display: flex;
  box-shadow: 0 2px 5px #222;
  border-bottom: 1px solid #222;
  align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;  
  z-index: 1000; 
  padding: 0 40px; 
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.logo img {
  height: 150px;   
  width: auto;
}
.topo nav {
  margin-left: 20px; 
}
.topo nav ul {
  display: flex; 
  gap: 30px; 
  list-style: none; 
  margin: 0; 
  padding: 0;
}
.topo nav ul li a {
  text-decoration: none; 
  color: var(--cor-principal); 
  font-size: 1.2rem; 
  font-family: var(--fonte-menu); 
  font-style: normal; 
}
.topo nav .redes  {
  display: none;
}

.topo nav ul li a:hover {
  filter: brightness(0.7) drop-shadow(0 0 15px rgba(138, 43, 226, 0.6)); 
  transform: translateY(-2px);  
   transition: color 0.3s ease, transform 0.3s ease; 
}
.topo nav ul li a.ativo {
  color: var(--cor-hover);
}

.redes {
  display: flex;
  gap: 1em;
  margin-left: 10px;
  margin-top: -5px; 
}
.redes a {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  width: 28px; 
  height: 28px;   
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s ease;
}
.redes a img {
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
  
}
.redes a:hover {
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(138, 43, 226, 0.6));
  transform: scale(1.10);
}
/* fim do  header site  */
/* ========================= */
/* começo da seção sobre site */
/* ========================= */
.sobre {
  background-color: var(--cor-fundo); 
    padding-top: 100px;
}
.container-sobre {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto; 
    display: flex;
    justify-content: center;
    align-items: center;  
    padding: 50px 50px;    
}
.foto-sobre {
  width: 100%;
  max-width: 400px; 
  text-align: center; 
}
.foto-sobre img {
  width: 250px; 
  height: auto; 
  border-radius: 50%; 
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}
.foto-sobre h4{
  font-size: 1rem;  
  color: var(--cor-texto); 
  padding: 20px 0 5px;
  font-family: var(--fonte-base); 
  text-align: center; 
}
.foto-sobre p {
  font-size: 1rem; 
  color: var(--cor-principal); 
  padding: 10px 0;
  font-family: var(--fonte-base);
  text-align: center; 
}
.texto-sobre {
  width: 100%;
  max-width: 600px; 
  text-align: center; 
}
.texto-sobre h2 {
  font-size: 1.75rem;  
  text-align: left;
  margin-bottom: 20px; 
  color: var(--cor-principal); 
  font-family: var(--fonte-menu);
}
.texto-sobre p {
  font-size: 1rem; 
  line-height: 1.6; 
  color: var(--cor-texto); 
  margin-bottom: 10px; 
  font-family: var(--fonte-base);
  text-align: justify;
  text-indent:  2em; 
}
.btn-curriculo {
  margin: 20px;
  display: inline-block; 
  padding: 15px 15px; 
  background-color: var(--cor-principal);
  color: var(--cor-texto); 
  font-size: 1rem;
  font-family: var(--fonte-base);
  border-radius: 10px; 
  text-decoration: none; 
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;  
  transition: 0.3s ease;
  
}

.btn-curriculo:hover {    
   background-color: var(--cor-hover);
  
}

/* começo da seção soft-skill site  */
.habilidades-pessoais {
  background-color: var(--cor-fundo);
  padding: 50px 20px;
  text-align: center;
}
.habilidades-pessoais h2 {
  font-family: var(--fonte-menu);
  font-size: 1.8rem;
  margin-bottom: 40px;
  color: var(--cor-principal);
}
.blocos-habilidades {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.bloco-habilidade {
  background-color: #141417;
  color: var(--cor-texto);
  font-size: 1rem;
  padding: 20px 30px;
  border-radius: 12px;
  font-family: var(--fonte-base);
  font-weight: 500;
  transition: transform 0.3s, background-color 0.3s, color 0.3s;
}
/* fim  da seção soft skill site  */

/* começo da seção ferramentas e tecnologias site  */
.ferramentas {
  background-color: var(--cor-fundo);
  padding: 60px 20px;
  text-align: center;
}
.ferramentas h2 {
  font-family: var(--fonte-menu);
  font-size: 1.75rem; 
  margin-bottom: 40px;
  color: var(--cor-principal);
}
.carrossel-ferramentas {
  overflow: hidden;
  width: 100%;
}
.faixa-ferramentas {
  display: flex;
  gap: 30px;
  animation: scroll 20s linear infinite;
}
.cartao-ferramenta {
  min-width: 150px;
  padding: 20px;
  background-color: #141417;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cartao-ferramenta i {
  font-size: 3rem;
  margin-bottom: 10px;
  color: var(--cor-principal);
}
.cartao-ferramenta h4 {
  font-size: 1.2rem;
  color: var(--cor-texto);
  margin: 0;
}

/* animação do carrossel */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* fim  da seção ferramentas e tecnologias site  */

/* ------------- Serviços  -------------- */
.servicos {
     height: 600px;
     background-color: var(--cor-fundo);     
} 
.servicos .container  {
    display: flex;
    flex-direction: column;
    align-items: center;  
    max-width: 1500px;
    width: 100%;
    margin: 0 auto; 
   
}  
 .servicos .container h2{
 font-family: var(--fonte-menu);
 font-size: 1.75rem; 
  margin-bottom: 40px;
  color: var(--cor-principal);     
}

.container .servicos-grid {
    display: grid; 
    grid-template-columns: repeat(3, 1fr); 
    gap: 30px; 
    align-items: start; 
}
/* Card serviços */
.servicos-item {
    width: 350px; 
    height: 200px;    
}

.card{  
    width: 100%; 
    height: 100%;    
    border-radius: 0px;    
    display: flex; 
    flex-direction: column;
    border-radius: 1em;
    box-shadow: 0 2px 5px var(--cor-principal); 
    transition: transform 0.15s ease, box-shadow 0.2s ease;
}

h3 {
  text-align: center; 
    margin: 20px 0 0 0; 
    color: var(--cor-principal);  
    font-family: var(--fonte-menu);
    line-height: 1.2; 
    width: 90%; 
    word-wrap: break-word; 
    font-size: 1.35rem; 
    padding: 10px 20px;
}

.servicos .container .card p {
    text-align: justify; 
    padding: 10px 30px; 
    font-size: 1rem; 
    font-family: var(--fonte-base); 
    color: var(--cor-texto); 
    line-height: 1.5; 
    text-indent:  2em;    
}  

  /* -------------Fim Serviços  -------------- */
/* ============================================
   SEÇÃO CONTATO
============================================ */

.contato {
  background-color: var(--cor-fundo);
  
}
.containercontato {
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 20px;
  flex-wrap: wrap; 
}

/* ============================================
   COLUNA ESQUERDA – LOGO + REDES SOCIAIS
============================================ */

.contato-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px; 
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 0;
}
/* ÍCONES DAS REDES SOCIAIS */
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.socials a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px; 
  border-radius: 50%;
  overflow: hidden;
  transition: 0.3s ease;
}
.socials a img {
  width: 100%;
  height: 100%;
}
.socials a:hover {
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(138, 43, 226, 0.6));
  transform: scale(1.10);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.35);
}
/* ============================================
   COLUNA CENTRAL – TEXTO E LINKS 
============================================ */
.contato-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 100%;
  max-width: 400px;
  margin: 0;
  padding: 0;
}
.contato-center h4 {
  font-family: var(--fonte-menu);
   font-size: 1.5rem; 
  color: var(--cor-principal);
  margin-bottom: 10px;
}
.contato-center a {
  color: var(--cor-texto);
  font-family: var(--fonte-base);
  font-size: 1rem; 
  text-decoration: none;
  transition: 0.3s ease;
  margin-bottom: 10px;
}
.contato-center a:hover {
  color: var(--cor-hover);
  transform: scale(1.05);
}
/* ============================================
   COLUNA DIREITA – TEXTO E LINKS E-MAIL
============================================ */
.contato-right {
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.contato-right h4 {
  font-family: var(--fonte-menu);
  font-size: 1.5rem; 
  color: var(--cor-principal);
  margin-bottom: 20px;
}
.contato-right p {
  font-family: var(--fonte-base);
  font-size: 1rem;
  color: var(--cor-texto);
  margin-bottom: 15px;
}
.contato-right a {
  color: var(--cor-texto);
  font-family: var(--fonte-base);
  font-size: 1rem;
  text-decoration: none;
  transition: 0.3s ease;
}
.contato-right a:hover {
  color: var(--cor-hover);
  transform: scale(1.05);
}
/* =========================
   Rodapé Direitos Autorais
========================= */
.rodape {
  text-align: center;
  font-family: var(--fonte-base);
  padding: 15px 0;
  background-color: var(--cor-fundo);
  color: #fff;
  font-size: 0.875rem; 
  border-top: 1px solid #222;
}

/* ============================
  PAGINA- SEÇÃO PROJETOS
============================ */
.pg-projetos {
   background-color:var(--cor-fundo); 
    padding-top: 100px; 
}
.pg-projetos .container-projetos {
   max-width: 1500px;
    width: 100%;
    margin: 0 auto; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    align-items: center;  
    padding: 50px 50px;
}
.pg-projetos .container-projetos .projetos h2 {
  font-size: 2rem;  
  font-family: "Russo One", sans-serif; 
  color: var(--cor-principal);
}
.pg-projetos  ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3em;
  margin-top: 40px;
}
.pg-projetos ul li {
  width: 45%;
  min-width: 320px;
}
.pg-projetos ul > li > a {
  display: flex;
  text-decoration: none; 
  border-radius: 1em;
  box-shadow: 0 2px 5px var(--cor-principal);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.pg-projetos ul > li > a:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}
.pg-projetos figure {
  flex: 0 0 300px;
  aspect-ratio: 1/1;
  background: #f2f2f2;
  overflow: hidden;
}
.pg-projetos figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pg-projetos .lista-conteudo {
  display: flex;
  flex-direction: column;    
  justify-content: space-between;
  padding: 15px;
  text-align: left;
}
.pg-projetos ul h4 {
   font-family: "Russo One", sans-serif;
  font-size: 1.5rem; 
  color: var(--cor-principal);
  margin-bottom: 20px;
  line-height: 1.2;  
}
.pg-projetos ul p {
  font-size: 1rem; 
  line-height: 1.6; 
  color: var(--cor-texto); 
  margin-bottom: 25px; 
  font-family: "Rubik", sans-serif; 
  text-align: justify; 
  text-indent:  2em; 
}
.pg-projetos ul span {
  margin-top: 15px;
  padding: 0.5em 1em;
  text-align: center;
  background-color: var(--cor-principal);
  color: #fff;
  border-radius: 0.5em;
  font-family: "Rubik", sans-serif;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}
.pg-projetos ul span:hover {   
   background-color: var(--cor-hover);  
   transition: background-color 0.3s ease, transform 0.3s ease;
}
/* ============================
  PAGINA CONTATO
============================ */
/* =======SEÇÃO FORMULARIO===  */ 
.formContato{  
   height: 700px; 
   background-color:var(--cor-fundo);  
   padding-top: 150px;  
} 
.formContato .container{
   max-width: 1500px;
    width: 100%;
    margin: 0 auto; 
    flex-direction: column;
    text-align: center;    
    align-items: stretch;     
} 
.formContato h2{    
    margin-bottom: 25px;
    font-weight: 50;
     font-size: 2rem;  
    font-family: var(--fonte-menu); 
    color: var(--cor-principal);   
}
 .formContato h3{
    font-size: 1.375em;
    font-family: var(--fonte-base); 
    color: var(--cor-principal);
    margin-bottom:  20px;
    font-weight: 50;
}
 .formContato .container div:nth-child(2){
    background-color:  #141417;;
    padding:  30px 20px 10px; 
    border-radius: 20px;      
} 
.formContato .container form{
    display: flex;
    justify-content: center;
    align-items: baseline;    
 } 
.formContato .formEsquerda{
    display: flex;
    flex-direction: column;
    gap: 2em;
    flex: 1;   
} 
.formContato .formEsquerda input{
    height: 50px;
    padding-left: 1em;
    background-color:var(--cor-fundo); 
    color: #757575; ;
    border: 1.5px solid #1a1a1a;
    border-radius: 10px;
    font-size: 1.25em;
    outline: none;    
}
 
.formContato .formEsquerda select{
    height: 50px;
    padding-left: 1em;
    background-color:var(--cor-fundo);     
    border: 1.5px solid #1a1a1a;
    border-radius: 10px;
    font-size: 1.25em;
    outline: none;
    color: #757575;
}
.formContato .formEsquerda select option{
   font-size: 1em; 
}
.formContato .formEsquerda .botoes-mobile{
   display: none;
} 
.formContato .formDireita{
    display: flex;
    flex-direction: column;
    flex: 1;
}
 
.formContato .formDireita textarea{
    height: 300px;
    padding-left: 1em;
    padding-top: 1em;
    background-color:var(--cor-fundo); 
    color:  #757575;
    border: 1.5px solid #1a1a1a;
    border-radius: 8px;
    font-size: 1.25em;
    resize: none; 
    outline: none;
}
.formContato .formEsquerda input:focus,
.formContato .formEsquerda select:focus,
.formContato .formDireita textarea:focus {
  border: 2px solid var(--cor-hover); 
  box-shadow: 0 0 8px rgba(127, 43, 243, 0.5);  
  outline: none;
}

.formContato .formDireita .botoes{
    display: flex;
    gap: 1.5em;
}
 
.formContato .formDireita .botoes button{
    background-color: var(--cor-principal);
    color: var(--cor-texto);
    font-family: Arial, Helvetica, sans-serif;
    border: none;
    border-radius: 15px;
    width: 250px;
    height: 50px;
    cursor: pointer;
    font-size: 1em;
    transition: 0.2s ease;
}
 
.formContato .formDireita .botoes button:hover{
    background-color: var(--cor-hover);
   
}
/* ===  CONFIRMAÇÃO DE ENVIO DO EMAIL=== */
 .mensagem-envio {
  position: absolute;
  top: 450px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 500px; 
  padding: 15px 20px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.6; 
  font-weight: 50;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  animation: fadeIn 0.6s ease;
  z-index: 10;
  font-size: 15px;  
  margin-bottom: 20px;
}
.mensagem-envio.erro h4,
.mensagem-envio.sucesso h4{
padding: 5px; 
font-size: 18px;
font-family: var(--fonte-base);
}

.mensagem-envio.sucesso {
  background-color: var(--cor-fundo);
  color: var(--cor-principal);
  border: 2px solid var(--cor-hover);  
}

.mensagem-envio.erro {
  background-color: var(--cor-fundo);
  color: var(--cor-principal);
  border: 2px solid var(--cor-hover);
}

.fechar-msg {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #555;
  transition: transform 0.2s ease, color 0.3s;
}
.fechar-msg:hover {
  color: #000;
  transform: scale(1.2);
}
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* =-=-=-=-=-=-=-=-=-=- FIM CONTATO  =-=-=-=-=-=-=-=--=*/


.politica-container {
  text-align: center; 
  max-width: 1500%;
  height: auto;
  padding: 150px 0 50px;
  background-color: #141417;; 
 
}
/* Título principal */
.conteudo-politica h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--cor-principal);
  font-family: var(--fonte-menu);
  font-weight: 300;
}
/* Subtítulos */
.conteudo-politica h2 {
  font-size: 22px;
  margin-top: 30px;
  color: var(--cor-principal);
  font-family: var(--fonte-menu);
  font-weight: 300;
}

/* Parágrafos e listas */
.conteudo-politica p,
.conteudo-politica ul {
  font-size: 17px;
  line-height: 1.7;
  color: var(--cor-texto); 
  font-family: var(--fonte-base);
  margin-bottom: 20px;
  font-weight: 300;
}
/* Ajusta UL para continuar centralizada */
.conteudo-politica ul {
  padding-left: 0;              
  list-style-position: inside;   
  margin: 10px 0;
}
/* Links dentro da página */
.conteudo-politica a {
  color: var(--cor-principal);
  text-decoration: none;
  font-weight: 600;
}

.conteudo-politica a:hover {
  filter: brightness(1.2);
  color: var(--cor-hover);
}


/* ==========================================================
   RESPONSIVIDADE Até 4 telas - Notebook, Tablet, Celulares

Notebooks - 993 até 1200
Tablet - 768 até 992
Celulares - 0 - 768
========================================================== */

/* Notebooks - 993 - 1050 -  1200 */
@media (max-width: 1200px) {
  .container-topo {
    padding-inline: 0;
  }

  /* ############################# TOPO ############################ */
  .topo .container-topo {
    gap: 1em;
  }
  .topo h1 {
    width: 250px;
  }
  .topo nav ul {
    justify-content: space-evenly;
  }
  .topo nav ul li a {
    padding-inline: 0.8em;
  }  

  /* ############################# sobre############################ */
  .sobre {
    gap: 0.5em;
  }
  .sobre .foto-sobre {
   height: 450px;
  }
   .sobre .texto-sobre {  
    width: 400px;
    padding: 0 20px 0 0 ;
   
  }
  .cantainer-sobre .foto-sobre {
    font-size: 1.2em;
  }
 
  /* ############################# SERVIÇO ############################ */
  .servicos h2 {
    padding: 30px 0 0 0;
    
  }
  
  .servicos .container .servicos-grid {
     grid-template-columns: repeat(3, 1fr); 
    
  } .servicos-item {
    width: 300px; 
    height: 210px;    
}
h3 {  
    padding: 10px;
}

  /* ############################# CONTATO  ############################ */
  .containercontato { 
  gap: 10px; 
}
 .contato-left,
 .contato-center ,
 .contato-right{ 
  max-width: 300px; 
}
 .contato-center h4 ,
 .contato-right h4{ 
 font-size: 1.5rem; 
}
 .contato-center a ,
 .contato-right a{ 
 font-size: .95rem;
}
 .contato-right a{ 
 line-height: 1.5;
}
  /*############################## PROJETOS##################################*/
  
.pg-projetos .container-projetos ul li {
  width: 65%;
  min-width: 400px;
}
  /*############################## FORMULARIO DE CONTATO##################################*/
  
  .formContato h3 {
    width: 100%;
  }
 .formContato .formEsquerda input{
   width: 520px;  
    font-size: 1.5em;
}

.formContato .formEsquerda select{
     font-size: 1.5em;
}
.formContato .formEsquerda select option{
     font-size: 0.6em;
}
.formContato .formDireita textarea{
    height: 300px;     
    width: 550px;  
    font-size: 1.5em;
}
.formContato .formDireita .botoes button{   
    width: 180px;   
}
/* ===  PAGINA DE Política de Privacidade === */
.politica-container {  
  max-width: 1200%;
  height: auto;
}
.politica-container .conteudo-politica{  
  max-width: 1100px;
  height: auto;
}
/* Título principal */
.conteudo-politica h1 {
  font-size: 2rem; 
}
/* Subtítulos */
.conteudo-politica h2 {
  font-size: 1.5rem; 
  padding: 0 0 10px 0;
}
.conteudo-politica p,
.conteudo-politica li {
 font-weight: 400;
}
/* Links dentro da página */
.conteudo-politica a {
font-size: 1.4rem;
}


}

/* FIM do Notebooks - 993 até 1200 */

/* Tablet - 768 - 800 -  992 */
@media (max-width: 992px) {
  .topo {
    padding: 0;
  } 
  .container-sobre{
    padding: 50px 0;
  }

.blocos-habilidades {  
    gap: 60px; 
}
.servicos .container {
    display: flex;
    flex-direction: column;
    align-items: center;   
    width: 80%;
    margin: 0 auto;
    padding: 30px 20px;
}
.containercontato {
    gap: 5px;
}
.pg-projetos .container-projetos {  
 padding: 30px 0;
 height: auto;
}
 /*############################## FORMULARIO DE CONTATO##################################*/  
 .formContato .formEsquerda input{
   width: 420px; 
   font-size: 1.2em; 
}
.formContato .formEsquerda select{
    font-size: 1.2em;
}
.formContato .formEsquerda select option{
    font-size: 0.6em;
}
.formContato .formDireita textarea{
    height: 300px;     
    width: 450px; 
    font-size: 1.2em; 
}
.formContato .formDireita .botoes button{   
    width: 180px;   
}  
} 

/* FIM do Tablet - 768 até 992 */

@media not all and (max-width:768px){
  .abrir-menu,
  .fechar-menu{
    display: none;
  }
}

/* Celulares - 0 - 400 - 768 */
@media (max-width: 768px) {
  .topo h1 {
    width: 350px;
  }
  .topo nav{
    background-color:rgba(217, 184, 255, 0.8);
    height: 100%;
    position: fixed;
    top: 0;
    max-width: 400px;
    width: 50%;
    z-index: 100;
    right: -400px;
    transition: right 1s ease-in-out;
  }
  .menu-ativo .topo nav{
    right: 0;
  }
   .menu-ativo .topo nav a{
    color: var(--cor-hover);
    font-weight: 300;    
  } 
  .menu-ativo .topo nav > .redes  li{    
    width: 28px;
    height: 28px; 
   }    
  .topo nav ul {
    flex-direction: column;   
    padding: 20px;   
  }
  .topo .container-topo > .redes {
    display: none;
  }
  .topo .container-topo nav .redes {
    display: flex; 
    flex-direction: row; 
    max-width: 30%;    
  }  
/* ########## sobre ############# */
    .sobre .container-sobre  {   
    padding: 10px;
    flex-direction: column;
    gap: 20px;
  }  
    .sobre .container-sobre .foto-sobre   {
    width: 200px;
    height: 300px;
  } 
   .sobre .container-sobre .foto-sobre h4  {
     line-height: 1.5; 
     margin-bottom: 5px;
  }  
   .sobre .container-sobre .foto-sobre img  {
    width: 200px;
    height: 200px;
    
  }  
    .sobre .container-sobre .texto-sobre  {
    width: 400px;
    padding: 50px 10px;
  }  
   .sobre .container-sobre .texto-sobre > h2 {
    font-size: 1.5rem;      
  }  
   .sobre .container-sobre .texto-sobre > p {
   font-size: .95rem; 
  }     

/* ########## MENU MOBILE ############# */
  .abrir-menu{
    background-image: url(../img/abrir-menu.png);
    background-size: cover;
    padding: 20px;
    border: 0;
    display: block;
    margin-right: 10px;
  }

  .fechar-menu{
    background-image: url(../img/fechar-menu.png);
    background-size: cover;
    padding: 20px;
    border: 0;
    display: block;
    margin-right: 10px;
  }
/* ############################# habilidades pessoal ############################ */

.habilidades-pessoais h2{
  font-size: 1.5rem;
  font-weight: 300;
}
.habilidades-pessoais .blocos-habilidades .bloco-habilidade{   
    font-size: 1em;
    padding: 20px 20px;      
    font-weight: 300;   
}    
/*############################## serviços##################################*/  
 .servicos {
        height: auto; 
        padding: 20px 20px;
    }

    .servicos .container h2 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

      .servicos .container .servicos-grid {
        grid-template-columns:repeat(1, 1fr); 
        gap: 20px;
        justify-items: center; 
    }

    .servicos-item {
        width: 100%;       
        max-width: 320px;  
        height: auto;      
    }

    .card {
        padding-bottom: 20px;
        height: 150px;       
    }

    h3 {
        font-size: 1.25rem;
        padding: 20px;
        margin-top: 0;
        font-weight: 300;
    }

    .servicos .container .card p {
        padding: 0px 10px;
        text-align: justify;
        text-indent: 1; 
        font-size: 0.95rem;       
        
    } 

/* ############################# CONTATO  ############################ */ 
.contato .containercontato{ 
   gap: 30px; 
   flex-direction: column;
   align-items: center;
}
 .contato .containercontato .contato-right{ 
  max-width: 200px; 
}
.socials {
  gap:5px

}
.socials a img {
    width: 80%;
    height: 80%;
}
.contato .containercontato .contato-right {
 max-width: 250px;
}
 .contato .containercontato .contato-left,
.contato .containercontato .contato-center{ 
  max-width: 150px;  
}
.contato .containercontato .contato-center h4 ,
 .contato .containercontato .contato-right h4{ 
 font-size: 1.1rem; 
}
 .contato .containercontato .contato-center a ,
.contato .containercontato .contato-right a{ 
 font-size: 0.9rem; 
 font-weight: 300;
 line-height: 1.5;
}
.rodape p {
  font-size: 0.7rem;
}

/*############################## PROJETOS##################################*/
.pg-projetos .container-projetos  {
 padding: 30px 0;
 height: auto;}

  
.pg-projetos .container-projetos ul li {
  width: 45%;
  min-width: 600px;
}
/*##############################  começo seção ferramentas e tecnologias ##################################*/
.ferramentas {
  padding: 60px 20px;
  height: auto;  
}
.ferramentas h2 { 
  font-size: 1.5rem; 
  margin-bottom: 30px;
}

  /*############################## FORMULARIO DE CONTATO##################################*/
  .formContato {
    padding-top: 100px;
     height: auto;
  }

  .formContato .container form {
    display: flex;
    flex-direction: column;
    max-width: 100%;
  }

  .formContato .formEsquerda,
  .formContato .formDireita {
    width: 100%;
    max-width: 100%;
  }

  .formContato .formEsquerda input,
  .formContato .formEsquerda select {
    width: 97%;
    font-size: 0.9rem;
  }

  .formContato .formDireita textarea {
    width: 92%;
    font-size: 0.9rem;
    min-height: 140px;
  }

  /* Esconde botões duplicados */
  .formContato .formEsquerda .botoes-mobile {
    display: none;
  }

  .formContato .formDireita .botoes {
    justify-content: center;
    gap: 15px;
  }

  .formContato .formDireita .botoes button {
    width: 120px;
    height: 40px;
    font-size: 0.85rem;
  }
  .formContato h2 {
    font-size: 1.5rem;
  }
  .formContato h3 {
    font-size: 0.85rem;
    line-height: 1.4;
    padding: 10px;
  }  
  .formContato .formEsquerda  .botoes-mobile {
    display: none !important;
  }    
.politica-container  {
  width: 100%;
  padding: 80px 0 0;
  align-items: center;
  text-align: center;
}
.politica-container .conteudo-politica {
  max-width: 730px;
 padding: 40px 20px 20px;
}
.politica-container .conteudo-politica h1 {
  font-size: 1rem;
}
.politica-container .conteudo-politica h2 {
  font-size: 0.9rem;
}
.politica-container .conteudo-politica p,
.politica-container .conteudo-politica li {
  font-size: 0.8rem;
}
.conteudo-politica a {
 font-size: 0.8rem;
}

} 
/* FIM do Celulares - 0 - 768 */

/* Celulares - 0 - 400  */
@media (max-width: 400px) {
  .topo h1 {
    width: 200px;
  }   
  .topo nav ul {  
    gap: 15px;   
}
.topo nav ul li a {
    text-decoration: none;    
    font-size: 1rem;    
}    
  .topo .container-topo > .redes {
    display: none;
  }
  .topo .container-topo nav .redes {
    display: flex; 
    flex-direction: column;     
  }  
  /* ############################# sobre############################ */  
  .sobre .container-sobre{
    flex-direction: column;
  }
  .sobre .container-sobre {    
    padding: 0;
    width: 350px;
    height: auto;  
}  
   .sobre .container-sobre .foto-sobre >h4{
     line-height: 1.5;  
     margin-bottom: 0 0 10px 0;  
  }
   .sobre .container-sobre .foto-sobre img{
   width: 200px;
   height: 200px;
  }
  .sobre .container-sobre .texto-sobre {  
    width: 340px; 
    padding: 20px 16px;     
  }
  .sobre .container-sobre .texto-sobre h2 {
  font-size: 1.2rem;
}
 .sobre .container-sobre .texto-sobre p {
  font-size: 0.8rem; 
}
.btn-curriculo {
  padding: 10px 10px; 
  font-size: 0.8em; 
  margin: 15px;
}
 /* ############################# habilidades pessoal ############################ */
.habilidades-pessoais {
 padding: 16px;
}
.habilidades-pessoais h2{
  font-size: 1.2rem;  
}
.habilidades-pessoais .blocos-habilidades .bloco-habilidade{   
    font-size: 0.85rem; 
    padding: 20px 20px;      
    font-weight: 300;   
}  
.blocos-habilidades {   
    padding: 0 16px;
    gap: 15px;
}
.ferramentas { 
  padding: 0;
}
.ferramentas h2{
  font-size: 1.2rem;
  padding: 20px 16px;
}
/* ############################# SERVIÇO ############################ */
 .servicos {
        height: auto; 
        padding: 0 16px;
    }
    .servicos .container h2 {
        font-size: 1.2rem;      
    }
     .servicos .container {       
       padding: 20px 20px;
    }
      .servicos .container .servicos-grid {
        grid-template-columns: 1fr; 
        gap: 20px;
        justify-items: center; 
    }
    .servicos-item {
        width: 100%;       
        max-width: 320px; 
        height: auto;      
    } 
    h3 {
        font-size: 1rem;
        padding: 10px;
        margin-top: 15px;
    }    .servicos .container .card p {
      
        text-align: left;
        text-indent: 0; 
        font-size: .95rem;
    } 
/* ############################# CONTATO  ############################ */ 
.containercontato {  
    padding: 10px 16px;

}
.contato .containercontato{ 
  width: 340px;
  height: auto; 
  flex-direction: column;
  align-items: center; 
}
.rodape p{       
    font-size: 0.65rem;  
} 
/*############################## PROJETOS##################################*/
  .pg-projetos {
    padding-top: 100px; 
  }
  .pg-projetos .container-projetos {
    padding: 20px 0 20px;
    max-width: 360px;    
  }
  .pg-projetos .container-projetos .projetos h2 {
    font-size: 1.4rem;
    font-family: var(--fonte-menu);
  }
  /* Cards em coluna */
  .pg-projetos ul {
    flex-direction: column;
    gap: 2em;
  }
  .pg-projetos ul li {
    width: 100%;
    max-width: 320px;  
    margin: 0 auto;    
  }
  /* Conteúdo do card em coluna */
  .pg-projetos ul > li > a {
    width: 100%;
    max-width: 320px;  
    margin: 0 auto;
    flex-direction: column;
  } 
  .pg-projetos figure {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4/3;
    margin: 0 auto;
  } 
  .pg-projetos .lista-conteudo {
    padding: 10px;
  }
  .pg-projetos figure img {
    width: 100%;
    height: 100%;
  } 
  .pg-projetos ul h4 {
    font-size: 1.2rem;
    text-align: center;
  }
  .pg-projetos ul p {
    font-size: 0.95rem;
    text-indent: 0; 
    text-align: left;
    padding: 0 10px;
    text-align: justify;
  }
  .pg-projetos ul span {
    align-self: center;
    font-size: 0.85rem;
  }
  /*############################## FORMULARIO DE CONTATO##################################*/
    .formContato {
    padding-top: 110px;
    height: auto;
  } 
     .formContato .container form {
      max-width: 350px;
  } 
  .formContato .container div:nth-child(2) {
    padding: 15px 5px;
    border-radius: 15px;
  } 
  .formContato .container form {
    flex-direction: column;
   
  }
  .formContato .formEsquerda,
  .formContato .formDireita {
    width: 100%;
    max-width: 340px;  
    gap: 1em;
  }
  .formContato .formEsquerda input,
  .formContato .formEsquerda select,
  .formContato .formEsquerda select option {  
    height: 35px;
    font-size: 0.8rem;
  }
  .formContato .formDireita textarea {
     width: 90%;        
    font-size: 0.95rem;
  } 
  .formContato .formEsquerda  .botoes-mobile {
    display: none !important;
  }

  .formContato .formDireita .botoes {
    justify-content: center;
  }
.formContato .formDireita .botoes button {
    display: flex !important;
   justify-content: center;     
    gap: 1em;
    margin-top: 10px;
     width: 110px;
    height: 40px;
    font-size: 0.85rem;
    border-radius: 10px;   
    align-items: center;
  }  
  .formContato h2 {
    font-size: 1.2rem;
    margin: 0;
  }
  .formContato h3 {
    font-family: var(--fonte-base);
    font-size: 0.8rem; 
    font-weight: 400;
  }  
.politica-container .conteudo-politica {
 padding: 40px 16px 10px;
}
.politica-container .conteudo-politica h1 {
  font-size: 1rem;
}
.politica-container .conteudo-politica h2 {
  font-size: 0.9rem;
}
.politica-container .conteudo-politica p,
.politica-container .conteudo-politica li {
  font-size: 0.8rem;
}
.conteudo-politica a {
 font-size: 0.8rem;
}
}   
   
   
/* FIM do Celulares - 0 - 400 */





