/* ============================================================
   MISSÃO LUVAS DE OURO — main.css v1.0.0
   Identidade Visual: Verde Esmeralda + Dourado + Branco
   JESUS O SALVADOR — Romanos 8:37
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --green-900: #04342c;
  --green-800: #085041;
  --green-700: #0f6e56;
  --green-600: #1d9e75;
  --green-500: #3bbf95;
  --green-100: #c0eed6;
  --green-50:  #e1f5ee;

  --gold-700: #8a5a00;
  --gold-600: #b37800;
  --gold-500: #d4a017;
  --gold-400: #f0bd35;
  --gold-100: #fdf0c0;
  --gold-50:  #fffae8;

  --dark-900: #0a0f0d;
  --dark-800: #111a14;
  --dark-700: #182212;
  --dark-600: #1f2e1a;

  --white: #ffffff;
  --gray-50:  #f8faf9;
  --gray-100: #eef2f0;
  --gray-200: #d5ddd9;
  --gray-400: #8fa89e;
  --gray-600: #4d6b61;
  --gray-800: #1e2e28;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.14), 0 4px 12px rgba(0,0,0,.08);
  --shadow-gold: 0 4px 20px rgba(212,160,23,.25);

  --transition: 200ms ease;
  --transition-slow: 400ms ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-800);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-600);
}

/* ---------- LAYOUT ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }
.container--wide   { max-width: 1440px; margin: 0 auto; padding: 0 24px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }

/* ---------- COLORS / UTILITIES ---------- */
.text-green  { color: var(--green-600); }
.text-gold   { color: var(--gold-500); }
.text-white  { color: var(--white); }
.text-muted  { color: var(--gray-400); }
.bg-dark     { background: var(--dark-800); }
.bg-green    { background: var(--green-800); }
.bg-light    { background: var(--gray-50); }
.text-center { text-align: center; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(29,158,117,.3);
}
.btn--primary:hover { background: var(--green-700); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(29,158,117,.4); }
.btn--gold {
  background: var(--gold-500);
  color: var(--dark-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn--outline {
  border: 1.5px solid var(--green-600);
  color: var(--green-600);
}
.btn--outline:hover { background: var(--green-50); }
.btn--outline-white {
  border: 1.5px solid rgba(255,255,255,.5);
  color: var(--white);
}
.btn--outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn--sm { padding: 10px 20px; font-size: 13px; }
.btn--lg { padding: 18px 36px; font-size: 17px; }
.btn svg, .btn i { font-size: 18px; }

/* ---------- BADGES ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
}
.badge--green  { background: var(--green-50);  color: var(--green-800);  }
.badge--gold   { background: var(--gold-100);   color: var(--gold-700);   }
.badge--dark   { background: var(--dark-800);   color: var(--green-100);  }
.badge--red    { background: #fef0f0; color: #8b1a1a; }
.badge--new    { background: var(--gold-500); color: var(--dark-900); }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--dark-900);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar {
  background: var(--green-800);
  padding: 6px 0;
  text-align: center;
  font-size: 12px;
  color: var(--green-100);
  font-weight: 500;
}
.topbar a { color: var(--gold-400); text-decoration: underline; }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  max-width: 1280px;
  margin: 0 auto;
  height: 68px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-size: 22px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); }
.nav-logo-sub  { font-size: 10px; color: var(--green-100); letter-spacing: .06em; text-transform: uppercase; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-200);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); background: rgba(255,255,255,.08); }
.nav-menu a.highlight { color: var(--gold-400); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 20px;
  transition: background var(--transition);
}
.nav-cart:hover { background: rgba(255,255,255,.15); }
.nav-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--dark-900);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }

/* ============================================================
   HERO — LOJA EM DESTAQUE MÁXIMO
   ============================================================ */
.hero-store {
  background: var(--dark-900);
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-store::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(29,158,117,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-store::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green-600), var(--gold-500), var(--green-600), transparent);
}
.hero-store .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.hero-eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); animation: pulse-dot 2s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(1.3)} }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title .accent { color: var(--gold-400); display: block; }
.hero-sub { font-size: 17px; color: var(--gray-200); line-height: 1.7; margin-bottom: 32px; max-width: 480px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-trust-item { display: flex; align-items: center; gap: 8px; }
.hero-trust-num { font-size: 20px; font-weight: 700; color: var(--green-500); }
.hero-trust-label { font-size: 12px; color: var(--gray-400); line-height: 1.3; max-width: 80px; }

.hero-products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero-product-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 16px;
  transition: all var(--transition);
  cursor: pointer;
}
.hero-product-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(29,158,117,.4);
  transform: translateY(-2px);
}
.hero-product-card.featured {
  grid-column: span 2;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(29,158,117,.2), rgba(29,158,117,.05));
  border-color: rgba(29,158,117,.3);
}
.hero-product-emoji { font-size: 28px; margin-bottom: 8px; }
.hero-product-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.hero-product-price { font-size: 16px; font-weight: 700; color: var(--gold-400); }
.hero-product-old  { font-size: 11px; color: var(--gray-400); text-decoration: line-through; }

/* ============================================================
   ANNOUNCEMENT BAR / PROMO STRIP
   ============================================================ */
