/* CONFIGURAÇÕES GERAIS */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
}

:root {
  --color-background: #030207;
  --color-white: #fff;
  --color-blue: #1474b4;
  --color-purple: #9443d8;
  --color-accent: #b388ff;
  --color-dark: #0a0a0a;
  --color-card-bg: rgba(20, 20, 20, 0.8);
  --color-glass: rgba(255, 255, 255, 0.1);
  --shadow-glow: 0 0 20px rgba(148, 67, 216, 0.3);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #9443d8 0%, #b388ff 50%, #e040fb 100%);
  --gradient-card: linear-gradient(145deg, rgba(30, 30, 40, 0.9) 0%, rgba(20, 20, 30, 0.95) 100%);
}

body {
  background: #000;
  font-family: 'Raleway', sans-serif;
  color: #fff;
  overflow-x: hidden;
  cursor: default;
}

/* Custom cursor for interactive elements */
a,
button,
.stack-tecnologias .item,
.project-link {
  cursor: pointer;
}

a:hover,
button:hover,
.stack-tecnologias .item:hover,
.project-link:hover {
  cursor: pointer;
}

/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #000 0%, #030207 50%, #000 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-container {
  text-align: center;
  animation: loadingPulse 2s ease-in-out infinite;
}

.loading-logo {
  margin-bottom: 2rem;
}

.logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(45deg, var(--color-purple), var(--color-accent), #fff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 2s ease-in-out infinite;
  margin-bottom: 1rem;
}

.loading-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: loadingDots 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0s;
}

.loading-progress {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-purple), var(--color-accent));
  border-radius: 2px;
  animation: loadingProgress 3s ease-in-out;
  box-shadow: 0 0 10px rgba(148, 67, 216, 0.5);
}

@keyframes loadingPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes loadingDots {

  0%,
  80%,
  100% {
    transform: scale(0);
    opacity: 0.5;
  }

  40% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes loadingProgress {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

/* Progress Bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-accent));
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(148, 67, 216, 0.5);
}

span {
  color: var(--color-purple);
}

.cabecalho {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 15px;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-glass);
  transition: all 0.3s ease;
}

.fade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      transparent 0%,
      transparent 30%,
      rgba(0, 0, 0, 0.01) 35%,
      rgba(0, 0, 0, 0.02) 40%,
      rgba(0, 0, 0, 0.04) 45%,
      rgba(0, 0, 0, 0.07) 50%,
      rgba(0, 0, 0, 0.12) 55%,
      rgba(0, 0, 0, 0.18) 60%,
      rgba(0, 0, 0, 0.26) 65%,
      rgba(0, 0, 0, 0.36) 70%,
      rgba(0, 0, 0, 0.48) 75%,
      rgba(0, 0, 0, 0.62) 80%,
      rgba(0, 0, 0, 0.76) 85%,
      rgba(0, 0, 0, 0.88) 90%,
      rgba(0, 0, 0, 0.96) 95%,
      rgba(0, 0, 0, 1) 100%);
  pointer-events: none;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.fade-overlay:hover {
  opacity: 0;
}




.cabecalho .menu ul {
  display: flex;
  list-style: none;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.cabecalho .menu li a {
  font-size: 18px;
  text-transform: uppercase;
  padding: 12px 24px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: block;
  background: transparent;
}

.cabecalho .menu li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.cabecalho .menu li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-purple), var(--color-accent));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.cabecalho .menu li:hover a::before {
  left: 100%;
}

.cabecalho .menu li:hover a::after {
  width: 80%;
}

.cabecalho .menu li:hover a {
  background: linear-gradient(45deg, var(--color-purple), var(--color-accent));
  color: #fff;
  border-radius: 25px;
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow), 0 8px 25px rgba(148, 67, 216, 0.4);
}

.cabecalho .menu li:hover a::after {
  width: 0;
}


h1,
h2 {
  text-transform: uppercase;
  font-style: italic;
}

h3 {
  font-size: small;
}

/* FIRST SECTION */

.first_section {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 7, 40, 0.6) 50%, rgba(0, 0, 0, 0.9) 100%);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.first_section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: linear-gradient(to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.03) 10%,
      rgba(0, 0, 0, 0.08) 20%,
      rgba(0, 0, 0, 0.15) 30%,
      rgba(0, 0, 0, 0.25) 40%,
      rgba(0, 0, 0, 0.38) 50%,
      rgba(0, 0, 0, 0.52) 60%,
      rgba(0, 0, 0, 0.68) 70%,
      rgba(0, 0, 0, 0.82) 80%,
      rgba(0, 0, 0, 0.93) 90%,
      rgba(0, 0, 0, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

.first__background {
  object-fit: cover;
  position: absolute;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: -999;
}

.first__foreground {
  color: var(--color-white);
  text-align: center;
  z-index: 10;
  animation: fadeInUp 1.5s ease-out;
  position: relative;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.first__title {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  overflow: visible;
  letter-spacing: 3px;
  text-align: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 10 !important;
  animation: titleGlow 3s ease-in-out infinite !important;
  transform: none !important;
}

.first__title span {
  display: inline-block !important;
  background: linear-gradient(135deg, #9443d8 0%, #b388ff 50%, #e040fb 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(148, 67, 216, 0.4));
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 11 !important;
  animation: gradientShift 4s ease-in-out infinite !important;
  transform: none !important;
  transition: all 0.3s ease;
}

.first__title span:hover {
  filter: drop-shadow(0 0 30px rgba(148, 67, 216, 0.7));
  transform: scale(1.02) !important;
}



@keyframes titleFloat {

  0%,
  100% {
    transform: translateY(0px) rotateX(0deg) scale(1);
  }

  25% {
    transform: translateY(-5px) rotateX(2deg) scale(1.02);
  }

  50% {
    transform: translateY(-8px) rotateX(3deg) scale(1.03);
  }

  75% {
    transform: translateY(-5px) rotateX(2deg) scale(1.02);
  }
}

@keyframes titleShine {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }

  50% {
    transform: translateX(0%);
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes titleGlow {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(148, 67, 216, 0.3), 0 0 40px rgba(179, 136, 255, 0.1);
  }

  50% {
    text-shadow: 0 0 30px rgba(148, 67, 216, 0.5), 0 0 60px rgba(179, 136, 255, 0.2);
  }
}

.first__text {
  margin-top: 1rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  font-size: 1.5rem;
  opacity: 0.9;
  animation: fadeInUp 1.5s ease-out 0.5s both, textPulse 4s ease-in-out infinite 2s;
  font-weight: 400;
  position: relative;
  display: inline-block;
}

.first__text::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-purple), var(--color-accent), var(--color-purple), transparent);
  animation: lineExpand 2s ease-out 1.5s forwards;
}

@keyframes lineExpand {
  0% {
    width: 0;
    opacity: 0;
  }

  100% {
    width: 80%;
    opacity: 1;
  }
}

@keyframes textPulse {

  0%,
  100% {
    opacity: 0.9;
    text-shadow: 0 0 0 transparent;
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 20px rgba(148, 67, 216, 0.3);
  }
}


.first_section .redes-sociais {
  margin-top: 3rem;
  justify-content: center;
  display: flex;
  gap: 25px;
  animation: fadeInUp 1.5s ease-out 1s both;
}

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

.first_section .redes-sociais a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.first_section .redes-sociais a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(148, 67, 216, 0.3), rgba(179, 136, 255, 0.2));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.first_section .redes-sociais a::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: rotate(45deg) translateY(-100%);
  transition: transform 0.6s ease;
  z-index: 1;
}

