body {
  font-family: 'Courier New', monospace;
  background-color: #0d0d0d;
  color: #e1e1e1;
}

h2 {
  text-shadow: 0 0 10px #ff0040;
  font-weight: bold;
}

/* Imagen estilo RedTeam */
#sobre img {
  filter: grayscale(20%) contrast(110%);
  box-shadow: 0 0 15px rgba(255, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

#sobre img:hover {
  transform: scale(1.05);
}

/* Proyectos */
#projetos img {
  transition: transform 0.3s ease, filter 0.3s ease;
}
#projetos img:hover {
  transform: scale(1.03);
  filter: drop-shadow(0 0 10px #00ffff);
}

/* Terminal Simulado */
.terminal {
  font-family: monospace;
  background-color: #1a1a1a;
  border: 1px solid #333;
  box-shadow: 0 0 10px #00ff00;
}

.nav-link:hover {
  text-decoration: underline;
  color: #ff0040 !important;
}

/* Responsivo dark styles */
.bg-dark { background-color: #1c1c1c !important; }
.bg-secondary { background-color: #2b2b2b !important; }
.bg-black { background-color: #000000 !important; }

.text-red { color: #ff0040 !important; }
.text-purple { color: #8a2be2 !important; }
