body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

header {
  background: #b30000;
  color: white;
  padding: 20px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.logo {
  width: 50px;
  height: auto;
}

header h1 {
  margin: 0;
  font-size: 24px;
}

main {
  padding: 20px;
}

h2 {
  text-align: center;
  color: #b30000;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: 0 auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

input, select, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

button {
  padding: 15px;
  background: #b30000;
  color: white;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #e60000;
}

footer {
  margin-top: 30px;
  background: #fff;
  padding: 15px;
  text-align: center;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
}

footer nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

footer a {
  text-decoration: none;
  color: #b30000;
  font-weight: bold;
}

/* Modal fundo */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.5);
}

/* Conteúdo do modal */
.modal-content {
  background: #fff;
  margin: 15% auto;
  padding: 20px;
  border-radius: 12px;
  width: 80%;
  max-width: 300px;
  text-align: center;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.2);
}

/* Botão fechar */
.close {
  float: right;
  font-size: 22px;
  cursor: pointer;
  color: #b30000;
}

/* Links de telefone */
.telefone {
  display: block;
  margin: 10px 0;
  padding: 12px;
  background: #b30000;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}
.telefone:hover {
  background: #800000;
}