.first_section .redes-sociais a i {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 2;
  position: relative;
}

/* Hover para todos os ícones - roxo com glass */
.first_section .redes-sociais a:hover {
  border-color: rgba(148, 67, 216, 0.6);
  background: rgba(148, 67, 216, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 0 30px rgba(148, 67, 216, 0.4),
    0 0 60px rgba(148, 67, 216, 0.2),
    0 8px 32px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-8px) scale(1.1);
}

.first_section .redes-sociais a:hover::before {
  background: linear-gradient(135deg, rgba(148, 67, 216, 0.4), rgba(179, 136, 255, 0.3));
  opacity: 1;
}

.first_section .redes-sociais a:hover i {
  color: #fff;
  text-shadow: 0 0 20px rgba(179, 136, 255, 0.8);
  transform: scale(1.1);
}

/* Efeito de brilho no hover */
.first_section .redes-sociais a:hover::after {
  transform: rotate(45deg) translateY(100%);
}

/* Animação pulsante sutil nos ícones */
.first_section .redes-sociais a {
  animation: iconFloat 3s ease-in-out infinite;
}

.first_section .redes-sociais li:nth-child(1) a {
  animation-delay: 0s;
}

.first_section .redes-sociais li:nth-child(2) a {
  animation-delay: 0.2s;
}

.first_section .redes-sociais li:nth-child(3) a {
  animation-delay: 0.4s;
}

