/*Reset*/
body {
  margin: 0;
  color: white;
  box-sizing: border-box;
  min-height: 100%;
}

* {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

::-webkit-scrollbar {
  display: none;
}

:root{
  --section-spacing: 70px;
}


/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{

  position:fixed;
  top:0;
  left:0;
  
  width:100%;
  
  z-index:1000;
  
  background: rgba(5,9,20,0.6);
  
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  border-bottom:1px solid rgba(255,255,255,0.08);
  
  }

  .nav-container{
  
  display:flex;
  justify-content:space-between;
  align-items:center;
  }
  
  
  /* ========================= */
  /* LOGO */
  /* ========================= */
  
  .logo{
  
  font-size:20px;
  font-weight:600;
  
  color:#8D91CF;
  
  letter-spacing:1px;
  
  cursor:pointer;
  
  }
  
  
  /* ========================= */
  /* MENU */
  /* ========================= */
  
  .nav-menu{
  
  display:flex;
  gap:30px;
  
  list-style:none;
  
  }
  
  
  /* links */
  
  .nav-menu a{
  
  text-decoration:none;
  
  color:#ffffff;
  
  font-size:14px;
  
  position:relative;
  
  transition:all 0.3s ease;
  
  }
  
  
  /* ========================= */
  /* HOVER EFEITO LINHA */
  /* ========================= */
  
  .nav-menu a::after{
  
  content:"";
  
  position:absolute;
  
  left:0;
  bottom:-5px;
  
  width:0%;
  height:2px;
  
  background:#8D91CF;
  
  transition:width 0.3s ease;
  
  }
  
  .nav-menu a:hover{
  
  color:#8D91CF;
  
  }
  
  .nav-menu a:hover::after{
  
  width:100%;
  
  }
  
  
  /* ========================= */
  /* ESTADO ATIVO */
  /* ========================= */
  
  .nav-menu a.active{
  
  color:#CB634F;
  
  }
  
  .nav-menu a.active::after{
  
  width:100%;
  
  }
  
  
  /* ========================= */
  /* ESPAÇO PARA O MENU FIXO */
  /* ========================= */
  
  body{
  
  padding-top:70px;
  
  }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.finisher-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.content {
  position: relative;
  text-align: center;
  padding-top: 200px;
}

.menu {
  list-style: none;
  display: flex;
  max-width: 1200px;
  flex-direction: row;
  justify-content: center;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 60px;
}

.menu li a {
  display: block;
  padding: 15px 0px;
  text-decoration: none;
  color: white;
  font-size: 22px;
  color: #ffffff;
}

.menu li a:hover {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px); 
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.direitos {
  font-size: 1rem;
  font-weight: 100;
}

.container-footer {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  justify-content: space-between;
  gap: 40px;
}

.footer-row {
  flex: 1;
}
.nome {
  font-size: 9rem;
  line-height: 1;
  color: #ffffff;
}

.inicio {
  font-size: 2rem;
  line-height: 1;
}

              /*Botões Inicio*/

.btn-inicio {
  display: inline-block;
  padding: 12px 22px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.1s ease;
}

.btn-inicio:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-inicio:active {
  transform: translateY(0);
}

.botoes-inicio {
  display: flex;
  gap: 1rem;
}

.inicio {
  margin: 0.4rem 1;
}

.nome {
  margin: 0.4rem 0;
}

.foto {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #000000;
  border-radius: 50%;
  width: 20rem;
  height: 20rem;
}

.nome {
  flex: 1;
}

.hero {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

h2 {
  color: #8d91cf;
}

              /*Certificações*/

.certificacoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding-top: 20px;
}

/* CARD BASE */
.certificacao {
  position: relative;
  padding: 25px;
  border-radius: 14px;
  background: #0b0c1a;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* BORDA ANIMADA (COBRA) */
.certificacao::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 14px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 300deg,
    #8D91CF 330deg,
    #8D91CF 350deg,
    transparent 700deg
  );
  animation: snakeBorder 5s linear infinite;
  z-index: 0;
}

/* FUNDO INTERNO DO CARD */
.certificacao::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 12px;
  background: #0b0c1a;
  z-index: 1;
}