.promo-strip {
  background: var(--gold-500);
  padding: 12px 0;
  overflow: hidden;
}
.promo-strip-inner {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}
.promo-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-900);
  white-space: nowrap;
}
.promo-strip-item::before { content: '✦'; font-size: 10px; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTION — LOJA (produtos em destaque)
   ============================================================ */
.section { padding: 80px 0; }
.section--dark { background: var(--dark-800); }
.section--green { background: var(--green-800); }
.section--light { background: var(--gray-50); }
.section--gold  { background: var(--gold-50); }

.section-header { margin-bottom: 48px; }
.section-header .eyebrow { margin-bottom: 10px; display: block; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { color: var(--gray-600); max-width: 560px; font-size: 17px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* Loja — product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-slow);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--green-100);
}
.product-card-thumb {
  position: relative;
  background: linear-gradient(135deg, var(--green-50), var(--gold-50));
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card-thumb-emoji { font-size: 64px; line-height: 1; }
.product-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.product-card-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card-wishlist:hover { color: #c0392b; }

.product-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card-category { font-size: 11px; font-weight: 600; color: var(--green-600); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 6px; }
.product-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark-800); margin-bottom: 8px; line-height: 1.3; }
.product-card-stars { color: var(--gold-500); font-size: 12px; margin-bottom: 8px; display: flex; align-items: center; gap: 4px; }
.product-card-stars span { color: var(--gray-400); font-family: var(--font-body); }
.product-card-desc { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-bottom: 16px; flex: 1; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: auto; }
.product-price-group { display: flex; flex-direction: column; }
.product-price { font-size: 22px; font-weight: 700; color: var(--green-700); }
.product-price-old { font-size: 12px; color: var(--gray-400); text-decoration: line-through; }
.product-price-margin { font-size: 10px; color: var(--green-600); font-weight: 600; }
.btn-add-cart {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  background: var(--green-600);
  color: var(--white);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-add-cart:hover { background: var(--green-700); }

/* ============================================================
   EBOOKS SECTION
   ============================================================ */
.ebook-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--transition-slow);
}
.ebook-card:hover { box-shadow: var(--shadow-md); border-color: var(--green-100); transform: translateX(4px); }
.ebook-cover {
  width: 80px;
  height: 110px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--green-600), var(--green-900));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  flex-shrink: 0;
  box-shadow: 4px 4px 12px rgba(0,0,0,.2);
}
.ebook-info { flex: 1; }
.ebook-info .eyebrow { margin-bottom: 6px; display: block; }
.ebook-title { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: var(--dark-800); margin-bottom: 6px; line-height: 1.3; }
.ebook-desc { font-size: 13px; color: var(--gray-600); margin-bottom: 14px; line-height: 1.5; }
.ebook-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.ebook-price { font-size: 20px; font-weight: 700; color: var(--green-700); }
.ebook-format { font-size: 11px; color: var(--gray-400); display: flex; align-items: center; gap: 4px; }

/* ============================================================
   APP SECTION
   ============================================================ */
.app-section {
  background: var(--dark-900);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29,158,117,.12) 0%, transparent 70%);
}
.app-section .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.app-info .eyebrow { margin-bottom: 12px; display: block; }
.app-info h2 { color: var(--white); margin-bottom: 16px; }
.app-info p { color: var(--gray-200); margin-bottom: 32px; font-size: 16px; line-height: 1.7; }
.app-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.app-feature { display: flex; align-items: flex-start; gap: 12px; }
.app-feature-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(29,158,117,.2); display: flex; align-items: center; justify-content: center; color: var(--green-500); font-size: 18px; flex-shrink: 0; }
.app-feature-text .title { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.app-feature-text .sub   { font-size: 12px; color: var(--gray-400); }
.app-store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  cursor: pointer;
}
.store-badge:hover { background: rgba(255,255,255,.14); }
.store-badge-icon { font-size: 24px; }
.store-badge-text { display: flex; flex-direction: column; }
.store-badge-label { font-size: 10px; color: var(--gray-400); }
.store-badge-name  { font-size: 15px; font-weight: 600; color: var(--white); }
.app-mockup {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  padding: 20px;
  max-width: 320px;
  margin: 0 auto;
}
.app-screen-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.app-screen-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 4px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  font-size: 9px;
  color: var(--gray-400);
  cursor: pointer;
  transition: all var(--transition);
}
.app-screen-tab.active { background: rgba(29,158,117,.2); color: var(--green-500); }
.app-screen-tab i { font-size: 18px; }
.app-screen-content { min-height: 160px; }
.app-feed-item { display: flex; gap: 10px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); align-items: flex-start; }
.app-feed-thumb { width: 48px; height: 48px; border-radius: 8px; background: rgba(29,158,117,.2); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.app-feed-title { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 3px; line-height: 1.3; }
.app-feed-time  { font-size: 10px; color: var(--gray-400); }

/* ============================================================
   NEWS PORTAL SECTION
   ============================================================ */
.news-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.news-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.news-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--green-800), var(--dark-800));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
}
.news-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  background: var(--green-600);
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.news-card-body { padding: 18px; }
.news-card-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--dark-800); margin-bottom: 8px; line-height: 1.3; }
.news-card-excerpt { font-size: 13px; color: var(--gray-600); line-height: 1.5; margin-bottom: 14px; }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; font-size: 11px; color: var(--gray-400); }

/* Featured news */
.news-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}
.news-main-card {
  background: var(--dark-800);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.news-main-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-800), var(--dark-900));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 100px;
}
.news-main-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 40%, transparent 100%);
}
.news-main-card-content {
  position: relative;
  z-index: 1;
  padding: 28px;
}
.news-main-card-content .eyebrow { color: var(--green-100); margin-bottom: 8px; display: block; }
.news-main-card-content h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 10px; }
.news-main-card-content p { font-size: 14px; color: var(--gray-200); margin-bottom: 16px; line-height: 1.5; }

.news-side { display: flex; flex-direction: column; gap: 12px; }
.news-mini {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: all var(--transition);
  align-items: flex-start;
}
.news-mini:hover { box-shadow: var(--shadow-sm); border-color: var(--green-100); }
.news-mini-emoji { font-size: 28px; flex-shrink: 0; }
.news-mini-title { font-size: 13px; font-weight: 600; color: var(--dark-800); margin-bottom: 4px; line-height: 1.3; }
.news-mini-time  { font-size: 11px; color: var(--gray-400); }

/* ============================================================
   HIGGSFIELD 24/7 SECTION
   ============================================================ */
