:root {
  --bg: #140f0c;
  --bg-elev: #1c1510;
  --bg-soft: #241c15;
  --line: rgba(232, 197, 71, 0.14);
  --text: #f4ead7;
  --muted: #b8a68c;
  --gold: #e8c547;
  --gold-deep: #c49a1a;
  --gold-soft: rgba(232, 197, 71, 0.12);
  --leather: #6b3f24;
  --danger: #e07a5f;
  --ok: #7cb87c;
  --radius: 14px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
  --script: "Great Vibes", cursive;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(107, 63, 36, 0.35), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(232, 197, 71, 0.08), transparent 50%),
    linear-gradient(180deg, #100c09 0%, var(--bg) 40%, #0d0a08 100%);
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 1.25rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 1.25rem, 720px);
}

@media (min-width: 480px) {
  .container,
  .narrow {
    width: min(100% - 2rem, var(--max));
  }

  .narrow {
    width: min(100% - 2rem, 720px);
  }
}

/* Topbar / Header */
.topbar {
  background: linear-gradient(90deg, #2a1c12, #3a2818 50%, #2a1c12);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

.topbar__inner {
  display: flex;
  justify-content: center;
  gap: 0.5rem 0.85rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.25rem;
  text-align: center;
  line-height: 1.3;
}

.topbar__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
  align-self: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(20, 15, 12, 0.82);
  border-bottom: 1px solid var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
}

.brand__mark {
  font-family: var(--display);
  letter-spacing: 0.06em;
  font-size: 1.55rem;
  line-height: 1;
}

.brand__script {
  font-family: var(--script);
  color: var(--gold);
  font-size: 1.65rem;
  line-height: 0.8;
}

.nav {
  display: none;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--gold);
}

@media (min-width: 860px) {
  .nav {
    display: flex;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1208;
  box-shadow: 0 10px 28px rgba(232, 197, 71, 0.28);
}

.btn--primary:hover {
  box-shadow: 0 14px 34px rgba(232, 197, 71, 0.38);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
}

.btn--xl {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

.btn--block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  padding: 1.25rem 0 2.5rem;
  overflow: hidden;
}

.hero__atmosphere {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background:
    radial-gradient(circle at 70% 40%, rgba(232, 197, 71, 0.12), transparent 45%),
    radial-gradient(circle at 20% 60%, rgba(107, 63, 36, 0.35), transparent 40%);
  pointer-events: none;
  animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(18px) scale(1.04); }
}

.hero__grid {
  position: relative;
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 920px) {
  .hero {
    padding: 2rem 0 3.5rem;
  }

  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 3rem;
  }
}

.gallery__stage {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0806;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 4;
  max-height: min(72vh, 560px);
  margin-inline: auto;
}

@media (min-width: 920px) {
  .gallery__stage {
    border-radius: 18px;
    aspect-ratio: 4 / 5;
    max-height: none;
  }
}

.gallery__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: fadeIn 0.6s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(1.02); }
  to { opacity: 1; transform: scale(1); }
}

.gallery__badge {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  background: var(--gold);
  color: #1a1208;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

/* Buy box */
.buybox__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.buybox__title {
  margin: 0;
  line-height: 0.9;
}

.buybox__title-main {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.1rem, 9vw, 4.2rem);
  letter-spacing: 0.04em;
}

.buybox__title-script {
  display: block;
  font-family: var(--script);
  color: var(--gold);
  font-size: clamp(2rem, 8vw, 3.6rem);
  margin-top: -0.15em;
  margin-left: 0.1em;
}

.buybox__subtitle {
  margin: 0.85rem 0 1.1rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 3.5vw, 1.05rem);
  max-width: 36ch;
}

.rating-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.rating-row a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.stars--sm {
  font-size: 0.85rem;
}

.price-block {
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1rem;
}

