/* Navigation Button Styles */

.btn-voltar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background-color: white;
  border: 2px solid #2C5290;
  color: #2C5290;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-voltar:hover {
  background-color: #2C5290;
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(44, 82, 144, 0.4);
}

.btn-voltar i {
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .btn-voltar {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .btn-voltar i {
    font-size: 1rem;
  }
}