.first_section .redes-sociais li:nth-child(4) a {
  animation-delay: 0.6s;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.first_section .redes-sociais a:hover {
  animation: none;
}


.projetos {
  padding: 100px 0 10px;
  color: var(--color-white);
  margin-top: 10vh;
  text-align: center;
}

.projetos .titulo {
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
  padding: 60px 0;
  text-transform: uppercase;
}

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

.projetos .projeto {
  max-width: 260px;
  max-height: 500px;
  position: relative;
  display: none;
}

.projetos .projeto.ativo {
  display: block;
}

.projetos .projeto img {
  height: 100%;
}

.projetos .projeto h3 {
  background-color: #040203;
  width: 100%;
  padding-left: 20px;
  padding-bottom: 10px;
  padding-top: 10px;
  position: absolute;
  bottom: 0;
}

.projetos .projeto .informacoes-projeto {
  background-color: #040203;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  font-weight: 600;
  opacity: 0;
  transition: 0.3s;
  padding: 20px;
}

.projetos .container-projetos .projeto:hover .informacoes-projeto {
  opacity: 0.7;
  background-color: #000;
}

.projetos .btn-mostrar-projetos {
  background: none;
  border: 1px solid #fff;
  border-radius: 15px;
  color: #fff;
  width: 180px;
  padding: 20px;
  font-size: 18px;
  font-weight: 600;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.projetos .btn-mostrar-projetos:hover {
  background-color: #9443d8;
  transition: 0.3s;
}

.projetos .btn-mostrar-projetos.remover {
  display: none;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Correção específica para garantir visibilidade do título */
.first__title {
  animation: none !important;
}

@keyframes titleVisible {
  from {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  to {
    opacity: 1;
    visibility: visible;
    display: block;
  }
}

/* Correção de emergência para garantir que o título seja sempre visível */
.first__title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: static !important;
  z-index: 999 !important;
  animation: none !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

.first__title span {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: #9443d8 !important;
  position: static !important;
  z-index: 1000 !important;
  animation: none !important;
  transform: none !important;
  margin: 0 !important;
  padding: 0 !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes titleGlow {
  from {
    text-shadow: 0 0 30px rgba(148, 67, 216, 0.5);
  }

  to {
    text-shadow: 0 0 50px rgba(148, 67, 216, 0.8), 0 0 80px rgba(148, 67, 216, 0.3);
  }
}

@keyframes purpleBreathing {

  0%,
  100% {
    color: var(--color-purple);
    filter: brightness(1) saturate(1);
  }

  25% {
    color: #a855f7;
    filter: brightness(1.1) saturate(1.2);
  }

  50% {
    color: var(--color-accent);
    filter: brightness(1.2) saturate(1.4);
  }

  75% {
    color: #8b5cf6;
    filter: brightness(1.1) saturate(1.2);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Particles Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite ease-in-out;
  box-shadow:
    0 0 10px var(--color-accent),
    0 0 20px rgba(179, 136, 255, 0.5),
    0 0 30px rgba(148, 67, 216, 0.3);
  filter: blur(0.5px);
}

/* Variações de tamanho das partículas */
.particle:nth-child(odd) {
  width: 4px;
  height: 4px;
}

.particle:nth-child(3n) {
  width: 8px;
  height: 8px;
  background: radial-gradient(circle, var(--color-purple) 0%, transparent 70%);
}

.particle:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.particle:nth-child(2) {
  left: 15%;
  animation-delay: 0.5s;
  animation-duration: 8s;
}

.particle:nth-child(3) {
  left: 25%;
  animation-delay: 1s;
  animation-duration: 9s;
}

.particle:nth-child(4) {
  left: 35%;
  animation-delay: 1.5s;
  animation-duration: 11s;
}

.particle:nth-child(5) {
  left: 45%;
  animation-delay: 2s;
  animation-duration: 7s;
}

.particle:nth-child(6) {
  left: 55%;
  animation-delay: 2.5s;
  animation-duration: 10s;
}

.particle:nth-child(7) {
  left: 65%;
  animation-delay: 3s;
  animation-duration: 8s;
}

.particle:nth-child(8) {
  left: 75%;
  animation-delay: 3.5s;
  animation-duration: 9s;
}

.particle:nth-child(9) {
  left: 85%;
  animation-delay: 4s;
  animation-duration: 8s;
}

.particle:nth-child(10) {
  left: 95%;
  animation-delay: 4.5s;
  animation-duration: 10s;
}

.particle:nth-child(11) {
  left: 10%;
  animation-delay: 5s;
  animation-duration: 9s;
}

.particle:nth-child(12) {
  left: 30%;
  animation-delay: 5.5s;
  animation-duration: 11s;
}

.particle:nth-child(13) {
  left: 50%;
  animation-delay: 6s;
  animation-duration: 8s;
}

.particle:nth-child(14) {
  left: 70%;
  animation-delay: 6.5s;
  animation-duration: 10s;
}

.particle:nth-child(15) {
  left: 90%;
  animation-delay: 7s;
  animation-duration: 9s;
}

.particle:nth-child(16) {
  left: 20%;
  animation-delay: 7.5s;
  animation-duration: 11s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }

  5% {
    opacity: 0.8;
    transform: translateY(90vh) translateX(5px) scale(0.5);
  }

  25% {
    transform: translateY(70vh) translateX(-10px) scale(1);
    opacity: 1;
  }

  50% {
    transform: translateY(50vh) translateX(15px) scale(1.2);
    opacity: 0.8;
  }

  75% {
    transform: translateY(30vh) translateX(-5px) scale(1);
    opacity: 0.6;
  }

  95% {
    opacity: 0.3;
  }

  100% {
    transform: translateY(-10vh) translateX(10px) scale(0.5);
    opacity: 0;
  }
}


.footer {
  margin-top: 15vh;
  background: #000;
  padding: 25px;
  color: #bdbdbd;
}



/* --- SOBRE MIM --- */
.sobre-mim {
  background: transparent;
  border-radius: 0;
  border: none;
  margin: 0 auto 40px auto;
  padding: 80px 20px 40px 20px;
  max-width: 900px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInUp 1.2s ease;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

@keyframes fadeInSobre {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sobre-mim__foto {
  width: 220px;
  height: 220px;
  object-fit: cover;
  object-position: center top;
  border: 4px solid #9443d8;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(148, 67, 216, 0.6), 0 0 40px rgba(148, 67, 216, 0.4), 0 0 60px rgba(148, 67, 216, 0.2), inset 0 0 20px rgba(148, 67, 216, 0.1);
  margin-bottom: 20px;
  background: linear-gradient(145deg, #1a1a2e, #0d0d15);
  filter: brightness(1.05) contrast(1.1) saturate(1.1);
  transition: all 0.4s ease;
}

.sobre-mim__foto:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(148, 67, 216, 0.6), 0 6px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1) contrast(1.15) saturate(1.15);
}

.sobre-mim__texto {
  max-width: 700px;
  font-size: 1.1rem;
  color: #bdbdbd;
  font-family: 'Raleway', sans-serif;
  line-height: 1.8;
  text-align: left;
}

.sobre-mim__texto p {
  margin-bottom: 20px;
}

.sobre-mim__texto p:last-child {
  margin-bottom: 0;
}

.sobre-mim__texto strong {
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
}

.sobre-mim__texto br {
  margin-bottom: 8px;
}

.sobre-mim__texto span {
  color: #b388ff;
  font-weight: 600;
  background: linear-gradient(90deg, #b388ff 30%, #6c2bd7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sobre-mim__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 1px;
  position: relative;
  animation: titleSlideIn 1s ease-out;
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* --- COMPETÊNCIAS LISTA (texto organizado) --- */
.competencias-lista {
  margin-top: 25px;
  padding: 25px 30px;
  background: linear-gradient(145deg, rgba(30, 30, 40, 0.6), rgba(20, 20, 30, 0.4));
  border-left: 3px solid var(--color-purple);
  border-radius: 0 12px 12px 0;
}

.competencias-lista h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.competencias-lista h3 i {
  color: var(--color-purple);
}

.competencias-lista ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.competencias-lista li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  line-height: 1.7;
  color: #bdbdbd;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
}

.competencias-lista li:last-child {
  margin-bottom: 0;
}

.competencias-lista li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.9rem;
}

.competencias-lista li span {
  color: var(--color-accent);
  font-weight: 600;
}

/* --- STACK DE TECNOLOGIAS (exemplo de classe) --- */
.stack-tecnologias {
  background: none;
  border-radius: 0;
  margin: 48px auto 40px auto;
  padding: 0;
  max-width: 950px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.stack-tecnologias__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 28px;
  letter-spacing: 1px;
  text-align: center;
}

.stack-tecnologias .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.stack-tecnologias .item {
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 22px 20px 12px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease,
    background 0.4s ease,
    border-color 0.4s ease;
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-width: 110px;
  max-width: 140px;
  width: 120px;
  height: 120px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.stack-tecnologias .item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(148, 67, 216, 0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stack-tecnologias .item::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-accent), var(--color-purple));
  border-radius: 22px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.stack-tecnologias .item:hover {
  transform: translateY(-15px) scale(1.08);
  box-shadow: 0 0 30px rgba(148, 67, 216, 0.4),
    0 25px 50px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(148, 67, 216, 0.15), rgba(179, 136, 255, 0.08));
  border-color: var(--color-accent);
}

.stack-tecnologias .item:hover::before {
  opacity: 1;
}

.stack-tecnologias .item:hover::after {
  opacity: 0.6;
}

.stack-tecnologias__icon {
  font-size: 3.2rem;
  margin-bottom: 10px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1),
    filter 0.4s ease;
}

.stack-tecnologias .item:hover .stack-tecnologias__icon {
  transform: scale(1.15) translateY(-3px);
  filter: drop-shadow(0 5px 15px rgba(148, 67, 216, 0.5));
}

.stack-tecnologias__label {
  font-size: 1.08rem;
  font-weight: 700;
  color: #b388ff;
  letter-spacing: 0.5px;
  margin-top: 2px;
  text-align: center;
}

/* --- PROJETOS --- */
.container-projetos {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.projeto {
  background: #181818;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(26, 35, 126, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
  max-width: 320px;
  min-width: 260px;
}

.projeto.ativo:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 32px 0 rgba(26, 35, 126, 0.15);
}

.projeto img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #e0e7ef;
}

.projeto h3 {
  font-size: 1.2rem;
  color: #fff;
  margin: 12px 0 0 0;
  font-family: 'Poppins', sans-serif;
}

.informacoes-projeto {
  padding: 10px 18px 18px 18px;
  font-size: 0.98rem;
  color: #bdbdbd;
}

.btn-mostrar-projetos {
  background: linear-gradient(90deg, #1a237e 60%, #3949ab 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 32px;
  font-size: 1.1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-top: 24px;
  transition: background 0.2s, transform 0.2s;
}

.btn-mostrar-projetos:hover {
  background: linear-gradient(90deg, #3949ab 60%, #1a237e 100%);
  transform: scale(1.05);
}

/* --- FOOTER --- */
.footer {
  background: transparent;
  color: #888;
  text-align: center;
  padding: 20px 0;
  font-size: 0.85rem;
  margin-top: 40px;
  letter-spacing: 0.5px;
  font-weight: 400;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  animation: footerFadeIn 1s ease-out;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  animation: footerGlow 3s ease-in-out infinite;
}

@keyframes footerFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerGlow {
  0% {
    left: -100%;
  }

  50% {
    left: 100%;
  }

  100% {
    left: 100%;
  }
}

/* === SEÇÃO DE ESTATÍSTICAS === */
.stats-section {
  padding: 80px 0;
  background: #000;
  position: relative;
  overflow: hidden;
}

.stats-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1px;
  animation: titleSlideIn 1s ease-out;
}

.stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-item {
  text-align: center;
  padding: 40px 20px;
  background: var(--color-card-bg);
  border-radius: 20px;
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(148, 67, 216, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(148, 67, 216, 0.3);
  border: 1px solid var(--color-accent);
}

.stat-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  animation: iconPulse 3s ease-in-out infinite;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #fff, var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 1.1rem;
  color: #bdbdbd;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* === SEÇÃO DE CERTIFICAÇÕES === */
.certifications {
  padding: 100px 20px;
  background: linear-gradient(180deg, #000 0%, #050208 50%, #000 100%);
  position: relative;
}

.certifications::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-purple), transparent);
}

.certifications-header {
  text-align: center;
  margin-bottom: 60px;
}

.certifications-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: titleSlideIn 1s ease-out;
}

.certifications-title span {
  color: var(--color-purple);
}

.certifications-subtitle {
  font-size: 1.1rem;
  color: #888;
  max-width: 600px;
  margin: 0 auto;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.cert-card {
  background: linear-gradient(145deg, rgba(25, 25, 35, 0.95) 0%, rgba(15, 15, 25, 0.98) 100%);
  border-radius: 24px;
  padding: 30px;
  border: 1px solid rgba(148, 67, 216, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(148, 67, 216, 0.1), rgba(179, 136, 255, 0.05));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-card:hover::before {
  opacity: 1;
}

.cert-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(148, 67, 216, 0.3);
  border: 1px solid var(--color-accent);
}

.cert-icon {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  animation: iconPulse 3s ease-in-out infinite;
}

.cert-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.cert-card p {
  color: #bdbdbd;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Garantir distribuição uniforme do conteúdo */
.cert-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cert-meta {
  margin-top: auto;
}

.cert-date {
  display: inline-block;
  background: linear-gradient(45deg, var(--color-purple), var(--color-accent));
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.cert-status {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
  color: #bdbdbd;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-status.completed {
  background: linear-gradient(45deg, #2e7d32, #4caf50);
  color: #fff;
  border: 1px solid #4caf50;
}

.cert-status:not(.completed) {
  background: linear-gradient(45deg, #ff9800, #ffc107);
  color: #fff;
  border: 1px solid #ffc107;
}

.cert-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 15px;
}

.cert-skills .skill-tag {
  background: rgba(148, 67, 216, 0.2);
  color: var(--color-accent);
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 500;
  border: 1px solid rgba(148, 67, 216, 0.3);
  transition: all 0.3s ease;
}

.cert-skills .skill-tag:hover {
  background: rgba(148, 67, 216, 0.3);
  transform: translateY(-1px);
}

/* === ÍCONES PERSONALIZADOS === */
.cambridge-symbol {
  font-size: 2.5rem;
}

.unity-symbol {
  font-size: 2.5rem;
}

/* === SEÇÃO DE EXPERIÊNCIA === */
.experience {
  padding: 100px 20px;
  background: linear-gradient(180deg, #000 0%, #0a0510 50%, #000 100%);
  position: relative;
}

.experience::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-purple), transparent);
}

.experience-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: titleSlideIn 1s ease-out;
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg,
      var(--color-purple) 0%,
      var(--color-accent) 25%,
      #e040fb 50%,
      var(--color-accent) 75%,
      var(--color-purple) 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 30px rgba(148, 67, 216, 0.6);
}

.timeline-item {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  animation: fadeInUp 1s ease-out;
  opacity: 1;
  transform: translateY(0);
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.5s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.7s;
}

.timeline-item:nth-child(5) {
  animation-delay: 0.9s;
}


.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-date {
  flex: 0 0 180px;
  background: linear-gradient(135deg,
      rgba(148, 67, 216, 0.25) 0%,
      rgba(179, 136, 255, 0.15) 100%);
  border: 2px solid var(--color-purple);
  border-radius: 20px;
  padding: 18px 15px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(148, 67, 216, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-date:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(148, 67, 216, 0.5);
  border-color: var(--color-accent);
  background: linear-gradient(135deg,
      rgba(148, 67, 216, 0.4) 0%,
      rgba(179, 136, 255, 0.3) 100%);
}

.timeline-content {
  flex: 1;
  background: linear-gradient(145deg,
      rgba(25, 25, 35, 0.95) 0%,
      rgba(15, 15, 25, 0.98) 100%);
  border: 1px solid rgba(148, 67, 216, 0.3);
  border-radius: 24px;
  padding: 35px;
  margin: 0 35px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.timeline-content:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 0 40px rgba(148, 67, 216, 0.4),
    0 25px 50px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border-color: var(--color-purple);
}

.timeline-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(148, 67, 216, 0.1),
      transparent);
  transition: left 0.6s ease;
}

.timeline-content:hover::before {
  left: 100%;
}

.timeline-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.timeline-company {
  color: var(--color-accent);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
}

.timeline-duration {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.timeline-content ul {
  list-style: none;
  padding: 0;
}

.timeline-content li {
  color: #bdbdbd;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.timeline-content li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-size: 0.8rem;
}

/* === NOVOS ELEMENTOS DE EXPERIÊNCIA === */
.experience-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.company-logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-content:hover .company-logo {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.5);
}

.logo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
}

.logo-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 20px;
}

