/* FUNDO GERAL */
body {
  background: linear-gradient(135deg, #1f2937, #111827);
  color: #e5e7eb;
}

/* TITULOS */
h1, h2, h3 {
  font-weight: 700;
}

/* CARDS PADRÃO */
.custom-card {
  background: #1f2937;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: 0.3s;
}

.custom-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* CARD CLARO */
.custom-card-light {
  background: #ffffff;
  color: #111;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* IMAGENS */
.project-img {
  border-radius: 12px;
  transition: 0.3s;
}

.project-img:hover {
  transform: scale(1.03);
}

/* BADGES */
.badge {
  font-size: 0.8rem;
  padding: 6px 10px;
}

/* BOTÃO */
.btn-primary {
  background: #3b82f6;
  border: none;
}

.btn-primary:hover {
  background: #2563eb;
}

.custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 15px;
}

.custom-list li:last-child {
  border-bottom: none;
}

.custom-list i {
  font-size: 18px;
}

@media (max-width: 1199px) {
  #navmenu {
    display: none;
  }

  #header.header-show #navmenu {
    display: block;
  }
}

.navmenu a {
  text-decoration: none;
}

.logo {
  text-decoration: none;
}