.contato {
  max-width: 550px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
  font-family: "Poppins", sans-serif;
}

.contato h2 {
  text-align: center;
  color: #b71c1c;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.horario-atendimento {
  text-align: center;
  background: #fce4e4;
  border: 1px solid #ffcdd2;
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input, select, textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: 0.3s;
}

input:focus, select:focus, textarea:focus {
  border-color: #b71c1c;
  box-shadow: 0 0 5px rgba(183,28,28,0.4);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

button {
  background: linear-gradient(90deg, #b71c1c, #d50000);
  color: white;
  border: none;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

button:hover {
  background: linear-gradient(90deg, #d50000, #b71c1c);
  transform: scale(1.05);
}

input[readonly] {
  background: #f9f9f9;
  color: #555;
  cursor: not-allowed;
}
/* === Modal === */
.modal-preview {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal-preview.show {
  display: flex;
}
.modal-content {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-align: left;
  font-family: "Poppins", sans-serif;
}
.modal-content h3 {
  text-align: center;
  color: #b71c1c;
}
.modal-content pre {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-size: 0.95rem;
  color: #333;
}
.modal-content .acoes {
  text-align: center;
  margin-top: 20px;
}
.modal-content button {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}
.modal-content button:first-child {
  background: linear-gradient(90deg, #b71c1c, #d50000);
  color: white;
}
.modal-content button:first-child:hover {
  transform: scale(1.05);
}
.modal-content button:last-child {
  background: #444;
  color: white;
}
@media (max-width: 600px) {
  .contato {
    padding: 20px;
  }
}