.higgsfield-section {
  background: var(--dark-900);
  padding: 80px 0;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.higgsfield-section .section-header h2 { color: var(--white); }
.higgsfield-section .section-header p  { color: var(--gray-200); }
.higgsfield-section .eyebrow { color: var(--gold-400); }
.hf-channel-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-top: 36px; }
.hf-channel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 20px 12px;
  text-align: center;
  transition: all var(--transition);
}
.hf-channel:hover { background: rgba(255,255,255,.08); border-color: rgba(83,74,183,.4); }
.hf-channel-icon { font-size: 28px; color: #7f77dd; margin-bottom: 8px; }
.hf-channel-name { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.hf-channel-freq { font-size: 11px; color: var(--gray-400); }
.hf-channel-badge { font-size: 10px; color: var(--green-500); margin-top: 4px; font-weight: 600; }

.hf-pipeline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hf-step {
  flex: 1;
  min-width: 120px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 16px 12px;
  text-align: center;
}
.hf-step.active { background: rgba(29,158,117,.12); border-color: rgba(29,158,117,.3); }
.hf-step.hf-brand { background: rgba(83,74,183,.15); border-color: rgba(83,74,183,.3); }
.hf-step-icon { font-size: 20px; color: var(--green-500); margin-bottom: 6px; }
.hf-step.hf-brand .hf-step-icon { color: #7f77dd; }
.hf-step-name { font-size: 12px; font-weight: 600; color: var(--white); margin-bottom: 2px; }
.hf-step-sub  { font-size: 10px; color: var(--gray-400); }
.hf-arrow { color: var(--gray-600); font-size: 16px; flex-shrink: 0; }

/* ============================================================
   REVENUE PROJECTIONS SECTION
   ============================================================ */
.revenue-section { background: var(--green-800); padding: 80px 0; }
.revenue-section .section-header h2 { color: var(--white); }
.revenue-section .section-header p  { color: var(--green-100); }
.revenue-section .eyebrow { color: var(--gold-400); }
.revenue-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.revenue-metric {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}
.revenue-metric-num { font-size: 2rem; font-weight: 700; color: var(--white); font-family: var(--font-display); }
.revenue-metric-num span { font-size: 1.1rem; color: var(--gold-400); }
.revenue-metric-label { font-size: 12px; color: var(--green-100); margin-top: 4px; }
.revenue-bar-list { display: flex; flex-direction: column; gap: 14px; }
.revenue-bar-item { }
.revenue-bar-header { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 6px; }
.revenue-bar-name { color: var(--green-100); }
.revenue-bar-val  { font-weight: 600; color: var(--white); }
.revenue-bar-bg   { background: rgba(255,255,255,.12); border-radius: 6px; height: 10px; }
.revenue-bar-fill { height: 10px; border-radius: 6px; transition: width 1s ease; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial-stars { color: var(--gold-500); font-size: 14px; margin-bottom: 12px; }
.testimonial-text { font-size: 15px; color: var(--gray-800); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-50);
  border: 2px solid var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--dark-800); }
.testimonial-role { font-size: 12px; color: var(--gray-400); }

/* ============================================================
   NEWSLETTER / CTA
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--green-800), var(--dark-900));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,160,23,.12) 0%, transparent 70%);
}
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p  { color: var(--green-100); font-size: 17px; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 24px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-size: 15px;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.4); }
.newsletter-form input:focus { border-color: var(--green-500); }
.cta-section .cta-trust { font-size: 12px; color: var(--gray-400); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--dark-900); padding: 60px 0 32px; border-top: 1px solid rgba(255,255,255,.06); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 32px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--gray-400); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  font-size: 16px;
  transition: all var(--transition);
}
.footer-social-link:hover { background: rgba(255,255,255,.14); color: var(--white); }
.footer-col h4 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: var(--gray-400); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-500); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 12px; color: var(--gray-600); }
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  background: rgba(255,255,255,.06);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-verse {
  text-align: center;
  font-size: 12px;
  color: var(--gray-600);
  margin-top: 24px;
  font-style: italic;
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: all var(--transition);
  cursor: pointer;
}
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.5); }
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: wa-pulse 2s ease-in-out infinite;
}
@keyframes wa-pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(1.6);opacity:0} }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hf-channel-grid { grid-template-columns: repeat(3, 1fr); }
  .revenue-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .hero-store .container { grid-template-columns: 1fr; }
  .app-section .container { grid-template-columns: 1fr; }
  .hero-products-grid { display: none; }
  .nav-menu { display: none; }
  .nav-toggle { display: flex; }
  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark-900);
    padding: 16px;
    border-top: 1px solid rgba(255,255,255,.07);
    z-index: 999;
  }
  .hf-pipeline { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .newsletter-form { flex-direction: column; }
  .hf-channel-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ============================================================
   LOGO PNG — Inc. Missão Luvas de Ouro v1.0.3
   ============================================================ */
.nav-logo { display:flex; align-items:center; flex-shrink:0; text-decoration:none; }
.nav-logo-img {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity 200ms ease;
}
.nav-logo-img:hover { opacity: .85; }

/* ============================================================
   BÍBLIA SAGRADA MLO — Card destaque "Ajude a Missão" v1.0.4
   ============================================================ */

/* Card ebook da Bíblia com borda dourada especial */
.ebook-card.biblia-destaque {
  border: 2px solid var(--gold-500);
  background: linear-gradient(135deg, #fffae8 0%, #fff 60%);
  position: relative;
  overflow: hidden;
}
.ebook-card.biblia-destaque::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--green-600), var(--gold-500));
}
.biblia-missao-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--dark-800);
  color: var(--gold-400);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: .04em;
}

/* Hero botão da Bíblia — pulse no hover */
.btn--bible-mission {
  border: 1.5px solid var(--gold-400) !important;
  color: var(--gold-400) !important;
  position: relative;
}
.btn--bible-mission:hover {
  background: rgba(212,160,23,.12) !important;
  box-shadow: 0 0 16px rgba(212,160,23,.3);
}

/* ============================================================
   LOGO v1.0.7 — institucional sem símbolo público de registro
   v1.6.11: não injeta símbolo público de registro nas páginas.
   Produtos/arquivos/imagens já aprovados permanecem intactos.
   ============================================================ */
.nav-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}


/* Logo imagem */
.nav-logo-img {
  display: block;
  width: auto;
  object-fit: contain;
  transition: opacity 200ms ease, filter 300ms ease;
}
.nav-logo-img:hover { opacity: 0.88; }

