/* =============================================================
   home.css — Indicalar home reframe (Pelando/Promobit-style)
   ADR-027: WhatsApp no topo + destaque máximo + mobile-first
   ============================================================= */

/* ────────────────────────────────────────────────────────────── */
/* HERO MEGA WHATSAPP — primeira tela, full-width                 */
/* ────────────────────────────────────────────────────────────── */

.home-hero {
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.12), transparent 50%),
    linear-gradient(135deg, var(--promo-warm) 0%, color-mix(in oklch, var(--promo-warm) 60%, #1a0a05) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 3rem 1.25rem 3.5rem;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 60px,
      rgba(255, 255, 255, 0.025) 60px,
      rgba(255, 255, 255, 0.025) 120px
    );
  pointer-events: none;
}

.home-hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.home-hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.home-hero-eyebrow .dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #25D366;
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.25);
  animation: home-pulse 2s ease-in-out infinite;
}
@keyframes home-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.18); }
}

.home-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 7vw, 4.5rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 1.25rem;
  max-width: 22ch;
}
.home-hero h1 .accent {
  background: linear-gradient(135deg, #fff, #ffd7b5);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.home-hero-lead {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
  max-width: 38ch;
}

.home-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  margin: 0 0 2rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}
.home-hero-stats span { display: inline-flex; align-items: center; gap: 0.4rem; }
.home-hero-stats .check { color: #25D366; font-weight: 700; font-size: 1.1rem; }

.home-hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  background: #25D366;
  color: #0a3a1e;
  text-decoration: none;
  padding: 1.25rem 1.85rem;
  border-radius: 16px;
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.08),
    0 14px 32px rgba(37, 211, 102, 0.45),
    inset 0 -4px 0 rgba(0, 0, 0, 0.14);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  max-width: 540px;
  justify-content: center;
  text-align: center;
}
.home-hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.08),
    0 20px 40px rgba(37, 211, 102, 0.55),
    inset 0 -4px 0 rgba(0, 0, 0, 0.14);
}
.home-hero-cta-primary .wa-icon {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border-radius: 50%;
  color: #25D366;
  flex-shrink: 0;
}
.home-hero-cta-primary .wa-icon svg { width: 20px; height: 20px; }
.home-hero-cta-primary .arrow { font-size: 1.5rem; line-height: 1; flex-shrink: 0; }