.price-block__label {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pack-options {
  display: grid;
  gap: 0.65rem;
}

.pack-option {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 0.85rem;
  align-items: center;
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.pack-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pack-option.is-selected {
  border-color: rgba(232, 197, 71, 0.7);
  background: var(--gold-soft);
  box-shadow: 0 0 0 1px rgba(232, 197, 71, 0.25);
}

.pack-option__badge {
  position: absolute;
  top: -0.55rem;
  right: 0.85rem;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #e07a5f, #d4522f);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pack-option__title {
  display: block;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text);
}

.pack-option__desc {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.pack-option__price {
  text-align: right;
}

.pack-option__was {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  text-decoration: line-through;
}

.pack-option__price strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.pack-option--gift {
  grid-template-columns: 1fr auto;
  align-items: start;
  row-gap: 0.7rem;
  animation: packGiftPulse 2.2s ease-in-out infinite;
}

@keyframes packGiftPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(232, 197, 71, 0);
  }
  50% {
    transform: scale(1.015);
    box-shadow: 0 0 0 3px rgba(232, 197, 71, 0.22), 0 8px 22px rgba(232, 197, 71, 0.12);
  }
}

.pack-option__gift {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(232, 197, 71, 0.35);
}

.pack-option__gift img {
  width: 72px;
  height: 56px;
  object-fit: contain;
  object-position: center;
  background: #111;
  border-radius: 8px;
  flex-shrink: 0;
}

.pack-option__gift-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.86rem;
  line-height: 1.3;
  color: var(--text);
}

.pack-option__gift-copy strong {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pack-option__gift-copy small {
  color: var(--muted);
  font-size: 0.78rem;
}

.price-block__was {
  color: var(--muted);
  font-size: 0.92rem;
}

.price-block__now {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  margin: 0.15rem 0;
}

.price-block__currency {
  font-size: 1.2rem;
  margin-top: 0.55rem;
  font-weight: 600;
}

.price-block__value {
  font-family: var(--display);
  font-size: clamp(3.2rem, 14vw, 4rem);
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.price-block__cents {
  font-family: var(--display);
  font-size: 1.8rem;
  margin-top: 0.35rem;
}

.price-block__pix,
.price-block__parcel {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.price-block__pix strong {
  color: var(--ok);
}

.urgency {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  background: rgba(224, 122, 95, 0.1);
  border: 1px solid rgba(224, 122, 95, 0.28);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
}

.urgency p {
  margin: 0;
}

.urgency__pulse {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 0 rgba(224, 122, 95, 0.6);
  animation: pulse 1.6s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  70% { box-shadow: 0 0 0 12px rgba(224, 122, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 122, 95, 0); }
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.trust-chips li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.7rem;
  background: var(--gold-soft);
}

.buy-form {
  display: grid;
  gap: 0.85rem;
}

.qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.qty__control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--bg-elev);
}

.qty__btn {
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.qty__btn:hover {
  color: var(--gold);
}

.qty input {
  width: 42px;
  text-align: center;
  border: 0;
  background: transparent;
  color: var(--text);
  -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.secure-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0.85rem 0 0;
}

.secure-note--center {
  justify-content: center;
  text-align: center;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section__head {
  text-align: center;
  margin-bottom: 2.2rem;
}

.section__head h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.section__head p {
  margin: 0;
  color: var(--muted);
}

.benefits {
  background: linear-gradient(180deg, transparent, rgba(36, 28, 21, 0.55), transparent);
}

.benefits__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 980px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.benefit {
  padding: 1.35rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(28, 21, 16, 0.7);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.benefit:hover {
  border-color: rgba(232, 197, 71, 0.4);
  transform: translateY(-3px);
}

.benefit__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold);
  margin-bottom: 0.9rem;
  font-size: 1.1rem;
}

.benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.benefit p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.highlight {
  padding-top: 1rem;
}

.highlight__inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(107, 63, 36, 0.28), rgba(20, 15, 12, 0.2)),
    var(--bg-elev);
  overflow: hidden;
}

@media (min-width: 900px) {
  .highlight__inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 2.5rem;
  }
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.highlight__copy h2 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  letter-spacing: 0.03em;
  font-weight: 400;
  line-height: 1;
}

.highlight__copy > p {
  color: var(--muted);
  max-width: 42ch;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.5rem;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  color: var(--text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.highlight__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  max-height: 480px;
}

.highlight__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 50%;
  animation: floaty 7s ease-in-out infinite alternate;
}

@keyframes floaty {
  from { transform: scale(1.02) translateY(0); }
  to { transform: scale(1.06) translateY(-8px); }
}

