/* =========================
   BASE
========================= */

body {
  margin: 0;
  background: #000;
  font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
  color: #ccc;
}

/* links */
a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

/* =========================
   LAYOUT
========================= */

.container {
  width: 90%;
  max-width: 1200px;
  margin: 60px auto 80px auto;
  padding: 0 30px;
  text-align: left;
  /* border: 2px solid red; debug */
  box-sizing: border-box;
}

/* =========================
   TIPOGRAFIA
========================= */

/* título (URBANA / 1997...) */
.text-meta {
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  color: #FFFFFF;
  margin-bottom: 30px;
}

/* corpo */
.text-body {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.3px;
  margin-bottom: 20px;
}

.highlight {
  color: #fa7901;
}

.highlight-FORTE {
  color: #fff;
  font-weight: bold;
}

/* links principais */

.links {
  text-align: center;
  margin-top: 40px;
}

.links a {
  display: block;
  margin-top: 10px;
}

.link-main {
  text-align: center;
  display: inline-block;
  margin-top: 5px;
  font-size: 18px;
  letter-spacing: 2px;
  color: #00bce7;
}

/* variação (mais espaçada) */
.link-alt {
  letter-spacing: 4px;
}


/* =========================
   FORMULÁRIO
========================= */

.contact-form input,
.contact-form textarea {
  width: 400px;
  background: transparent;
  border: 1px solid #00bce7;
  color: #fff;
  padding: 14px;
  font-family: inherit;
  font-size: 16px;
  display: block;
  margin: 0 auto 5px auto;
  box-sizing: border-box;
}

.contact-form input {
  height: 30px;
}

.contact-form textarea {
  height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 400px;
  display: block;
  margin: 5px auto 0 auto;
  background: none;
  border: 1px solid #00bce7;
  color: #FFFFFF;
  padding: 14px;
  letter-spacing: 2px;
  box-sizing: border-box;
  cursor: pointer;
}
.form-intro {
  width: 100%;
  max-width: 400px;
  margin: 0 auto 5px auto;
  box-sizing: border-box;
}
-----------------------------
