/* ==========================================================================
   Recarga iUniTV — home (.hp-*) e página de produto (.sp-*)
   ========================================================================== */

/* ===== BOTÕES ===== */
.hp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 30px; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: .95rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--transition);
}
.hp-btn-primary {
  background: var(--brand-gradient); color: var(--on-brand);
  box-shadow: var(--shadow-brand);
}
.hp-btn-primary:hover { transform: translateY(-2px); filter: brightness(1.07); color: var(--on-brand); }
.hp-btn-outline { background: transparent; color: var(--brand-800); border-color: var(--border-strong); }
.hp-btn-outline:hover { border-color: var(--brand-600); color: var(--brand-700); background: var(--brand-soft); }
.hp-btn-ghost { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .3); }
.hp-btn-ghost:hover { background: rgba(255, 255, 255, .18); color: #fff; border-color: rgba(255, 255, 255, .55); }
.hp-btn-lg { padding: 16px 42px; font-size: 1.03rem; }
.hp-btn-block { width: 100%; }

/* ===== CABEÇALHO DE SEÇÃO ===== */
.hp-section-header { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.hp-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .12em;
  color: var(--brand-700); background: var(--brand-soft);
  padding: 7px 15px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.hp-section-header h2 { font-size: 2.1rem; margin-bottom: 12px; }
.hp-section-header p { color: var(--text-body); font-size: 1rem; }
.hp-text-primary {
  background: linear-gradient(120deg, var(--brand-600), var(--brand-800));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   PLANOS — primeira seção da home, logo abaixo do header (posição fixa:
   os cards vêm antes de qualquer outro conteúdo, decisão de conversão).
   ========================================================================== */
.hp-products {
  padding: 54px 0 72px;
  background:
    radial-gradient(1100px 420px at 50% -140px, rgba(var(--brand-rgb), .16), transparent 70%),
    var(--white);
}
.hp-products .container { position: relative; }

.hp-products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1000px; margin: 0 auto;
  align-items: stretch;
}

.hp-product-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px 22px 24px;
  transition: var(--transition);
  overflow: hidden;
}
/* barra de destaque que aparece no topo do card ao passar o mouse */
.hp-product-card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: var(--brand-gradient);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.hp-product-card:hover::before { transform: scaleX(1); }
.hp-product-card:hover {
  border-color: var(--brand-soft-2);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

/* plano em destaque */
.hp-product-card.is-featured {
  border-color: var(--brand-500);
  box-shadow: 0 20px 44px -22px rgba(var(--brand-deep-rgb), .55);
}
.hp-product-card.is-featured::before { transform: scaleX(1); }
.hp-product-ribbon {
  position: absolute; top: 16px; right: -34px;
  transform: rotate(38deg);
  background: var(--brand-gradient); color: var(--on-brand);
  font-size: .64rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 40px;
}

.hp-product-image {
  width: 132px; height: 132px; margin: 6px auto 16px;
  display: grid; place-items: center;
}
.hp-product-image img,
.hp-product-image picture { width: 100%; height: 100%; }
.hp-product-image img {
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(var(--brand-deep-rgb), .28));
}

.hp-product-title { font-size: 1.05rem; text-align: center; margin-bottom: 6px; }
.hp-product-validity {
  text-align: center; font-size: .76rem; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 18px;
}

.hp-price-block {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px; text-align: center; margin-bottom: 18px;
}
.hp-product-price {
  font-family: var(--font-display); font-size: 1.85rem; font-weight: 800;
  color: var(--brand-800); letter-spacing: -.03em; line-height: 1;
}
.hp-price-per-day { display: block; font-size: .74rem; color: var(--text-muted); margin-top: 6px; }

.hp-product-features { margin: 0 0 20px; }
.hp-product-features li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .84rem; color: var(--text-body); margin-bottom: 9px;
}
.hp-product-features li i { color: var(--success); font-size: .72rem; margin-top: 5px; flex-shrink: 0; }

.hp-product-card .hp-btn { font-size: .9rem; padding: 12px 20px; }
.hp-product-card .hp-btn-primary { margin-top: auto; }
.hp-product-card .hp-btn-outline {
  margin-top: 9px; padding: 9px 20px; font-size: .82rem;
  border-width: 1px; border-radius: var(--radius-sm);
}

