/* Jozza Shop 2.0 — design system (paleta e fontes idênticas à versão original) */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@500;600;700&family=Karla:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --paper: #fbf6f3;
  --paper-card: #ffffff;
  --ink: #241a18;
  --ink-soft: #6b5850;
  --rose: #b8536f;
  --rose-deep: #7f3350;
  --rose-tint: #f5dee4;
  --gold: #b8823c;
  --gold-tint: #f3e6d0;
  --stone-100: #f1e9e4;
  --stone-300: #ddd0c8;
  --stone-600: #8c7a72;
  --good: #4f7a5a;
  --good-tint: #e2ece3;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Karla', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; -webkit-tap-highlight-color: rgba(0,0,0,0); }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-feature-settings: "cv11", "salt";
}
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--rose-tint); color: var(--rose-deep); }
.tabular { font-variant-numeric: tabular-nums; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header / Footer ---------- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; border-bottom: 1px solid var(--stone-300);
  background: var(--paper);
}
.site-header .logo { font-family: var(--font-display); font-weight: 700; font-size: 22px; }
.site-header .logo .dot { color: var(--rose-deep); }
.site-header nav { display: flex; align-items: center; gap: 16px; }
.pill-link {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em;
  text-transform: uppercase; background: var(--rose-tint); color: var(--rose-deep);
  padding: 8px 16px; border-radius: 999px; border: none; cursor: pointer;
  text-align: center; line-height: 1.3;
}
.pill-link-3d {
  background: linear-gradient(180deg, #fff2f5 0%, var(--rose-tint) 55%, #f0c3d1 100%);
  border: 1px solid rgba(127,51,80,0.16);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -2px 3px rgba(127,51,80,0.16),
    0 3px 0 rgba(127,51,80,0.28),
    0 8px 16px rgba(127,51,80,0.22);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.pill-link-3d:hover { transform: translateY(-1px); }
.pill-link-3d:active {
  transform: translateY(2px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.85),
    inset 0 -1px 2px rgba(127,51,80,0.16),
    0 1px 0 rgba(127,51,80,0.28),
    0 2px 6px rgba(127,51,80,0.18);
}
.pill-dot { opacity: 0.7; }
@media (max-width: 560px) {
  .pill-link { flex-direction: column; gap: 0; padding: 7px 16px; }
  .pill-dot { display: none; }
}
.cart-icon-link { display: flex; align-items: center; gap: 6px; font-size: 14px; }

.site-footer {
  border-top: 1px solid var(--stone-300); padding: 32px 0; margin-top: 48px;
}
.site-footer .container {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px;
}
.site-footer .logo { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.site-footer p { color: var(--ink-soft); font-size: 14px; margin: 2px 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 12px 24px; border-radius: 999px; border: 1px solid transparent;
  cursor: pointer; text-align: center;
}
.btn-primary { background: var(--rose-deep); color: #fff; transition: background-color 0.25s ease, transform 0.15s ease; }
.btn-primary:hover { background: var(--rose); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--stone-300); }
.btn-outline:hover { border-color: var(--rose-deep); }
.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* ---------- Feedback animations (adicionar ao carrinho) ---------- */
@keyframes btn-success-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.btn-primary.btn-success {
  background: var(--good) !important;
  animation: btn-success-pop 0.35s ease;
}
@keyframes cart-icon-pulse {
  0% { transform: scale(1); }
  30% { transform: scale(1.4) rotate(-6deg); }
  55% { transform: scale(1.15) rotate(4deg); }
  100% { transform: scale(1) rotate(0); }
}
.cart-icon-link.pulse svg { animation: cart-icon-pulse 0.6s ease; color: var(--good); }
.cart-icon-link.pulse [data-cart-count] {
  color: var(--good); font-weight: 700; transition: color 0.2s ease;
}
.cart-icon-link { transition: color 0.2s ease; }

/* ---------- Home / Categories ---------- */
.hero { padding: 48px 24px 16px; }
.hero .kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep); }
.hero h1 { font-size: 40px; font-weight: 700; margin: 12px 0; }
.hero p { color: var(--ink-soft); max-width: 520px; }

.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 24px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .category-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .category-grid { grid-template-columns: 1fr; } }

