@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Quicksand', sans-serif;
}

body {
  background: #e8e8e8;
  color: #1e1e1e;
}

/* =======================
   BANNER
======================= */

.banner-contato {
  height: 280px;
  background: linear-gradient(90deg, #de5114, #f85504);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 20px;
}

.banner-contato h1 {
  font-size: 40px;
}

.banner-contato p {
  margin-top: 15px;
  font-size: 18px;
}

/* =======================
   ÁREA CONTATO
======================= */

.contato-area {
  display: flex;
  gap: 40px;
  padding: 60px 8%;
  justify-content: center;
  flex-wrap: wrap;
}

/* CARDS */
.contato-info,
.form-contato {
  background: white;
  border-radius: 20px;
  padding: 35px;
  width: 500px;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
}

/* TÍTULOS PADRÃO */
.contato-info h2,
.form-contato h2 {
  color: #de5114;
  margin-bottom: 20px;
  font-size: 26px;
}

/* INFO */
.info-item {
  display: flex;
  gap: 15px;
  align-items: center;
  margin: 25px 0;
  font-size: 17px;
}

.info-item i {
  color: #de5114;
  font-size: 22px;
}

/* REDES */
.social-contato {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.social-contato i {
  font-size: 28px;
  color: #de5114;
  transition: 0.3s;
}

.social-contato i:hover {
  color: #b04518;
}

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

.input-box {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

label {
  font-weight: 600;
  margin-bottom: 6px;
}

input,
textarea {
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

input:focus,
textarea:focus {
  border-color: #de5114;
}

textarea {
  height: 120px;
  resize: none;
}

/* BOTÃO */
button {
  background: #de5114;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  width: 100%;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #b04518;
}

/* =======================
   FOOTER
======================= */

footer {
  width: 100%;
  background-color: #1e1e1e;
  color: #fff;
  font-family: 'Quicksand', sans-serif;
}

#footer_content {
  display: flex;
  justify-content: space-between;
  padding: 1.5rem 4%;
  background-color: #de5114;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.footer-left img {
  height: 70px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.social-text {
  font-size: 1rem;
  font-weight: 600;
  color: #1e1e1e;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
}

.social-icon {
  color: black;
  background-color: #1e1e1e;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.social-icon:hover {
  transform: scale(1.1);
}

#footer_items {
  background-color: #141414;
  text-align: center;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  opacity: 0.8;
}

/* =======================
   RESPONSIVO
======================= */

@media screen and (max-width: 768px) {
  .banner-contato {
    height: 200px;
    margin-top: 0;
  }

  .banner-contato h1 {
    font-size: 28px;
  }

  .contato-area {
    padding: 30px 5%;
  }

  .contato-info,
  .form-contato {
    width: 100%;
  }

  #footer_content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    justify-content: center;
  }

  .footer-social {
    align-items: center;
    margin-top: 1rem;
    flex-direction: row;
    gap: 1rem;
  }

  .social-text {
    display: none;
  }
}

