/* ==========================
   RESET
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  color: #333;
}

/* ==========================
   HEADER
========================== */
header {
  background: #b30000;
  color: white;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 120px;
  margin-left: 10px;
}

nav {
  display: flex;
  gap: 50px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* ==========================
   TÍTULO DA PÁGINA
========================== */
.topo {
  background: #e40f0f;
  padding: 20px;
  color: white;
  text-align: center;
  font-size: 26px;
  font-weight: bold;
}

/* ==========================
   FORMULÁRIO DE CONTATO
========================== */
.contato-container {
  width: 90%;
  max-width: 700px;
  margin: 40px auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contato-container h2 {
  text-align: center;
  color: #b30000;
  margin-bottom: 25px;
  font-size: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: bold;
  margin-bottom: 5px;
}

form input,
form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #aaa;
  font-size: 16px;
}

form textarea {
  height: 150px;
  resize: none;
}

button {
  padding: 12px 25px;
  background: #b30000;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  margin-top: 10px;
}

button:hover {
  background: #800000;
}

/* ==========================
   INFORMAÇÕES DE CONTATO
========================== */
.info-contato {
  margin-top: 30px;
  padding: 20px;
  background: #f7faff;
  border-radius: 10px;
  line-height: 1.6;
}

.info-contato p {
  font-size: 16px;
  margin: 8px 0;
}

/* ==========================
   FOOTER
========================== */
.footer {
  background: #b30000;
  color: white;
  padding: 40px 20px 10px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.footer-col {
  width: 30%;
  min-width: 250px;
  margin-bottom: 20px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
  border-bottom: 2px solid white;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-col p,
.footer-col a {
  font-size: 1rem;
  margin: 5px 0;
}

.footer-col a {
  color: white;
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.4);
  font-size: 0.9rem;
}
