.solutions {
  background: rgba(247, 249, 253, 0.78);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 66px;
  text-align: center;
}

.section-heading p {
  margin: 18px 0 0;
}

.solution-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow);
}

.solution-copy {
  padding: 48px;
}

.tag {
  padding: 6px 12px;
  margin-bottom: 26px;
  background: rgba(62, 137, 247, 0.09);
}

.tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
}

.proregistro-logo {
  width: 202px;
  height: auto;
  margin-bottom: 18px;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 28px 0 32px;
}

.solution-list span {
  position: relative;
  padding-left: 26px;
  color: var(--foreground);
  font-size: 14px;
}

.solution-list span::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  content: "";
  background: rgba(62, 137, 247, 0.15);
}

.solution-list span::after {
  position: absolute;
  top: 7px;
  left: 5px;
  width: 7px;
  height: 4px;
  border-bottom: 2px solid var(--primary);
  border-left: 2px solid var(--primary);
  content: "";
  transform: rotate(-45deg);
}

.solution-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
  padding: 32px;
  background: var(--secondary);
}

.browser-frame {
  width: min(100%, 580px);
  overflow: hidden;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: #f2f5f9;
}

.browser-bar span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f05d5e;
}

.browser-bar span:nth-child(2) {
  background: #eab308;
}

.browser-bar span:nth-child(3) {
  background: #22c55e;
}

.browser-bar em {
  flex: 1;
  margin-left: 16px;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: #fff;
  color: #7a8295;
  font-size: 12px;
  font-style: normal;
}

.mock-dashboard {
  padding: 34px;
}

.mock-header {
  width: 174px;
  height: 44px;
  margin-bottom: 28px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(62, 137, 247, 0.32),
    rgba(8, 6, 53, 0.13)
  );
}

.mock-line {
  height: 13px;
  margin-bottom: 13px;
  border-radius: 99px;
  background: #e6ebf5;
}

.mock-line.primary {
  width: 78%;
  background: rgba(62, 137, 247, 0.28);
}

.mock-line.short {
  width: 68%;
}

.mock-actions {
  display: flex;
  gap: 12px;
  padding-top: 18px;
}

.mock-actions span {
  width: 112px;
  height: 38px;
  border-radius: 9px;
  background: var(--primary);
}

.mock-actions span + span {
  width: 96px;
  background: #eef2f8;
}

.coming-soon {
  margin: 48px 0 0;
  padding: 28px;
  border: 1px dashed var(--border);
  border-radius: 12px;
  background: rgba(247, 249, 253, 0.75);
  color: var(--muted);
  text-align: center;
}

.hub-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}

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

.news-grid article {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
}

.news-image {
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(135deg, rgba(62, 137, 247, 0.25), rgba(7, 5, 53, 0.85)),
    url("/static/hero-bg.jpg") center/cover;
}

.news-grid span,
.news-grid h3,
.news-grid p {
  display: block;
  margin-right: 22px;
  margin-left: 22px;
}

.news-grid span {
  width: fit-content;
  margin-top: 20px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.news-grid h3 {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.28;
}

.news-grid p {
  margin-top: 10px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}
