body {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  transition: background-color 1.0s ease, color 0.4s ease;
}

#github {
  padding: 60px 10%;
  text-align: center;
}

.github-chart {
  width: 100%;
  max-width: 900px;
  margin-top: 30px;
  border-radius: 10px;
}

.github-chart {
  box-shadow: 0 0 20px rgba(179, 0, 255, 0.3);
}

/* SECTION */
#about-section {
  color: #fff;
  padding: 80px 10%;
}

/* LAYOUT */
.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXTO */
.about-label {
  color: #7c3aed;
  letter-spacing: 3px;
  font-size: 13px;
}

.about-title {
  font-size: 42px;
  margin: 10px 0 20px;
}

.about-text {
  color: #aaa;
  line-height: 1.7;
  max-width: 520px;
}

/* TAGS */
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  list-style: none;
  padding: 0;
}

.about-tags li {
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(93, 0, 255, 0.4);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 15px;
  transition: 0.3s;
}

.about-tags li:hover {
  background:rgb(136, 93, 245);
}

/* CARDS */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: 0.3s;
}

/* NÚMERO */
.stat-card strong {
  display: block;
  font-size: 34px;
  color: #ffffff;
}

/* TEXTO */
.stat-card span {
  color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
  font-size: 14px;
}

/* HOVER */
.stat-card:hover {
  transform: translateY(-5px);
  border-color: #7c3aed;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

/* FOCO (ACESSIBILIDADE) */
.stat-card:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 4px;
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  #about-section {
    padding: 50px 6%;
  }

  .about-title {
    font-size: 30px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}
.triangle-row2-center{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    height:200px;
}


.triRow,
.triRow2,
.triRow3{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* TRIANGULOS */

.triA,
.triB,
.triC,
.triD,
.triE,
.triF,
.triG,
.triH{

    width:0;
    height:0;

    border-left:25px solid transparent;
    border-right:25px solid transparent;
    border-bottom:50px solid  rgb(136, 93, 245);

    filter: drop-shadow(0 0 1.5px  rgb(136, 93, 245));

    animation: aparecer 2s infinite;
}

/* TRIANGULO VAZIO */

.triEmpty{
    
    width:0;
    height:0;

    border-left:25px solid transparent;
    border-right:25px solid transparent;
    border-bottom:50px solid transparent;

    filter: drop-shadow(0 0 1.5px  rgb(136, 93, 245));
}

/* POSIÇÃO PARA FORMAR O V */

.triA { transform:rotate(180deg) translateX(-50px); animation-delay:0s;}
.triB { transform:translateX(25px); animation-delay:0.3s;}
.triC { transform:rotate(180deg) translateX(-25px); animation-delay:0.6s;}
.triD { animation-delay:0.9s;}
.triE { transform:rotate(180deg) translateX(25px); animation-delay:1.2s;}
.triF { transform:translateX(-25px); animation-delay:1.5s;}
.triG { transform:rotate(180deg) translateX(50px); animation-delay:1.8s;}
.triH { transform:rotate(180deg); animation-delay:2.1s;}

/* ANIMAÇÃO */

@keyframes aparecer{
    0%{
        opacity:0;
        scale:0;
    }

    50%{
        opacity:1;
        scale:1;
    }

    100%{
        opacity:0;
        scale:0;
    }
}


.containerBOX,
.containerBOX2,
.containerBOX3{
    display:flex;
    justify-content:center;
    align-items:center;
}

.Box,
.Box2,
.Box3,
.Box4,
.Box5,
.Box6,
.Box7,
.Box8{

    width:0;
    height:0;

    border-left:25px solid transparent;
    border-right:25px solid transparent;
    border-bottom:50px solid rgb(136, 93, 245);

    filter: drop-shadow(0 0 1.5px rgb(136, 93, 245));

    animation: sumir 1s forwards;
}

.BoxVazio{
    
    width:0;
    height:0;

    border-left:25px solid transparent;
    border-right:25px solid transparent;
    border-bottom:50px solid transparent;

    filter: drop-shadow(0 0 1.5px rgb(6, 6, 6));
}

/* transforms */
.Box  { transform:rotate(180deg) translateX(-50px); animation-delay:1.9s; }

.Box2 { transform:translateX(25px); animation-delay:1.68s; }

.Box3 { transform:rotate(180deg) translateX(-25px); animation-delay:1.48s; }

.Box4 { animation-delay:1.20s; }

.Box5 { transform:rotate(180deg) translateX(25px); animation-delay:0.8s; }

.Box6 { transform:translateX(-25px); animation-delay:1.32s; }

.Box7 { transform:rotate(180deg) translateX(50px); animation-delay:1.9s; }

.Box8 { transform:rotate(180deg); animation-delay:0.4s; }

.triangle-center{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

}

/* animação */

@keyframes sumir{
    0%{
        opacity:1;
        border-bottom-color:black;
        transform:scale(1);
    }



    50%{
         opacity:0.5;
     border-bottom-color:rgb(153, 0, 255);
    }

    80%{
        border-bottom-color:transparent; /* perde o preenchimento */
    }

    100%{
        opacity:0;
        transform:scale(0);
        border-bottom-color:transparent;
    }
}

#overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgb(0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(100%);
  opacity: 0;
  z-index: 9999;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

#overlay.active {
  transform: translateY(0);
  opacity: 1;
}
#overlay p{
      font-size: 2vw;
    margin-bottom: 20px;
   color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
}