/* Linha de canais secundários — TG/IG/Newsletter logo abaixo do WA gigante */
.home-hero-channels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1rem;
  max-width: 540px;
}
.home-hero-channels a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: background 0.15s, transform 0.15s, border-color 0.15s;
  text-align: center;
}
.home-hero-channels a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-1px);
}
.home-hero-channels a .ico-wrap {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
}
.home-hero-channels a.tg .ico-wrap { background: #0088CC; }
.home-hero-channels a.ig .ico-wrap { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.home-hero-channels a.nl .ico-wrap { background: rgba(255, 255, 255, 0.22); }
.home-hero-channels a svg { width: 18px; height: 18px; }
.home-hero-channels a .label { line-height: 1.1; }

/* Telegram tem peso visual maior (próximo do WA) — span coluna 2 colunas em mobile? Não: mantém 3 col mas leve diferença */
@media (max-width: 540px) {
  .home-hero-channels { grid-template-columns: 1fr 1fr 1fr; gap: 0.5rem; }
  .home-hero-channels a { padding: 0.7rem 0.35rem; font-size: 0.78rem; }
  .home-hero-channels a .ico-wrap { width: 32px; height: 32px; }
}

.home-hero-disclosure {
  margin-top: 1.5rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 60ch;
}

/* Desktop: 2-col hero com mockup à direita */
@media (min-width: 880px) {
  .home-hero { padding: 4.5rem 2rem 5rem; }
  .home-hero-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
  }
}

/* Mockup celular SVG-based à direita (desktop) */
.home-hero-mockup {
  display: none;
  position: relative;
}
@media (min-width: 880px) {
  .home-hero-mockup { display: block; }
}
.phone-frame {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 18;
  background: oklch(15% 0.005 50);
  border-radius: 36px;
  border: 8px solid oklch(20% 0.005 50);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.35),
    0 10px 24px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  transform: rotate(3deg);
}
.phone-screen {
  background: #ECE5DD;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.phone-topbar {
  background: #075E54;
  color: #fff;
  padding: 12px 14px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', system-ui, sans-serif;
}
.phone-avatar-l4 {
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
  gap: 1px;
}
.phone-avatar-l4 .bk { color: var(--promo-warm); }
.phone-avatar-l4 .ii {
  color: #075E54;
  font-style: italic;
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 500;
  padding: 0 1px;
}
.phone-topbar .name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.2;
  min-width: 0;
}
.phone-topbar .name .title-row {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.phone-topbar .name .title-row .brand-l4 {
  font-size: 13px;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}
.phone-topbar .name .title-row .brand-l4 .bk { color: #FFB68A; font-family: var(--mono); }
.phone-topbar .name .title-row .brand-l4 .ii { color: #fff; font-style: italic; font-family: 'Source Serif 4', Georgia, serif; }
.phone-topbar .name .sub {
  font-size: 10px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
.phone-messages {
  flex: 1; padding: 12px 10px; display: flex; flex-direction: column; gap: 10px;
  background:
    radial-gradient(circle at 20% 30%, rgba(7, 94, 84, 0.04), transparent 60%),
    #ECE5DD;
}
.phone-msg {
  background: #fff;
  border-radius: 10px;
  padding: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 10.5px;
  line-height: 1.35;
  color: #111;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
  align-self: flex-start;
  max-width: 92%;
  overflow: hidden;
}
.phone-msg .photo {
  height: 80px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  background: #fff;
  overflow: hidden;
}
.phone-msg .photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6%;
  background: #fff;
  mix-blend-mode: multiply;
}
.phone-msg .content { padding: 8px 10px 7px; }
.phone-msg .headline {
  font-family: var(--display);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: -0.01em;
  color: var(--promo-warm);
  line-height: 1.2;
  margin: 0 0 3px;
  text-transform: uppercase;
}
.phone-msg .product-name {
  font-weight: 600;
  font-size: 10px;
  color: #111;
  margin: 0 0 2px;
  line-height: 1.3;
}
.phone-msg .nota-line {
  font-size: 9px;
  color: oklch(35% 0.005 50);
  margin: 0 0 4px;
}
.phone-msg .nota-line .nota { font-weight: 700; color: var(--promo-warm); }
.phone-msg .price-row {
  display: flex; align-items: baseline; gap: 5px; margin-top: 2px;
  font-family: var(--display);
}
.phone-msg .price-old { color: #888; font-size: 9px; text-decoration: line-through; }
.phone-msg .price-new { color: var(--promo-warm); font-size: 13px; font-weight: 700; }
.phone-msg .price-cut {
  font-size: 8px; font-weight: 700;
  background: var(--promo-warm); color: #fff;
  padding: 1px 4px; border-radius: 3px;
}
.phone-msg .cta-line {
  font-size: 9px;
  color: #0088CC;
  margin-top: 4px;
  font-weight: 500;
}
.phone-msg .time { font-size: 8.5px; color: #888; text-align: right; margin-top: 3px; }

/* ────────────────────────────────────────────────────────────── */
/* CARROSSEL "TOP DO DIA"                                         */
/* ────────────────────────────────────────────────────────────── */

.home-top {
  padding: 3rem 1.25rem 1rem;
  max-width: 1180px;
  margin: 0 auto;
}
.home-top-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.home-top-header h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex; align-items: center; gap: 0.5rem;
}
.home-top-header h2 .flame { font-size: 1.4em; line-height: 1; }
.home-top-header .meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: oklch(45% 0.005 60);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.home-top-header .meta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--promo-warm);
  animation: home-pulse 2.4s ease-in-out infinite;
}
.home-top-header .all-link {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--promo-cool);
  text-decoration: none;
}
.home-top-header .all-link:hover { text-decoration: underline; }

.home-top-rail {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0 1rem;
  margin: 0 -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.home-top-rail::-webkit-scrollbar { display: none; }

.home-top-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 14px;
  border: 1px solid oklch(89% 0.008 70);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.home-top-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.home-top-card .img {
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
}
.home-top-card .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  background: #fff;
  mix-blend-mode: multiply;
}
.home-top-card .img .emoji-big {
  font-size: clamp(4rem, 12vw, 6rem);
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}
.home-top-card .img img + .emoji-big { display: none; }
.home-top-card .img.cozinha-bg { background: linear-gradient(135deg, oklch(94% 0.045 55), oklch(86% 0.07 50)); }
.home-top-card .img.tech-bg    { background: linear-gradient(135deg, oklch(93% 0.035 235), oklch(85% 0.06 230)); }
.home-top-card .img.casa-bg    { background: linear-gradient(135deg, oklch(93% 0.035 155), oklch(85% 0.06 160)); }
.home-top-card .img.mob-bg     { background: linear-gradient(135deg, oklch(93% 0.045 320), oklch(85% 0.075 330)); }
.home-top-card .img .chip {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
}
.home-top-card .img .seal {
  position: absolute; top: 10px; right: 10px;
}
.home-top-card .body .headline {
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--promo-warm);
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
}
.home-top-card .body { padding: 1rem 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; }
.home-top-card .ttl {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0;
  color: oklch(18% 0.01 45);
}
.home-top-card .verdict {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.92rem;
  font-style: italic;
  color: oklch(40% 0.005 50);
  border-left: 2px solid var(--promo-warm);
  padding-left: 0.6rem;
  margin: 0;
}
.home-top-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.home-top-card .price-old {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: oklch(50% 0.005 60);
  text-decoration: line-through;
}
.home-top-card .price-new {
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--promo-warm);
  letter-spacing: -0.025em;
  line-height: 1;
}
.home-top-card .price-cut {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  background: oklch(62% 0.18 38 / 0.12);
  color: var(--promo-warm);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
}
.home-top-card .ctas { display: flex; gap: 0.5rem; margin-top: 0.4rem; }
.home-top-card .ctas a {
  flex: 1;
  text-align: center;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.7rem 0.5rem;
  border-radius: 8px;
  transition: transform 0.12s;
}
.home-top-card .ctas a:hover { transform: translateY(-1px); }
.home-top-card .ctas .primary {
  background: var(--promo-warm);
  color: #fff;
  box-shadow: 0 4px 12px rgba(224, 74, 30, 0.25);
}
.home-top-card .ctas .secondary {
  background: transparent;
  color: var(--promo-cool);
  border: 1px solid oklch(48% 0.06 215 / 0.4);
}