/* Texto opcional ao lado do logo */
.nav-logo-text-block {
  display: flex;
  flex-direction: column;
  margin-left: 10px;
  line-height: 1.15;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

/* ── POSIÇÕES DO LOGO ─────────────────────────────────── */

/* Esquerda (padrão) */
.navbar--logo-left {
  justify-content: space-between;
}
.navbar--logo-left .nav-logo { order: 0; margin-right: auto; }
.navbar--logo-left .nav-menu  { order: 1; }
.navbar--logo-left .nav-actions { order: 2; margin-left: auto; }

/* Centro */
.navbar--logo-center {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.navbar--logo-center .nav-logo   { order: 1; justify-self: center; }
.navbar--logo-center .nav-menu   { order: 0; justify-self: start; }
.navbar--logo-center .nav-actions { order: 2; justify-self: end; }

/* Direita */
.navbar--logo-right {
  justify-content: space-between;
}
.navbar--logo-right .nav-logo   { order: 2; margin-left: auto; }
.navbar--logo-right .nav-menu   { order: 0; }
.navbar--logo-right .nav-actions { order: 1; margin-right: 16px; }

/* ── FOOTER LOGO ─────────────────────────────────────── */
.footer-logo-img {
  height: 52px;
  width: auto;
  transition: filter 300ms ease, opacity 200ms ease;
}
.footer-logo-img:hover { opacity: 0.85; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  .navbar--logo-center {
    display: flex;
    justify-content: space-between;
  }
  .nav-logo-wrapper::after {
    font-size: 8px;
    right: -8px;
    top: -3px;
  }
}

/* ============================================================
   FONTE NOTÍCIA TEXTO — v1.1.1
   Aplicada em todo o site conforme padrão editorial MLO
   Fallback: Georgia, serif (semelhante visual)
   ============================================================ */
:root {
  /* Notícia Texto = Source Serif 4 (mais próxima disponível no Google Fonts)
     Se tiver a fonte própria, suba via Plugin de Fontes e substitua aqui */
  --font-noticia: Georgia, 'Times New Roman', serif;
}

/* Aplicar Notícia Texto em todo o body e elementos editoriais */
body,
.entry-content,
.news-card-title,
.news-card-excerpt,
.news-main-card-content p,
.news-mini-title,
.product-card-title,
.ebook-title,
.testimonial-text,
.product-card-desc,
.hero-sub,
.app-feature-text .title,
.app-feature-text .sub,
.footer-col ul li a,
.footer-brand p,
p, li, td, th, label, input, textarea, select, button {
  font-family: var(--font-noticia);
}

/* Títulos mantêm Playfair Display para hierarquia visual */
h1, h2, h3, h4, h5, h6,
.hero-title,
.nav-logo-name,
.product-price,
.ebook-price {
  font-family: Georgia, 'Times New Roman', serif;
}

/* Navbar e botões — sans-serif para legibilidade em tamanho pequeno */
.navbar,
.nav-menu a,
.btn,
.btn-add-cart,
.badge,
.eyebrow,
.product-card-category,
.news-card-cat,
.topbar,
.hf-channel-name,
.hf-step-name,
code, pre, .font-mono {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Ajuste de line-height para fonte serifada */
body { line-height: 1.75; }
.entry-content { line-height: 1.85; font-size: 17px; }
p { line-height: 1.75; }

/* Versículos e citações — itálico elegante */
.verso,
blockquote,
.testimonial-text,
.footer-verse {
  font-style: italic;
  font-family: var(--font-noticia);
}

/* ============================================================
   SPEED LOCK v1.2.3 — Home leve sem quebrar checkout
   ============================================================ */
html.mlo-low-power .promo-strip-inner,
html.mlo-low-power .hero-eyebrow .dot,
html.mlo-low-power .wa-float {
  animation: none !important;
}
html.mlo-low-power .product-card,
html.mlo-low-power .ebook-card,
html.mlo-low-power .hf-step,
html.mlo-low-power .hf-channel-card,
html.mlo-low-power .app-feature,
html.mlo-low-power .news-card {
  transition: none !important;
  transform: none !important;
}
.btn-add-cart.is-loading {
  pointer-events: none;
  opacity: .88;
}
@supports (content-visibility: auto) {
  body.home .products-section,
  body.home .ebooks-section,
  body.home .news-section,
  body.home .testimonials-section,
  body.home .app-section,
  body.home .hf-section,
  body.home footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 760px;
  }
}
@media (max-width: 768px) {
  .promo-strip-inner,
  .hero-eyebrow .dot,
  .wa-float { animation: none !important; }
  .product-card:hover,
  .ebook-card:hover,
  .news-card:hover,
  .hero-product-card:hover { transform: none !important; }
  .nav-logo-img { max-height: 48px; width: auto; }
  .topbar { contain: layout paint; }
  .site-header { contain: layout paint; }
}

/* Selo verificado MLO — Azul Bíblico Tekhelet #0038a8 */
.mlo-selo-verificado {
    display:inline-block;
    vertical-align:middle;
    flex-shrink:0;
}
.nav-logo-name {
    display:inline-flex;
    align-items:center;
    gap:3px;
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  MLO ENTERPRISE — Paleta Neural Gospel Premium v1.4.0       ║
   ║  JESUS O SALVADOR — Romanos 8:37                             ║
   ║  Adiciona variáveis novas SEM remover as existentes          ║
   ║  Zero quebra de compatibilidade com componentes atuais       ║
   ╚══════════════════════════════════════════════════════════════╝ */
:root {
  /* Paleta enterprise — uso em novos blocos premium */
  --mlo-midnight:    #0A1128;  /* Confiança, autoridade, profundidade */
  --mlo-gold:         #D4AF37;  /* Valor, honra, excelência */
  --mlo-emerald:      #0E3B2E;  /* Vida, restauração, esperança */
  --mlo-purple:        #2D1B69;  /* Realeza, sabedoria, autoridade bíblica */
  --mlo-offwhite:     #F8F9FA;  /* Leitura limpa, paz */
  --mlo-blue-gray:    #C9D1E3;  /* Texto secundário sofisticado */
  --mlo-card-dark:    #10182F;  /* Profundidade visual sem cansar */
  --mlo-glow-gold:    0 0 32px rgba(212,175,55,.22);
  --mlo-glow-gold-sm: 0 0 16px rgba(212,175,55,.18);
  --mlo-border-gold:  rgba(212,175,55,.28);
}

/* ── Sistema Neural Premium — utilitários para novos blocos ── */
.mlo-neural-bg {
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(45,27,105,.25), transparent),
                linear-gradient(180deg, var(--mlo-midnight) 0%, #0d1530 100%);
    position: relative;
    overflow: hidden;
}
.mlo-neural-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(90deg, rgba(212,175,55,.04) 1px, transparent 1px),
        linear-gradient(rgba(212,175,55,.04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    opacity: .5;
}
.mlo-glass-card {
    background: rgba(16,24,47,.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid var(--mlo-border-gold);
    border-radius: var(--radius-lg);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.mlo-glass-card:hover {
    border-color: rgba(212,175,55,.55);
    box-shadow: var(--mlo-glow-gold);
    transform: translateY(-2px);
}
.mlo-glow-cta {
    box-shadow: var(--mlo-glow-gold-sm);
    transition: box-shadow .25s ease, transform .2s ease;
}
.mlo-glow-cta:hover {
    box-shadow: var(--mlo-glow-gold);
    transform: translateY(-2px);
}
.mlo-eyebrow-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--mlo-gold);
    background: rgba(212,175,55,.1);
    border: 1px solid var(--mlo-border-gold);
    padding: 6px 16px;
    border-radius: 30px;
}
.mlo-text-secondary-premium {
    color: var(--mlo-blue-gray);
}
.mlo-card-premium {
    background: var(--mlo-card-dark);
    border: 1px solid var(--mlo-border-gold);
    border-radius: var(--radius-lg);
}

/* ── WhatsApp — pulse suave premium (substitui/reforça o existente) ── */
@keyframes mlo-wa-pulse-premium {
    0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.45); }
    70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.mlo-whatsapp-float {
    animation: mlo-wa-pulse-premium 2.6s ease-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .mlo-whatsapp-float { animation: none; }
    .mlo-glass-card, .mlo-glow-cta { transition: none; }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  MLO v1.4.1 — Visual Premium Mobile + Produto Desejo Lock    ║
   ║  Escopo: vitrines/cards/imagens. PageSpeed preservado.        ║
   ╚══════════════════════════════════════════════════════════════╝ */
#loja.section--light,
#ebooks.section {
  background:
    radial-gradient(ellipse 70% 45% at 14% 0%, rgba(212,175,55,.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 88% 6%, rgba(45,27,105,.20), transparent 60%),
    linear-gradient(180deg, #07120e 0%, #0A1128 100%) !important;
  color: var(--mlo-offwhite);
  position: relative;
  overflow: hidden;
}
#loja.section--light::before,
#ebooks.section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(212,175,55,.035) 1px, transparent 1px),
    linear-gradient(rgba(212,175,55,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  pointer-events: none;
}
#loja > .container,
#ebooks > .container { position: relative; z-index: 1; }
#loja .section-header h2,
#ebooks .section-header h2 { color: var(--mlo-offwhite); }
#loja .section-header p,
#ebooks .section-header p { color: var(--mlo-blue-gray); }
#loja .section-header .btn--primary { background: var(--mlo-gold); color: #08110e; box-shadow: 0 12px 30px rgba(212,175,55,.22); }

#loja .grid-4 { gap: 28px; }
#loja .product-card.mlo-product-premium-card {
  --mlo-product-accent: var(--mlo-gold);
  background: linear-gradient(180deg, rgba(16,24,47,.98), rgba(7,18,14,.98)) !important;
  border: 1px solid rgba(212,175,55,.30) !important;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.05);
  color: var(--mlo-offwhite);
  overflow: hidden;
  min-height: 100%;
}
#loja .product-card.mlo-product-premium-card:hover {
  border-color: rgba(212,175,55,.62) !important;
  box-shadow: 0 24px 56px rgba(0,0,0,.34), 0 0 26px rgba(212,175,55,.14);
  transform: translateY(-4px);
}
#loja .product-card-thumb {
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 170px;
  background: #050a15;
  border-bottom: 1px solid rgba(212,175,55,.22);
}
#loja .product-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.18) 100%);
  pointer-events: none;
}
#loja .product-card-thumb img { transform: scale(1.01); }
#loja .product-card-badge {
  background: rgba(255,255,255,.94) !important;
  color: #8A1521 !important;
  border: 1px solid rgba(212,175,55,.28);
  box-shadow: 0 8px 18px rgba(0,0,0,.22);
  z-index: 2;
}
#loja .product-card-wishlist {
  background: rgba(10,17,40,.72);
  color: var(--mlo-gold);
  border: 1px solid rgba(212,175,55,.35);
  box-shadow: 0 8px 18px rgba(0,0,0,.24);
  z-index: 2;
}
#loja .product-card-body { padding: 22px; }
#loja .product-card-category { color: var(--mlo-gold); letter-spacing: .12em; }
#loja .product-card-title { color: var(--mlo-offwhite); font-size: 19px; line-height: 1.2; margin-bottom: 10px; }
#loja .product-card-stars span { color: #c7d6cd; }
#loja .product-card-desc { color: #c9d1e3; font-size: 14px; line-height: 1.5; }
#loja .product-price-old { color: rgba(201,209,227,.55); }
#loja .product-price { color: var(--mlo-gold); font-size: 27px; text-shadow: 0 0 18px rgba(212,175,55,.14); }
#loja .btn-add-cart {
  background: linear-gradient(135deg, #D4AF37, #F0BD35);
  color: #07120e;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 10px 24px rgba(212,175,55,.22);
}
#loja .btn-add-cart:hover { background: linear-gradient(135deg, #F0BD35, #D4AF37); }

