@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');

/* Reset básico e base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0d001f, #3a0ca3, #6a0dad); /* Preto, azul roxo e roxo */
  color: #e0d9ff;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 20px 10px;
}

/* Container centralizado e responsivo */
.container {
  width: 100%;
  max-width: 960px;
  background: rgba(10, 5, 30, 0.85);
  border-radius: 15px;
  box-shadow:
    0 0 20px #3a0ca3,
    0 0 40px #6a0dad,
    inset 0 0 30px #1e0a53;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
  backdrop-filter: blur(12px);
  color: #e0d9ff;
}

/* Header estilizado com brilho */
header {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.banner {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 0 25px #6a0dad;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.banner:hover {
  transform: scale(1.05);
}

header h1 {
  font-weight: 700;
  font-size: 3.5rem;
  letter-spacing: 3px;
  text-shadow:
    0 0 7px #6a0dad,
    0 0 15px #3a0ca3,
    0 0 20px #b84dff,
    0 0 30px #b84dff;
  margin: 0;
}

header p {
  font-weight: 500;
  font-size: 1.3rem;
  text-shadow: 0 0 6px #b84dff;
  margin-top: 5px;
  letter-spacing: 1.2px;
}

/* Seções */
section {
  background: rgba(30, 10, 80, 0.25);
  border-radius: 12px;
  margin-bottom: 30px;
  padding: 25px 30px;
  box-shadow:
    0 0 15px #b84dff,
    inset 0 0 25px #6a0dad;
  border: 1px solid #b84dff;
  
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

section.animate {
  opacity: 1;
  transform: translateY(0);
}

section h2 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #b84dff;
  text-shadow:
    0 0 5px #b84dff,
    0 0 10px #3a0ca3;
}

/* Listas */
ul {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

ul li {
  margin: 12px 0;
  font-size: 1.1rem;
  cursor: default;
  transition: color 0.3s ease, transform 0.3s ease;
}

.tech-list li:hover,
.project-list li:hover {
  color: #fff;
  transform: scale(1.08);
  text-shadow:
    0 0 8px #b84dff,
    0 0 15px #6a0dad;
}

/* Links */
.project-list a {
  color: #e0d9ff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-shadow 0.3s ease;
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
}

.project-list a:hover {
  color: #fff;
  text-shadow:
    0 0 8px #b84dff,
    0 0 15px #6a0dad,
    0 0 20px #b84dff;
  background: rgba(184, 77, 255, 0.2);
}

/* Redes sociais */
.social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.social a {
  background: linear-gradient(135deg, #b84dff, #6a0dad);
  color: #fff;
  padding: 12px 22px;
  border-radius: 25px;
  font-weight: 600;
  letter-spacing: 0.05em;
  box-shadow:
    0 0 15px #b84dff,
    0 0 30px #6a0dad;
  transition: all 0.4s ease;
  text-decoration: none;
  user-select: none;
}

.social a:hover {
  background: linear-gradient(135deg, #fff, #b84dff);
  color: #1a001f;
  box-shadow:
    0 0 20px #fff,
    0 0 40px #b84dff;
  transform: scale(1.15);
}

/* Rodapé */
footer {
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
  opacity: 0.8;
  letter-spacing: 0.05em;
  color: #b84dff;
  user-select: none;
  text-shadow: 0 0 5px #6a0dad;
  margin-top: auto;
}

/* Animações adicionais */
@keyframes neonPulse {
  0%, 100% {
    text-shadow:
      0 0 5px #b84dff,
      0 0 10px #6a0dad,
      0 0 20px #b84dff,
      0 0 30px #6a0dad;
  }
  50% {
    text-shadow:
      0 0 15px #b84dff,
      0 0 25px #6a0dad,
      0 0 40px #b84dff,
      0 0 50px #6a0dad;
  }
}

/* Animação pulse para título */
header h1 {
  animation: neonPulse 3s ease-in-out infinite;
}

/* Responsividade */
@media (max-width: 768px) {
  .container {
    padding: 20px 15px;
  }

  header h1 {
    font-size: 2.8rem;
  }

  section {
    padding: 20px 20px;
  }

  section h2 {
    font-size: 1.8rem;
  }

  ul li {
    font-size: 1rem;
  }

  .social a {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 15px 5px;
  }

  header h1 {
    font-size: 2.2rem;
  }

  header p {
    font-size: 1rem;
  }

  section {
    margin-bottom: 20px;
    padding: 18px 15px;
  }

  section h2 {
    font-size: 1.5rem;
  }

  ul li {
    font-size: 0.95rem;
  }

  .social {
    flex-direction: column;
    gap: 12px;
  }

  .social a {
    padding: 12px 20px;
    width: 100%;
    text-align: center;
  }
  }padding: 20px;
text-align: center;
background-color: #1a1a1a;
box-shadow: 0 -2px 10px #3a0ca3;
color: #ccc;
font-size: 0.9rem;
opacity: 0.7;
}

/\* === Hover para listas de tecnologia e projetos === \*/
.tech-list li\:hover, .project-list li\:hover {
background-color: #b84dff;
color: black;
cursor: pointer;
transform: scale(1.05);
}

.project-list a {
color: inherit;
text-decoration: none;
}

/\* === Redes Sociais === \*/
.social {
margin-top: 15px;
display: flex;
justify-content: center;
gap: 15px;
}

.social a {
color: #ffffff;
background-color: #b84dff;
padding: 10px 15px;
border-radius: 20px;
text-decoration: none;
transition: 0.3s;
}

.social a\:hover {
background-color: #fff;
color: #1a001f;
transform: scale(1.1);
}

/\* === Animações === \*/
.fade-in {
opacity: 0;
animation: fadeIn 1s ease forwards;
}

.slide-in-left {
transform: translateX(-50px);
opacity: 0;
animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
transform: translateX(50px);
opacity: 0;
animation: slideInRight 1s ease forwards;
}

.slide-in-bottom {
transform: translateY(50px);
opacity: 0;
animation: slideInBottom 1s ease forwards;
}

@keyframes fadeIn {
to {
opacity: 1;
}
}

@keyframes slideInLeft {
to {
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideInRight {
to {
transform: translateX(0);
opacity: 1;
}
}

@keyframes slideInBottom {
to {
transform: translateY(0);
opacity: 1;
}
}
.project-list li:hover {
  background-color: #b84dff;
  color: black;
  cursor: pointer;
  transform: scale(1.05);
  transition: 0.3s;
  border-radius: 5px;
  padding: 5px 10px;
}

/* Estilo para os links da lista de projetos */
.project-list a {
  color: inherit;
  text-decoration: none;
}

/* === Redes Sociais === */
.social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social a {
  color: #ffffff;
  background-color: #b84dff;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.social a:hover {
  background-color: #fff;
  color: #1a001f;
  transform: scale(1.1);
}

/* === Rodapé === */
footer {
  margin-top: auto;
  padding: 20px;
  text-align: center;
  background-color: #1a1a1a;
  box-shadow: 0 -2px 10px #3a0ca3;
  color: #ccc;
  font-size: 0.9rem;
  opacity: 0.7;
}

/* === Animações === */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.slide-in-left {
  transform: translateX(-50px);
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  transform: translateX(50px);
  opacity: 0;
  animation: slideInRight 1s ease forwards;
}

.slide-in-bottom {
  transform: translateY(50px);
  opacity: 0;
  animation: slideInBottom 1s ease forwards;
}

/* Keyframes para animações */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInBottom {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}    border-radius: 5px;
    padding: 5px 10px;
}

.project-list a {
    color: inherit;
    text-decoration: none;
}

.social {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social a {
    color: #ffffff;
    background-color: #b84dff;
    padding: 10px 15px;
    border-radius: 20px;
    text-decoration: none;
    transition: 0.3s;
}

.social a:hover {
    background-color: #fff;
    color: #1a001f;
    transform: scale(1.1);
}

footer {
    margin-top: auto;
    padding: 20px;
    text-align: center;
    background-color: #1a1a1a;
    box-shadow: 0 -2px 10px #3a0ca3;
    color: #ccc;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animações */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.slide-in-left {
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
    transform: translateX(50px);
    opacity: 0;
    animation: slideInRight 1s ease forwards;
}

.slide-in-bottom {
    transform: translateY(50px);
    opacity: 0;
    animation: slideInBottom 1s ease forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInBottom {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}  cursor: pointer;
  transform: scale(1.05);
}

.project-list a {
  color: inherit;
  text-decoration: none;
}

.social {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social a {
  color: #ffffff;
  background-color: #b84dff;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.social a:hover {
  background-color: #fff;
  color: #1a001f;
  transform: scale(1.1);
}

footer {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Animações */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

.slide-in-left {
  transform: translateX(-50px);
  opacity: 0;
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  transform: translateX(50px);
  opacity: 0;
  animation: slideInRight 1s ease forwards;
}

.slide-in-bottom {
  transform: translateY(50px);
  opacity: 0;
  animation: slideInBottom 1s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

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