
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11, 15, 41, 0.9) 0%, rgba(27, 32, 71, 0.9) 100%);
}

.profile-container {
  max-width: 300px;
  position: relative;
}

.profile-img-wrapper {
  position: relative;
  z-index: 1;
}

.profile-img {
  border: 5px solid rgba(0, 204, 153, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.profile-img:hover {
  transform: scale(1.03);
  border-color: rgba(0, 204, 153, 0.6);
}

/* Decoración tecnológica 
.tech-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: rotate 20s linear infinite;
}

.tech-icon {
  position: absolute;
  color: rgba(0, 255, 204, 0.7);
  font-size: 1.5rem;
}

.tech-icon:nth-child(1) { top: 10%; left: 0; }
.tech-icon:nth-child(2) { top: 80%; right: 10%; }
.tech-icon:nth-child(3) { bottom: 10%; left: 50%; }

@keyframes rotate {
  100% { transform: rotate(360deg); }
}
*/
/* Texto animado */
.typed-text {
  color: #00cc99;
  font-weight: normal;
}

.text-highlight {
  color: #b8c2e0;
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #00cc99, transparent);
}

.btn-hover-glow {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hover-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 204, 153, 0.4);
}

.btn-primary {
  background-color: #0066cc;
  border: none;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
  justify-content: flex-start;
}

.social-links a {
  color: #b8c2e0;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(184, 194, 224, 0.3);
}

.social-links a:hover {
  color: #00cc99;
  transform: translateY(-3px);
  border-color: #00cc99;
  background: rgba(0, 204, 153, 0.1);
}

.hero-description {
  border-left: 3px solid #00cc99;
  transition: all 0.3s ease;
}

.hero-description:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateX(5px);
}

/* Efecto de máquina de escribir (necesario JavaScript)
@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: #00cc99 }
}
  */