/* SEÇÃO CONTATO: cards, formulário, botão, info */

#contato {
  width: 100%;
}

.contato-card {
  background: #1a1a1a;
  border-radius: 16px;
  box-shadow: 0 4px 32px #000a, 0 0 0 1px #222;
  color: #fff;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(20px, 3.2vw, 32px);
}

.contato-card-atras {
  background: #2c2c2c;
  border-radius: 16px;
  position: relative;
  transition: box-shadow 0.9s, transform 0.9s cubic-bezier(.77,0,.18,1);
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(12px, 2.4vw, 16px);
}

.contato-card-atras:hover {
  transform: scale(1.03);
  box-shadow: 0 0 18px 6px #2e2744,
              0 8px 32px 0 rgba(0,0,0,0.35);
}

.contato-info {
  margin-bottom: 24px;
}

.contato-info > div {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.contato-icone {
  color: #a259ff;
  font-size: 1.2em;
}

.btn-whatsapp {
  display: inline-block;
  margin: 16px 0 24px 0;
  padding: 12px 28px;
  background: linear-gradient(90deg, #31145f, #3a2a50);
  color: #fff;
  border-radius: 32px;
  font-weight: 600;
  box-shadow: 0 0 12px 0 #a259ff55;
  text-decoration: none;
  transition: filter 0.2s;
}

.btn-whatsapp:hover {
  filter: brightness(1.1) drop-shadow(0 0 8px #a259ff99);
}

.contato-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contato-form input,
.contato-form textarea {
  background: #111114;
  border: 1px solid #a259ff;
  border-radius: 8px;
  padding: 12px;
  color: #fff;
  font-size: 1em;
  outline: none;
  transition: border 0.9s;
}

.contato-form input:focus,
.contato-form textarea:focus {
  border-color: #fff;
}

.contato-form button {
  background: linear-gradient(90deg, #31145f, #3a2a50);
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  box-shadow: 0 0 12px 0 #a259ff55;
  transition: filter 0.2s;
}

.contato-form button:hover {
  filter: brightness(1.1) drop-shadow(0 0 8px #a259ff99);
}