.hp-products-note {
  text-align: center; margin-top: 30px;
  font-size: .84rem; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center; gap: 9px; flex-wrap: wrap;
}
.hp-products-note i { color: var(--brand-600); }

/* ==========================================================================
   HERO — abaixo dos planos, em duas colunas com a foto da TV
   ========================================================================== */
.hp-hero {
  background:
    radial-gradient(760px 420px at 85% 10%, rgba(var(--brand-rgb), .18), transparent 65%),
    linear-gradient(160deg, var(--ink-950) 0%, var(--ink-800) 100%);
  color: #fff;
  padding: 70px 0;
  overflow: hidden;
}
.hp-hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 52px; align-items: center;
}
.hp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(var(--brand-rgb), .14);
  border: 1px solid rgba(var(--brand-rgb), .3);
  color: var(--brand-300);
  padding: 7px 17px; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600; margin-bottom: 20px;
}
.hp-hero-title { font-size: 2.85rem; color: #fff; margin-bottom: 18px; }
.hp-hero-title span {
  background: linear-gradient(100deg, var(--brand-300), var(--brand-500));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hp-hero-desc {
  font-size: 1.03rem; color: rgba(255, 255, 255, .76);
  line-height: 1.7; margin-bottom: 28px; max-width: 500px;
}
.hp-hero-desc strong { color: #fff; }
.hp-hero-actions { display: flex; gap: 13px; flex-wrap: wrap; margin-bottom: 34px; }

.hp-hero-stats {
  display: flex; gap: 32px; flex-wrap: wrap;
  padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, .12);
}
.hp-hero-stat strong {
  display: block; font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 700; color: var(--brand-300);
}
.hp-hero-stat span { font-size: .78rem; color: rgba(255, 255, 255, .58); }

.hp-hero-media { position: relative; }
.hp-hero-media img {
  width: 100%; border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, .8);
}
.hp-hero-media::after {
  content: ''; position: absolute; inset: -22px -22px auto auto;
  width: 150px; height: 150px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), .34), transparent 68%);
  pointer-events: none; z-index: -1;
}
.hp-hero-float {
  position: absolute; left: -16px; bottom: -18px;
  display: flex; align-items: center; gap: 11px;
  background: rgba(18, 8, 51, .93);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(var(--brand-rgb), .28);
  border-radius: var(--radius); padding: 12px 18px;
  box-shadow: var(--shadow-lg);
}
.hp-hero-float i { color: var(--whatsapp); font-size: 1.4rem; }
.hp-hero-float strong { display: block; font-size: .84rem; color: #fff; }
.hp-hero-float span { font-size: .72rem; color: rgba(255, 255, 255, .6); }

/* ==========================================================================
   COMO FUNCIONA — linha do tempo horizontal
   ========================================================================== */
.hp-how-it-works { padding: 76px 0; background: var(--surface); }
.hp-steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1060px; margin: 0 auto; position: relative;
}
/* linha que conecta os passos */
.hp-steps-grid::before {
  content: ''; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600), var(--brand-800));
  opacity: .3;
}
.hp-step-card { text-align: center; position: relative; }
.hp-step-number {
  position: relative; z-index: 1;
  width: 54px; height: 54px; margin: 0 auto 18px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--white); border: 2px solid var(--brand-500);
  color: var(--brand-700);
  font-family: var(--font-display); font-size: 1.05rem; font-weight: 700;
  box-shadow: 0 0 0 6px var(--surface);
}
.hp-step-icon {
  width: 42px; height: 42px; margin: 0 auto 12px;
  border-radius: var(--radius-sm); display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-700); font-size: 1.05rem;
}
.hp-step-card h3 { font-size: .98rem; margin-bottom: 7px; }
.hp-step-card p { font-size: .84rem; color: var(--text-body); line-height: 1.6; }

/* ==========================================================================
   ENTREGA + AVISOS
   ========================================================================== */