/* Reviews */
.reviews__summary {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
}

@media (min-width: 640px) {
  .reviews__summary {
    grid-template-columns: auto 1fr;
  }
}

.reviews__score {
  text-align: center;
  padding: 0 1rem;
}

.reviews__big {
  display: block;
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold);
}

.reviews__bars {
  display: grid;
  gap: 0.45rem;
}

.bar {
  display: grid;
  grid-template-columns: 1.2rem 1fr;
  gap: 0.6rem;
  align-items: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.bar i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.bar i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w);
  background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  border-radius: inherit;
}

.reviews__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 760px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1040px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review {
  padding: 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(28, 21, 16, 0.75);
}

.review__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem 0.75rem;
  align-items: center;
  margin-bottom: 0.85rem;
}

.review__tag {
  grid-column: 2;
  justify-self: start;
  font-size: 0.7rem;
  color: var(--ok);
  border: 1px solid rgba(124, 184, 124, 0.35);
  border-radius: 999px;
  padding: 0.25rem 0.5rem;
  white-space: nowrap;
}

@media (min-width: 420px) {
  .review__head {
    grid-template-columns: auto 1fr auto;
  }

  .review__tag {
    grid-column: auto;
    justify-self: auto;
  }
}

.review p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.review__photos {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.9rem;
}

.review__photo {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  background-size: cover;
  border: 1px solid var(--line);
}

/* FAQ */
.faq__list {
  display: grid;
  gap: 0.7rem;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elev);
  padding: 0.2rem 1rem;
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1rem 0;
  font-weight: 600;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.cta-final {
  padding: 4rem 0 5.5rem;
}

.cta-final__inner {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(232, 197, 71, 0.28);
  background:
    radial-gradient(600px 200px at 50% 0%, rgba(232, 197, 71, 0.16), transparent 60%),
    var(--bg-elev);
}

.cta-final h2 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.cta-final p {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 6rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer__inner {
  display: grid;
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.site-footer__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer__links a:hover {
  color: var(--gold);
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.85rem;
  background: var(--c, #6b3f24);
  color: #fff;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(20, 15, 12, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

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

.sticky-cta .btn {
  flex-shrink: 0;
  min-height: 44px;
  padding-inline: 1.1rem;
}

.sticky-cta__info {
  display: grid;
  font-size: 0.82rem;
  min-width: 0;
}

.sticky-cta__info strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-cta__info span {
  color: var(--muted);
}

@media (min-width: 920px) {
  .sticky-cta {
    display: none;
  }
}

/* Checkout */
.checkout-page .site-footer {
  display: none;
}

.checkout-steps {
  display: none;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.checkout-steps .is-active {
  color: var(--gold);
  font-weight: 600;
}

.lock-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ok);
  font-size: 0.85rem;
}

@media (min-width: 800px) {
  .checkout-steps {
    display: flex;
  }
}

.checkout {
  padding: 2rem 0 4rem;
}

.checkout__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 960px) {
  .checkout__grid {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: start;
  }
}

.panel {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.35rem;
  margin-bottom: 1rem;
}

.panel__head h1,
.panel__head h2 {
  margin: 0 0 0.25rem;
  font-size: 1.35rem;
}

.panel__head p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.fields {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .fields {
    grid-template-columns: 1fr 1fr;
  }
  .field--full {
    grid-column: 1 / -1;
  }
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field span {
  font-size: 0.85rem;
  color: var(--muted);
}

.cep-status {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--muted);
  min-height: 1.1em;
}

.cep-status.is-loading {
  color: var(--gold);
}

.cep-status.is-ok {
  color: var(--ok);
}

.cep-status.is-error {
  color: var(--danger);
}

.field--align-end {
  display: flex;
  align-items: end;
}

.field input,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #120e0b;
  color: var(--text);
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--gold);
}

.field input.is-invalid,
.field select.is-invalid {
  border-color: var(--danger);
}

.shipping {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.6rem;
}

.shipping[hidden] {
  display: none !important;
}

.shipping h3 {
  margin: 0 0 0.2rem;
  font-size: 1rem;
}

