/* Reset e Tipografia Global */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  overflow-x: hidden;
  background-color: #f8f9fa;
}

/* Utilitários de Texto */
.text-sm {
  font-size: 0.85rem;
}

.section-title {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #333;
}

.section-title::after {
  content: '';
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #007bff;
  bottom: 0;
  left: 25%;
  border-radius: 2px;
}

/* Banner Animado e Glassmorphism */
.animated-banner {
  height: 60vh;
  min-height: 400px;
  background: linear-gradient(270deg, #ff7e5f, #feb47b, #86a8e7, #91eae4);
  background-size: 800% 800%;
  animation: gradientAnimation 20s ease infinite;
}

@keyframes gradientAnimation {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-container {
  background: rgba(255, 255, 255, 0.15); /* Glassmorphism */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.profile-pic {
  border: 4px solid rgba(255, 255, 255, 0.5);
}

.custom-nav .nav-link:hover {
  background-color: white;
  color: #333 !important;
}

/* Cards de Projeto Modernos */
.project-card {
  transition: transform 0.3s ease, shadow 0.3s ease;
  border-radius: 12px;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.card-img-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .card-img-container img {
  transform: scale(1.05);
}

.tech-tags {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  gap: 5px;
}

.border-primary {
  border: 2px solid #007bff !important;
}

/* Ícones de Habilidades */
.skill-item i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.skill-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* Contato */
.btn-outline-dark rounded-pill:hover {
  color: white !important;
}

/* Animação AOS - Pequeno ajuste para ficar mais suave */
[data-aos] {
  transition-duration: 1000ms !important;
}
