:root {
  --gold: #C9A840;
  --gold-light: #e8c96a;
  --navy: #060810;
  --text: #f0f0f0;
  --mid: rgba(255,255,255,0.5);
  --border: rgba(255,255,255,0.1);
}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: #07090f;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ── */
.blog-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(6,8,16,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,64,0.15);
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-brand img { height: 38px; width: auto; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-brand-text span:first-child { font-size: 1rem; font-weight: 900; color: #fff; letter-spacing: 2px; }
.nav-brand-text span:last-child { font-size: .55rem; font-weight: 700; color: var(--gold); letter-spacing: 3px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: rgba(255,255,255,0.6); font-size: .78rem; font-weight: 700; text-decoration: none; letter-spacing: .5px; text-transform: uppercase; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.nav-cta { background: var(--gold); color: #000 !important; padding: 8px 20px; border-radius: 6px; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* ── HERO ── */
.post-hero {
  background: linear-gradient(150deg, #07090f 0%, #0d1225 60%, #07090f 100%);
  border-bottom: 1px solid rgba(201,168,64,0.12);
  padding: 72px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.post-hero::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,168,64,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.post-category {
  display: inline-block;
  background: rgba(201,168,64,0.1);
  border: 1px solid rgba(201,168,64,0.3);
  color: var(--gold);
  font-size: .7rem; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px;
  margin-bottom: 20px;
}
.post-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: #fff;
  line-height: 1.1; letter-spacing: -1px;
  max-width: 780px; margin: 0 auto 20px;
}
.post-title span { color: var(--gold); }
.post-meta {
  font-size: .8rem; color: var(--mid);
  font-weight: 600; letter-spacing: .5px;
}
.post-meta span { color: rgba(255,255,255,0.35); margin: 0 8px; }

/* ── LAYOUT ── */
.blog-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 860px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { order: -1; }
}

/* ── ARTICLE ── */
.post-body h2 {
  font-size: 1.35rem; font-weight: 800;
  color: #fff; margin: 40px 0 14px;
  letter-spacing: -.3px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}
.post-body h2:first-child { margin-top: 0; }
.post-body p { color: rgba(255,255,255,0.75); margin-bottom: 18px; font-size: .95rem; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 18px; }
.post-body li { color: rgba(255,255,255,0.75); margin-bottom: 8px; font-size: .95rem; }
.post-body strong { color: #fff; font-weight: 700; }
.post-body a { color: var(--gold); text-decoration: none; }
.post-body a:hover { text-decoration: underline; }

.info-box {
  background: rgba(201,168,64,0.06);
  border: 1px solid rgba(201,168,64,0.2);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 28px 0;
}
.info-box-label {
  font-size: .7rem; font-weight: 800;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 10px;
}
.info-box p { color: rgba(255,255,255,0.7); font-size: .88rem; margin-bottom: 0; }

.disclaimer-box {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 18px 22px;
  margin-top: 40px;
  font-size: .78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
}

/* ── SIDEBAR ── */
.blog-sidebar { position: sticky; top: 84px; }

.sidebar-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.sidebar-card h3 {
  font-size: .8rem; font-weight: 800;
  color: var(--gold); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 16px;
}
.sidebar-product {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: opacity .2s;
}
.sidebar-product:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-product:hover { opacity: .75; }
.sidebar-product img { width: 44px; height: 44px; object-fit: contain; border-radius: 6px; background: rgba(255,255,255,0.04); }
.sp-name { font-size: .82rem; font-weight: 700; color: #fff; }
.sp-price { font-size: .75rem; color: var(--gold); font-weight: 800; margin-top: 2px; }

.sidebar-cta {
  display: block;
  background: var(--gold);
  color: #000;
  text-align: center;
  font-weight: 900; font-size: .82rem;
  letter-spacing: .5px; text-transform: uppercase;
  padding: 12px; border-radius: 8px;
  text-decoration: none;
  margin-top: 16px;
  transition: background .2s;
}
.sidebar-cta:hover { background: var(--gold-light); }

.sidebar-wa {
  display: flex; align-items: center; gap: 10px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 10px;
  padding: 14px 16px;
  text-decoration: none;
  transition: background .2s;
}
.sidebar-wa:hover { background: rgba(37,211,102,0.18); }
.sidebar-wa svg { width: 22px; height: 22px; fill: #25D366; flex-shrink: 0; }
.sidebar-wa-text { font-size: .78rem; font-weight: 700; color: rgba(255,255,255,0.75); }
.sidebar-wa-text strong { color: #25D366; display: block; font-size: .82rem; }

/* ── BLOG INDEX ── */
.blog-index-header {
  background: linear-gradient(150deg, #07090f 0%, #0d1225 60%, #07090f 100%);
  border-bottom: 1px solid rgba(201,168,64,0.12);
  padding: 72px 40px 60px;
  text-align: center;
}
.blog-index-header h1 { font-size: 2.8rem; font-weight: 900; color: #fff; letter-spacing: -1px; margin-bottom: 12px; }
.blog-index-header h1 span { color: var(--gold); }
.blog-index-header p { color: var(--mid); font-size: 1rem; max-width: 520px; margin: 0 auto; }

.posts-grid {
  max-width: 1100px; margin: 0 auto;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.post-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.post-card:hover { border-color: rgba(201,168,64,0.35); transform: translateY(-3px); }
.post-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.pc-tag {
  display: inline-block;
  background: rgba(201,168,64,0.1); border: 1px solid rgba(201,168,64,0.25);
  color: var(--gold); font-size: .65rem; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 14px;
}
.pc-title { font-size: 1.1rem; font-weight: 800; color: #fff; line-height: 1.3; margin-bottom: 10px; }
.pc-excerpt { font-size: .82rem; color: var(--mid); line-height: 1.6; flex: 1; margin-bottom: 18px; }
.pc-read { font-size: .75rem; font-weight: 800; color: var(--gold); letter-spacing: 1px; text-transform: uppercase; }

/* ── FOOTER ── */
.blog-footer {
  background: #040608;
  border-top: 1px solid rgba(201,168,64,0.1);
  padding: 40px;
  text-align: center;
  color: rgba(255,255,255,0.25);
  font-size: .78rem;
  font-weight: 600;
}
.blog-footer a { color: rgba(255,255,255,0.35); text-decoration: none; margin: 0 12px; }
.blog-footer a:hover { color: var(--gold); }

/* ── FLOATING WHATSAPP ── */
#waFloat{position:fixed;bottom:24px;right:24px;z-index:99;width:54px;height:54px;background:#25D366;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(0,0,0,0.4);transition:transform .2s;text-decoration:none}
#waFloat:hover{transform:scale(1.1)}
#waFloat svg{width:28px;height:28px;fill:#fff}
#waFloat::before{content:'';position:absolute;width:100%;height:100%;border-radius:50%;background:#25D366;animation:waPulse 2.5s ease-out infinite;z-index:-1}
@keyframes waPulse{0%{transform:scale(1);opacity:.5}100%{transform:scale(1.7);opacity:0}}
