:root {
  --atendimento-gold: #d4af03;
  --atendimento-blue: #1a365c;
  --atendimento-ink: #172033;
  --atendimento-muted: #667085;
  --atendimento-surface: #ffffff;
  --atendimento-soft: #f6f7f9;
  --atendimento-border: #e6e8ec;
  --atendimento-danger: #8c2f2f;
}

.atendimento-hub {
  color: var(--atendimento-ink);
  padding: 32px 0 72px;
}

.atendimento-hub * {
  box-sizing: border-box;
}

.atendimento-hub__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.75fr);
  gap: 40px;
  align-items: stretch;
  padding: 56px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(212, 175, 3, 0.17), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--atendimento-border);
  box-shadow: 0 24px 70px rgba(24, 39, 75, 0.08);
}

.atendimento-hub__hero-copy {
  align-self: center;
}

.atendimento-hub__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--atendimento-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.atendimento-hub__hero h1 {
  max-width: 820px;
  margin: 0 0 22px;
  color: #101828;
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.atendimento-hub__lead {
  max-width: 780px;
  margin: 0;
  color: #475467;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.atendimento-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.atendimento-hub__actions .btn,
.atendimento-hub__final-cta .btn {
  min-height: 54px;
  padding: 16px 24px;
  border-radius: 999px;
  font-weight: 800;
}

.atendimento-hub__actions .btn-primary,
.atendimento-hub__final-cta .btn-primary {
  background: var(--atendimento-gold);
  border-color: var(--atendimento-gold);
  color: #171717;
}

.atendimento-hub__actions .btn-primary:hover,
.atendimento-hub__final-cta .btn-primary:hover {
  filter: brightness(0.96);
  transform: translateY(-1px);
}

.atendimento-hub__actions .btn-secondary {
  background: #fff;
  border: 1px solid #d0d5dd;
  color: var(--atendimento-blue);
}

.atendimento-hub__microcopy {
  margin: 16px 0 0;
  color: var(--atendimento-muted);
  font-size: 0.92rem;
}

.atendimento-hub__urgent-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: 22px;
  background: var(--atendimento-blue);
  color: #fff;
  box-shadow: 0 20px 44px rgba(26, 54, 92, 0.22);
}

.atendimento-hub__urgent-label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff2ad;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.atendimento-hub__urgent-card h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.atendimento-hub__urgent-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.atendimento-hub__urgent-card li {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.atendimento-hub__alert {
  display: flex;
  gap: 12px;
  align-items: baseline;
  margin: 22px 0 0;
  padding: 18px 22px;
  border-left: 5px solid var(--atendimento-gold);
  border-radius: 12px;
  background: #fffbea;
  color: #4a3b00;
}

.atendimento-hub__alert strong {
  white-space: nowrap;
}

.atendimento-hub__section {
  padding: 90px 0 18px;
}

.atendimento-hub__section--soft {
  margin-top: 72px;
  padding: 76px 48px;
  border-radius: 28px;
  background: var(--atendimento-soft);
}

.atendimento-hub__section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.atendimento-hub__section-heading h2,
.atendimento-hub__about h2,
.atendimento-hub__final-cta h2 {
  margin: 0 0 14px;
  color: #101828;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.atendimento-hub__section-heading p,
.atendimento-hub__about-copy > p,
.atendimento-hub__final-cta > p {
  margin: 0;
  color: var(--atendimento-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.atendimento-hub__profiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.atendimento-hub__profile-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--atendimento-border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.atendimento-hub__profile-card:hover {
  transform: translateY(-4px);
  border-color: rgba(212, 175, 3, 0.6);
  box-shadow: 0 18px 38px rgba(16, 24, 40, 0.09);
}

.atendimento-hub__profile-card--institutional {
  background: linear-gradient(145deg, #173151 0%, #1e426e 100%);
  border-color: transparent;
}

.atendimento-hub__profile-card--institutional h3,
.atendimento-hub__profile-card--institutional p,
.atendimento-hub__profile-card--institutional a {
  color: #fff;
}

.atendimento-hub__profile-card--institutional .atendimento-hub__profile-number {
  color: #ffe476;
}

.atendimento-hub__profile-number {
  display: block;
  margin-bottom: 42px;
  color: var(--atendimento-gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.atendimento-hub__profile-card h3 {
  margin: 0 0 10px;
  color: #101828;
  font-size: 1.4rem;
}

.atendimento-hub__profile-card p {
  margin: 0 0 26px;
  color: var(--atendimento-muted);
  line-height: 1.62;
}

.atendimento-hub__profile-card a {
  display: inline-block;
  color: var(--atendimento-blue);
  font-weight: 800;
  text-decoration: none;
}

.atendimento-hub__profile-card a:hover {
  text-decoration: underline;
}

.atendimento-hub__signals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.atendimento-hub__signal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 165px;
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #e4e7ec;
}

.atendimento-hub__signal strong {
  color: #101828;
  font-size: 1.05rem;
  line-height: 1.35;
}

.atendimento-hub__signal span {
  color: var(--atendimento-muted);
  line-height: 1.58;
}

.atendimento-hub__flow {
  padding-bottom: 76px;
}

.atendimento-hub__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.atendimento-hub__step {
  padding: 28px;
  border-top: 3px solid var(--atendimento-gold);
  background: #fff;
}

.atendimento-hub__step > span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--atendimento-blue);
  color: #fff;
  font-weight: 900;
}

.atendimento-hub__step h3 {
  margin: 0 0 10px;
  color: #101828;
  font-size: 1.25rem;
}

.atendimento-hub__step p {
  margin: 0;
  color: var(--atendimento-muted);
  line-height: 1.62;
}

.atendimento-hub__about {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 50px;
  align-items: center;
  margin: 12px 0 0;
  padding: 52px;
  border-radius: 28px;
  background: #101828;
}

.atendimento-hub__about-image {
  overflow: hidden;
  min-height: 420px;
  border-radius: 20px;
  background: #e9edf2;
}

.atendimento-hub__about-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.atendimento-hub__about .atendimento-hub__eyebrow {
  color: #ffe476;
}

.atendimento-hub__about h2 {
  color: #fff;
}

.atendimento-hub__about-copy > p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.74);
}

.atendimento-hub__about-highlight {
  padding: 18px 20px;
  border-left: 4px solid var(--atendimento-gold);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
  font-weight: 700;
}

.atendimento-hub__final-cta {
  max-width: 950px;
  margin: 90px auto 12px;
  padding: 58px;
  border: 1px solid rgba(212, 175, 3, 0.35);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(212, 175, 3, 0.15), transparent 30%),
    #fff;
  text-align: center;
}

.atendimento-hub__final-cta > p {
  max-width: 720px;
  margin: 0 auto 26px;
}

.atendimento-hub__final-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.atendimento-hub__final-cta small {
  display: block;
  margin-top: 14px;
  color: #7a8290;
}

@media (max-width: 980px) {
  .atendimento-hub__hero,
  .atendimento-hub__about {
    grid-template-columns: 1fr;
  }

  .atendimento-hub__signals,
  .atendimento-hub__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .atendimento-hub__about-image,
  .atendimento-hub__about-image img {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .atendimento-hub {
    padding-top: 18px;
  }

  .atendimento-hub__hero {
    gap: 26px;
    padding: 30px 22px;
    border-radius: 20px;
  }

  .atendimento-hub__hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .atendimento-hub__actions {
    flex-direction: column;
  }

  .atendimento-hub__actions .btn,
  .atendimento-hub__final-cta .btn {
    width: 100%;
  }

  .atendimento-hub__urgent-card {
    padding: 26px 22px;
  }

  .atendimento-hub__alert {
    align-items: flex-start;
    flex-direction: column;
  }

  .atendimento-hub__alert strong {
    white-space: normal;
  }

  .atendimento-hub__section {
    padding-top: 66px;
  }

  .atendimento-hub__section--soft {
    margin-top: 54px;
    padding: 54px 20px;
    border-radius: 20px;
  }

  .atendimento-hub__profiles,
  .atendimento-hub__signals,
  .atendimento-hub__steps {
    grid-template-columns: 1fr;
  }

  .atendimento-hub__profile-card {
    min-height: auto;
    padding: 24px;
  }

  .atendimento-hub__profile-number {
    margin-bottom: 26px;
  }

  .atendimento-hub__signal {
    min-height: auto;
  }

  .atendimento-hub__about {
    gap: 30px;
    padding: 24px;
    border-radius: 20px;
  }

  .atendimento-hub__about-image,
  .atendimento-hub__about-image img {
    min-height: 300px;
  }

  .atendimento-hub__final-cta {
    margin-top: 66px;
    padding: 38px 22px;
    border-radius: 20px;
  }
}