.ship-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  cursor: pointer;
  background: #120e0b;
}

.ship-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.ship-option__body {
  display: grid;
}

.ship-option__body small {
  color: var(--muted);
}

.ship-option__price {
  font-weight: 700;
  color: var(--gold);
}

.pay-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pay-tab {
  border: 1px solid var(--line);
  background: #120e0b;
  color: var(--muted);
  border-radius: 12px;
  padding: 0.8rem;
  cursor: pointer;
  font-weight: 600;
}

.pay-tab.is-active {
  color: #1a1208;
  background: var(--gold);
  border-color: var(--gold);
}

.pix-box {
  border: 1px dashed rgba(232, 197, 71, 0.35);
  border-radius: 14px;
  padding: 1rem;
  background: rgba(232, 197, 71, 0.05);
}

.pix-box__badge {
  display: inline-block;
  background: var(--ok);
  color: #0f1a0f;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.6rem;
}

.pix-box p {
  margin: 0 0 0.8rem;
  color: var(--muted);
}

.panel--bump {
  padding: 0;
  overflow: hidden;
  border-color: rgba(232, 197, 71, 0.35);
  background: linear-gradient(180deg, rgba(232, 197, 71, 0.08), rgba(18, 14, 11, 0.2));
}

.order-bump {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.45rem 0.7rem;
  padding: 0.75rem 0.85rem;
  cursor: pointer;
  position: relative;
}

.order-bump > input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.order-bump__badge {
  grid-column: 1 / -1;
  justify-self: start;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1208;
  background: var(--gold);
  border-radius: 999px;
  padding: 0.15rem 0.45rem;
}

.order-bump__check {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.1rem;
  border-radius: 5px;
  border: 2px solid var(--line);
  background: #120e0b;
  position: relative;
  flex-shrink: 0;
}

.order-bump__check::after {
  content: "";
  position: absolute;
  inset: 0.18rem;
  border-radius: 2px;
  background: var(--gold);
  transform: scale(0);
  transition: transform 0.15s ease;
}

.order-bump > input:checked ~ .order-bump__check {
  border-color: var(--gold);
}

.order-bump > input:checked ~ .order-bump__check::after {
  transform: scale(1);
}

.order-bump > input:focus-visible ~ .order-bump__check {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.order-bump__body {
  min-width: 0;
}

.order-bump__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.55rem;
  margin-bottom: 0.2rem;
}

.order-bump__head strong {
  font-size: 0.92rem;
  line-height: 1.25;
}

.order-bump__price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  text-align: right;
}

.order-bump__price-old {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  text-decoration: line-through;
}

.order-bump--featured .order-bump__badge {
  background: #e07a5f;
  color: #fff;
}

.panel--bump-extra {
  border-color: rgba(224, 122, 95, 0.45);
  background: linear-gradient(180deg, rgba(224, 122, 95, 0.1), rgba(18, 14, 11, 0.2));
}