#overlay img {
  width: 200px;
  height: 150px;
  animation: subir 0.6s forwards;
}

@keyframes subir {
  0% { transform: translateY(100px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.btn-formacao {
    display: inline-block;
    padding: 10px 20px;
    background: #8000ff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    transition: 0.2s;
}
.btn-formacao:hover {
    background: #5e00aa;
}
/* Cursos lado a lado */
.curso-categorias {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.curso-categorias > div {
  flex: 1;
  min-width: 200px;
}

.curso-item {
  background: #1e1e1e;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
}

/* Botões internos de cursos */
.curso-buttons {
  margin-bottom: 15px;
}
.curso-buttons button {
  padding: 6px 12px;
  margin-right: 8px;
  border: none;
  cursor: pointer;
  background: #2a2a2a;
  color: #fff;
  border-radius: 4px;
  transition: 0.2s ease-in;
}
.curso-buttons button:hover {
  background: #444;
}
.curso-buttons .active {
  background: #8800ff;
}
.btn-voltar {
    display: inline-block;
    padding: 10px 20px;
    background: #5d00ff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.2s;
    font-weight: bold;
}
.btn-voltar:hover {
    background: #4a00aa;
}

  #loading {
    position: fixed;
    inset: 0;
    background: #000000;
     color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
  font-style: normal;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease;
    z-index: 9999;
    
  }

  #loading.hidden {
    opacity: 0;
    pointer-events: none;
  }

  #content {
     display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  }
  #content.show {
  opacity: 1;
   
}

p {
  margin-bottom: 0rem;
}

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

ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: auto;
  margin-top: 10px;
  grid-template-rows: repeat(3, auto);
}

li {
  list-style: none;
  text-decoration: none;
}

.box-head {
  border-bottom: rgb(136, 93, 245) solid 0.4vh;
  transition: background-color 1.0s ease, color 0.4s ease;
}
 .menu-links {
    margin-left: auto;
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-family: sans-serif;
  }
.menu-toggle {
  display: none;
  width: 35px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  margin: 15px;
  z-index: 1001;
}

.menu-toggle,
.menu-close {
  display: none;
}

.menu-toggle span {
  height: 4px;
  background: white;
  border-radius: 10px;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 20px;

  font-size: 2rem;
  color: white;
  cursor: pointer;
  list-style: none;
}

/* animação para X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.home {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  background-color: black;
  transition: background-color 1.0s ease, color 0.4s ease;
}

.ImagemPrincipal {
  margin-top: 2rem;
  width: 20vw;
  height: 20vw;
  border-radius: 50%;
  box-shadow: 10px 10px 22px rgb(136, 93, 245);
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.direcaotxthome {
  display: flex;
  
  flex-direction: column;
  margin-left: 2rem;
}

a {
  text-decoration: none;
  color: aliceblue;
  font-size: 1vw;
}

a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: rgb(136, 93, 245);
}

.modalStyle {
  text-decoration: none;
  color: rgb(0, 0, 0);
}

.modalStyle:hover,
.modalStyle:focus,
.modalStyle:active {
  text-decoration: none;
  color: rgb(136, 93, 245);
}

i {
  margin-right: 5px;
}

section {
  margin-top: 30px;
}

/* ===== Seção Projetos ===== */
.projetos {
  transition: background-color 1.0s ease, color 0.4s ease;

  color: #e6edf3;
  font-family: "Inter", sans-serif;
}

.status{
    display: flex;
 justify-content: space-evenly;
    flex-direction: row;
    align-items: center;
text-align: center;
}
.status p{
  margin-left: 10px;
}
.status_ativo{
    width: 10px;
    height: 10px;
background-color: rgb(0, 255, 30);
border-radius: 50%;

}
.status_concluido{
    width: 10px;
    height: 10px;
background-color: rgb(242, 255, 0);
border-radius: 50%;
}
.status_em_andamento{
    width: 10px;
    height: 10px;
background-color: rgb(191, 0, 255);
border-radius: 50%;
}



.projetos .container {
  max-width: 98%;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
  font-style: normal;
}

.section-header p {
  color: #918b9e;
  font-size: 1rem;
}