#loja .mlo-product-devocional { --mlo-product-accent:#3BBF95; }
#loja .mlo-product-planner { --mlo-product-accent:#D4AF37; }
#loja .mlo-product-casamento { --mlo-product-accent:#8B5CF6; }
#loja .mlo-product-pastor { --mlo-product-accent:#D4AF37; }
#loja .mlo-product-lideranca { --mlo-product-accent:#6D4CFF; }
#loja .mlo-product-familia { --mlo-product-accent:#3BBF95; }
#loja .mlo-product-jovem { --mlo-product-accent:#E94F37; }
#loja .mlo-product-wallpapers { --mlo-product-accent:#2778EA; }

#ebooks .grid-2 { gap: 28px; }
#ebooks .ebook-card.mlo-ebook-premium-card {
  background: rgba(16,24,47,.94) !important;
  border: 1px solid rgba(212,175,55,.28) !important;
  box-shadow: 0 16px 42px rgba(0,0,0,.22);
  color: var(--mlo-offwhite);
  align-items: center;
}
#ebooks .ebook-cover {
  width: 168px;
  height: 96px;
  border-radius: 14px;
  border: 1px solid rgba(212,175,55,.28);
  background: #050a15;
  box-shadow: 0 14px 26px rgba(0,0,0,.28);
}
#ebooks .ebook-title { color: var(--mlo-offwhite); font-size: 20px; }
#ebooks .ebook-desc { color: var(--mlo-blue-gray); }
#ebooks .ebook-price { color: var(--mlo-gold); font-size: 25px; }
#ebooks .ebook-format { color: #b7c8c0; }
#ebooks .ebook-card .btn--primary { background: linear-gradient(135deg, #0f6e56, #1d9e75); color: #fff; }

