/* =========================================================
   Página Atendimento — complementa aulas.css
   ========================================================= */

.page-atendimento #wrapper {
  background: #f5f5f5;
}

.atendimento {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  padding: 0 0 72px;
  background: transparent;
}

.atendimento__cards {
  margin-bottom: 28px;
}

.atendimento-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 190px;
  margin-bottom: 20px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(34, 35, 34, 0.06);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(34, 35, 34, 0.06);
  text-decoration: none !important;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.atendimento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(34, 35, 34, 0.1);
  border-color: rgba(248, 174, 46, 0.4);
}

.atendimento-card--whatsapp:hover {
  border-color: rgba(3, 178, 101, 0.45);
}

.atendimento-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: rgba(248, 174, 46, 0.16);
  color: #222322;
  font-size: 20px;
}

.atendimento-card--whatsapp .atendimento-card__icon {
  background: rgba(3, 178, 101, 0.14);
  color: #03b265;
}

.atendimento-card__label {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.atendimento-card__value {
  display: block;
  margin-bottom: auto;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  color: #222322;
  font-family: var(--font_family_heading);
  word-break: break-word;
}

.atendimento-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 700;
  color: #222322;
  transition: gap 0.2s ease, color 0.2s ease;
}

a.atendimento-card:hover .atendimento-card__cta {
  gap: 11px;
  color: #f8ae2e;
}

a.atendimento-card--whatsapp:hover .atendimento-card__cta {
  color: #03b265;
}

.atendimento-card__cta--muted {
  color: #6b6b6b;
  font-weight: 600;
}

/* --- Info + form --- */
.atendimento-info {
  padding: 12px 8px 28px 0;
}

.atendimento-info__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(248, 174, 46, 0.16);
  color: #8a5f00;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.atendimento-info__title {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.2;
  color: #222322;
  font-family: var(--font_family_heading);
}

.atendimento-info__text {
  margin: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: #6b6b6b;
}

.atendimento-info__list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.atendimento-info__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #222322;
}

.atendimento-info__list i {
  color: #03b265;
  font-size: 12px;
}

.atendimento-info__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(3, 178, 101, 0.12);
  color: #028a4f !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.atendimento-info__whatsapp:hover {
  background: #03b265;
  color: #fff !important;
  transform: translateY(-1px);
}

.atendimento-form-card {
  background: #fff;
  border: 1px solid rgba(34, 35, 34, 0.06);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(34, 35, 34, 0.08);
  margin-bottom: 0;
  animation: atendimentoFade 0.55s ease both;
}

@keyframes atendimentoFade {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.atendimento-form-card__head {
  margin-bottom: 22px;
}

.atendimento-form-card__title {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #222322;
  font-family: var(--font_family_heading);
}

.atendimento-form-card__subtitle {
  margin: 0;
  font-size: 14px;
  color: #6b6b6b;
}

.page-atendimento .atendimento-form-card .form-group {
  margin-bottom: 16px;
}

.page-atendimento .atendimento-form-card label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #222322;
}

.page-atendimento .atendimento-form-card .form-control {
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  background: #fafafa;
  padding: 0 16px;
  font-size: 14px;
  color: #222322;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: none;
}

.page-atendimento .atendimento-form-card textarea.form-control {
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
}

.page-atendimento .atendimento-form-card .form-control:focus {
  outline: none;
  background: #fff;
  border-color: #f8ae2e;
  box-shadow: 0 0 0 3px rgba(248, 174, 46, 0.18);
}

.page-atendimento .atendimento-form-card select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b6b6b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.atendimento-form-card__submit {
  width: auto;
  min-width: 220px;
  margin-top: 4px;
}

.page-atendimento .form-response {
  margin-bottom: 12px;
}

.page-atendimento .form-response .alert {
  border-radius: 12px;
  margin-bottom: 0;
  font-size: 14px;
}

@media (max-width: 991px) {
  .atendimento-info {
    padding: 0 0 12px;
  }
}

@media (max-width: 767px) {
  .atendimento {
    margin-top: -28px;
    padding-bottom: 56px;
  }

  .atendimento-card {
    min-height: 0;
  }

  .atendimento-form-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .atendimento-form-card__submit {
    width: 100%;
  }
}