.logo-placeholder::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.25), transparent 50%);
  border-radius: 20px;
}

.logo-placeholder i {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.timeline-content:hover .logo-placeholder i {
  transform: scale(1.15);
}

.eboli-logo {
  background: linear-gradient(135deg, #1474b4, #0d5a8a, #00b4d8);
  background-size: 200% 200%;
  box-shadow: 0 10px 30px rgba(20, 116, 180, 0.4);
}

.eboli-logo i {
  font-size: 2rem;
}

.ifsp-logo {
  background: linear-gradient(135deg, #2e7d32, #1b5e20, #4caf50);
  background-size: 200% 200%;
  box-shadow: 0 10px 30px rgba(46, 125, 50, 0.4);
}

.ifsp-logo i {
  font-size: 2rem;
}

.automation-logo {
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffb347);
  background-size: 200% 200%;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.automation-logo i {
  font-size: 2rem;
  color: #fff;
  animation: rotate 4s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.fatec-logo {
  background: linear-gradient(135deg, #1e3a8a, #3b82f6, #60a5fa);
  background-size: 200% 200%;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.4);
}

.fatec-logo i {
  font-size: 2rem;
  color: #fff;
}

.experience-info {
  flex: 1;
}

.experience-description {
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.experience-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.experience-skills .skill-tag {
  background: rgba(148, 67, 216, 0.2);
  border: 1px solid rgba(148, 67, 216, 0.4);
  color: #b388ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.experience-skills .skill-tag:hover {
  background: rgba(148, 67, 216, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(148, 67, 216, 0.3);
}

.skill-tag {
  background: linear-gradient(45deg, var(--color-purple), var(--color-accent));
  color: #fff;
  padding: 6px 14px;
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.skill-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.skill-tag:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow:
    0 6px 20px rgba(148, 67, 216, 0.4),
    0 0 15px rgba(179, 136, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3);
}

.skill-tag:hover::before {
  left: 100%;
}

/* === SEÇÃO DE DESIGN/UI/UX === */
.design-skills {
  padding: 80px 0;
  background: transparent;
}

.design-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1px;
  animation: titleSlideIn 1s ease-out;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.design-item {
  background: var(--color-card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out;
  text-align: center;
}

.design-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(148, 67, 216, 0.3);
  border: 1px solid var(--color-accent);
}

.design-icon {
  font-size: 3rem;
  color: var(--color-accent);
  margin-bottom: 20px;
  animation: iconPulse 3s ease-in-out infinite;
}

.design-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.design-item p {
  color: #bdbdbd;
  line-height: 1.6;
}

/* === SEÇÃO DE BLOG === */
.blog-section {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 7, 40, 0.6) 100%);
}

.blog-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1px;
  animation: titleSlideIn 1s ease-out;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-card {
  background: var(--color-card-bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 1s ease-out;
}

.blog-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(148, 67, 216, 0.3);
  border: 1px solid var(--color-accent);
}

.blog-image {
  height: 200px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #fff;
}

.blog-content {
  padding: 30px;
}

.blog-content h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}

.blog-content p {
  color: #bdbdbd;
  margin-bottom: 20px;
  line-height: 1.6;
}

.blog-link {
  color: var(--color-accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blog-link:hover {
  color: #fff;
  transform: translateX(5px);
}


/* === SEÇÃO DE METAS/OBJETIVOS === */
.goals {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(20, 7, 40, 0.6) 100%);
}

.goals-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1px;
  animation: titleSlideIn 1s ease-out;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.goal-item {
  background: var(--color-card-bg);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: fadeInUp 1s ease-out;
}

.goal-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(148, 67, 216, 0.3);
  border: 1px solid var(--color-accent);
}

.goal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.goal-header h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}

.goal-percentage {
  background: linear-gradient(45deg, var(--color-purple), var(--color-accent));
  color: #fff;
  padding: 5px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.9rem;
}

.goal-progress {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.goal-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--color-purple), var(--color-accent));
  border-radius: 4px;
  transition: width 2s ease-in-out;
  box-shadow: 0 0 10px rgba(148, 67, 216, 0.5);
}

