﻿@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: Arial, sans-serif; background: #f0f0f0; min-height: 100vh; }

.footer-menu {
  background: white;
  padding: 10px;
  display: flex;
  justify-content: space-around;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.footer-menu a {
  text-decoration: none;
  text-align: center;
  color: #666;
  flex: 1;
}

.footer-menu a.active { color: #007bff; }
.footer-menu a i { font-size: 24px; display: block; }
.footer-menu a span { font-size: 12px; }

.content {
  max-width: 500px;
  margin: 20px auto;
  background: white;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  margin-bottom: 80px;
}

.hidden { display: none; }

.servico-item {
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 10px;
  margin: 10px 0;
  cursor: pointer;
}

.servico-item.selected { border-color: #007bff; background: #e3f2fd; }

.button, input[type="submit"] {
  background: #007bff;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
}

@media (max-width: 768px) {
  .marca { display: none; }
}