.category-card { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5; display: block; background: var(--stone-100); }
.category-card__cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.category-card__cover svg { width: 100%; height: 100%; }
.category-card__label {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 16px;
  background: linear-gradient(to top, rgba(36,26,24,0.75), transparent);
  color: #fff;
}
.category-card__label strong { font-family: var(--font-display); font-size: 18px; display: block; }
.category-card__label span { font-size: 13px; opacity: 0.85; }

/* ---------- Product grid ---------- */
.breadcrumb { padding: 24px 24px 0; max-width: 1200px; margin: 0 auto; }
.breadcrumb a { font-size: 14px; border: 1px solid var(--stone-300); border-radius: 999px; padding: 6px 14px; }
.page-title { padding: 16px 24px 0; max-width: 1200px; margin: 0 auto; }
.page-title h1 { font-size: 28px; }
.page-title p { color: var(--ink-soft); font-size: 14px; margin-top: 4px; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 24px; max-width: 1200px; margin: 0 auto; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }

.product-card { display: block; }
.product-card__cover-wrap { position: relative; border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; background: var(--stone-100); margin-bottom: 10px; }
.product-card__cover-wrap img, .product-card__cover-wrap svg { width: 100%; height: 100%; object-fit: cover; }
.product-card__name { font-size: 15px; font-weight: 600; margin-bottom: 2px; }
.product-card__price { font-family: var(--font-mono); color: var(--rose-deep); font-size: 14px; }
.product-card__price span { color: var(--ink-soft); font-weight: 400; }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; padding: 24px; align-items: start; max-width: 1200px; margin: 0 auto; }
@media (max-width: 860px) { .product-detail { grid-template-columns: 1fr; gap: 24px; } }

.product-gallery__main { border-radius: 14px; overflow: hidden; aspect-ratio: 4/5; max-width: 440px; margin: 0 auto; background: var(--stone-100); }
.product-gallery__main img, .product-gallery__main svg { width: 100%; height: 100%; object-fit: cover; }
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.product-thumbs button { padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; width: 64px; height: 80px; cursor: pointer; background: var(--stone-100); }
.product-thumbs button.active { border-color: var(--rose-deep); }
.product-thumbs img, .product-thumbs svg { width: 100%; height: 100%; object-fit: cover; }

.buybox h1 { font-size: 30px; margin-bottom: 20px; }
.field-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 8px; display: block; }
.option-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.option-btn {
  border: 1px solid var(--stone-300); border-radius: 999px; padding: 10px 18px;
  background: #fff; cursor: pointer; font-family: var(--font-body); font-size: 14px;
}
.option-btn.active { border-color: var(--rose-deep); background: var(--rose-tint); color: var(--rose-deep); font-weight: 600; }
.price-line { font-size: 26px; font-family: var(--font-mono); color: var(--rose-deep); margin: 12px 0 20px; }
.price-line .kit-label { font-size: 14px; color: var(--ink-soft); font-family: var(--font-body); }
.buybox .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Cart ---------- */
.cart-page { padding: 24px; display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px; align-items: start; max-width: 1200px; margin: 0 auto; }
@media (max-width: 860px) { .cart-page { grid-template-columns: 1fr; } }
.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--stone-300); }
.cart-item__img { width: 72px; height: 88px; border-radius: 10px; overflow: hidden; background: var(--stone-100); flex-shrink: 0; }
.cart-item__img img, .cart-item__img svg { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; }
.cart-item__info strong { font-size: 15px; }
.cart-item__info p { font-size: 13px; color: var(--ink-soft); margin: 2px 0; }
.cart-item__price { font-family: var(--font-mono); font-weight: 600; }
.cart-item__remove { font-size: 12px; color: var(--rose-deep); background: none; border: none; cursor: pointer; padding: 0; margin-top: 6px; }

.summary-card { background: var(--paper-card); border: 1px solid var(--stone-300); border-radius: 16px; padding: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; }
.summary-row.total { font-size: 18px; font-weight: 700; border-top: 1px solid var(--stone-300); padding-top: 12px; margin-top: 4px; }
.summary-row .value { font-family: var(--font-mono); }

.savings-box { background: var(--gold-tint); border-radius: 12px; padding: 14px; font-size: 13px; margin-top: 16px; color: #6b5122; }
.coupon-box { margin-top: 16px; }
.coupon-box input { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--stone-300); font-family: var(--font-mono); }
.coupon-applied { background: var(--good-tint); color: var(--good); border-radius: 10px; padding: 10px 12px; font-size: 13px; margin-top: 10px; }