.goal-item p {
  color: #bdbdbd;
  line-height: 1.6;
}

/* === SEÇÃO DE CONTATO === */
.contact-section {
  padding: 80px 0;
  background: transparent;
}

.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  animation: titleSlideIn 1s ease-out;
}

.contact-subtitle {
  text-align: center;
  color: #bdbdbd;
  font-size: 1.1rem;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-card-bg);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease-out;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow), 0 15px 30px rgba(148, 67, 216, 0.2);
  border: 1px solid var(--color-accent);
}

.contact-link {
  color: #bdbdbd;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.contact-link:hover {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(179, 136, 255, 0.5);
}

.contact-icon {
  font-size: 2rem;
  color: var(--color-accent);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(148, 67, 216, 0.1);
  border-radius: 50%;
}

.contact-details h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
}

.contact-details p {
  color: #bdbdbd;
  margin: 0;
}

.contact-form {
  background: var(--color-card-bg);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

.form-group {
  position: relative;
  margin-bottom: 30px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-glass);
  border-radius: 10px;
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid var(--color-accent);
  box-shadow: 0 0 20px rgba(148, 67, 216, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group label {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--color-card-bg);
  padding: 0 10px;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-group textarea {
  height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(45deg, var(--color-purple), var(--color-accent));
  border: none;
  border-radius: 10px;
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn span,
.submit-btn i {
  color: #fff !important;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow), 0 10px 30px rgba(148, 67, 216, 0.4);
  color: #fff !important;
}

/* === THEME TOGGLE === */
.theme-toggle {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--color-card-bg);
  color: var(--color-accent);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.theme-toggle:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-glow), 0 10px 30px rgba(148, 67, 216, 0.4);
  border: 1px solid var(--color-accent);
}

/* === CUSTOM CURSOR === */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}


