/* ============================================
   STACK TECNOLOGICO SECTION
   ============================================ */
/* Tech category section animation */
section.visible .tech-category-section {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.6s;
}

/* Tech Item Card - for large vertical logo cards (WordPress, WooCommerce) */
.tech-item-card {
  background: rgba(100, 150, 255, 0.03);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
}

.tech-item-card:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(100, 150, 255, 0.2);
}

/* Tech Card Compact - for horizontal logo cards */
.tech-card-compact {
  background: rgba(100, 150, 255, 0.04);
  border: 1px solid rgba(100, 150, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tech-card-compact:hover {
  background: rgba(100, 150, 255, 0.08);
  border-color: rgba(100, 150, 255, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(100, 150, 255, 0.2);
}

.quote-note {
  background: rgba(100, 150, 255, 0.05);
  border-left: 3px solid rgba(100, 150, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .tech-item-card {
    padding: 15px;
  }
  .tech-svg {
    width: 36px;
    height: 36px;
  }
  .tech-name {
    font-size: 15px;
  }
  .tech-desc {
    font-size: 12px;
  }
  .tech-category-icon {
    width: 22px;
    height: 22px;
  }
}