body {
    font-family: 'Poppins', sans-serif;
  }

/* Fondo gradiente animado */
.animated-bg {
    background: linear-gradient(-45deg, #1E3A8A, #3B82F6, #10B981, #2563EB);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

/* Header transparente con blur */
header.scrolled {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Botones premium */
.btn-gradient {
    background: linear-gradient(90deg, #2563EB, #10B981);
    transition: all 0.3s ease;
}
.btn-gradient:hover {
    filter: brightness(1.1);
    transform: scale(1.05);
}

/* Cursor personalizado */
#custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid #10B981;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    z-index: 9999;
  }
  
  /* Ripple Effect */
  .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
  }
  @keyframes ripple-animation {
    to {
      transform: scale(4);
      opacity: 0;
    }
  }
  
.text-gray-100{
    color: grey;
}

body { font-family: 'Poppins', sans-serif; }
header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.btn-gradient {
  background: linear-gradient(90deg, #2563EB, #10B981);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,99,235,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37,99,235,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); }
}
.btn-gradient:hover { filter: brightness(1.1); transform: scale(1.05); }
#particles-js {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  animation: fadeInUp 1.5s ease-out;
}
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
.logo {
  height: 50px;
  transition: transform 0.5s ease, filter 0.5s ease;
}
.logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 10px #10B981);
}
.project-img {
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.project-img:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
#custom-cursor {
  width: 20px; height: 20px;
  border: 2px solid #10B981;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  z-index: 9999;
}
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
}
@keyframes ripple-animation { to { transform: scale(4); opacity: 0; } }
body { font-family: 'Poppins', sans-serif; }
header.scrolled {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.logo { height: 50px; }
.lang-select {
  background: transparent;
  border: 1px solid #10B981;
  color: #10B981;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.lang-select:hover {
  background: #10B981;
  color: #fff;
}
.btn-gradient {
  background: linear-gradient(90deg, #2563EB, #10B981);
  transition: all 0.3s ease;
}
.btn-gradient:hover { filter: brightness(1.1); transform: scale(1.05); }

#projects-carousel {
    display: flex;
    gap: 1.5rem;
    will-change: transform;
  }
  
.project-card img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