.hp-delivery-section { padding: 72px 0; background: var(--white); }
.hp-delivery-box {
  max-width: 920px; margin: 0 auto;
  background: linear-gradient(150deg, var(--ink-950), var(--ink-800));
  border-radius: var(--radius-xl); padding: 46px 40px; text-align: center;
  color: #fff; position: relative; overflow: hidden;
}
.hp-delivery-box::before {
  content: ''; position: absolute; top: -70px; right: -50px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--brand-rgb), .22), transparent 68%);
}
.hp-delivery-box h3 { font-size: 1.5rem; color: #fff; margin-bottom: 10px; position: relative; }
.hp-delivery-box > p { color: rgba(255, 255, 255, .7); margin-bottom: 32px; position: relative; }
.hp-delivery-channels {
  display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative;
}
.hp-channel {
  display: flex; align-items: center; gap: 12px; text-align: left;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius); padding: 13px 20px;
}
.hp-channel-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; font-size: 1.05rem; flex-shrink: 0;
}
.hp-channel strong { display: block; font-size: .88rem; color: #fff; }
.hp-channel span { font-size: .72rem; color: rgba(255, 255, 255, .55); }

.hp-info-section { padding: 0 0 72px; background: var(--white); }
.hp-info-box {
  max-width: 920px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 30px 36px;
}
.hp-info-box h3 {
  font-size: 1.05rem; margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.hp-info-box h3 i { color: var(--brand-600); }
.hp-info-box ul { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 28px; }
.hp-info-box ul li {
  position: relative; padding-left: 20px;
  font-size: .87rem; color: var(--text-body); line-height: 1.6;
}
.hp-info-box ul li::before {
  content: ''; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--brand-500);
}

/* ==========================================================================
   CONFIANÇA — ícone à esquerda, texto à direita (2 colunas)
   ========================================================================== */
.hp-trust-section { padding: 76px 0; background: var(--surface); }
.hp-trust-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
  max-width: 940px; margin: 0 auto;
}
.hp-trust-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  transition: var(--transition);
}
.hp-trust-card:hover { border-color: var(--brand-soft-2); box-shadow: var(--shadow); transform: translateY(-2px); }
.hp-trust-icon {
  width: 46px; height: 46px; border-radius: 13px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 1.15rem;
}
.hp-trust-card h3 { font-size: .98rem; margin-bottom: 6px; }
.hp-trust-card p { font-size: .85rem; color: var(--text-body); line-height: 1.6; }
.hp-trust-footer {
  text-align: center; margin-top: 30px;
  font-size: .84rem; color: var(--text-muted);
}

/* ==========================================================================
   FAQ — acordeão com barra de destaque à esquerda
   ========================================================================== */
.hp-faq-section { padding: 76px 0; background: var(--white); }
.hp-faq-list { max-width: 760px; margin: 0 auto; }
.hp-faq-item {
  background: var(--white);
  border: 1px solid var(--border); border-left: 3px solid var(--border);
  border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.hp-faq-item:hover { border-color: var(--border-strong); }
.hp-faq-item.open { border-left-color: var(--brand-500); box-shadow: var(--shadow); }
.hp-faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 17px 22px; background: none; border: none;
  font-family: var(--font-body); font-size: .93rem; font-weight: 600;
  color: var(--text-main); cursor: pointer; text-align: left;
}
.hp-faq-question i {
  color: var(--brand-600); font-size: .85rem; flex-shrink: 0;
  transition: transform .3s ease;
}
.hp-faq-item.open .hp-faq-question i { transform: rotate(45deg); }
.hp-faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.hp-faq-item.open .hp-faq-answer { max-height: 340px; }
.hp-faq-answer p {
  padding: 0 22px 18px; margin: 0;
  font-size: .88rem; color: var(--text-body); line-height: 1.7;
}

/* ===== CTA FINAL ===== */
.hp-cta-section { padding: 0 0 80px; background: var(--white); }
.hp-cta-box {
  max-width: 860px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 46px 40px; text-align: center;
}
.hp-cta-box h2 { font-size: 1.85rem; margin-bottom: 12px; }
.hp-cta-box > p { color: var(--text-body); margin-bottom: 26px; font-size: .95rem; }
.hp-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.hp-cta-buttons .hp-btn-outline { background: var(--white); }
.hp-cta-notice {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--success-soft); color: var(--success);
  padding: 8px 20px; border-radius: var(--radius-pill);
  font-size: .8rem; font-weight: 600;
}

