/* ========================================
   CONTATO.CSS - Página de Contato
   ======================================== */

/* Background do breadcrumb */
.page-header-breadcrumb--contato .page-header-bg {
  background: url("/tema04/imagens/breadcrumb.webp") center/cover no-repeat;
}

.section-contato {
  padding: 104px 0;
}

.contact-info .badge-mini {
  display: flex;
  align-items: start;
  gap: 8px;
}

.contact-info .badge-mini-bar {
  width: 40px;
  height: 4px;
  border-radius: var(--radius-4);
  background: var(--secondary-base);
  display: inline-block;
}

.contact-info-text {
  color: var(--neutral-soft);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin: 18px 0 32px;
  max-width: 520px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.contact-info-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary-full);
  font-size: 20px;
}

.contact-info-title {
  font-family: Urbanist, system-ui, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  color: var(--brand-primary-full);
  margin-bottom: 8px;
}

.contact-info-value {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-soft);
}

.contact-card {
  background: var(--neutral-white);
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(27, 27, 27, 0.08);
  padding: 32px;
}

.contact-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-card-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary-full);
  font-size: 20px;
}

.contact-card-headtext {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--neutral-soft);
}

.contact-label {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #4a4848;
  margin-bottom: 8px;
}

.contact-label-sub {
  font-size: 12px;
  font-weight: 350;
  color: var(--neutral-soft);
}

.contact-control {
  background: var(--neutral-white);
  border: 1px solid #e9e9e9;
  border-radius: var(--radius-4);
  padding: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #4a4848;
}

.contact-control::placeholder {
  color: rgba(195, 195, 195, 1);
  font-weight: 500;
}

.contact-control:focus {
  border-color: rgba(202, 162, 100, 0.7);
  box-shadow: 0 0 0 .2rem rgba(202, 162, 100, .15);
}

.contact-select {
  background-color: var(--neutral-white);
}

.contact-textarea {
  resize: vertical;
  min-height: 92px;
}

.contact-check {
  font-size: 14px;
  color: var(--neutral-soft);
}

.contact-check .form-check-input {
  border-color: #e9e9e9;
}

.contact-link {
  color: var(--neutral-soft);
  text-decoration: underline;
}

.contact-link:hover {
  color: var(--brand-primary-full);
}

.contact-submit {
  border-radius: 8px;
  padding: 16px;
  min-width: 250px;
  justify-content: center;
}

.contact-map {
  height: 261px;
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 991.98px) {
  .section-contato {
    padding: 80px 0;
  }

  .contact-card {
    padding: 24px;
  }

  .contact-submit {
    width: 100%;
    min-width: 0;
  }
}
