/* Nova Solicitação - Estilos Específicos */

/* Header com botão de voltar */
.back-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  transform: scale(1.1);
}

.header-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* Seção de Instruções */
.instruction-section {
  padding: 24px 0;
}

.instruction-card {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  border-left: 4px solid var(--primary-color);
}

.instruction-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  margin-right: 16px;
  flex-shrink: 0;
}

.instruction-content h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.instruction-content p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
}

/* Tipos de Solicitação */
.request-types {
  padding-bottom: 32px;
}

.request-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.request-card {
  display: flex;
  align-items: center;
  padding: 20px;
  background: var(--surface-color);
  border-radius: var(--border-radius);
  text-decoration: none;
  color: var(--text-primary);
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.request-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-light) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.request-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-heavy);
  color: var(--text-primary);
}

.request-card:hover::before {
  opacity: 1;
}

.request-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  margin-right: 16px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.request-icon.bus {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.request-icon.truck {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.request-icon.tools {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
}

.request-content {
  flex: 1;
}

.request-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.request-description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.4;
}

.request-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  background: rgba(30, 58, 138, 0.1);
  color: var(--primary-color);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
}

.feature-tag i {
  font-size: 10px;
  margin-right: 4px;
}

.request-arrow {
  color: var(--text-secondary);
  font-size: 16px;
  margin-left: 12px;
}

/* Seção de Dicas */
.tips-section {
  padding-bottom: 32px;
}

.tips-card {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 1px solid #bfdbfe;
  border-radius: var(--border-radius);
  padding: 24px;
}

.tips-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.tips-title i {
  color: #fbbf24;
}

.tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tips-list li {
  font-size: 14px;
  color: var(--text-primary);
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.tips-list li:last-child {
  margin-bottom: 0;
}

.tips-list li::before {
  content: '•';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.tips-list strong {
  color: var(--primary-color);
}

/* Responsive Design */
@media (min-width: 768px) {
  .request-card {
    padding: 24px;
  }
  
  .request-icon {
    width: 64px;
    height: 64px;
    font-size: 28px;
    margin-right: 20px;
  }
  
  .request-title {
    font-size: 18px;
  }
  
  .request-description {
    font-size: 15px;
  }
  
  .feature-tag {
    padding: 6px 12px;
    font-size: 12px;
  }
  
  .instruction-card {
    padding: 24px;
  }
  
  .instruction-content h2 {
    font-size: 20px;
  }
  
  .instruction-content p {
    font-size: 15px;
  }
  
  .tips-card {
    padding: 28px;
  }
  
  .tips-title {
    font-size: 18px;
  }
  
  .tips-list li {
    font-size: 15px;
  }
}

/* Animações */
.instruction-section,
.request-types,
.tips-section {
  animation: fadeInUp 0.6s ease-out;
}

.request-types {
  animation-delay: 0.1s;
}

.tips-section {
  animation-delay: 0.2s;
}

.request-card:nth-child(1) {
  animation-delay: 0.1s;
}

.request-card:nth-child(2) {
  animation-delay: 0.2s;
}

.request-card:nth-child(3) {
  animation-delay: 0.3s;
} 