/**
 * web-styles.css
 * Estilos específicos para el módulo de Desarrollo Web
 */

/* Contenedor de Plantillas */
.templates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding-top: 10px;
}

.template-card {
  background: white;
  border-radius: 12px;
  padding: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--vantyx-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.template-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--vantyx-blue);
}

.template-header {
  background: var(--vantyx-blue);
  color: white;
  padding: 20px;
  text-align: center;
}

.template-header h3 {
  font-size: 1.4rem;
  margin-bottom: 5px;
}

.template-header .badge {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: normal;
}

.template-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rubros-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.rubro-tag {
  background: #f1f5f9;
  color: #64748b;
  padding: 4px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
}

.template-description {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.feature-list {
  list-style: none;
  margin-bottom: 25px;
}

.feature-list li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--vantyx-text);
  display: flex;
  align-items: center;
}

.feature-list li ion-icon {
  margin-right: 8px;
  font-size: 1.1rem;
}

.feature-list li.included ion-icon {
  color: var(--success);
}

.feature-list li.not-included ion-icon {
  color: #cbd5e0;
}

.feature-list li.not-included {
  color: #94a3b8;
}

.price-section {
  background: #f8fafc;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.price-label {
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-input-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.currency-symbol {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--vantyx-blue);
}

.price-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid #cbd5e0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vantyx-blue);
  width: 120px;
  text-align: center;
  padding: 5px;
  transition: border-color 0.3s;
}

.price-input:focus {
  outline: none;
  border-color: var(--vantyx-yellow);
}

.actions-footer {
  display: flex;
  gap: 10px;
}

.actions-footer .btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-demo {
  background: white;
  border: 1px solid var(--vantyx-blue);
  color: var(--vantyx-blue);
}

.btn-demo:hover {
  background: #ebf8ff;
}