/* === RESPONSIVIDADE PARA EXPERIÊNCIA === */
@media (max-width: 768px) {
  .experience-header {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .company-logo {
    align-self: center;
  }

  .experience-skills {
    justify-content: center;
  }

  .timeline-item {
    flex-direction: column !important;
  }

  .timeline-date {
    flex: none;
    margin-bottom: 20px;
  }

  .timeline-content {
    margin: 0;
  }
}

.footer p {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* --- GERAL E RESPONSIVO --- */
@media (max-width: 900px) {
  .sobre-mim {
    padding: 0 20px;
  }

  .sobre-mim__foto {
    width: 120px;
    height: 120px;
  }

  .sobre-mim__texto {
    font-size: 0.95rem;
    text-align: center;
  }

  .stack-tecnologias {
    padding: 0 20px;
  }

  .stack-tecnologias .container {
    gap: 18px;
  }

  .stack-tecnologias__icon {
    font-size: 2.4rem;
  }

  #projetos .project {
    grid-template-columns: 1fr;
    text-align: center;
  }

  #projetos .project-link {
    margin: 0 auto;
  }

  #projetos .project-details .buttons {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .sobre-mim__foto {
    width: 100px;
    height: 100px;
  }

  .sobre-mim__texto {
    font-size: 0.9rem;
    padding: 0 10px;
  }

  .stack-tecnologias .item {
    min-width: 85px;
    max-width: 95px;
    width: 90px;
    height: 90px;
  }

  .stack-tecnologias__icon {
    font-size: 2rem;
  }

  .projeto img {
    height: 120px;
  }

  .footer {
    font-size: 0.8rem;
    padding: 10px 0;
  }
}

.categoria {
  margin-bottom: 40px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categoria:last-child {
  margin-bottom: 0;
}

.categoria__titulo {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #b388ff;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 1px;
  text-shadow: 0 2px 8px #6c2bd7;
  position: relative;
  animation: categoryTitleFloat 3s ease-in-out infinite;
}

@keyframes categoryTitleFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-5px);
  }
}

.categoria__titulo::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #6c2bd7 0%, #b388ff 100%);
  border-radius: 1px;
}

.categoria .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

/* Responsive adjustments for technology categories */
@media (min-width: 700px) {
  .categoria .container {
    justify-content: center;
  }
}

.projeto-tecnologias-topo {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: flex-start;
  margin: 12px 0 8px 0;
}

.projeto-tecnologias-topo span {
  display: flex;
  align-items: center;
  font-size: 0.98rem;
  color: #b388ff;
  background: rgba(60, 20, 100, 0.13);
  border-radius: 8px;
  padding: 3px 10px 3px 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.projeto-tecnologias-topo i {
  font-size: 1.2rem;
  margin-right: 6px;
}

#projetos .projects-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#projetos .project {
  margin: 2.5rem auto 3.5rem auto;
  width: 100%;
  max-width: 900px;
  padding: 2rem 1rem;
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-gap: 2.5rem;
  align-items: center;
  background: var(--color-card-bg);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(50px);
  position: relative;
  overflow: hidden;
}

#projetos .project::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(148, 67, 216, 0.1), transparent);
  transition: left 0.5s ease;
}

#projetos .project:hover::before {
  left: 100%;
}

#projetos .project-link {
  display: block;
  margin: auto 0;
  color: #252934;
  overflow: hidden;
  text-align: center;
  border-radius: 20px;
  border: 1px solid var(--color-glass);
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 200px;
  height: 200px;
  background: var(--color-card-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#projetos .project-link:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: var(--shadow-glow), 0 20px 40px rgba(148, 67, 216, 0.3);
  border: 1px solid var(--color-accent);
}

#projetos .project-link:hover>img {
  filter: saturate(1) brightness(1.1);
  transform: scale(1.1);
}

#projetos .project-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  filter: saturate(0.8) brightness(0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#projetos .project-details {
  margin: auto 0;
}

#projetos .project-tile {
  font-size: 2.1rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 0.2rem;
  color: #6c2bd7;
  letter-spacing: 1px;
  text-shadow: none;
}

#projetos .project-details .icons {
  margin: 0 0 0.5rem 0;
  color: #252934;
}

#projetos .project-details .icons i {
  margin-right: .4rem;
  font-weight: normal;
  font-size: 1.4rem;
  transition: transform 0.2s, color 0.2s;
  cursor: pointer;
  color: #181818;
}

#projetos .project-details .icons i.icon-html5:hover {
  color: #e44d26;
}

#projetos .project-details .icons i.icon-css3:hover {
  color: #1572b6;
}

#projetos .project-details .icons i.icon-js:hover {
  color: #f7df1e;
}

#projetos .project-details .icons i.icon-tailwind:hover {
  color: #38bdf8;
}

#projetos .project-details .icons i.icon-php:hover {
  color: #777bb4;
}

#projetos .project-details .icons i.icon-mysql:hover {
  color: #00758f;
}

#projetos .project-details .icons i:hover {
  transform: scale(1.25) rotate(-8deg);
}

#projetos .project-details small {
  font-style: italic;
  color: #555;
  display: block;
  margin-bottom: 0.7rem;
}

#projetos .project-details p {
  margin: 1rem 0;
  color: #222;
  font-size: 1.15rem;
}

#projetos .project-details .buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 1.2rem;
  border-bottom: 2px solid #6c2bd7;
  padding-bottom: 0.5rem;
}

#projetos .project-details .buttons a {
  min-width: 120px;
  padding: .5rem 1.2rem;
  border: none;
  color: #252934;
  background: #fafafa;
  font-size: 1.1rem;
  text-align: center;
  border-radius: 8px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

#projetos .project-details .buttons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

#projetos .project-details .buttons a:hover::before {
  left: 100%;
}

#projetos .project-details .buttons a:hover {
  background: linear-gradient(45deg, #6c2bd7, var(--color-accent));
  color: #fafafa;
  border-bottom: 2px solid #6c2bd7;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 5px 15px rgba(108, 43, 215, 0.4);
}

#projetos .project-details .buttons i {
  font-size: .9rem;
  vertical-align: middle;
  margin-left: .5rem;
}

