.titleContainerAtendimento {
  width: min(720px, calc(100% - 48px));
  height: auto;
  border-radius: 12px;
  margin: 150px auto 0;
  align-items: center;
  justify-content: center;
  align-content: center;
}

.titleContainerAtendimento h1 {
  text-align: center;
  color: var(--azulEscuro);
  font-weight: 700;
  border-bottom: solid 2px var(--azulEscuro);
  padding-bottom: 10px;
}

.supportPage {
  padding-bottom: 80px;
}

.supportHero,
.supportGrid,
.sacBlock {
  width: min(1240px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.supportHero {
  margin-top: 34px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.94),
    rgba(255, 255, 255, 0.98)
  );
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(12, 24, 48, 0.08);
}

.heroBadge,
.sectionTag,
.heroChips span,
.optionalBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.heroBadge,
.sectionTag {
  background: rgba(9, 40, 88, 0.08);
  color: var(--azulEscuro);
  padding: 8px 14px;
}

.supportHero h2 {
  color: var(--azulEscuro);
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.15;
  margin: 16px 0 14px;
}

.supportHero p {
  color: #4d5a6f;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 900px;
}

.heroChips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.heroChips span {
  padding: 10px 14px;
  background: rgba(9, 40, 88, 0.06);
  color: var(--azulEscuro);
}

.supportGrid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1.5fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.faqBlock,
.supportInfoCard,
.sacBlock,
.policyCard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(12, 24, 48, 0.06);
}

.faqBlock,
.supportInfoCard,
.sacBlock {
  padding: 28px;
}

.sectionHeader h3 {
  color: var(--azulEscuro);
  font-size: 1.5rem;
  margin: 14px 0 8px;
}

.sectionHeader p {
  color: #627086;
  line-height: 1.65;
}

.faqList {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faqItem {
  border: 1px solid rgba(9, 40, 88, 0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.25s ease;
  background: #fff;
}

.faqItem.active {
  border-color: rgba(9, 40, 88, 0.18);
  box-shadow: 0 10px 24px rgba(12, 24, 48, 0.08);
}

.faqQuestion {
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: var(--azulEscuro);
  font-size: 1rem;
  font-weight: 700;
}

.faqQuestion i {
  font-size: 0.9rem;
  transition: transform 0.25s ease;
}

.faqItem.active .faqQuestion i {
  transform: rotate(45deg);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faqItem.active .faqAnswer {
  max-height: 220px;
}

.faqAnswer p {
  padding: 0 22px 22px;
  color: #627086;
  line-height: 1.75;
}

.supportInfoCard {
  position: sticky;
  top: 120px;
}

.infoCardItem {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(9, 40, 88, 0.08);
}

.infoCardItem:last-of-type {
  border-bottom: none;
}

.infoCardItem i {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 40, 88, 0.08);
  color: var(--azulEscuro);
}

.infoCardItem h4 {
  color: var(--azulEscuro);
  margin-bottom: 6px;
}

.infoCardItem p,
.infoNotice span,
.policyCard p,
.policyCard li,
.formFootnote,
.helperBox {
  color: #627086;
  line-height: 1.7;
}

.infoNotice {
  margin-top: 18px;
  border-radius: 16px;
  background: rgba(9, 40, 88, 0.06);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.infoNotice strong {
  color: var(--azulEscuro);
}

.sacBlock {
  margin-top: 26px;
}

.sectionHeaderWide {
  max-width: 860px;
}

.sacLayout {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
}

.sacForm {
  background: linear-gradient(
    180deg,
    rgba(9, 40, 88, 0.04),
    rgba(9, 40, 88, 0.02)
  );
  border: 1px solid rgba(9, 40, 88, 0.08);
  border-radius: 18px;
  padding: 24px;
}

.formRow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.formRow.twoColumns {
  grid-template-columns: 1fr 1fr;
}

.inputGroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inputGroup label {
  color: var(--azulEscuro);
  font-weight: 700;
  font-size: 0.95rem;
}

.input,
.textareaInput,
.uploadField {
  border-radius: 14px;
}

.input {
  font-size: 1rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(9, 40, 88, 0.12);
  background-color: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  width: 100%;
  color: #233146;
}

.input:hover,
.uploadField:hover {
  border-color: rgba(9, 40, 88, 0.22);
}

.input:focus {
  outline: none;
  border-color: rgba(9, 40, 88, 0.34);
  box-shadow: 0 0 0 4px rgba(9, 40, 88, 0.08);
}

.textareaInput {
  min-height: 180px;
  resize: vertical;
}

.optionalBadge {
  width: fit-content;
  padding: 5px 10px;
  background: rgba(9, 40, 88, 0.08);
  color: var(--azulEscuro);
  margin-left: 6px;
  vertical-align: middle;
}

.optionalBadge.isRequired {
  background: rgba(25, 135, 84, 0.14);
  color: #0f6c42;
}

.uploadField {
  border: 1px dashed rgba(9, 40, 88, 0.18);
  background: rgba(255, 255, 255, 0.8);
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.uploadField.hasFile {
  border-style: solid;
  background: rgba(25, 135, 84, 0.08);
}

.uploadField i {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 40, 88, 0.08);
  color: var(--azulEscuro);
  font-size: 1.1rem;
}

.uploadField strong {
  display: block;
  color: var(--azulEscuro);
  margin-bottom: 2px;
}

.uploadField span {
  color: #627086;
  font-size: 0.92rem;
}

.helperBox {
  background: rgba(9, 40, 88, 0.06);
  border: 1px solid rgba(9, 40, 88, 0.08);
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.button {
  background-color: var(--azulClaro);
  color: #fff;
  width: 100%;
  margin-top: 4px;
  justify-content: center;
  height: 3.2em;
  border: var(--azulClaro) 0.2em solid;
  border-radius: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.35s ease;
}

.button:hover {
  background-color: var(--branco);
  cursor: pointer;
  color: var(--azulEscuro);
}

.text {
  margin: 0 1.5em;
  font-weight: 700;
}

.formFootnote {
  margin-top: 14px;
  font-size: 0.95rem;
}

.policyCards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policyCard {
  padding: 22px;
}

.policyCard h4 {
  color: var(--azulEscuro);
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.policyCard ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.policyCard li::marker {
  color: var(--azulEscuro);
}

.highlightedCard {
  background: linear-gradient(
    135deg,
    rgba(9, 40, 88, 0.92),
    rgba(9, 40, 88, 0.8)
  );
}

.highlightedCard h4,
.highlightedCard p {
  color: #fff;
}

@media screen and (max-width: 1100px) {
  .supportGrid,
  .sacLayout {
    grid-template-columns: 1fr;
  }

  .supportInfoCard {
    position: static;
    top: unset;
  }
}

@media screen and (max-width: 768px) {
  .titleContainerAtendimento {
    width: calc(100% - 32px);
    margin-top: 140px;
  }

  .supportHero,
  .supportGrid,
  .sacBlock {
    width: calc(100% - 32px);
  }

  .supportHero,
  .faqBlock,
  .supportInfoCard,
  .sacBlock {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .supportHero h2 {
    font-size: 1.8rem;
  }

  .faqQuestion {
    padding: 18px;
  }

  .faqAnswer p {
    padding: 0 18px 18px;
  }

  .formRow.twoColumns {
    grid-template-columns: 1fr;
  }

  .sacForm {
    padding: 18px;
  }
}