/* CONTEÚDO DO CARD FICA ACIMA */
.certificacao * {
  position: relative;
  z-index: 2;
}

/* HOVER SUAVE */
.certificacao:hover {
  transform: translateY(-6px);
  box-shadow:
    0 10px 30px #4a4e81,
    0 0 20px #626694
}

/* ANIMAÇÃO DA COBRA */
@keyframes snakeBorder {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.instituicao {
  font-size: 0.9rem;
  opacity: 0.7;
}

              /*Certificações*/

/* HABILIDADES */

.habilidades h2 {
  justify-content: center;
}

.habilidades-grid {
  max-width: 1200pc;
  justify-content: center;
  display: flex;
  gap: 40px;
  overflow: hidden;
  margin-top: 40px;
}

/* ANIMAÇÃO DA LINHA */
@keyframes scrollSkills {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

/* HEXAGONO */
.skill-hex {
  width: 120px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: rgba(255, 255, 255, 0.04);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  animation: floatHex 6s ease-in-out infinite;
}

/* ANIMAÇÃO FLUTUANTE */
@keyframes floatHex {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* HOVER */
.skill-hex:hover {
  transform: scale(1.08);
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    0 0 15px rgba(129, 132, 226, 0.25);
}

/* ICONES */
.skill-hex i {
  font-size: 36px;
  margin-bottom: 8px;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

/* animação do ícone */
.skill-hex:hover i {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px currentColor);
}

/* TEXTO */
.skill-hex span {
  font-size: 14px;
  opacity: 0.85;
}


/* FOOTER */
footer {
  background: #050914;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 120px;
  padding: 60px 20px 20px;
  color: #8D91CF;
  font-size: 15px;
}

/* GRID PRINCIPAL */
.container-footer {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
}

/* TITULOS */
footer h2 {
  font-size: 18px;
  margin-bottom: 18px;
  color: #ffffff;
  font-weight: 600;
}

/* LISTAS */
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

footer li {
  margin-bottom: 10px;
  opacity: 0.85;
}

/* LINKS */
footer a {
  color: #8D91CF;
  text-decoration: none;
  transition: all 0.35s ease;
}

/* hover elegante */
footer a:hover {
  color: #ffffff;
  padding-left: 4px;
}

/* TEXTO DESCRITIVO */
footer p {
  margin-bottom: 10px;
  opacity: 0.8;
  line-height: 1.5;
}

/* DIREITOS AUTORAIS */
.direitos {
  text-align: center;
  margin-top: 60px;
  font-size: 14px;
  opacity: 0.6;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}


.chamada {
  padding-top: 3rem;
}

.cert-header{

  display:flex;
  align-items:center;
  gap:12px;
  padding:10px 14px;
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:8px;
  backdrop-filter: blur(8px);
  margin:12px 0;
  transition:all 0.3s ease;
  
  }
  
  
  /* hover leve e elegante */
  
  .certificacao:hover .cert-header{
  
  background: rgba(255,255,255,0.08);
  
  border-color: rgba(255, 255, 255, 0.4);
  
  }
  
  /* imagem */
  
  .cert-header img{

    width:32px;
    height:32px;
    
    object-fit:contain;
    
    background:#ffffff;     /* fundo claro */
    padding:4px;
    
    border-radius:6px;
    
    }
  

  /* nome da instituição */
  
  .instituicao{
  
  font-size:13px;
  
  opacity:0.8;
  
  margin:0;
  
  }

  
  
  /* BOTÃO */
  
  .btn-certificado{
  
  display:inline-block;
  
  margin-top:4px;
  
  padding:8px 16px;
  
  font-size:13px;
  
  border-radius:6px;
  
  text-decoration:none;
  
  color:#ffffff;
  
  background: rgba(255,255,255,0.08);
  
  border:1px solid rgba(255,255,255,0.15);
  
  backdrop-filter: blur(8px);
  
  transition:all 0.3s ease;
  
  }
  
  
  /* HOVER */
  
  .btn-certificado:hover{
  
  background:#ffffff;
  
  color:#000;
  
  transform:translateY(-2px);
  
  }

  h3 {
    margin-top: 0.2px;
  }

  /* ========================= */
/* PADRÃO GLOBAL DE SEÇÕES */
/* ========================= */
  
  
  /* títulos */
  
  section h2{
  
  font-size:32px;
  margin-bottom:40px;
  
  position:relative;
  
  }
  
  
  /* linha decorativa elegante */
  
  section h2::after{
  
  content:"";
  
  display:block;
  
  width:60px;
  height:3px;
  
  margin-top:10px;
  
  background:#ffffff;
  
  border-radius:2px;
  
  }


/* título */
#sobre h2{
  font-size: 2.5rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

/* linha decorativa elegante */
#sobre h2::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #ffffff, transparent);
  border-radius: 2px;
}

/* texto */
#sobre p{
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 20px;
  max-width: 800px;
}

/* destaque na primeira frase */
#sobre p:first-of-type{
  font-size: 1.15rem;
  color: #fff;
}

