/* =========================
   HEADER
========================= */

.contato-header {
  padding-top: 140px;
  padding-bottom: 80px;
  background: var(--bg-soft);
  text-align: center;
}

.contato-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contato-header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================
   SEÇÃO CONTATO
========================= */

.contact-section {
  background: var(--bg-light);
}

/* =========================
   INFORMAÇÕES
========================= */

.contact-info {
  margin-top: 30px;
}

.contact-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.contact-link:hover {
  color: var(--accent);
  text-decoration: underline;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item i {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--text);
  border: 1px solid var(--border);
  flex-shrink: 0;
  transition: 0.3s ease;
}

.info-item:hover i {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.info-item h5 {
  margin-bottom: 5px;
  font-weight: 600;
}

.info-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =========================
   BOTÃO WHATSAPP
========================= */

.contact-whatsapp-btn {
  min-width: 260px;
}

/* =========================
   FORMULÁRIO
========================= */

.contact-form {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
  transition: 0.3s ease;
}

.contact-form h2 {
  margin-bottom: 25px;
  font-weight: 700;
}

.form-control,
.form-select {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: var(--text-light);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent) 20%, transparent);
}

.form-label {
  font-weight: 500;
}

textarea {
  resize: none;
  color: var(--text);
}

.contact-form .btn {
  min-width: 260px;
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.contact-form:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* =========================
   RESPONSIVIDADE
========================= */

@media (max-width: 992px) {
  .contato-header h1 {
    font-size: 2.6rem;
  }

  .contact-form {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .contato-header {
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .contato-header h1 {
    font-size: 2.2rem;
  }

  .contato-header p {
    font-size: 0.95rem;
  }

  .contact-form {
    padding: 30px;
  }

  .info-item {
    gap: 15px;
  }

  .info-item i {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .contato-header h1 {
    font-size: 1.9rem;
  }

  .contato-header p {
    font-size: 0.9rem;
  }

  .contact-form {
    padding: 25px 20px;
  }

  .contact-form h2 {
    font-size: 1.5rem;
  }

  .contact-form .btn {
    width: 100%;
  }

  .contact-whatsapp-btn {
    width: 100%;
    min-width: auto;
  }

  .info-item h5 {
    font-size: 1rem;
  }

  .info-item p,
  .info-item a {
    font-size: 0.95rem;
  }
}

@media (max-width: 400px) {
  .contato-header h1 {
    font-size: 1.7rem;
  }

  .contact-form {
    padding: 20px 15px;
  }

  .info-item {
    gap: 12px;
  }

  .info-item i {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}