/* ---------- Forms (checkout, login, admin) ---------- */
.form-card { background: var(--paper-card); border: 1px solid var(--stone-300); border-radius: 16px; padding: 24px; max-width: 520px; }
.form-row { margin-bottom: 16px; }
.form-row label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.form-row input, .form-row select, .form-row textarea {
  width: 100%; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--stone-300);
  font-family: var(--font-body); font-size: 15px; background: #fff;
}
.form-row-inline { display: flex; gap: 12px; }
.form-row-inline .form-row { flex: 1; }
.form-error { color: #a13c3c; font-size: 13px; margin-top: -8px; margin-bottom: 14px; }
.form-hint { color: var(--ink-soft); font-size: 12px; margin-top: 4px; }
.radio-card { border: 2px solid var(--stone-300); border-radius: 12px; padding: 14px; margin-bottom: 10px; cursor: pointer; display: block; transition: border-color 0.15s ease, background-color 0.15s ease; }
.radio-card.active { border-color: var(--rose-deep); background: var(--rose-tint); }
.radio-card:hover { border-color: var(--stone-600); }
.radio-card.active:hover { border-color: var(--rose-deep); }
.radio-card strong { display: block; font-size: 14px; }
.radio-card span { font-size: 12px; color: var(--ink-soft); }

.radio-dot {
  width: 20px; height: 20px; border-radius: 50%; border: 2px solid var(--stone-300);
  flex-shrink: 0; position: relative; background: #fff; transition: border-color 0.15s ease;
}
.radio-card.active .radio-dot { border-color: var(--rose-deep); }
.radio-card.active .radio-dot::after {
  content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--rose-deep);
}

/* ---------- Admin ---------- */
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar { width: 220px; background: var(--ink); color: #fff; padding: 24px 18px; flex-shrink: 0; }
.admin-sidebar .logo { font-family: var(--font-display); font-size: 20px; margin-bottom: 28px; }
.admin-sidebar a { display: block; padding: 10px 12px; border-radius: 8px; font-size: 14px; color: #e8dcd8; margin-bottom: 4px; }
.admin-sidebar a.active, .admin-sidebar a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.admin-content { flex: 1; padding: 32px; max-width: 1100px; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--paper-card); border: 1px solid var(--stone-300); border-radius: 12px; overflow: hidden; font-size: 14px; }
.admin-table th { text-align: left; background: var(--stone-100); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; padding: 10px 14px; color: var(--ink-soft); }
.admin-table td { padding: 10px 14px; border-top: 1px solid var(--stone-300); }
.admin-login-shell { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--paper); }
.badge { font-family: var(--font-mono); font-size: 11px; padding: 3px 10px; border-radius: 999px; }
.badge-good { background: var(--good-tint); color: var(--good); }
.badge-muted { background: var(--stone-100); color: var(--ink-soft); }
.badge-rose { background: var(--rose-tint); color: var(--rose-deep); }
.toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.icon-btn { background: none; border: none; cursor: pointer; font-size: 13px; color: var(--rose-deep); }