/* subtítulo */
.servicos-sub{
  color: #ffffff;
  max-width: 600px;
  margin-bottom: 50px;
}

/* grid */
.servicos-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 30px;
}

/* card */
.servico{
  padding: 30px;
  border-radius: 12px;

  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.3s ease;
}

/* hover mais sutil que certificações */
.servico:hover{
  transform: translateY(-5px);
  border-color: #8D91CF;
  background: rgba(255, 255, 255, 0.08);
}

/* título */
.servico h3{
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* texto */
.servico p{
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== CTA SERVIÇOS ===== */

.servicos-cta{
  margin-top: 80px;
  padding: 60px 30px;
  border-radius: 16px;

  position: relative;
  overflow: hidden;

  background: linear-gradient(135deg, rgba(240, 240, 240, 0.15), rgba(2,63,137,0.15));
  border: 1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(10px);
}

/* brilho suave animado */
.servicos-cta::before{
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;

  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  animation: glowMove 8s linear infinite;
}

@keyframes glowMove{
  0%{
    transform: rotate(0deg);
  }
  100%{
    transform: rotate(360deg);
  }
}

/* conteúdo acima do efeito */
.cta-content{
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* título */
.cta-content h3{
  font-size: 1.8rem;
  margin-bottom: 15px;
}

/* texto */
.cta-content p{
  color: #ccc;
  margin-bottom: 30px;
  line-height: 1.6;
}

/* botão */
.btn-cta{
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;

  font-weight: 600;
  text-decoration: none;

  color: #fff;
  background: linear-gradient(135deg, #8D91CF, #4c52a3);

  transition: all 0.3s ease;
}

/* hover do botão */
.btn-cta:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px #3f425e;
}

/* efeito leve ao passar mouse no container */
.servicos-cta:hover{
  transform: translateY(-4px);
  transition: 0.3s;
}

@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(79, 91, 203, 0.5); }
  70%{ box-shadow: 0 0 0 15px rgba(203,99,79,0); }
  100%{ box-shadow: 0 0 0 0 rgba(203,99,79,0); }
}

.btn-cta{
  animation: pulse 2.5s infinite;
}

/* ===== SEÇÃO ===== */

#habilidades{
  padding: 100px 20px;
}


/* ===== TITULO ===== */

#habilidades h2{
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.skills-desc{
  max-width: 600px;
  color: #ffffff;
  margin-bottom: 60px;
}

/* ===== GRUPOS ===== */

.skills-group{
  margin-bottom: 60px;
}

.skills-group h3{
  margin-bottom: 25px;
  color: #ffffff;
}

/* ===== HEXÁGONOS ===== */

.hex-container{
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.hex-item{
  width: 120px;
  height: 120px;

  clip-path: polygon(
    25% 5%, 75% 5%,
    100% 50%, 75% 95%,
    25% 95%, 0% 50%
  );

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: rgba(255,255,255,0.03);

  border: 2px solid #8D91CF;

  transition: all 0.3s ease;
  position: relative;
}

/* ícones */
.hex-item i{
  font-size: 28px;
  color: #8D91CF;
}

/* texto */
.hex-item span{
  font-size: 0.8rem;
  color: #ddd;
}

/* hover profissional */
.hex-item:hover{
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(112, 79, 203, 0.3);
  background: rgba(81, 79, 203, 0.08);
}

/* glow suave */
.hex-item::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s;
}