@media (min-width: 720px) {
  .home-top-card { flex: 0 0 40%; }
}
@media (min-width: 980px) {
  .home-top-rail {
    overflow-x: visible;
    padding: 0.5rem 0 1rem;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
  }
  .home-top-card { flex: initial; min-width: 0; }
}

/* ────────────────────────────────────────────────────────────── */
/* CTA SECUNDÁRIO (TG + Newsletter) — depois do carrossel         */
/* ────────────────────────────────────────────────────────────── */

.home-cta-row {
  padding: 1rem 1.25rem 3rem;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 720px) {
  .home-cta-row { grid-template-columns: 1fr 1fr; }
}

.home-cta-tile {
  background: #fff;
  border: 1px solid oklch(89% 0.008 70);
  border-radius: 12px;
  padding: 1.5rem 1.5rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-cta-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}
.home-cta-tile .icon-big {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  flex-shrink: 0;
}
.home-cta-tile.tg .icon-big { background: #0088CC; }
.home-cta-tile.nl .icon-big { background: oklch(20% 0.04 40); }
.home-cta-tile .icon-big svg { width: 28px; height: 28px; }
.home-cta-tile .body { display: flex; flex-direction: column; gap: 0.2rem; }
.home-cta-tile .ttl {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: oklch(18% 0.01 45);
  margin: 0;
}
.home-cta-tile .sub {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.88rem;
  color: oklch(45% 0.005 60);
  margin: 0;
}
.home-cta-tile .sub strong { color: oklch(30% 0.005 50); font-weight: 600; }

/* ────────────────────────────────────────────────────────────── */
/* HUBS — Explore por categoria (4 cards modernos)                */
/* ────────────────────────────────────────────────────────────── */

.home-hubs-section {
  background: oklch(96% 0.005 75);
  padding: 3rem 1.25rem;
}
.home-hubs-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.home-hubs-header {
  margin-bottom: 1.5rem;
}
.home-hubs-header h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.4rem;
}
.home-hubs-header p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1rem;
  color: oklch(40% 0.005 50);
  margin: 0;
  max-width: 56ch;
}
.home-hubs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
@media (min-width: 720px) { .home-hubs-grid { grid-template-columns: repeat(4, 1fr); gap: 1rem; } }

