/* ============================================================
   Página 4 — Oferta (foco total em conversão)
   ============================================================ */

/* ---- Hero / oferta ---- */
.ohero {
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 84px 20px 28px;
  background:
    radial-gradient(ellipse 420px 260px at 100% 0%, rgba(255, 138, 0, 0.12), transparent 65%),
    var(--bg);
}

.ohero__inner {
  width: 100%;
}

.ohero__kicker {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-faint);
  margin-bottom: 8px;
}

.ohero__title {
  font-size: clamp(1.6rem, 6.4cqw + 0.6rem, 2.05rem);
  line-height: 1.14;
  color: var(--ink);
}

.ohero__title-sub {
  display: block;
  font-size: clamp(1.1rem, 3.6cqw + 0.5rem, 1.35rem);
  font-weight: 500;
  color: var(--ocean-700);
  margin-top: 2px;
}

.ohero__subtitle {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.ohero__bullets {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ohero__bullets li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 10px;
  line-height: 1.25;
}

.ohero__bullets svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--ocean-500);
}

.ohero__price {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
}

.ohero__price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.ohero__price-currency {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.ohero__price-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 9cqw + 0.4rem, 2.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ohero__price-tag {
  margin-top: 2px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
}

.ohero__price-note {
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--ink-faint);
}

.ohero__price-pix {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ocean-900);
  background: linear-gradient(135deg, #7ee8fa, #22d3ee);
  padding: 5px 13px;
  border-radius: 999px;
}

.ohero__actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ---- Sticky CTA mobile ---- */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 480px;
  margin: 0 auto;
  z-index: 95;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -16px rgba(11, 27, 43, 0.25);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta__price {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.sticky-cta__price span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-faint);
}

.sticky-cta .btn {
  flex-shrink: 0;
  padding: 11px 18px;
  font-size: 14px;
}

/* ============================================================
   Desktop-frame — um pouco mais de respiro, sem exagero
   ============================================================ */
@container frame (min-width: 400px) {
  .ohero { padding: 92px 24px 32px; }
}

/* Telas baixas — aperta a hero para os dois CTAs caberem sem scroll */
@media (max-height: 700px) {
  .ohero { padding: 78px 20px 20px; }
  .ohero__kicker { display: none; }
  .ohero__subtitle { margin-top: 8px; }
  .ohero__bullets { margin-top: 10px; gap: 6px; }
  .ohero__bullets li { padding: 6px 9px; }
  .ohero__price { margin-top: 12px; padding: 10px 16px; }
  .ohero__price-pix { margin-top: 6px; }
  .ohero__actions { margin-top: 10px; gap: 8px; }
}