/* ===== Lista de Projetos ===== */
.lista-projetos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.projeto {
  background-color: #161b22;
  border: 1px solid #35303d;
  border-radius: 12px;
  padding: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.projeto:hover {
  transform: translateY(-4px);
  border-color: rgb(136, 93, 245);
}

.projeto-titulo {
  font-size: 2vw;
  color: rgb(136, 93, 245);
  margin-bottom: 10px;
  font-family: "Titan One", sans-serif;
  font-style: normal;
}

.projeto-descricao {
  color: #cec9d9;
  font-size: 1vw;
  line-height: 1.5;
}

.projeto-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.projeto-tecnologias {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0;
}

.tech {
  font-size: 0.8rem;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #0d1117;
  border: 1px solid #30363d;
  color: #938b9e;
}

.tech:hover,
.tech:focus,
.tech:active {
  background-color: rgb(136, 93, 245);
  border-color: rgb(255, 255, 255);
  color: rgb(255, 255, 255);
}
.buttonHead {
    background-color: rgb(0, 0, 0);
  margin-top: 1rem;
  color:rgb(136, 93, 245);
  border-radius: 5%;
   padding: 12px;
  
   
   border-color: #a984ff;
     transition: background-color 1.0s ease, color 0.4s ease;
}

.buttonHead:hover,
.buttonHead:focus,
.buttonHead:active {
    margin-top: 0.9rem;
    color: #ffffff;
  background-color: rgb(136, 93, 245);
    transition: background-color 1.0s ease, color 0.4s ease;
}

.btn {
  color: #ffffff;
  font-size: 1vw;
}

.btn:hover,
.btn:focus,
.btn:active {
  background-color: rgb(136, 93, 245);
}

/* ===== Seção Habilidades ===== */
.habilidades {

  color: #e6edf3;
  font-family: "Inter", sans-serif;
  transition: background-color 1.0s ease, color 0.4s ease;
}

.habilidades .container {
  max-width: 98%;
  margin: 0 auto;
}

.habilidades .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.habilidades .section-header h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
  font-style: normal;
}

.habilidades .section-header p {
  color: #8e8b9e;
  font-size: 1rem;
}