@media (max-width: 900px) {
  #projetos .project {
    grid-template-columns: 1fr;
    grid-gap: 1.5rem;
    text-align: center;
  }

  #projetos .project-link {
    margin: 0 auto;
  }

  #projetos .project-details .buttons {
    justify-content: center;
  }
}

.fourth__title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-align: center;
  text-shadow: none;
  position: relative;
  animation: projectTitleGlow 4s ease-in-out infinite;
}

@keyframes projectTitleGlow {

  0%,
  100% {
    text-shadow: 0 0 20px rgba(148, 67, 216, 0.3);
    transform: scale(1);
  }

  50% {
    text-shadow: 0 0 30px rgba(148, 67, 216, 0.6), 0 0 40px rgba(179, 136, 255, 0.3);
    transform: scale(1.02);
  }
}

.icon-html5 {
  color: #e44d26;
}

.icon-css3 {
  color: #1572b6;
}

.icon-js {
  color: #f7df1e;
}

.icon-tailwind {
  color: #38bdf8;
}

.icon-php {
  color: #777bb4;
}

.icon-mysql {
  color: #00758f;
}

#projetos .project-details .icons i:hover {
  transform: scale(1.25) rotate(-8deg);
}

.devicon-github-plain.stack-tecnologias__icon {
  color: #fff !important;
}

.icon-gamemaker {
  width: 3.2rem;
  height: 3.2rem;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sobre-mim__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ===== SEÇÃO DE CERTIFICAÇÕES COMPACTA ===== */
.certifications {
  background: #000;
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.certifications::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #9443d8, transparent);
}

.certifications-header {
  text-align: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.certifications-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.certifications-title span {
  color: var(--color-purple);
}

/* Grid Compacto de Certificações */

.cert-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cert-compact-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.5rem;
  background: var(--color-card-bg);
  /* Standardized background */
  border: 1px solid var(--color-glass);
  /* Standardized border */
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
  width: 100%;
}

.cert-card-wrapper {
  position: relative;
  height: 100%;
}

.cert-card-wrapper:hover .cert-compact-card {
  /* background: rgba(148, 67, 216, 0.13); Removed to prevent flicker */
  border-color: var(--color-purple);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 32px rgba(148, 67, 216, 0.22);
}

.cert-compact-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-purple), var(--color-accent));
  color: #fff;
  font-size: 1.7rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-card-wrapper:hover .cert-compact-icon {
  transform: scale(1.13) rotate(5deg);
  box-shadow: 0 0 22px rgba(148, 67, 216, 0.6);
}

.cert-card-wrapper:hover {
  z-index: 10;
}


.cert-compact-info {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  overflow: hidden;
}

.cert-compact-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cert-compact-info h4 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cert-compact-date {
  font-size: 0.82rem;
  color: var(--color-accent);
  font-weight: 500;
  background: rgba(148, 67, 216, 0.10);
  border-radius: 8px;
  padding: 2px 8px;
  margin-left: 2px;
  margin-top: 1px;
}

.cert-compact-info .cert-compact-provider {
  font-size: 0.85rem;
  color: var(--color-purple);
  font-weight: 600;
  margin-bottom: 1px;
}

.cert-compact-desc {
  font-size: 0.82rem;
  color: #bdbdbd;
  margin-top: 2px;
  line-height: 1.3;
  max-width: 95%;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsividade Certificações Compactas */
@media (max-width: 768px) {
  .cert-compact-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
    padding: 0 1rem;
  }

  .certifications {
    padding: 2rem 0;
  }

  .certifications-header {
    margin-bottom: 1.5rem;
  }

  .certifications-title {
    font-size: 1.8rem;
  }
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.cert-card {
  background: linear-gradient(135deg, rgba(148, 67, 216, 0.1), rgba(255, 107, 107, 0.1));
  border: 1px solid rgba(148, 67, 216, 0.3);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.cert-card:hover::before {
  left: 100%;
}

.cert-card:hover {
  transform: translateY(-10px);
  border-color: #9443d8;
  box-shadow: 0 20px 40px rgba(148, 67, 216, 0.3);
}

.cert-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.cert-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cert-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0.05));
  border-radius: 18px;
}

.cert-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}

.cert-card:hover .cert-icon::after {
  animation: iconShine 0.8s ease;
}

@keyframes iconShine {
  0% {
    left: -50%;
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    left: 150%;
    opacity: 0;
  }
}

