/* ===== TRABALHE CONOSCO ===== */

.work-hero {
  min-height: 270px;
  display: grid;
  place-items: center;
  padding: 124px 24px 48px;
  color: var(--color-white);
  text-align: center;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.12), transparent 23rem),
    linear-gradient(118deg, var(--color-primary-dark), var(--color-primary));
}

.work-hero-content {
  animation: work-fade-up 0.65s ease-out both;
}

.work-hero h1 {
  font-size: clamp(2.15rem, 4.3vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.work-breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 0.86rem;
  font-weight: 600;
}

.work-breadcrumb a {
  transition: color 0.2s ease;
}

.work-breadcrumb a:hover {
  color: var(--color-secondary);
}

.work-breadcrumb span[aria-hidden="true"] {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.2rem;
  line-height: 0.8;
}

.work-breadcrumb span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.82);
}

.work-contact {
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: 84px 24px 96px;
  background: var(--color-white);
}

.work-contact-content {
  max-width: 660px;
  text-align: center;
  animation: work-fade-up 0.7s 0.12s ease-out both;
}

.work-contact-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
  color: var(--color-secondary);
  background: rgba(242, 123, 19, 0.1);
  border-radius: 50%;
}

.work-contact-icon svg {
  width: 34px;
  height: 34px;
}

.work-contact h2 {
  color: var(--color-text);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.work-contact-line {
  width: 52px;
  height: 3px;
  margin: 18px auto 22px;
  background: var(--color-secondary);
  border-radius: 999px;
}

.work-contact p {
  max-width: 570px;
  margin: 0 auto;
  color: #52525b;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.65;
}

.work-contact p a {
  color: var(--color-secondary-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.work-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 32px;
  padding: 14px 24px;
  color: var(--color-white);
  font-size: 0.96rem;
  font-weight: 700;
  background: var(--color-secondary);
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(242, 123, 19, 0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.work-contact-button:hover {
  background: var(--color-secondary-dark);
  box-shadow: 0 14px 25px rgba(242, 123, 19, 0.3);
  transform: translateY(-2px);
}

.work-contact-button:focus-visible,
.work-breadcrumb a:focus-visible,
.work-contact p a:focus-visible {
  outline: 3px solid rgba(242, 123, 19, 0.45);
  outline-offset: 4px;
}

.work-contact-button svg {
  width: 18px;
  height: 18px;
}

@keyframes work-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .work-hero-content,
  .work-contact-content {
    animation: none;
  }
}

@media (max-width: 600px) {
  .work-hero {
    min-height: 230px;
    padding-top: 106px;
    padding-bottom: 36px;
  }

  .work-contact {
    min-height: 0;
    padding: 64px 24px 76px;
  }

  .work-contact-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

  .work-contact-icon svg {
    width: 30px;
    height: 30px;
  }

  .work-contact p {
    font-size: 1rem;
  }

  .work-contact-button {
    width: 100%;
  }
}
