.regiondo-mobile-cta {
  position: fixed;
  right: 12px;
  bottom: max(12px, env(safe-area-inset-bottom));
  left: 12px;
  z-index: 55;
  display: none;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 9px 12px 9px 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .72);
  border-radius: 20px;
  background: #ff4d12;
  color: #fff;
  box-shadow: 0 14px 32px rgba(21, 43, 75, .24);
  font-family: "Gabarito", sans-serif;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.regiondo-mobile-cta::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -35%;
  z-index: -1;
  width: 34%;
  background: rgba(255, 255, 255, .28);
  transform: skewX(-20deg) translateX(-180%);
  transition: transform .55s ease;
}

.regiondo-mobile-cta-copy {
  display: grid;
  gap: 1px;
}

.regiondo-mobile-cta small {
  color: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.regiondo-mobile-cta strong {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.08;
}

.regiondo-mobile-cta-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: #fff;
  color: #152b4b;
  font-size: 23px;
  font-weight: 900;
  line-height: 1;
  transition: transform .18s ease;
}

.regiondo-mobile-cta:hover,
.regiondo-mobile-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(21, 43, 75, .3);
}

.regiondo-mobile-cta:hover::before,
.regiondo-mobile-cta:focus-visible::before {
  transform: skewX(-20deg) translateX(520%);
}

.regiondo-mobile-cta:hover .regiondo-mobile-cta-icon,
.regiondo-mobile-cta:focus-visible .regiondo-mobile-cta-icon {
  transform: translateX(2px);
}

.regiondo-mobile-cta:active {
  transform: scale(.985);
}

@media (max-width: 700px) {
  body.regiondo-product-page {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  body.regiondo-product-page .regiondo-mobile-cta {
    display: flex;
  }

  body.nav-open .regiondo-mobile-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }

  body.regiondo-footer-visible .regiondo-mobile-cta {
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .regiondo-mobile-cta,
  .regiondo-mobile-cta::before,
  .regiondo-mobile-cta-icon {
    transition: none;
  }
}