.cert-card:hover .cert-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.cert-icon i,
.cert-icon .cambridge-symbol,
.cert-icon .unity-symbol {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.cert-card:hover .cert-icon i {
  transform: scale(1.15);
}

.aws-icon {
  background: linear-gradient(135deg, #ff9900, #ff6600);
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 153, 0, 0.4);
}

.ibm-icon {
  background: linear-gradient(135deg, #054ada, #0530ad);
  color: #fff;
  box-shadow: 0 8px 25px rgba(5, 74, 218, 0.4);
}

.alura-icon {
  background: linear-gradient(135deg, #0066ff, #00ccff);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.cambridge-icon {
  background: linear-gradient(135deg, #8b4513, #d2691e);
  color: #fff;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
}

.unity-icon {
  background: linear-gradient(135deg, #00bcd4, #0097a7);
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 188, 212, 0.4);
}

.cisco-icon {
  background: linear-gradient(135deg, #1ba1d9, #007acc);
  color: #fff;
  box-shadow: 0 8px 25px rgba(27, 161, 217, 0.4);
}

/* Garantir que cards específicos tenham o mesmo tamanho */
.unity-card,
.cisco-card {
  min-height: 280px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

.fgv-icon {
  background: linear-gradient(135deg, #1a5c1e, #2e7d32, #4caf50);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 8px 25px rgba(46, 125, 50, 0.4);
}

.fatec-icon {
  background: linear-gradient(135deg, #c41e3a, #e63946, #ff6b6b);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
}

.google-icon {
  background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
  background-size: 300% 300%;
  color: #fff;
  box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
  animation: googleGradient 4s ease infinite;
}

@keyframes googleGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.even3-icon {
  background: linear-gradient(135deg, #ff6b35, #f7931e, #ffb347);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.paula-souza-icon {
  background: linear-gradient(135deg, #c41e3a, #e91e63, #f06292);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.4);
}

.cert-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9443d8, #e040fb, #ff6b6b);
  background-size: 200% 200%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  animation: badgePulse 2.5s ease-in-out infinite, badgeGradient 3s ease infinite;
  box-shadow: 0 4px 15px rgba(148, 67, 216, 0.5);
  transition: all 0.3s ease;
}

@keyframes badgePulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 15px rgba(148, 67, 216, 0.5);
  }

  50% {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(148, 67, 216, 0.7);
  }
}

@keyframes badgeGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.cert-card:hover .cert-badge {
  transform: scale(1.2) rotate(15deg);
  box-shadow: 0 8px 30px rgba(148, 67, 216, 0.6);
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.cert-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.cert-provider {
  color: #888;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.cert-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.cert-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #aaa;
  font-size: 0.9rem;
}

.cert-date i {
  color: #9443d8;
}

.cert-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cert-status.completed {
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: #fff;
}

.cert-status.in-progress {
  background: linear-gradient(135deg, #ff9800, #f57c00);
  color: #fff;
}

.cert-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.cert-skills .skill-tag {
  background: rgba(148, 67, 216, 0.2);
  border: 1px solid rgba(148, 67, 216, 0.4);
  color: #9443d8;
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.cert-skills .skill-tag:hover {
  background: rgba(148, 67, 216, 0.3);
  transform: translateY(-2px);
}

/* === SEÇÃO DE EDUCAÇÃO === */
.education {
  padding: 100px 20px;
  background: linear-gradient(180deg, #000 0%, #0a0510 50%, #000 100%);
  position: relative;
}

.education::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-purple), transparent);
}


.education-title {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.education-title span {
  color: var(--color-purple);
}

.education-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.education-card {
  background: linear-gradient(145deg, rgba(30, 30, 40, 0.9) 0%, rgba(15, 15, 25, 0.95) 100%);
  border: 1px solid rgba(148, 67, 216, 0.3);
  border-radius: 24px;
  padding: 40px;
  display: flex;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.education-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(148, 67, 216, 0.1), transparent);
  transition: left 0.6s ease;
}

.education-card:hover::before {
  left: 100%;
}

.education-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--color-purple);
  box-shadow:
    0 20px 60px rgba(148, 67, 216, 0.3),
    0 0 40px rgba(148, 67, 216, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.education-icon {
  width: 90px;
  height: 90px;
  min-width: 90px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-accent), #e040fb);
  background-size: 200% 200%;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #fff;
  box-shadow: 0 15px 40px rgba(148, 67, 216, 0.5);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.education-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 24px;
}

.education-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 50%);
  border-radius: 24px;
}

.education-card:hover .education-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 20px 50px rgba(148, 67, 216, 0.6);
  animation: iconFloat 2s ease-in-out infinite;
}

@keyframes iconFloat {

  0%,
  100% {
    transform: scale(1.1) rotate(-5deg) translateY(0);
  }

  50% {
    transform: scale(1.1) rotate(-5deg) translateY(-5px);
  }
}

.education-icon i {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.education-card:hover .education-icon i {
  transform: scale(1.15);
}

.education-content {
  flex: 1;
}

.education-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.education-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
}

.education-badge {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.education-badge.in-progress {
  background: linear-gradient(135deg, var(--color-purple), var(--color-accent));
  color: #fff;
}

.education-badge.completed {
  background: linear-gradient(135deg, #7c3aed, #b388ff);
  color: #fff;
}


.education-institution {
  font-size: 1.1rem;
  color: var(--color-purple);
  font-weight: 700;
  margin-bottom: 5px;
}


.education-location {
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.education-location i {
  color: var(--color-purple);
  margin-right: 5px;
}

.education-period {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(148, 67, 216, 0.15);
  border: 1px solid rgba(148, 67, 216, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--color-accent);
  margin-bottom: 15px;
}

.education-period i {
  color: var(--color-purple);
}

.education-description {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 15px;
}

.education-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.education-skills .skill-tag {
  background: rgba(148, 67, 216, 0.2);
  border: 1px solid rgba(148, 67, 216, 0.4);
  color: #b388ff;
  padding: 6px 14px;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.education-skills .skill-tag:hover {
  background: rgba(148, 67, 216, 0.4);
  transform: translateY(-2px);
}

/* Responsividade para Educação */
@media (max-width: 768px) {
  .education-container {
    grid-template-columns: 1fr;
    padding: 0 5px;
    gap: 20px;
  }

  .education-card {
    display: block;
    padding: 18px 10px;
    gap: 12px;
  }

  .education-header h3 {
    font-size: 1.1rem;
  }

  .education-period {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(148, 67, 216, 0.13), rgba(179, 136, 255, 0.10));
    border: 1px solid var(--color-purple);
    padding: 6px 10px;
    border-radius: 14px;
    font-size: 0.92rem;
    color: var(--color-purple);
    font-weight: 700;
    margin-bottom: 8px;
  }

  .education-description {
    font-size: 0.97rem;
  }

  .education-skills {
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .education-skills .skill-tag {
    font-size: 0.92rem;
    padding: 4px 10px;
  }
}

/* Responsividade para Certificações */
@media (max-width: 768px) {
  .certifications-title {
    font-size: 2.5rem;
  }

  .cert-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .cert-card {
    padding: 1.5rem;
  }

  .cert-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

/* Melhorias gerais de responsividade */
@media (max-width: 768px) {

  /* Garantir que o menu seja acessível em mobile */
  .cabecalho .menu {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cabecalho .menu ul {
    min-width: max-content;
  }

  /* Melhorar navegação por toque */
  .cabecalho .menu li a {
    touch-action: manipulation;
  }

  /* Otimizar performance em mobile */
  .cert-card::before,
  .timeline-content::before,
  .contact-item::before {
    will-change: left;
  }

  /* Melhorar legibilidade em telas pequenas */
  .cert-content h3,
  .experience-info h3,
  .contact-info h3 {
    hyphens: auto;
    word-break: break-word;
  }
}

@media (max-width: 480px) {

  /* Otimizações para telas muito pequenas */
  .cert-card,
  .timeline-content,
  .contact-item {
    margin: 0 auto;
    max-width: 100%;
  }

  /* Melhorar espaçamento em mobile */
  .cert-grid,
  .timeline,
  .contact-grid {
    margin: 0;
    padding: 0 0.5rem;
  }

  /* Garantir que os botões sejam tocáveis */
  .btn-submit,
  .contact-link {
    min-height: 48px;
    min-width: 48px;
  }
}