.order-bump-lead {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.order-bump__lead {
  margin: 0 0 0.4rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.order-bump__tags {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}

.order-bump__tags li {
  flex: 1 1 0;
  min-width: 0;
  font-size: 0.65rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.12rem 0.28rem;
  line-height: 1.25;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-bump:has(> input:checked) {
  background: rgba(232, 197, 71, 0.06);
}

.order-bump--media .order-bump__media-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.order-bump__img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 10px;
  background: #111;
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.order-bump__media-copy {
  min-width: 0;
  flex: 1;
}

.order-bump--media .order-bump__lead {
  margin-bottom: 0;
}

.panel--bump-radio {
  border-color: rgba(232, 197, 71, 0.45);
}

.order-summary {
  position: relative;
}

.order-summary__card {
  position: sticky;
  top: 5.5rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--bg-elev);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.order-summary__card h2 {
  margin: 0 0 1rem;
  font-size: 1.2rem;
}

.order-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.8rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.order-item[hidden],
#summaryGift[hidden] {
  display: none !important;
}

.order-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.order-item p {
  margin: 0.15rem 0 0.45rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.order-item--gift {
  margin-top: 0.85rem;
  padding-top: 0.15rem;
  border-bottom: 0;
  padding-bottom: 0.85rem;
}

.order-item--gift img {
  object-fit: contain;
  background: #111;
}

.order-item--gift > span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.order-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.order-item__qty .qty__btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.order-lines {
  display: grid;
  gap: 0.55rem;
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.order-lines > div,
.order-total {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.order-lines .is-discount strong {
  color: var(--ok);
}

.order-total {
  padding-top: 0.85rem;
  border-top: 1px solid var(--line);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.order-total strong {
  color: var(--gold);
  font-size: 1.4rem;
}

.order-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.order-perks li {
  padding: 0.3rem 0 0.3rem 1.2rem;
  position: relative;
}

.order-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal__dialog {
  position: relative;
  width: min(100%, 420px);
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  animation: fadeIn 0.35s ease;
}

.modal__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(124, 184, 124, 0.18);
  color: var(--ok);
  font-size: 1.6rem;
  font-weight: 700;
}

.modal__dialog h2 {
  margin: 0 0 0.5rem;
}

.modal__dialog p {
  color: var(--muted);
  margin: 0 0 0.8rem;
}

.modal__order {
  margin-bottom: 1.2rem !important;
  color: var(--text) !important;
}

/* —— Pix page —— */
.pix-page {
  padding: 1.5rem 0 3rem;
}

.pix-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem 1.25rem 1.75rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.pix-card h1 {
  margin: 0.5rem 0 0.35rem;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.pix-card__lead {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

.pix-card__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(232, 197, 71, 0.12);
  border: 1px solid rgba(232, 197, 71, 0.3);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
}

.pix-card__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.6s infinite;
}

.pix-card__amount {
  display: grid;
  gap: 0.15rem;
  margin-bottom: 0.35rem;
}

.pix-card__amount span {
  color: var(--muted);
  font-size: 0.9rem;
}

.pix-card__amount strong {
  font-family: var(--display);
  font-size: clamp(2.4rem, 10vw, 3.4rem);
  color: var(--gold);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.pix-card__product {
  color: var(--muted);
  margin: 0 0 0.35rem;
}

.pix-card__bump {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
}

.pix-card__order {
  margin: 0.15rem 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.pix-qr {
  margin: 1.25rem 0;
}

.pix-qr__frame {
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin: 0 auto 0.75rem;
  padding: 0.75rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.pix-card__status.is-paid {
  background: rgba(124, 184, 124, 0.15);
  border-color: rgba(124, 184, 124, 0.4);
  color: var(--ok);
}

.pix-qr__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pix-qr__fallback {
  margin: 0;
  padding: 2rem 1rem;
  color: #666;
  font-size: 0.9rem;
}

.pix-qr p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.pix-copy {
  text-align: left;
  margin: 1.25rem 0;
}

.pix-copy label {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.pix-copy textarea {
  width: 100%;
  resize: none;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #120e0b;
  color: var(--text);
  padding: 0.9rem;
  font-size: 0.78rem;
  line-height: 1.45;
  margin-bottom: 0.75rem;
  word-break: break-all;
  -webkit-user-select: all;
  user-select: all;
  cursor: pointer;
  touch-action: manipulation;
}

.pix-copy__feedback.is-error {
  color: var(--warn, #e8a838);
}

.pix-copy__feedback {
  text-align: center;
  color: var(--ok);
  font-weight: 600;
  margin: 0.6rem 0 0;
}

.pix-steps {
  text-align: left;
  margin: 0 0 1.25rem;
  padding: 1rem 1rem 1rem 2rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(18, 14, 11, 0.65);
  color: var(--muted);
}

.pix-steps li {
  margin: 0.45rem 0;
}

.pix-steps strong {
  color: var(--text);
}

.pix-timer {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.pix-timer strong {
  color: var(--danger);
}

/* —— Upsell —— */
.topbar--success {
  background: linear-gradient(90deg, #1a2a1a, #243824 50%, #1a2a1a);
  color: var(--ok);
}

.upsell {
  padding: 1.5rem 0 3rem;
}

.upsell-thanks {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.75rem;
  padding: 1.25rem 1.1rem 1.4rem;
  border-radius: 18px;
  border: 1px solid rgba(124, 184, 124, 0.35);
  background: linear-gradient(180deg, rgba(124, 184, 124, 0.12), rgba(18, 14, 11, 0.25));
}

.upsell-thanks__eyebrow {
  margin: 0 0 0.4rem;
  color: var(--ok);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.upsell-thanks h1 {
  margin: 0 0 0.55rem;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 7vw, 2.8rem);
  letter-spacing: 0.03em;
  font-weight: 400;
}

.upsell-thanks__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.upsell-offer {
  margin-top: 0.5rem;
}

.upsell__skip {
  display: block;
  margin-top: 0.95rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.upsell__skip:hover {
  color: var(--text);
}

.upsell__grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .upsell__grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2.5rem;
  }
}

.upsell__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upsell__media img {
  width: 100%;
  max-width: 440px;
  max-height: 380px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  padding: 0.75rem;
}

.upsell-carousel__viewport {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
}

.upsell-carousel__track {
  display: flex;
  height: 100%;
  transition: transform 0.35s ease;
  will-change: transform;
}

.upsell-carousel__slide {
  flex: 0 0 100%;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.upsell-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.upsell-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 14, 11, 0.72);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.upsell-carousel__nav--prev {
  left: 0.65rem;
}

.upsell-carousel__nav--next {
  right: 0.65rem;
}

.upsell-carousel__nav:hover {
  background: rgba(18, 14, 11, 0.9);
}

.upsell-carousel__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 2;
}

.upsell-carousel__dots button {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(18, 14, 11, 0.28);
  cursor: pointer;
}

.upsell-carousel__dots button.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.upsell__badge {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, #ff3b3b, #e8a317, #ff3b3b);
  background-size: 200% 100%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 2px rgba(255, 59, 59, 0.25), 0 10px 28px rgba(232, 163, 23, 0.45);
  animation: upsellBadgePulse 1.2s ease-in-out infinite;
}

.upsell__badge--top {
  display: none;
}

@media (max-width: 899px) {
  .upsell__badge--top {
    display: inline-block;
    justify-self: center;
    margin: 0 auto 0.55rem;
    text-align: center;
  }

  .upsell__badge--inline {
    display: none;
  }
}

.upsell__kicker {
  margin: 0 0 0.35rem;
  color: var(--gold);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
}

.upsell__title-main {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 9vw, 3.8rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.upsell__title-sub {
  display: block;
  font-family: var(--font);
  color: var(--gold);
  font-size: clamp(1.05rem, 3.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.35;
  margin-top: 0.35em;
}

.upsell__copy h2 {
  margin: 0 0 1rem;
}

.upsell__hook {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
  max-width: 42ch;
}

.upsell__ship {
  margin: 0 0 1.1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  background: var(--gold-soft);
  border: 1px solid rgba(232, 197, 71, 0.28);
  color: var(--text);
  font-size: 0.98rem;
}

.upsell__perks {
  list-style: none;
  padding: 0;
  margin: 0 0 0.95rem;
}

.upsell__perks li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.5rem;
  color: var(--muted);
}

.upsell__perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

.upsell__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
}

.upsell__specs span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.32rem 0.65rem;
}

.upsell__price {
  margin-bottom: 1.1rem;
}

.upsell__was {
  display: block;
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.95rem;
}

.upsell__now {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  color: var(--gold);
}

.upsell__now-label {
  display: block;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--danger);
  animation: upsellMediaPulse 1.6s ease-in-out infinite;
  transform-origin: left center;
}

.upsell__now-value {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  animation: upsellMediaPulse 1.6s ease-in-out infinite;
  transform-origin: left center;
}

.upsell__now-value span {
  font-size: 1.2rem;
  margin-top: 0.55rem;
  font-weight: 600;
}

.upsell__now-value strong {
  font-family: var(--display);
  font-size: clamp(3.2rem, 12vw, 4.2rem);
  line-height: 0.9;
  font-weight: 400;
}

.upsell__now-value small {
  font-family: var(--display);
  font-size: 1.6rem;
  margin-top: 0.4rem;
}

.upsell__price > p {
  margin: 0.35rem 0 0;
  color: var(--danger);
  font-size: 0.9rem;
  font-weight: 600;
}

.upsell__cta {
  animation: upsellPulse 1.6s ease-in-out infinite;
  letter-spacing: 0.03em;
  font-weight: 800;
}

.upsell__cta:disabled {
  animation: none;
}

@keyframes upsellPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(232, 197, 71, 0.45);
  }
  50% {
    transform: scale(1.03);
    box-shadow: 0 0 0 12px rgba(232, 197, 71, 0);
  }
}

@keyframes upsellMediaPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes upsellBadgePulse {
  0%,
  100% {
    transform: scale(1);
    background-position: 0% 50%;
    box-shadow: 0 0 0 2px rgba(255, 59, 59, 0.25), 0 10px 28px rgba(232, 163, 23, 0.45);
  }
  50% {
    transform: scale(1.08);
    background-position: 100% 50%;
    box-shadow: 0 0 0 8px rgba(255, 59, 59, 0), 0 14px 36px rgba(255, 59, 59, 0.55);
  }
}

@media (prefers-reduced-motion: reduce) {
  .upsell__cta,
  .upsell__badge,
  .upsell__now-label,
  .upsell__now-value,
  .pack-option--gift {
    animation: none;
  }
}

@media (max-width: 899px) {
  .upsell {
    padding: 1rem 0 2.5rem;
  }

  .upsell-thanks {
    margin-bottom: 1.1rem;
    padding: 1rem 0.95rem 1.1rem;
    border-radius: 14px;
  }

  .upsell-thanks h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .upsell-thanks__lead {
    font-size: 0.9rem;
  }

  .upsell__grid {
    gap: 0.95rem;
  }

  .upsell__media {
    border-radius: 14px;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }

  .upsell__media img {
    max-width: 300px;
    max-height: 280px;
    padding: 0.35rem;
  }

  .upsell-carousel__viewport {
    aspect-ratio: auto;
    max-height: none;
    height: auto;
    background: transparent;
    border-radius: 14px;
    overflow: hidden;
  }

  .upsell-carousel__track {
    height: auto;
    align-items: flex-start;
  }

  .upsell-carousel__slide {
    height: auto;
    background: transparent;
    align-items: flex-start;
  }

  .upsell-carousel__slide img {
    width: 100%;
    height: auto;
    object-fit: initial;
    display: block;
    border-radius: 14px;
  }

  .upsell-carousel__nav {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.3rem;
  }

  .upsell-carousel__dots {
    bottom: 0.55rem;
  }

  .upsell__kicker {
    font-size: 0.88rem;
  }

  .upsell__copy {
    display: flex;
    flex-direction: column;
  }

  .upsell__copy > .upsell__badge {
    order: 1;
  }

  .upsell__copy > .upsell__kicker {
    order: 2;
    text-align: center;
  }

  .upsell__copy > h2 {
    order: 3;
    text-align: center;
  }

  .upsell__copy > .upsell__hook {
    order: 4;
  }

  .upsell__copy > .upsell__ship {
    order: 5;
  }

  .upsell__copy > .upsell__price {
    order: 6;
    margin-top: 0.15rem;
    text-align: center;
  }

  .upsell__copy > .upsell__cta {
    order: 7;
  }

  .upsell__copy > .upsell__perks {
    order: 8;
  }

  .upsell__copy > .upsell__specs {
    order: 9;
  }

  .upsell__copy > .upsell__skip {
    order: 10;
  }

  .upsell__hook,
  .upsell__ship,
  .upsell__perks li {
    font-size: 0.92rem;
  }

  .upsell__now-value strong {
    font-size: clamp(2.9rem, 16vw, 3.7rem);
  }

  .upsell__price > p {
    text-align: center;
  }

  .upsell__now {
    align-items: center;
  }

  .upsell__now-label,
  .upsell__now-value {
    transform-origin: center center;
  }

  .upsell__skip {
    margin-top: 0.85rem;
    padding-bottom: 0.35rem;
    font-size: 0.86rem;
  }
}

/* —— Obrigado —— */
.thanks {
  padding: 2rem 0 3.5rem;
}

.thanks-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.35rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.thanks-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(124, 184, 124, 0.18);
  color: var(--ok);
  font-size: 1.8rem;
  font-weight: 700;
}

.thanks-card h1 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: 0.04em;
  font-weight: 400;
}

.thanks-card__lead {
  margin: 0 0 1.4rem;
  color: var(--muted);
}

.thanks-summary {
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  margin-bottom: 1.25rem;
  background: #120e0b;
}

.thanks-order {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.thanks-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  color: var(--muted);
}

.thanks-row--total {
  border-top: 1px solid var(--line);
  margin-top: 0.4rem;
  padding-top: 0.75rem;
  color: var(--text);
  font-size: 1.05rem;
}

.thanks-row--total strong {
  color: var(--gold);
}

.thanks-card .check-list {
  text-align: left;
  display: inline-block;
  margin: 0 auto 1.5rem;
}

/* —— Mobile polish —— */
@media (max-width: 919px) {
  .site-header__inner {
    padding: 0.7rem 0;
    gap: 0.6rem;
  }

  .brand__mark {
    font-size: 1.35rem;
  }

  .brand__script {
    font-size: 1.4rem;
  }

  .site-header .btn--sm {
    padding: 0.45rem 0.8rem;
    font-size: 0.82rem;
    min-height: 40px;
  }

  .topbar {
    font-size: 0.72rem;
  }

  .topbar__dot {
    display: none;
  }

  .rating-row {
    font-size: 0.85rem;
    gap: 0.35rem 0.5rem;
  }

  .urgency {
    font-size: 0.86rem;
  }

  .trust-chips li {
    font-size: 0.7rem;
    padding: 0.35rem 0.6rem;
  }

  .btn--xl {
    min-height: 52px;
    font-size: 1rem;
    padding: 0.9rem 1.1rem;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section__head {
    margin-bottom: 1.5rem;
  }

  .section__head h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .highlight__inner {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .highlight__media {
    max-height: 360px;
  }

  .cta-final {
    padding: 2.5rem 0 6.5rem;
  }

  .cta-final__inner {
    padding: 1.75rem 1.1rem;
    border-radius: 18px;
  }

  .site-footer {
    padding: 1.75rem 0 7rem;
  }

  .reviews__big {
    font-size: 3.2rem;
  }

  .reviews__summary {
    padding: 1.1rem;
  }
}

@media (max-width: 640px) {
  .qty {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
  }

  .qty__control {
    justify-content: space-between;
    width: 100%;
  }

  .qty__control input {
    flex: 1;
  }

  .qty__btn {
    width: 48px;
    height: 48px;
  }

  .lock-badge {
    font-size: 0.75rem;
  }

  .lock-badge span,
  .site-header--checkout .lock-badge {
    max-width: 9.5rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .checkout {
    padding: 1.25rem 0 3rem;
  }

  .panel {
    padding: 1.1rem;
    border-radius: 14px;
  }

  .order-bump {
    padding: 0.7rem 0.8rem;
    gap: 0.4rem 0.65rem;
  }

  .order-bump__head {
    flex-direction: row;
    align-items: baseline;
  }

  .order-bump__head strong {
    font-size: 0.88rem;
  }

  .order-bump__tags {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
  }

  .order-bump__tags li {
    width: auto;
    text-align: center;
  }

  .order-item {
    grid-template-columns: 64px 1fr;
    gap: 0.7rem;
  }

  .order-item > span {
    grid-column: 2;
    justify-self: start;
    font-weight: 700;
    color: var(--gold);
  }

  .order-item img {
    width: 64px;
    height: 64px;
  }

  .order-summary__card {
    position: static;
    padding: 1.1rem;
  }

  .pay-tab {
    padding: 0.7rem 0.35rem;
    font-size: 0.88rem;
  }

  .ship-option {
    gap: 0.55rem;
    padding: 0.8rem;
  }

  .field input,
  .field select {
    font-size: 16px; /* evita zoom automático no iOS */
    min-height: 48px;
  }

  .modal__dialog {
    padding: 1.5rem 1.15rem;
    border-radius: 16px;
  }
}

@media (max-width: 380px) {
  .buybox__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .price-block__currency {
    font-size: 1rem;
  }

  .price-block__cents {
    font-size: 1.4rem;
  }

  .sticky-cta__info strong {
    font-size: 0.8rem;
  }
}