.alert { padding: 12px 16px; border-radius: 10px; font-size: 14px; margin-bottom: 16px; }
.alert-good { background: var(--good-tint); color: var(--good); }
.alert-error { background: #fbe4e4; color: #a13c3c; }

.empty-state { color: var(--ink-soft); padding: 32px; text-align: center; }

/* ---------- Assinatura Jozza (página de vendas + cadastro) ---------- */
.kicker { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose-deep); }
.sub-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; grid-template-areas: "text art" "cta art"; gap: 12px 56px; align-items: center; padding: 64px 24px; max-width: 1200px; margin: 0 auto; }
.hero-text { grid-area: text; align-self: end; }
.hero-cta { grid-area: cta; align-self: start; }
.sub-hero h1 { font-size: 44px; font-weight: 700; line-height: 1.12; margin: 14px 0 18px; }
.sub-hero p.lede { color: var(--ink-soft); font-size: 17px; line-height: 1.55; max-width: 480px; margin-bottom: 28px; }
.sub-price-pill { display: inline-flex; align-items: baseline; gap: 8px; background: var(--paper-card); border: 1px solid var(--stone-300); border-radius: 999px; padding: 10px 20px 10px 10px; margin-bottom: 24px; }
.sub-price-pill .amount-badge { background: var(--rose-deep); color: #fff; font-family: var(--font-mono); font-size: 13px; padding: 6px 14px; border-radius: 999px; }
.sub-price-pill .amount { font-family: var(--font-mono); font-size: 20px; font-weight: 600; color: var(--ink); }
.sub-price-pill .terms { font-size: 13px; color: var(--ink-soft); }
.btn-lg { padding: 16px 34px; font-size: 16px; }

@keyframes cta-pulse {
  0% { box-shadow: 0 0 0 0 rgba(127,51,80,0.45); }
  70% { box-shadow: 0 0 0 14px rgba(127,51,80,0); }
  100% { box-shadow: 0 0 0 0 rgba(127,51,80,0); }
}
.btn-pulse { animation: cta-pulse 2.2s cubic-bezier(0.4,0,0.6,1) infinite; }

.hero-art { grid-area: art; position: relative; width: 100%; max-width: 420px; min-height: 460px; margin: 0 auto; }
.hero-art .disc { position: absolute; border-radius: 50%; }
.hero-art .disc-2 { top: 18%; left: 22%; width: 40%; height: 40%; background: var(--gold-tint); }
.hero-art .float-badge { position: absolute; background: var(--paper-card); border: 1px solid var(--stone-300); border-radius: 999px; padding: 9px 16px; font-size: 13px; font-weight: 600; box-shadow: 0 8px 20px rgba(36,26,24,0.08); display: flex; align-items: center; gap: 7px; z-index: 3; transition: opacity 0.45s ease, transform 0.45s ease; }
.hero-art .badge-freight { top: 8%; right: 0%; color: var(--good); }
.hero-art .badge-cashback { bottom: 10%; left: -2%; color: var(--gold); }
/* Ao dar play no vídeo, os selos deslizam pra fora (cada um pro lado mais
   próximo da borda) e somem, pra não atrapalhar a visualização. */
.hero-art .float-badge.badge-hide { opacity: 0; pointer-events: none; }
.hero-art .badge-freight.badge-hide { transform: translate(60px, -30px); }
.hero-art .badge-cashback.badge-hide { transform: translate(-60px, 30px); }

@keyframes phone-float {
  0%, 100% { transform: rotate(-4deg); }
  50% { transform: translateY(-12px) rotate(-1.5deg); }
}
.phone-wrap { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2; text-align: center; width: max-content; max-width: 320px; }
.video-cta { font-family: var(--font-body); font-weight: 700; font-size: 15px; line-height: 1.35; color: var(--ink); margin: 0 0 14px; }
.phone-frame { position: relative; width: 208px; aspect-ratio: 208 / 424; height: auto; margin: 0 auto; border-radius: 34px; background: var(--ink); padding: 9px; box-shadow: 0 24px 44px rgba(36,26,24,0.22); transform-origin: center; animation: phone-float 4.5s ease-in-out infinite; transition: transform 0.5s ease, width 0.2s ease; }
.phone-frame.settled { animation: none; transform: rotate(0deg) scale(1.04); }
.phone-frame .screen { position: relative; width: 100%; height: 100%; border-radius: 25px; overflow: hidden; background: linear-gradient(155deg, var(--rose-tint) 0%, var(--rose-tint) 45%, var(--gold-tint) 100%); }
.phone-frame .notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 64px; height: 16px; border-radius: 10px; background: var(--ink); z-index: 2; }
.phone-frame .screen-watermark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; opacity: 0.5; }
.phone-frame .play-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.phone-frame .play-circle { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.94); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 22px rgba(36,26,24,0.28); cursor: pointer; border: none; padding: 0; }
.phone-frame video { width: 100%; height: 100%; object-fit: cover; }