/* Vitrine por intenção: legibilidade mobile/desktop sem peso visual */
section[aria-labelledby="intencao-heading"].mlo-neural-bg .grid-4 { gap: 22px; }
section[aria-labelledby="intencao-heading"].mlo-neural-bg .mlo-glass-card {
  min-height: 92px;
  justify-content: center;
  background: rgba(10,17,40,.78);
}
section[aria-labelledby="intencao-heading"].mlo-neural-bg .mlo-glass-card span { color: #fff; font-size: 16px !important; }

/* Produto âncora: grid robusto no mobile, sem scroll horizontal/colunas espremidas */
.mlo-biblia-grid { min-width: 0; }
.mlo-biblia-anchor { color: var(--mlo-offwhite); }

@media (max-width: 1024px) {
  #loja .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 640px) {
  #loja.section--light,
  #ebooks.section { padding: 54px 0; }
  #loja .grid-4,
  #ebooks .grid-2 { grid-template-columns: 1fr !important; gap: 22px; }
  #loja .section-header,
  #ebooks .section-header { margin-bottom: 28px; }
  #loja .section-header h2,
  #ebooks .section-header h2 { font-size: clamp(2rem, 10vw, 2.6rem); }
  #loja .product-card.mlo-product-premium-card { border-radius: 26px; }
  #loja .product-card-thumb { min-height: 205px; }
  #loja .product-card-body { padding: 22px 22px 24px; }
  #loja .product-card-title { font-size: 1.45rem; }
  #loja .product-card-desc { font-size: 1rem; }
  #loja .product-card-footer { flex-direction: column; align-items: stretch; gap: 16px; }
  #loja .product-price-group { flex-direction: row; align-items: baseline; gap: 10px; }
  #loja .product-price { font-size: 2rem; }
  #loja .btn-add-cart { width: 100%; justify-content: center; padding: 15px 22px; font-size: 1rem; }
  #ebooks .ebook-card.mlo-ebook-premium-card { display: block; padding: 20px; }
  #ebooks .ebook-cover { width: 100%; height: auto; aspect-ratio: 16/9; margin-bottom: 18px; }
  #ebooks .ebook-title { font-size: 1.35rem; }
  #ebooks .ebook-meta { gap: 12px; }
  #ebooks .ebook-card .btn--sm { width: 100%; justify-content: center; padding: 14px 20px; }
  section[aria-labelledby="intencao-heading"].mlo-neural-bg .grid-4 { grid-template-columns: 1fr !important; }
  section[aria-labelledby="intencao-heading"].mlo-neural-bg .mlo-glass-card { min-height: 84px; padding: 20px !important; }
  .mlo-biblia-grid { grid-template-columns: 1fr !important; gap: 34px !important; }
  .mlo-biblia-anchor { padding: 46px 0 !important; }
  .mlo-biblia-anchor [style*="width:240px"] { width: 210px !important; height: 280px !important; }
  .whatsapp-float { right: 18px; bottom: 18px; }
  .whatsapp-btn { width: 54px; height: 54px; font-size: 26px; }
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  MLO v1.4.1 — Premium Product Art Integration Lock           ║
   ║  Escopo: imagem/capa/card mobile first. Sem JS novo.          ║
   ╚══════════════════════════════════════════════════════════════╝ */
#loja .product-card-thumb,
.mlo-product-premium-card .product-card-thumb {
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  min-height: 250px !important;
  background: #07120e !important;
}
#loja .product-card-thumb img,
.mlo-product-premium-card .product-card-thumb img {
  object-fit: cover !important;
  object-position: center center !important;
  transform: none !important;
  image-rendering: auto;
}
#loja .product-card.mlo-product-premium-card {
  background: #fff !important;
  color: #07120e !important;
  border-color: rgba(10,17,40,.10) !important;
  box-shadow: 0 12px 38px rgba(10,17,40,.08) !important;
}
#loja .product-card-title { color:#07120e !important; }
#loja .product-card-desc { color:#31554a !important; }
#loja .product-card-stars span { color:#729184 !important; }
#loja .product-card-category { color:#0f9a73 !important; }
#loja .product-price { color:#067a5d !important; text-shadow:none !important; }
#loja .btn-add-cart {
  background: linear-gradient(135deg, #087457, #11a779) !important;
  color:#fff !important;
  box-shadow: 0 10px 28px rgba(6,122,93,.22) !important;
}
#loja .product-card-badge {
  background: #fff2f2 !important;
  color: #9d1730 !important;
}
#loja .product-card-wishlist {
  background: rgba(255,255,255,.96) !important;
  color:#0A1128 !important;
}

#ebooks .grid-2 { align-items: stretch; }
#ebooks .ebook-card.mlo-ebook-premium-card {
  display: grid !important;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr) !important;
  gap: 28px !important;
  align-items: center !important;
  padding: 28px !important;
  min-height: 310px !important;
  background: #fff !important;
  color: #07120e !important;
  border: 1px solid rgba(10,17,40,.10) !important;
  border-radius: 24px !important;
  box-shadow: 0 14px 40px rgba(10,17,40,.06) !important;
}
#ebooks .ebook-card.mlo-ebook-premium-card:hover {
  transform: translateY(-3px) !important;
  border-color: rgba(212,175,55,.32) !important;
  box-shadow: 0 18px 52px rgba(10,17,40,.10) !important;
}
#ebooks .ebook-cover {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 210px !important;
  border-radius: 18px !important;
  background:#07120e !important;
  overflow:hidden !important;
  border: 1px solid rgba(212,175,55,.20) !important;
  box-shadow: 0 18px 34px rgba(10,17,40,.18) !important;
}
#ebooks .ebook-cover img {
  object-fit: cover !important;
  object-position: center center !important;
}
#ebooks .ebook-title { color:#07120e !important; font-size: 1.35rem !important; }
#ebooks .ebook-desc { color:#31554a !important; font-size: .98rem !important; }
#ebooks .ebook-price { color:#067a5d !important; font-size: 1.7rem !important; }
#ebooks .ebook-format { color:#6c8b7f !important; }
#ebooks .ebook-card .eyebrow { color:#0f9a73 !important; }
#ebooks .ebook-card .btn--primary,
#ebooks .ebook-card .btn--sm {
  background: linear-gradient(135deg, #087457, #11a779) !important;
  color:#fff !important;
  min-width: 140px;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(6,122,93,.22);
}

