body {
  background: radial-gradient(circle at top, #0d6dfd73, #12121200 50%);
}

/* HERO */
.hero-modern {
  padding: 3rem 1rem;
}

/* FOTO */
.profile-img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(13,110,253,.4);
  box-shadow: 0 0 40px rgba(13,110,253,.25);
}

/* CARDS */
.card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

/* LINKS SOCIAIS */
.social-links a {
  color: #adb5bd;
  text-decoration: none;
  font-weight: 500;
}

.social-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* CONTACT PAGE */
.contact-label {
  color: #0d6efd; /* azul Bootstrap */
  font-weight: 600;
}

.contact-value {
  color: #f8f9fa;
  text-decoration: none;
}

.contact-value:hover {
  text-decoration: underline;
  color: #ffffff;
}
/* CONTACT PAGE */
.contact-card {
  max-width: 650px;
  animation: fadeUp .6s ease;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: grid;
  grid-template-columns: 24px 90px 1fr;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background .2s ease, transform .2s ease;
}

.contact-item:hover {
  background: rgba(255,255,255,.04);
  transform: translateX(4px);
}

.contact-item i {
  font-size: 1.2rem;
  color: #0d6efd;
}

.contact-label {
  font-weight: 600;
  color: #0d6efd;
}

.contact-value {
  color: #f8f9fa;
  text-decoration: none;
  word-break: break-all;
}

.contact-value:hover {
  text-decoration: underline;
}

/* ===== CONTACT FORM FIX (Bootstrap override) ===== */

.contact-form .form-label {
  color: #e9ecef !important;   /* labels bem claros */
  font-weight: 500;
}

/* Inputs e textarea */
.contact-form .form-control {
  background-color: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.30) !important;
  color: #ffffff !important;
}

/* Placeholder (Bootstrap escurece por padrão) */
.contact-form .form-control::placeholder {
  color: #ced4da !important;
  opacity: 1 !important; /* MUITO IMPORTANTE */
}

/* Focus */
.contact-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: #0d6efd !important;
  color: #ffffff !important;
  box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.35) !important;
}



/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ===== PROJECT DETAIL (FIX DEFINITIVO) ===== */

.project-card {
  background-color: #111827; /* fundo sólido escuro */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px 30px;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(0,0,0,.45);
}

/* Título */
.project-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

/* Tech */
.project-tech {
  font-size: 0.95rem;
  color: #60a5fa; /* azul claro legível */
  margin-bottom: 18px;
}

/* Descrição */
.project-description {
  font-size: 1rem;
  color: #e5e7eb; /* cinza bem claro */
  line-height: 1.7;
}

/* Botões */
.project-actions {
  margin-top: 28px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.about-content p {
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.project-card.featured {
  border: 1px solid rgba(59,130,246,0.4);
  box-shadow: 0 0 0 1px rgba(59,130,246,0.15);
}