.hex-item:hover::before{
  opacity: 1;
  box-shadow: 0 0 20px rgba(81, 79, 203, 0.4);
}

/* ===== TEXTO EXTRA ===== */

.skills-highlight{
  max-width: 700px;
  margin-top: 40px;
  color: #ccc;
}

/* ===== RESPONSIVO ===== */

@media(max-width:768px){
  .hex-container{
    justify-content: center;
  }
}

/* ===== SEÇÃO ===== */

#contato{
  padding: 100px 20px;
}


/* título */

#contato h2{
  font-size: 2.5rem;
  margin-bottom: 20px;
}

/* descrição */

.contato-desc{
  color: #ffffff;
  margin-bottom: 50px;
  max-width: 500px;
}

/* layout */

.contato-wrapper{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* ===== FORM ===== */

.form-contato{
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px;
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  align-items: stretch;
}

/* inputs */

.input-group{
  position: relative;
  width: 100%;
}

.input-group input,
.input-group textarea{
  width: 100%;
  display: block;
  padding: 14px;
  box-sizing: border-box;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #fff;
  outline: none;
}

/* label animado */

.input-group label{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  transition: 0.3s;
}

/* textarea ajuste */

.input-group textarea + label{
  top: 20px;
}

/* efeito focus */

.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label{
  top: -8px;
  left: 10px;
  font-size: 0.75rem;
  color: #565BAA;
}

/* botão */

.btn-contato{
  padding: 14px;
  border: none;
  border-radius: 30px;

  background: linear-gradient(135deg, #565BAA, #5f5eaa);
  color: #fff;

  font-weight: 600;
  cursor: pointer;

  transition: 0.3s;
}

.btn-contato:hover{
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(87, 79, 203, 0.4);
}

/* ===== INFO ===== */

.contato-info{
  padding: 30px;
}

.contato-info h3{
  margin-bottom: 20px;
}

.contato-info ul{
  list-style: none;
  color: #ccc;
}

.contato-info li{
  margin-bottom: 15px;
}

.contato-info a{
  color: #ffffff;
  text-decoration: none;
}

/* ===== RESPONSIVO ===== */

@media(max-width:768px){

  .contato-wrapper{
    grid-template-columns: 1fr;
  }

}

.servicos {
  padding-bottom: 70px;
}


/* ===================== ROOT (PADRÕES) ===================== */
:root {
  --font-title: 'Poppins', sans-serif;
  --font-text: 'Roboto', sans-serif;

  --color-text: #ffffff;
  --color-muted: #ffffff;
  --color-primary: #8D91CF;
  --color-white: #ffffff;

  --line-height: 1.6;
}

/* ===================== BODY ===================== */
body {
  font-family: var(--font-text);
  font-size: 16px;
  color: var(--color-text);
}

/* ===================== TÍTULOS ===================== */
h1, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
}

/* H1 */
h1 {
  font-size: 3rem;
  letter-spacing: -1px;
}

/* H2 */
h2 {
  color: #8D91CF;
  font-weight: 600;
  line-height: 1.2;
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* H3 */
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

/* ===================== TEXTO ===================== */
p {
  font-size: 1rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

/* Texto menor */
small {
  font-size: 0.85rem;
  color: var(--color-muted);
}

/* ===================== LISTAS ===================== */
ul {
  margin-top: 15px;
  padding-left: 20px;
}

li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* ===================== LINKS ===================== */
a {
  text-decoration: none;
  color: inherit;
}


/* ===================== SECTIONS ===================== */
section {
  padding: 50px 0;
}

/* ===================== SKILLS ===================== */
.skills-desc {
  max-width: 600px;
  margin-bottom: 30px;
}

/* ===================== PROJETOS ===================== */
.projeto-card p {
  font-size: 0.95rem;
}

/* ===================== RESPONSIVO ===================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}