@media (max-width: 1180px) {
  #ebooks .ebook-card.mlo-ebook-premium-card { grid-template-columns: 180px 1fr !important; min-height: 260px !important; }
  #ebooks .ebook-cover { min-height: 180px !important; }
}
@media (max-width: 640px) {
  #loja .product-card-thumb,
  .mlo-product-premium-card .product-card-thumb { min-height: 290px !important; aspect-ratio: 1 / 1 !important; }
  #ebooks .ebook-card.mlo-ebook-premium-card {
    display: block !important;
    padding: 18px !important;
    min-height: auto !important;
    border-radius: 22px !important;
  }
  #ebooks .ebook-cover {
    width: 100% !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    margin: 0 0 18px 0 !important;
  }
  #ebooks .ebook-title { font-size: 1.55rem !important; line-height:1.15 !important; }
  #ebooks .ebook-desc { font-size: 1rem !important; }
  #ebooks .ebook-meta { flex-direction: column !important; align-items: stretch !important; gap: 12px !important; }
  #ebooks .ebook-price { font-size: 2rem !important; }
  #ebooks .ebook-card .btn--primary,
  #ebooks .ebook-card .btn--sm { width:100% !important; padding: 15px 20px !important; font-size:1rem !important; }
}


/* ╔══════════════════════════════════════════════════════════════╗
   ║  MLO v1.4.1 — PRODUCT ART FULL VISIBILITY HOTFIX             ║
   ║  Escopo: exibir a embalagem premium inteira, sem crop tímido.║
   ╚══════════════════════════════════════════════════════════════╝ */
#loja .product-card-thumb,
.mlo-product-premium-card .product-card-thumb {
  aspect-ratio: 1 / 1 !important;
  min-height: 330px !important;
  height: auto !important;
  padding: 10px !important;
  background:
    radial-gradient(circle at 50% 35%, rgba(212,175,55,.16), transparent 42%),
    linear-gradient(135deg, #07120e 0%, #0A1128 55%, #08110e 100%) !important;
}
#loja .product-card-thumb img,
.mlo-product-premium-card .product-card-thumb img {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 18px !important;
  transform: none !important;
  filter: saturate(1.06) contrast(1.03);
}
#loja .product-card-thumb::after { display:none !important; }
#loja .product-card.mlo-product-premium-card {
  overflow: hidden !important;
  border-radius: 26px !important;
}
#loja .product-card-body { padding: 24px 24px 26px !important; }
#loja .product-card-title { font-size: 1.28rem !important; line-height: 1.16 !important; }
#loja .product-card-desc { min-height: 42px; }

/* Ebooks & Infoprodutos: formato vitrine premium, capa grande e legível */
#ebooks .grid-2 {
  grid-template-columns: 1fr !important;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  gap: 30px !important;
}
#ebooks .ebook-card.mlo-ebook-premium-card {
  display: grid !important;
  grid-template-columns: minmax(300px, 360px) minmax(0, 1fr) !important;
  gap: 34px !important;
  align-items: center !important;
  min-height: 410px !important;
  padding: 30px !important;
  border-radius: 28px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,1), rgba(250,253,251,1)) !important;
  border: 1px solid rgba(10,17,40,.11) !important;
  box-shadow: 0 18px 54px rgba(10,17,40,.09) !important;
}
#ebooks .ebook-cover {
  width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 1 / 1 !important;
  padding: 10px !important;
  border-radius: 24px !important;
  background:
    radial-gradient(circle at center, rgba(212,175,55,.18), transparent 46%),
    linear-gradient(135deg, #07120e, #0A1128) !important;
  overflow: hidden !important;
  box-shadow: 0 22px 42px rgba(10,17,40,.22) !important;
}
#ebooks .ebook-cover img {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 18px !important;
  filter: saturate(1.06) contrast(1.03);
}
#ebooks .ebook-title { font-size: clamp(1.65rem, 2.4vw, 2.25rem) !important; line-height:1.08 !important; }
#ebooks .ebook-desc { font-size: 1.05rem !important; line-height:1.58 !important; max-width: 620px; }
#ebooks .ebook-price { font-size: 2.25rem !important; font-weight: 900 !important; }
#ebooks .ebook-card .btn--primary,
#ebooks .ebook-card .btn--sm { padding: 16px 26px !important; font-size: 1rem !important; border-radius: 14px !important; }

@media (max-width: 1180px) {
  #loja .product-card-thumb,
  .mlo-product-premium-card .product-card-thumb { min-height: 285px !important; }
  #ebooks .ebook-card.mlo-ebook-premium-card { grid-template-columns: minmax(260px, 320px) 1fr !important; min-height: 360px !important; }
}
@media (max-width: 760px) {
  #loja .grid-4 { grid-template-columns: 1fr !important; }
  #loja .product-card-thumb,
  .mlo-product-premium-card .product-card-thumb { min-height: 0 !important; aspect-ratio: 1 / 1 !important; padding: 12px !important; }
  #ebooks .ebook-card.mlo-ebook-premium-card { display:block !important; padding: 18px !important; min-height:auto !important; }
  #ebooks .ebook-cover { margin-bottom: 20px !important; padding: 10px !important; }
  #ebooks .ebook-title { font-size: 1.7rem !important; }
  #ebooks .ebook-desc { font-size: 1rem !important; }
}

/* ============================================================
   MLO v1.5.5 — SOCIAL COMMERCE + TRUST FOOTER + AI AUTHORITY LOCK
   Provérbios 16:3 | בְּעֶזְרַת הַשֵּׁם
   ============================================================ */
.site-footer .footer-heading,
.footer-col h3.footer-heading {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.mlo-footer-trust {
  margin: 0 0 30px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(212,160,23,.20);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 8%, rgba(212,160,23,.14), transparent 34%),
    radial-gradient(circle at 92% 10%, rgba(16,185,129,.10), transparent 28%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
  box-shadow: 0 24px 90px rgba(0,0,0,.22);
}
.mlo-footer-trust-head {
  max-width: 860px;
  margin: 0 0 18px;
}
.mlo-footer-trust-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(212,160,23,.34);
  background: rgba(212,160,23,.10);
  color: #f7d76a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.mlo-footer-trust-head h3 {
  margin: 0 0 8px;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}
