body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #121212;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.navbar {
  border-bottom: 2px solid #00ffcc;
}

.navbar-brand {
  font-weight: bold;
  color: #00ffc8 !important;
}

.text-neon {
  color: #00ffc8;
  text-shadow: 0 0 2px #00ffc8, 0 0 6px #00ffc8;
}

.fotoPerfil {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00ffc8;
  box-shadow: 0 0 20px #00ffc8;
}

.hero-banner {
  background: radial-gradient(circle at center, #0f172a, #0d1117);
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
}
.overlay {
  position: absolute;
  background: linear-gradient(to right, rgba(0,255,200,0.1), rgba(0,120,255,0.1));
  width: 100%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.hero-banner .container {
  z-index: 2;
  position: relative;
}

/* Habilidades */
.skill-section {
  background-color: #0d1117;
  padding: 30px 20px;
  color: #c9d1d9;
  text-align: center;
}
.skill-section h2 {
  color: #00ffe7;
  margin-bottom: 30px;
}
.skill-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.skill-card {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.1);
  transition: transform 0.3s ease;
}
.skill-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(0, 255, 200, 0.3);
}
.skill-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 10px;
}
.skill-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #c9d1d9;
}

h1{
  color: #00ffc8;
}

/* Projetos */
.sites-section{
  align-items: center;
  text-align: center;
  background-color: #0d1117;
  padding: 30px 20px;
}


/* Repositórios */
.repo-section{
  align-items: center;
  text-align: center;
  background-color: #0d1117;
  padding: 30px 20px;
}
.repo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.repo-card {
  background-color: #161b22;
  border: 1px solid #30363d;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.1);
  transition: transform 0.3s ease;
  text-align: left;
}
.repo-card:hover {
  transform: scale(1.02);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.2);
}
.repo-card h5 {
  color: #00ffc8;
  margin-bottom: 10px;
}
.repo-card p {
  font-size: 0.9rem;
  color: #c9d1d9;
  margin-bottom: 15px;
}
.repo-card .btn {
  font-size: 0.85rem;
  padding: 6px 12px;
}

/* Animações */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}
.delay-1 { animation-delay: 0.5s; }
.delay-2 { animation-delay: 1s; }
.delay-3 { animation-delay: 1.5s; }
.delay-4 { animation-delay: 2s; }
.delay-5 { animation-delay: 2.5s; }

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}
.contact-icons-section {
  background-color: #0d1117;
  color: #c9d1d9;
}

.contact-icons-section h2 {
  color: #00ffc8;
  text-shadow: 0 0 10px #00ffc8;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: #161b22;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  box-shadow: 0 0 10px rgba(0, 255, 200, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-icon i {
  font-size: 30px;
  color: #00ffc8;
}

.contact-icon:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(0, 255, 200, 0.4);
}

.contact-icons-section a {
  color: #c9d1d9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-icons-section a:hover {
  color: #00ffc8;
  text-decoration: none;
}
.site-footer {
  background-color: #0d1117;
  color: #c9d1d9;
  font-size: 0.9rem;
  border-top: 2px solid #00ffc8;
}

.site-footer strong {
  color: #00ffc8;
}

.footer-icons a {
  color: #00ffc8;
  font-size: 1.2rem;
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.2s ease, color 0.2s ease;
}

.footer-icons a:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

@media (max-width: 576px) {
  .footer-icons a {
    font-size: 1rem;
    margin: 0 6px;
  }
}
