.detail-home {
  position: fixed;
  z-index: 8;
  left: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 44px;
  padding: 0 16px;
  color: var(--navy);
  border: 1px solid rgba(6, 26, 44, .32);
  background: rgba(245, 247, 246, .86);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background .25s ease, border-color .25s ease;
}

.detail-home span {
  color: var(--blue);
  font-size: 19px;
  line-height: 1;
  transition: transform .25s ease;
}

.detail-home:hover,
.detail-home:focus-visible {
  background: #fff;
  border-color: var(--blue);
  outline: 2px solid transparent;
}

.detail-home:hover span,
.detail-home:focus-visible span {
  transform: translateX(-4px);
}

@media (max-width: 720px) {
  .detail-home {
    left: 14px;
    bottom: 14px;
    height: 42px;
    padding: 0 14px;
  }
}

.detail-coming-soon {
  position: absolute !important;
  z-index: 2 !important;
  right: clamp(24px, 8vw, 140px);
  bottom: clamp(42px, 8vh, 90px);
  margin: 0 !important;
  padding: 16px 20px;
  color: var(--navy) !important;
  border-left: 4px solid var(--ice);
  background: rgba(255, 255, 255, .72);
  font-size: clamp(18px, 1.5vw, 24px) !important;
  font-weight: 700;
  letter-spacing: .08em;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

@media (max-width: 720px) {
  .detail-coming-soon {
    position: relative !important;
    right: auto;
    bottom: auto;
    display: inline-block;
    margin-top: 38px !important;
  }
}