/* ===== RESPONSIVO — HOME ===== */
@media (max-width: 960px) {
  .hp-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hp-hero-title { font-size: 2.35rem; }
  .hp-hero-desc { max-width: none; }
  .hp-products-grid { grid-template-columns: 1fr 1fr; max-width: 660px; }
  .hp-steps-grid { grid-template-columns: 1fr 1fr; gap: 34px 20px; }
  .hp-steps-grid::before { display: none; }
  .hp-trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .hp-section-header h2 { font-size: 1.65rem; }
  .hp-hero { padding: 52px 0; }
  .hp-hero-title { font-size: 1.95rem; }
  .hp-hero-stats { gap: 22px; }
  .hp-hero-float { position: static; margin-top: 14px; }
  .hp-products { padding: 34px 0 56px; }
  .hp-products-grid { grid-template-columns: 1fr; max-width: 340px; }
  .hp-steps-grid { grid-template-columns: 1fr; }
  .hp-delivery-box, .hp-cta-box { padding: 34px 22px; }
  .hp-info-box { padding: 24px 20px; }
  .hp-info-box ul { grid-template-columns: 1fr; }
  .hp-channel { width: 100%; }
  .hp-how-it-works, .hp-trust-section, .hp-faq-section, .hp-delivery-section { padding: 52px 0; }
}

/* ==========================================================================
   PÁGINA DE PRODUTO (.sp-*)
   ========================================================================== */
.sp-breadcrumb {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 13px 0; font-size: .8rem; color: var(--text-muted);
}
.sp-breadcrumb a { color: var(--text-body); transition: color .2s ease; }
.sp-breadcrumb a:hover { color: var(--brand-700); }
.sp-breadcrumb span { color: var(--text-muted); margin: 0 7px; }

.sp-details-section { padding: 48px 0 64px; background: var(--white); }
.sp-details-grid {
  display: grid; grid-template-columns: 380px 1fr; gap: 52px;
  align-items: start; max-width: 1060px; margin: 0 auto; padding: 0 20px;
}
.sp-gallery {
  background:
    radial-gradient(circle at 50% 45%, rgba(var(--brand-rgb), .16), transparent 68%),
    var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-xl);
  padding: 30px; position: sticky; top: 90px;
}
.sp-gallery img {
  width: 100%; filter: drop-shadow(0 22px 34px rgba(var(--brand-deep-rgb), .3));
}

.sp-category-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; background: var(--brand-soft); color: var(--brand-700);
  font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em;
  border-radius: var(--radius-pill); margin-bottom: 14px;
}
.sp-title { font-size: 1.95rem; margin-bottom: 16px; }

.sp-price-box {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px 24px; margin-bottom: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.sp-price-label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .08em; }
.sp-price-value {
  font-family: var(--font-display); font-size: 2.3rem; font-weight: 800;
  color: var(--brand-800); letter-spacing: -.03em; line-height: 1.1;
}
.sp-price-tag {
  background: var(--success-soft); color: var(--success);
  padding: 7px 15px; border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 700;
}

.sp-description {
  color: var(--text-body); font-size: .92rem; line-height: 1.75;
  margin-bottom: 22px; padding: 16px 20px;
  background: var(--white); border: 1px solid var(--border);
  border-left: 3px solid var(--brand-500); border-radius: var(--radius);
}
.sp-description strong { color: var(--text-main); }

.sp-trust-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 22px;
}
.sp-trust-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 10px;
}
.sp-trust-item i { color: var(--brand-600); font-size: 1.1rem; }
.sp-trust-item strong { font-size: .78rem; color: var(--text-main); }
.sp-trust-item span { font-size: .68rem; color: var(--text-muted); }

.sp-urgency {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px; margin-bottom: 22px;
  background: var(--brand-soft); border: 1px solid var(--brand-soft-2);
  border-radius: var(--radius);
}
.sp-urgency i { color: var(--brand-700); font-size: 1.35rem; flex-shrink: 0; }
.sp-urgency strong { display: block; color: var(--brand-900); font-size: .9rem; }
.sp-urgency span { font-size: .8rem; color: var(--text-body); line-height: 1.55; }

.sp-buy-section { margin-bottom: 22px; }
.sp-buy-section .btn-comprar-large {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 17px 24px;
  background: var(--brand-gradient); color: var(--on-brand);
  border: none; border-radius: var(--radius-pill);
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 800;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-brand);
}
.sp-buy-section .btn-comprar-large:hover { transform: translateY(-2px); filter: brightness(1.07); }