.mlo-footer-trust-head p {
  margin: 0;
  color: rgba(255,255,255,.72);
  max-width: 760px;
  font-size: 14px;
  line-height: 1.65;
}
.mlo-trust-seals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 20px;
}
.mlo-trust-seal {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}
.mlo-trust-seal span[aria-hidden="true"] {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(212,160,23,.12);
}
.mlo-footer-legal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.mlo-footer-legal-card {
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(2,8,6,.35);
}
.mlo-footer-legal-card strong {
  display: block;
  margin-bottom: 6px;
  color: #f7d76a;
  font-size: 12px;
  font-weight: 950;
}
.mlo-footer-legal-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.55;
}
.footer-bottom {
  align-items: flex-start;
}
.footer-copy strong {
  color: rgba(255,255,255,.78);
}
.footer-badges {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-badge {
  border: 1px solid rgba(255,255,255,.08);
}
.mlo-safe-product-page .mlo-safe-trust-mini {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0 0;
}
.mlo-safe-product-page .mlo-safe-trust-mini span {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.075);
  color: rgba(255,255,255,.86);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.25;
}
@media (max-width: 980px) {
  .mlo-trust-seals,
  .mlo-footer-legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mlo-safe-product-page .mlo-safe-trust-mini {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .mlo-trust-seals,
  .mlo-footer-legal-grid,
  .mlo-safe-product-page .mlo-safe-trust-mini {
    grid-template-columns: 1fr;
  }
  .footer-badges {
    justify-content: flex-start;
  }
}


/* ============================================================
   MLO v1.5.6 — PUBLIC FOOTER CLEAN READABILITY LOCK
   Remove poluição técnica do rodapé público e preserva contraste.
   ============================================================ */
.site-footer .mlo-footer-trust--minimal,
.site-footer .mlo-footer-trust,
.site-footer .footer-badges,
.site-footer .footer-badge {
  color: #f8fff9 !important;
}
.site-footer .mlo-trust-seal {
  color: #f8fff9 !important;
  background: rgba(255,255,255,.10) !important;
  border-color: rgba(255,255,255,.16) !important;
}
.site-footer .footer-badges {
  gap: 10px !important;
}
.site-footer .footer-badge {
  background: rgba(255,255,255,.09) !important;
  border-color: rgba(255,255,255,.14) !important;
}

/* ╔══════════════════════════════════════════════════════════════╗
   ║  MLO v1.6.2 — NEURAL MARKETING COLOR LOCK                    ║
   ║  Paleta psicológica: midnight (autoridade) + gold (valor/fé) ║
   ║  + esmeralda (confiança/WhatsApp) + branco quente (leitura). ║
   ║  CSS puro, sem lib, sem JS, respeitando reduced-motion.      ║
   ╚══════════════════════════════════════════════════════════════╝ */

/* ── Botão WhatsApp flutuante: vivo, premium, clicável ── */
.whatsapp-btn {
  background: linear-gradient(145deg, #2FE07A 0%, #1FB65C 55%, #0E3B2E 130%);
  border: 1px solid rgba(212,175,55,.42);            /* borda neural dourada */
  box-shadow:
    0 6px 22px rgba(20,140,80,.42),                   /* sombra verde suave */
    0 0 18px rgba(47,224,122,.28),                    /* glow leve */
    inset 0 1px 0 rgba(255,255,255,.28);
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.whatsapp-btn:hover,
.whatsapp-btn:focus-visible {
  transform: scale(1.08) translateY(-2px);
  border-color: rgba(212,175,55,.8);
  box-shadow:
    0 10px 30px rgba(20,140,80,.5),
    0 0 26px rgba(47,224,122,.4),
    0 0 14px rgba(212,175,55,.25),
    inset 0 1px 0 rgba(255,255,255,.32);
}
.whatsapp-btn:focus-visible { outline: 3px solid #FFF7DE; outline-offset: 2px; }
.whatsapp-pulse {
  border-color: rgba(47,224,122,.75);
  animation-duration: 2.6s;                           /* pulso mais calmo */
}

/* ── Preço e CTAs: âmbar/dourado de atenção imediata ── */
.product-price,
#loja .product-price {
  color: #F0C64B;
  text-shadow: 0 0 20px rgba(212,175,55,.20);
}
.btn-add-cart,
.btn--gold {
  background: linear-gradient(135deg, #D4AF37 0%, #F5CE55 60%, #D4AF37 100%);
  color: #071510;
  border: 1px solid rgba(255,247,222,.35);
  box-shadow: 0 10px 26px rgba(212,175,55,.26), inset 0 1px 0 rgba(255,255,255,.35);
  transition: transform 160ms ease, box-shadow 200ms ease;
}
.btn-add-cart:hover,
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(212,175,55,.38), 0 0 16px rgba(212,175,55,.22), inset 0 1px 0 rgba(255,255,255,.4);
  color: #071510;
}

/* ── Selos de acesso digital e confiança: esmeralda de segurança ── */
.product-card-stars,
#loja .product-card-stars span {
  color: #7FE6B4;
}
.footer-badge {
  border: 1px solid rgba(212,175,55,.30);
  background: linear-gradient(135deg, rgba(14,59,46,.55), rgba(10,17,40,.55));
  color: #E9F5EE;                                     /* branco quente */
}

/* ── Rodapé: leitura em branco quente, sem cinza morto ── */
.site-footer { color: #E9F0EA; }
.site-footer a { transition: color 160ms ease; }
.site-footer a:hover { color: #F0C64B; }
.footer-verse { color: #CFE4D6; }

@media (prefers-reduced-motion: reduce) {
  .whatsapp-btn, .btn-add-cart, .btn--gold { transition: none; }
  .whatsapp-btn:hover { transform: none; }
  .whatsapp-pulse { animation: none; }
}


/* ============================================================
   MLO v1.6.10 — Neural Gold Visual Fallback
   Botões amarelo Banco do Brasil + verde esmeralda + contraste.
   ============================================================ */
:root{--mlo-bb-gold:#f4c430;--mlo-bb-gold-hi:#ffd84d;--mlo-bb-gold-deep:#c99a12;--mlo-emerald:#0f8f6f;--mlo-ink:#06110d}
.btn--gold,.mlo-glow-cta,.mlo-btn-comprar,.mlo-checkout-product-link,#place_order{background:linear-gradient(180deg,#ffd84d,#f4c430 55%,#c99a12)!important;color:#06110d!important;font-weight:950!important;border-color:rgba(255,216,77,.95)!important;box-shadow:0 10px 28px rgba(244,196,48,.30)!important}
.btn--gold:hover,.mlo-glow-cta:hover,.mlo-btn-comprar:hover,.mlo-checkout-product-link:hover,#place_order:hover{background:linear-gradient(180deg,#ffe774,#ffd84d 55%,#e0b21b)!important;color:#050b08!important;transform:translateY(-1px)}