.sub-section { padding: 40px 24px; max-width: 1200px; margin: 0 auto; }
.sub-section-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.sub-section-head h2 { font-size: 30px; margin: 10px 0 12px; }
.sub-section-head p { color: var(--ink-soft); font-size: 15px; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.benefit-card { background: var(--paper-card); border: 1px solid var(--stone-300); border-radius: 16px; padding: 24px 20px; }
.benefit-card .icon-wrap { width: 44px; height: 44px; border-radius: 12px; background: var(--rose-tint); color: var(--rose-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.benefit-card strong { display: block; font-size: 16px; margin-bottom: 6px; }
.benefit-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

.sub-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 1000px; margin: 0 auto; }
.sub-step { display: flex; flex-direction: column; gap: 12px; }
.sub-step .num { font-family: var(--font-mono); font-size: 13px; width: 32px; height: 32px; border-radius: 50%; background: var(--gold-tint); color: #6b5122; display: flex; align-items: center; justify-content: center; }
.sub-step strong { font-size: 16px; }
.sub-step p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

.pricing-card { max-width: 620px; margin: 0 auto; background: var(--ink); color: #fdf5f0; border-radius: 24px; padding: 44px 40px; text-align: center; }
.pricing-card .kicker { color: var(--rose-tint); }
.pricing-card h2 { color: #fff; font-size: 28px; margin: 12px 0 6px; }
.pricing-card .price { font-family: var(--font-mono); font-size: 46px; font-weight: 600; margin: 18px 0 4px; }
.pricing-card .price-sub { font-size: 13px; color: #d9c5bd; margin-bottom: 24px; }
.pricing-card ul { list-style: none; padding: 0; margin: 0 0 30px; text-align: left; display: inline-flex; flex-direction: column; gap: 10px; }
.pricing-card li { font-size: 14px; display: flex; align-items: center; gap: 10px; color: #f1e4de; }
.pricing-card .check { width: 18px; height: 18px; border-radius: 50%; background: var(--good); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pricing-card .btn-primary { background: #fff; color: var(--ink); }
.pricing-card .btn-primary:hover { background: var(--rose-tint); color: var(--rose-deep); }

/* ---------- Cadastro da assinatura (form + resumo/pagamento) ---------- */
.signup-grid { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; max-width: 980px; margin: 0 auto; padding: 0 24px 72px; }
.summary-card { background: var(--paper-card); border: 1px solid var(--stone-300); border-radius: 16px; padding: 24px; position: sticky; top: 24px; }
.summary-card h2 { font-size: 16px; margin-bottom: 16px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 10px; color: var(--ink-soft); }
.summary-row.total { font-size: 18px; font-weight: 700; color: var(--ink); border-top: 1px solid var(--stone-300); padding-top: 14px; margin-top: 6px; }
.summary-row .value { font-family: var(--font-mono); }
.security-note { display: flex; align-items: center; gap: 6px; justify-content: center; font-size: 11.5px; color: var(--ink-soft); margin-top: 12px; }

@media (max-width: 900px) {
  /* Coluna única: texto, depois vídeo, depois botão — mesmo elemento de
     botão do desktop, só reposicionado pelas áreas do grid abaixo. */
  .sub-hero { grid-template-columns: 1fr; grid-template-areas: "text" "art" "cta"; padding: 40px 20px; text-align: center; }
  .sub-hero p.lede, .sub-price-pill { margin-left: auto; margin-right: auto; }
  .hero-text, .hero-cta { align-self: auto; }
  .hero-cta { margin-top: 8px; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .sub-steps { grid-template-columns: 1fr; }
  .hero-art { min-height: 540px; }
  .phone-frame { width: 250px; }
}
@media (max-width: 760px) {
  .signup-grid { grid-template-columns: 1fr; }
  .summary-card { position: static; }
}
@media (max-width: 560px) {
  .sub-hero h1 { font-size: 32px; }
  .pricing-card { padding: 32px 22px; }
  .hero-art { min-height: 600px; }
  .phone-frame { width: clamp(230px, 74vw, 300px); }

  /* Cards de benefício empilham conforme rola a página, em vez de só
     ficarem um embaixo do outro — dá mais dinamismo na tela pequena. */
  .benefit-grid { display: flex; flex-direction: column; gap: 0; padding-bottom: 32px; }
  .benefit-card {
    position: sticky; min-height: 200px;
    box-shadow: 0 -10px 0 -6px var(--paper), 0 14px 34px rgba(36,26,24,0.16);
    margin-bottom: 16px;
  }
  .benefit-card:nth-child(1) { top: 84px; z-index: 1; }
  .benefit-card:nth-child(2) { top: 112px; z-index: 2; }
  .benefit-card:nth-child(3) { top: 140px; z-index: 3; }
  .benefit-card:nth-child(4) { top: 168px; z-index: 4; }
}
