/* FactoryInformática - FactoryOficina cross-sell reminder */
.fi-office-reminder {
  --fi-office-blue: #1463ff;
  --fi-office-blue-hover: #0f52d9;
  --fi-office-navy: #111d2d;
  display: grid;
  grid-template-columns: minmax(220px, 30%) minmax(0, 1fr);
  overflow: hidden;
  margin: 28px 0;
  border: 1px solid #e2e7ee;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 28px rgba(17, 29, 45, .07);
}

.fi-office-reminder__media {
  min-height: 190px;
  background: #eef2f6;
}

.fi-office-reminder__media picture,
.fi-office-reminder__media img {
  display: block;
  width: 100%;
  height: 100%;
}

.fi-office-reminder__media img {
  object-fit: cover;
  object-position: center;
}

.fi-office-reminder__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  padding: 24px 28px;
}

.fi-office-reminder__kicker {
  margin-bottom: 6px;
  color: var(--fi-office-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.fi-office-reminder__title {
  margin: 0 0 8px;
  color: var(--fi-office-navy);
  font: 800 clamp(19px, 2vw, 25px)/1.15 Manrope, Arial, sans-serif;
}

.fi-office-reminder__text {
  max-width: 680px;
  margin: 0 0 16px;
  color: #596573;
  font-size: 14px;
  line-height: 1.5;
}

.fi-office-reminder__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--fi-office-blue);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background-color .18s ease, transform .18s ease;
}

.fi-office-reminder__cta:hover {
  background: var(--fi-office-blue-hover);
  transform: translateY(-1px);
}

.fi-office-reminder--checkout {
  margin-top: 24px;
  margin-bottom: 8px;
}

.fi-office-reminder--confirmation {
  margin-top: 24px;
}

.fi-office-reminder-wrap--checkout {
  padding-bottom: 8px;
}

@media (max-width: 767.98px) {
  .fi-office-reminder {
    grid-template-columns: 1fr;
    margin: 20px 0;
    border-radius: 15px;
  }

  .fi-office-reminder__media {
    min-height: 0;
    height: 150px;
  }

  .fi-office-reminder__content {
    padding: 18px;
  }

  .fi-office-reminder__title {
    font-size: 19px;
  }

  .fi-office-reminder__text {
    margin-bottom: 14px;
    font-size: 13px;
  }

  .fi-office-reminder__cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fi-office-reminder__cta {
    transition: none;
  }
}