.sp-icon-badges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.sp-icon-badges .badge { text-align: center; }
.sp-icon-badges .badge .icon { display: block; font-size: 1.2rem; color: var(--brand-600); margin-bottom: 6px; }
.sp-icon-badges .badge strong { display: block; font-size: .74rem; color: var(--text-main); }
.sp-icon-badges .badge span { font-size: .66rem; color: var(--text-muted); }

.sp-whatsapp-cta {
  padding: 22px; text-align: center;
  background: rgba(37, 211, 102, .07);
  border: 1px solid rgba(37, 211, 102, .22);
  border-radius: var(--radius-lg);
}
.sp-whatsapp-cta p { font-size: .9rem; color: var(--text-main); font-weight: 600; margin-bottom: 13px; }
.sp-btn-whatsapp {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 28px; border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
  color: #fff; font-weight: 700; font-size: .92rem;
  transition: var(--transition);
}
.sp-btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(37, 211, 102, .7); color: #fff; }

/* relacionados */
.sp-related-section { padding: 56px 0 64px; background: var(--surface); }
.sp-related-section h2 { text-align: center; font-size: 1.5rem; margin-bottom: 28px; }
.sp-related-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 620px; margin: 0 auto; padding: 0 20px;
}
.sp-related-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; text-align: center;
  transition: var(--transition);
}
.sp-related-card:hover { border-color: var(--brand-soft-2); box-shadow: var(--shadow); transform: translateY(-3px); }
.sp-related-card img {
  width: 100%; max-width: 118px; height: 118px; margin: 0 auto 12px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(var(--brand-deep-rgb), .25));
}
.sp-related-card h4 { font-size: .86rem; margin-bottom: 6px; }
.sp-related-card .price {
  display: block; margin-bottom: 13px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; color: var(--brand-800);
}
.sp-related-card a.btn {
  display: block; padding: 10px; border-radius: var(--radius-pill);
  background: var(--brand-gradient); color: var(--on-brand);
  font-size: .8rem; font-weight: 700; transition: var(--transition);
}
.sp-related-card a.btn:hover { filter: brightness(1.07); }

/* barra fixa de compra (mobile) */
.sp-mobile-buybar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 500;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  box-shadow: 0 -6px 24px -10px rgba(27, 18, 41, .3);
  padding: 11px 16px; gap: 12px;
  align-items: center; justify-content: space-between;
}
.sp-mobile-buybar-info { display: flex; flex-direction: column; overflow: hidden; }
.sp-mobile-buybar-name {
  font-size: .72rem; color: var(--text-muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 165px;
}
.sp-mobile-buybar-price {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 800; color: var(--brand-800);
}
.sp-mobile-buybar-btn {
  flex-shrink: 0; padding: 13px 28px; border-radius: var(--radius-pill);
  background: var(--brand-gradient); color: var(--on-brand);
  font-weight: 800; font-size: .95rem; white-space: nowrap;
}

@media (max-width: 900px) {
  .sp-details-grid { grid-template-columns: 1fr; gap: 30px; }
  .sp-gallery { position: static; max-width: 300px; margin: 0 auto; padding: 22px; }
  .sp-mobile-buybar { display: flex; }
  .sp-details-section { padding-bottom: 96px; }
}
@media (max-width: 560px) {
  .sp-title { font-size: 1.55rem; }
  .sp-price-value { font-size: 1.95rem; }
  .sp-trust-row { grid-template-columns: 1fr; }
  .sp-icon-badges { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .sp-related-grid { grid-template-columns: 1fr; max-width: 300px; }
}

/* ==========================================================================
   LISTAGEM DA LOJA (/produto/)
   ========================================================================== */
.store-intro { background: var(--surface); border-bottom: 1px solid var(--border); padding: 40px 0; }
.store-intro .hp-section-header { margin-bottom: 0; }

/* O título da loja é h1 (é o cabeçalho principal daquela página) e usa o
   mesmo tamanho dos h2 das outras seções. */
.hp-section-header h1 {
  font-size: 2.1rem;
  margin-bottom: 12px;
}
@media (max-width: 620px) {
  .hp-section-header h1 { font-size: 1.65rem; }
}