/* ===== Lista de Habilidades ===== */
.lista-habilidades {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.habilidade {
 
  border: 1px solid  rgb(136, 93, 245);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

article.habilidade {
  width: 700px !important;
}

.habilidade:hover {
  transform: translateY(-4px);
  border-color: rgb(136, 93, 245);
}

.habilidade-titulo {
  font-size: 1.25rem;
  color: rgb(136, 93, 245);
  margin-bottom: 10px;
  font-family: "Titan One", sans-serif;

  font-style: normal;
}

.habilidade-descricao {
  color: #c9d1d9;
  font-size: 0.95rem;
  line-height: 1.5;
}


.col {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.col:hover {
  transform: translateY(-20px);
  border-color: rgb(136, 93, 245);
}

.li-local-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.li-local-img p {
  margin-left: auto;
  color: rgb(136, 93, 245);
  font-size: 1.8vw;
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

.li-local-img img {
  width: 105px;
  height: 80px;
}

.header-mobile {
  display: none;
}

.modal-title {
  color: rgb(136, 93, 245);
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

.modal-body p {
  text-indent: 30px;
  font-style: normal;
  font-size: 1vw;
}

.cta-agendamento {
  padding: 80px 20px;
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.cta-container h2 {
  color: rgb(136, 93, 245);
  font-family: "Bungee", sans-serif;
  font-size: 3vw;
  margin-bottom: 20px;
}

.cta-container p {
  color: #ffffff;
  font-size: 2vw;
  max-width: 700px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

.cta-botao {
  display: inline-block;
  background-color: #ffffff;
  color: #000;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1vw;
}

.cta-botao:hover {
  background-color: #000;
  color: #ffffff;
}


.modal-links {
  display: none;
  /* escondido por padrão */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeIn 1.0s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content-links {
  background: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.modal-content-links p {
  color: rgb(0, 0, 0);
  font-size: 1rem;
  font-family: "Bungee", sans-serif;
  font-style: normal;
  padding: 10px;
}

.modal-content-links img {
  width: 200px !important;
  height: 150px !important;
  color: rgb(136, 93, 245);
  font-size: 20px;
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

.buttonlink {
  display: inline-block;
  background-color: #ffffff;
  color: #000;
  text-decoration: none;
  padding: 15px 35px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1vw;
}

.buttonlink:hover {
  background-color: #000;
  color: #ffffff;
}


.contact-section {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 60vh;
  padding: 0%;
}

/* Lado esquerdo */
.contact-left {
  flex: 1;
  background-color: #000000;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 0%;
}

.contact-left h1 {
  font-size: 2.0vw;
  margin-bottom: 2vw;
  color: rgb(136, 93, 245);
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

/* Container dos links */
.contact-links {
  display: flex;
  justify-content: center;
  /* centraliza na horizontal */
  align-items: center;
  /* alinha verticalmente */
  gap: 2vw;
  /* espaço entre cada item */
  margin-bottom: 3vw;
}

.link-text {
  color: #ffffff;
}

.link-text:hover {
  color: #6200ff;
}

/* Cada item (ícone + link) */
.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  /* espaço entre ícone e texto */
}


/* Links */
.contact-item a {
  text-decoration: none;
  font-size: 1.2vw;
  color: #ffffff;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #6200ff;
}

/* Logo centralizada */
.contact-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2vw;
}


/* Lado direito */
.contact-right {
  flex: 1;
  background-color: rgb(0, 0, 0);
  padding: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 15px;
}

.contact-right:hover {
  border: #a984ff 3px solid;
}

.contact-form {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
}

.contact-form h1 {
  color: rgb(136, 93, 245);
  font-family: "Bungee", sans-serif;
  font-style: normal;
  font-size: 2vw;
  margin-bottom: 1vw;
}

.contact-form label {
  margin-bottom: 0.5vw;
  font-size: 1.2vw;
  color: #ffffff;

}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1.5vw;
  padding: 10px;
  font-size: 1vw;
  border: 1px solid #cccccc;
  border-radius: 4px;
}

.send-btn {
  background-color: rgb(111, 65, 227);
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 1.2vw;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.send-btn:hover {
  background-color: rgb(255, 255, 255);
  color: #000;
}


/* Footer base */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 2.5rem 2rem;
  border-top: 2px solid rgb(111, 65, 227);
  font-family: inherit;
}

/* Layout container */
.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 2rem;
  /* espaço geral entre blocos */
  flex-wrap: wrap;
}

/* Logo à esquerda */
.footer-logo img {
  max-width: 140px;
  height: auto;
  border-radius: 50%;

}

/* Bloco central: mapa + contatos próximos */
.footer-center {
  display: flex;
  justify-content: space-evenly;
  gap: 5vw;
  /* controla a distância entre Mapa e Contatos */
}

/* Colunas */
.footer-map,
.footer-contacts,
.footer-info {
  min-width: 180px;
}

/* Títulos das colunas */
.footer-map h3,
.footer-contacts h3,
.footer-info h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
  text-align: center;
  color: rgb(136, 93, 245);
  font-family: "Bungee", sans-serif;
}

/* Listas */
.footer-map ul,
.footer-contacts ul {
  display: flex;
  flex-direction: column;
  text-align: center;

  list-style: none;
  padding: 10px;
  margin: 0;
}

.footer-map ul li,
.footer-contacts ul li {
  margin-bottom: 0.5rem;

}

/* Links */
.footer-map a,
.footer-contacts a,
.footer-bottom a {
  text-align: center;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

.footer-map a:hover,
.footer-contacts a:hover {
  color: rgb(111, 65, 227);
}

/* Ícones dos contatos */
.footer-contacts i {
  margin-right: 8px;
  color: rgb(111, 65, 227);
  width: 18px;
  text-align: center;
}

/* Informações extras */
.footer-info p {
  margin: 0 0 0.5rem 0;
}

/* Rodapé inferior */
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
  font-size: 0.95rem;
}

.footer-bottom a {
  color: rgb(111, 65, 227);
}

.footer-bottom a:hover {
  opacity: 0.8;
}

/* Voltar ao topo */
.back-to-top {
  display: inline-block;
  margin-top: 0.5rem;
}

.thank-yo {
  display: none;
  color: white;
  font-weight: bold;
  margin-top: 20px;
}

.txtname {
  color: rgb(136, 93, 245);
  font-size: 3vw;
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

.tecImg{
  width: 40px;
  height: 40px;
  color: #ffffff;
  transition: 0.35s ease-in;
}
.tecImg:hover{
 transform: translateY(10px);
  width: 40px;
  height: 40px;
}

.tectxt{
   font-size: 0.95rem;
  color: rgb(136, 93, 245);

  font-family: "Titan One", sans-serif;
  font-style: normal;
}

.directionModal{
display: flex; flex-direction: row; justify-content: center; align-items: center;
}

#tech-section {
  padding: 60px 10%;
}

/* HEADER */
.tech-header {
  margin-bottom: 40px;
}

.tech-title {
  font-size: 40px;
  font-weight: bold;
    color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
  font-style: normal;
}

/* CATEGORIA */
.tech-category {
  margin: 30px 0 15px;
  font-family: "Titan One", sans-serif;
  font-style: normal;
  letter-spacing: 2px;
  font-size: 14px;
}

/* GRID */
.tech-grid {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
}

/* CARD */
.tech-card {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  cursor: default;
}

/* HOVER */
.tech-card:hover {
  transform: translateY(-5px);
  border-color: #7c3aed;
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

/* FOCO (ACESSIBILIDADE) */
.tech-card:focus {
  outline: 2px solid #7c3aed;
  outline-offset: 4px;
}

/* ICON */
.tech-icon {
  width: 50px;
  margin-bottom: 10px;
}

/* TEXTOS */
.tech-name {
  margin: 10px 0 5px;

}

.tech-desc {
  font-size: 14px;
    color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
  font-style: normal;
}

/* 📱 MOBILE */
@media (max-width: 500px) {
  #tech-section {
    padding: 40px 5%;
  }

  .tech-title {
    font-size: 28px;
  }

  .tech-card {
    padding: 20px;
  }

  .tech-icon {
    width: 40px;
  }
}

/* ===== Mobile ===== */
/*Mobile e tablets ficam melhores assim*/
@media (max-width: 1000px) {
  

.Box,
.Box2,
.Box3,
.Box4,
.Box5,
.Box6,
.Box7,
.Box8{

    border-left:15px solid transparent;
    border-right:15px solid transparent;
    border-bottom:30px solid rgb(136, 93, 245);
}

.BoxVazio{
    border-left:15px solid transparent;
    border-right:15px solid transparent;
    border-bottom:30px solid transparent;
}

/* ajusta o posicionamento */
.Box  { transform:rotate(180deg) translateX(-30px); }

.Box2 { transform:translateX(15px); }

.Box3 { transform:rotate(180deg) translateX(-15px); }

.Box5 { transform:rotate(180deg) translateX(15px); }

.Box6 { transform:translateX(-15px); }

.Box7 { transform:rotate(180deg) translateX(30px); }

  
  .txtname {
  color: rgb(136, 93, 245);
  font-size: 1rem;
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

  #overlay p{
      font-size: 1.2rem;
    margin-bottom: 20px;
   color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
}

   .curso-categorias {
    flex-direction: column;
  }
  .curso-categorias > div {
    min-width: 100%;
  }
  .projeto-titulo {
  font-size: 1.2rem;
  color: rgb(136, 93, 245);
  margin-bottom: 10px;
  font-family: "Titan One", sans-serif;
  font-style: normal;
}

  .contact-form h1 {
  color: rgb(136, 93, 245);
  font-family: "Bungee", sans-serif;
  font-style: normal;
  font-size: 1.2rem;
  margin-bottom: 1vw;
}
  .directionModal{
display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.direcaotxthome {
  margin-top: 0px;
  display: flex;
  flex-direction: column;
margin-left: 0rem;
}

.direcaotxthome {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
}
  
   .buttonHead {
    width: 90%;
    background-color: rgb(0, 0, 0);
  color:rgb(136, 93, 245);
  border-radius: 25px;
   padding: 10px;   
   border-color: #a984ff;
     transition: background-color 1.0s ease, color 0.4s ease;
}

.buttonHead:hover,
.buttonHead:focus,
.buttonHead:active {
    margin-top: 0.9rem;
    color: #ffffff;
  background-color: rgb(136, 93, 245);
    transition: background-color 1.0s ease, color 0.4s ease;
}


  .modal-content-links p {
    font-size: 0.9rem;
  }
.modal-content-links img {
  width: 200px !important;
  height: 150px !important;
  color: rgb(136, 93, 245);
  font-size: 20px;
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

  .buttonlink {
    font-size: 0.8rem;
  }

  .cta-container h2 {
    font-size: 1.8rem;
  }

  .cta-container p {
    font-size: 0.9rem;
  }

  .cta-botao {
    font-size: 0.8rem;
  }

  .modal-body p {
    text-indent: 30px;
    font-style: normal;
    font-size: 15px;
  }

  .menu-links {
    margin-left: auto;
    color: rgb(255, 255, 255);
    font-size: 20px;
    font-family: "Bungee", sans-serif;
    font-style: normal;

  }

  .header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
  }

  .header-mobile i {
    width: 15px;
    height: 15px;
  }

  .mobile-logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-logo img {
    width: 40px;
    height: 40px;
  }


  .li-local-img p {
    margin-left: auto;
    color: rgb(136, 93, 245);
    font-size: 20px;
    font-family: "Bungee", sans-serif;
    font-style: normal;
  }

  .li-local-img img {
    width: 100px;
    height: 75px;
  }




  .projeto,
  article.projeto {
    width: 100%;
    height: auto;
    max-width: 98%;
  }

  .box-head {
    height: auto;
    margin-bottom: 0vh;
    border-bottom: #a984ff solid 0.4vh;
  }
  .formacoes-titulo{
      font-size: 1.2rem;
   color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
  }

  .ImagemPrincipal {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 10px 10px 22px rgb(136, 93, 245);
    
    margin-bottom: 5vh;
  }

  .habilidades {
    width: 100% !important;
    max-width: 100% !important;
  }

  .lista-habilidades {
    display: flex !important;
    flex-direction: column !important;
    align-items: center;
  }

  .habilidade,
  article.habilidade {
    width: 100%;
    height: auto;
    max-width: 98%;
  }

  ul {
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  a,
  i {
    font-size: 0.9rem;
  }

  h1,
  h2,
  p {
    font-size: 0.9rem;
    margin-left: 20px;
  }

  .home {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: auto;
    height: auto;
    background-color: black;
    flex-direction: column;
    margin-top: 3vh;
  }

  .tecnologias-local p {
    font-size: large;
    color: #a984ff;
  }

  .tecnologias-local img {
    width: 150px;
    height: 150px;
  }

  .col {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.6s ease;
  }

  .col.ativo {
    opacity: 1;
    transform: translateY(0);

  }

  .col:hover {
    transform: translateY(0px);
    border-color: rgb(136, 93, 245);
  }

  .menu-toggle {
    display: flex;
  }

  header ul {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    max-width: 1000px;

    background: rgba(20, 20, 20, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;

    transition: right 0.4s ease;
    z-index: 1000;
  }

  body.light .menu-links {
    color: #ffffff !important;
  }

  header ul.active {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  #menu.active .menu-close {
    display: block;
  }

  .contact-section {
    flex-direction: column;
  }

  .contact-left h1 {
    text-align: center;
    font-size: 2rem;
    text-align: center;
  }

  .contact-item a {
    font-size: 0.9rem !important;
    padding: 5px;
  }

  .contact-links {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .contact-logo img {
    max-width: 150px;
    margin: 20px auto;
  }

  .contact-form label {
    font-size: 0.9rem;
  }

  .link-text {
    display: none;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 1rem;
    padding: 10px;
  }

  .send-btn {
    font-size: 0.9rem;
    padding: 10px;
  }

  .footer-container {
    flex-direction: column-reverse;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-center {
    flex-direction: column;
    gap: 1rem;
    /* Mapa e Contatos ficam mais próximos no mobile */
  }

  .footer-logo img {
    max-width: 120px;
  }

  .footer-container {
    justify-content: flex-start;
  }

  body.light .contact-form label {
    margin-bottom: 0.5vw;
    font-size: clamp(1rem, 0.9rem, 1.3rem);
    color: #000000;

  }

  body.light .send-btn {
    font-size: clamp(1rem, 0.9rem, 1.3rem);
  }
 
.projeto-descricao {
  color: #cec9d9;
  font-size: 0.8rem;
  line-height: 1.5;
}.btn {
  color: #ffffff;
  font-size: clamp(1rem, 0.9rem, 1.3rem);
}


.triA,
.triB,
.triC,
.triD,
.triE,
.triF,
.triG,
.triH{

border-left:15px solid transparent;
border-right:15px solid transparent;
border-bottom:30px solid  rgb(136, 93, 245);

}

.triEmpty{
border-left:15px solid transparent;
border-right:15px solid transparent;
border-bottom:30px solid transparent;
}

.triA { transform:rotate(180deg) translateX(-30px);}
.triB { transform:translateX(15px);}
.triC { transform:rotate(180deg) translateX(-15px);}
.triE { transform:rotate(180deg) translateX(15px);}
.triF { transform:translateX(-15px);}
.triG { transform:rotate(180deg) translateX(30px);}

}



span {
  color: rgb(136, 93, 245);
}

/* ===== Cursor highlight ===== */
/*Esse deixa em volta do cursor com a cor que preferir, eu não utilizo mais, no celular fica ruim.*/
/*.cursor-light {
  position: fixed;
  width: 1000px;
  height: 1000px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(154, 100, 255, 0.184) 0%,
      rgba(152, 92, 255, 0) 40%,
      transparent 90%);
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/* ===== MODO CLARO ===== */


body.light {
  background-color: #ffffff;
  color: #000000;
  transition: background-color 1.0s ease, color 0.4s ease;
}


body.light .menu-toggle span {
  height: 4px;
  background: rgb(0, 0, 0);
  border-radius: 10px;
}

body.light .menu-close {
  position: absolute;
  top: 20px;
  right: 20px;

  font-size: 2rem;
  color: rgb(255, 255, 255);
  cursor: pointer;
  list-style: none;
}

body.light .about-tags li {
  color: rgb(6, 6, 6);
}


/* Lado esquerdo */
body.light .contact-left {
  flex: 1;
  background-color: #ffffff;
  padding: 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 0%;
}

body.light .contact-left h1 {
  font-size: 2.5vw;
  margin-bottom: 2vw;
  color: #ffffff;
  color: rgb(136, 93, 245);
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

body.light .link-text {
  color: #000000;
}

body.light .link-text:hover {
  color: #6200ff;
}



/* Links */
body.light .contact-item a {
  text-decoration: none;
  font-size: 1.2vw;
  color: #000000;
  transition: color 0.3s;
}

body.light .contact-item a:hover {
  color: #6200ff;
}


/* Lado direito */
body.light .contact-right {
  flex: 1;
  background-color: rgb(255, 255, 255);
  padding: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border: #a984ff 5px solid;
  border-radius: 15px;
}


body.light .contact-form h1 {
  color: rgb(136, 93, 245);
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

body.light .contact-form label {
  color: #000000;
}


body.light .send-btn {
  background-color: rgb(111, 65, 227);
  color: #fff;
}

body.light .send-btn:hover {
  background-color: rgb(11, 11, 11);
  color: #ffffff;
}


/* Footer base */
body.light .site-footer {
  background-color: #ffffff;
  color: #000000;
  padding: 2.5rem 2rem;
  border-top: 2px solid rgb(111, 65, 227);
  font-family: inherit;
}


body.light .thank-yo {
  display: none;
  color: rgb(0, 0, 0);
  font-weight: bold;
  margin-top: 20px;
}


/* Links */
body.light .footer-map a,
body.light .footer-contacts a,
body.light .footer-bottom a {
  text-align: center;
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

body.light .footer-map a:hover,
body.light .footer-contacts a:hover {
  color: rgb(111, 65, 227);
}
body.light .stat-card strong {
  display: block;
  font-size: 34px;
  color: #000000;
}

/* Ícones dos contatos */
body.light .footer-contacts i {
  margin-right: 8px;
  color: rgb(111, 65, 227);
  width: 18px;
  text-align: center;
}


/* Rodapé inferior */
body.light .footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #e5e5e5;
  padding-top: 1rem;
  font-size: 0.95rem;
}

body.light .footer-bottom a {
  color: rgb(111, 65, 227);
}


body.light .box-head {
  height: auto;
  border-bottom: #a984ff solid 0.4vh;
}

body.light a {
  color: #000000;
}

body.light a:hover,
body.light a:focus,
body.light a:active {
  color: rgb(136, 93, 245);
}

/* Seções modo claro */
body.light .projetos,
body.light .habilidades {
  background-color: #ffffff;
  color: #000000;
  transition: background-color 1.0s ease, color 0.4s ease;
}

body.light .home {
  background-color: #ffffff;
  color: #000000;
  transition: background-color 1.0s ease, color 0.4s ease;
}

/* Cards modo claro */
body.light .projeto,
body.light .habilidade,
body.light .col {
  background-color: #f5f5f5;
  border-color: hsl(266, 100%, 65%);
  transition: background-color 1.0s ease, color 0.4s ease;
}

/* Textos modo claro */
body.light .projeto-descricao,
body.light .habilidade-descricao,
body.light p {
  color: #333333 !important;
}

body.light .btn {
  color: #000000 !important;
}

/* Cursor light (some no modo claro) */
body.light .cursor-light {
  display: none;
}

/* Tech chips modo claro */
body.light .tech {
  font-size: 0.8rem;
  padding: 4px 6px;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #30363d;
  color: #918b9e;
  font-weight: 500;
}

body.light .tech:hover,
body.light .tech:focus,
body.light .tech:active {
  background-color: rgb(136, 93, 245);
  border-color: rgb(208, 150, 255);
  color: rgb(0, 0, 0);
}

body.light .cta-botao {
  background-color: #000000;
  color: #ffffff;
}

body.light .cta-botao:hover {
  background-color: #7300ff;
  color: #ffffff;
}

body.light .buttonHead {
    background-color: rgb(255, 255, 255);
  margin-top: 1rem;
  color:rgb(136, 93, 245);
  border-radius: 10%;
   padding: 12px;
   border-color: #a984ff;
     transition: background-color 1.0s ease, color 0.4s ease;
}
body.light #about-section {
  color:rgb(136, 93, 245);
  padding: 80px 10%;
}

body.light .buttonHead:hover,
body.light .buttonHead:focus,
body.light .buttonHead:active {
    margin-top: 0.9rem;
    color: #ffffff;
  background-color: rgb(136, 93, 245);
    transition: background-color 1.0s ease, color 0.4s ease;
}
body.light .animbg {
 border-radius: 50%;
  width: 75px;
  height: 75px;
  overflow: hidden;
  display: flex;
  background: url("../animacao/hishikawhite.gif") center / cover no-repeat;
  background-color: transparent; /* opcional */
     transition: background-color 1.0s ease, color 0.4s ease;
}


@media(min-width:3000px) {
  h1 {
    font-size: 2vw;
  }

  .projeto-img {
    width: 100%;
    max-width: 25vw;
    height: 100%;
    max-height: 10vh;
  }

  .btn {
    font-size: 1vw !important;
  }

  .btn p {
    font-size: 1vw !important;
  }

  .ImagemPrincipal {
    margin-top: 2vw;
    width: 14.5vw;
    height: 14.5vw;
    border-radius: 50%;
    box-shadow: 10px 10px 22px rgb(136, 93, 245);
  }

  a {
    font-size: 1vw;
  }

  .tech {
    font-size: 0.80vw;
  }

  .projeto-descricao {
    font-size: 1vw;
  }

  .habilidade-descricao {
    font-size: 1vw;
  }

  .projeto-titulo {
    font-size: 1.4vw;
  }

  .habilidade-titulo {
    font-size: 1.4vw;
  }

  .section-header h2 {
    font-size: 1.8vw !important;
  }

  .section-header p {
    font-size: 1vw !important;
  }

  .sobre {
    font-size: 1vw;
   
  }

  .li-local-img img {
    width: 150px;
    height: 150px;
  }

  .modal-dialog {
    max-width: 60vw;
    max-height: 60vw;
  }

  .modal-title {
    font-size: 2vw;
  }

  .cta-container h2 {
    font-size: 2vw;
  }

  .cta-container p {

    font-size: 1vw;
  }

  .modal-content-links p {
    color: rgb(0, 0, 0);
    font-size: 1vw;
    font-family: "Bungee", sans-serif;
    font-style: normal;
    padding: 1vw;
  }

  .modal-content-links img {
    width: 500px !important;
    height: 400px !important;
    border-radius: 50%;
    color: rgb(136, 93, 245);
    font-size: 2vw;
    font-family: "Bungee", sans-serif;
    font-style: normal;
  }

  .buttonlink {
    font-size: 2vw;
  }

  .footer-map h3,
  .footer-contacts h3,
  .footer-info h3 {
    font-size: 1vw;

  }

  .footer-logo img {
    max-width: 300px;
    height: auto;
    border-radius: 50%;

  }
 .menu-links {
    margin-left: auto;
    color: rgb(255, 255, 255);
    font-size: 1vw;
    font-family: sans-serif;
  }
/*
.animbg {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  overflow: hidden;
  display: flex;
  background: url("../animacao/hishika.gif") center / cover no-repeat;
  background-color: transparent;
}*/
body.light .animbg {
 border-radius: 50%;
  width: 200px;
  height: 200px;
  overflow: hidden;
  display: flex;
  background: url("../animacao/animacaowhite.gif") center / cover no-repeat;
  background-color: transparent; /* opcional */
     transition: background-color 1.0s ease, color 0.4s ease;
}

.tecImg{
  width: 80px;
  height: 80px;
  color: #ffffff;
  transition: 0.35s ease-in;
}
.tecImg:hover{
     width: 80px;
  height: 80px;
  transform: translateY(20px);
}

.tectxt{
   font-size: 1.5vw;
  margin-bottom: 10px;
  color: rgb(136, 93, 245);
  font-family: "Titan One", sans-serif;
  font-style: normal;
}



.txtname {
  color: rgb(136, 93, 245);
  font-size: 1.5vw;
  font-family: "Bungee", sans-serif;
  font-style: normal;
}

.Box,
.Box2,
.Box3,
.Box4,
.Box5,
.Box6,
.Box7,
.Box8{

    border-left:40px solid transparent;
    border-right:40px solid transparent;
    border-bottom:80px solid rgb(136, 93, 245);
}

.BoxVazio{
    border-left:40px solid transparent;
    border-right:40px solid transparent;
    border-bottom:80px solid transparent;
}

/* ajusta posição para manter o V */
.Box  { transform:rotate(180deg) translateX(-80px); }

.Box2 { transform:translateX(40px); }

.Box3 { transform:rotate(180deg) translateX(-40px); }

.Box5 { transform:rotate(180deg) translateX(40px); }

.Box6 { transform:translateX(-40px); }

.Box7 { transform:rotate(180deg) translateX(80px); }
.triA,
.triB,
.triC,
.triD,
.triE,
.triF,
.triG,
.triH{

border-left:40px solid transparent;
border-right:40px solid transparent;
border-bottom:80px solid  rgb(136, 93, 245);

}

.triEmpty{
border-left:40px solid transparent;
border-right:40px solid transparent;
border-bottom:80px solid transparent;
}

.triA { transform:rotate(180deg) translateX(-80px);}
.triB { transform:translateX(40px);}
.triC { transform:rotate(180deg) translateX(-40px);}
.triE { transform:rotate(180deg) translateX(40px);}
.triF { transform:translateX(-40px);}
.triG { transform:rotate(180deg) translateX(80px);}
}
