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

/* ===== RESET ===== */
body, h1, p, label, input, textarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== BODY ===== */
body {
    font-family: "Montserrat", sans-serif;
  background: linear-gradient(180deg, #ffffff, #f8f8f8);
  color: #1E1939;
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(135deg, #1E1939, #3b3570);
  padding: 25px 0;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 250px;
  height: auto;
  animation: fadeIn 1s ease-out;
}

/* ===== CONTAINER ===== */
.contact-container {
  max-width: 650px;
  margin: 60px auto;
  padding: 40px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 0.8s ease;
}

/* ===== TÍTULO ===== */
.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-header h1 {
  font-size: 30px;
  font-weight: 700;
  color: #1E1939;
  position: relative;
}

.contact-header h1::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #E7FF14;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact-header p {
  color: #555;
  font-size: 15px;
  margin-top: 10px;
}

/* ===== FORMULÁRIO ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: 600;
  color: #1E1939;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #E7FF14;
  box-shadow: 0 0 10px rgba(231, 255, 20, 0.4);
}

/* ===== BOTÃO ===== */
.btn-enviar {
  background: linear-gradient(135deg, #1E1939, #3b3570);
  color: #fff;
  font-weight: 600;
  padding: 14px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-enviar:hover {
  background: #E7FF14;
  color: #1E1939;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(30, 25, 57, 0.2);
}

/* ===== STATUS ===== */
.status-msg {
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
}

.status-msg.success {
  color: #2ecc71;
}

.status-msg.error {
  color: #e74c3c;
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
  .contact-container {
    margin: 30px 20px;
    padding: 25px;
  }

  .logo {
    width: 150px;
  }

  .contact-header h1 {
    font-size: 26px;
  }
}
