/* CSS específico para página de Aplicaciones Web */

/* Tech Grid especializado */
.tech-card.frontend {
  border-left: 4px solid #61dafb;
}

.tech-card.backend {
  border-left: 4px solid #68d391;
}

.tech-card.database {
  border-left: 4px solid #f6ad55;
}

.tech-card.deployment {
  border-left: 4px solid #fc8181;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tech-list li {
  padding: 0.25rem 0;
  color: var(--text-gray);
  font-size: 0.875rem;
}

.tech-list li::before {
  content: "▸";
  color: var(--accent-color);
  font-weight: bold;
  margin-right: 0.5rem;
}

/* App Types */
.app-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.app-type-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.app-type-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.app-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.app-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.app-type-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.app-type-card p {
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.feature {
  background: rgba(99, 102, 241, 0.1);
  color: var(--accent-color);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Development Process */
.development-process {
  margin-top: 2rem;
}

.process-phase {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(99, 102, 241, 0.05) 0%,
    rgba(255, 255, 255, 0.05) 100%
  );
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
  position: relative;
}

.phase-number {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}

.phase-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.phase-content p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.6;
}

/* Sidebar específico */
.sidebar-card.pricing {
  background: linear-gradient(
    135deg,
    var(--accent-color) 0%,
    var(--primary-color) 100%
  );
  color: white;
  text-align: center;
}

.sidebar-card.pricing h3 {
  color: white;
  font-size: 1.125rem;
}

.price {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1rem 0;
  color: var(--secondary-color);
}

.sidebar-card.pricing p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.sidebar-card.pricing .btn {
  background: white;
  color: var(--accent-color);
  font-weight: 700;
}

.sidebar-card.pricing .btn:hover {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.includes-list li {
  padding: 0.5rem 0;
  color: var(--text-gray);
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.includes-list li:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .app-types {
    grid-template-columns: 1fr;
  }

  .process-phase {
    flex-direction: column;
    text-align: center;
  }

  .phase-number {
    margin-right: 0;
    margin-bottom: 1rem;
  }

  .app-features {
    justify-content: center;
  }

  .price {
    font-size: 2rem;
  }
}