.home-hub-card {
  background: #fff;
  border: 1px solid oklch(89% 0.008 70);
  border-radius: 14px;
  padding: 1.4rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.home-hub-card:hover {
  transform: translateY(-3px);
  border-color: var(--promo-warm);
}
.home-hub-card .emoji {
  font-size: 2rem;
  line-height: 1;
}
.home-hub-card .name {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: oklch(18% 0.01 45);
}
.home-hub-card .count {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: oklch(50% 0.005 60);
}
.home-hub-card .arrow-link {
  margin-top: 0.4rem;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--promo-warm);
}

/* ────────────────────────────────────────────────────────────── */
/* REVIEWS EM DESTAQUE — grid moderno                             */
/* ────────────────────────────────────────────────────────────── */

.home-reviews-section {
  padding: 3rem 1.25rem;
  max-width: 1180px;
  margin: 0 auto;
}
.home-reviews-header {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.home-reviews-header h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.home-reviews-header .meta {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: oklch(45% 0.005 60);
}
.home-reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .home-reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .home-reviews-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }

.home-review-card {
  background: #fff;
  border: 1px solid oklch(89% 0.008 70);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.home-review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
.home-review-card .img {
  aspect-ratio: 16 / 10;
  position: relative;
  background: #fff;
  overflow: hidden;
}
.home-review-card .img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
  background: #fff;
  mix-blend-mode: multiply;
}
.home-review-card .img .chip {
  position: absolute; top: 10px; left: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.home-review-card .body { padding: 1.1rem 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.home-review-card h3 {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.3;
  margin: 0;
  color: oklch(18% 0.01 45);
}
.home-review-card .excerpt {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  color: oklch(35% 0.005 50);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home-review-card .meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  color: oklch(50% 0.005 60);
}
.home-review-card .meta-row .price {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--promo-warm);
}

/* ────────────────────────────────────────────────────────────── */
/* PROMISE BAND — autoridade editorial (mantém)                   */
/* ────────────────────────────────────────────────────────────── */

.home-promise {
  background: oklch(20% 0.005 50);
  color: #fff;
  padding: 3rem 1.25rem;
}
.home-promise-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 720px) {
  .home-promise-inner { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.home-promise-item .num {
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--promo-warm);
  letter-spacing: -0.025em;
  margin: 0 0 0.4rem;
}
.home-promise-item h4 {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.4rem;
}
.home-promise-item p {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  margin: 0;
}

/* ────────────────────────────────────────────────────────────── */
/* Esconder elementos antigos quando home.css carregar            */
/* ────────────────────────────────────────────────────────────── */

body.is-home .hero,
body.is-home .promise-band,
body.is-home .hub-row,
body.is-home .post-card,
body.is-home .post-card-divider,
body.is-home .pm-banner.hero,
body.is-home .pm-disclosure,
body.is-home .disclosure-block,
body.is-home .upcoming {
  display: none !important;
}

body.is-home .main-content {
  padding: 0;
  max-width: none;
}
body.is-home .section-heading {
  display: none;
}
