/*
Theme Name: Sad Baile
Theme URI: https://sadbaile.com
Author: Sad Baile
Author URI: https://sadbaile.com
Description: Tema custom da Sad Baile — produtora de festas/raves underground. Paleta roxa (#c026d3), tipografia Inter / Bebas Neue / Archivo Black, estética Cyber Tribal / Brutalism. Tokens portados de design-system.css.
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 8.0
Text Domain: sadbaile
*/


/* ── RESET ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
input, button, select, textarea { font: inherit; }


/* ── TOKENS ───────────────────────────────────────────────────────────── */
:root {
  /* ─ Cores base ─ */
  --bg:           #050505;
  --bg-2:         #0c0a14;
  --card:         #111111;
  --card-2:       #1a1a1a;
  --line:         rgba(255, 255, 255, .08);
  --line-2:       rgba(255, 255, 255, .16);

  /* ─ Texto ─ */
  --text:         #f5f5f5;
  --muted:        #a8a8a8;
  --dim:          #888888;

  /* ─ Acento (roxo Sad Baile) ─ */
  --purple:       #c026d3;
  --purple-deep:  #a21caf;
  --purple-glow:  rgba(192,38,211, .35);
  --purple-soft:  rgba(192,38,211, .08);

  /* ─ Estados semânticos ─ */
  --green:        #10b981;
  --orange:       #f97316;
  --red:          #ef4444;
  --blue:         #3b82f6;

  /* ─ Fontes ─ */
  --font-body:      'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, Arial, sans-serif;
  --font-display:   'Bebas Neue', sans-serif;
  --font-display-2: 'Archivo Black', sans-serif;

  /* ─ Escala tipográfica ─ */
  --fs-xs:   10px;
  --fs-sm:   11px;
  --fs-base: 13px;
  --fs-md:   14px;
  --fs-lg:   15px;
  --fs-xl:   16px;
  --fs-2xl:  18px;
  --fs-3xl:  22px;
  --fs-4xl:  28px;
  --fs-5xl:  38px;

  /* ─ Espaçamentos ─ */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;

  /* ─ Bordas & cantos ─ */
  --radius-sm: 2px;
  --radius:    4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --radius-xl: 12px;

  /* ─ Sombras ─ */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .35);
  --shadow:    0 4px 14px rgba(0, 0, 0, .4);
  --shadow-lg: 0 12px 32px rgba(0, 0, 0, .55);

  /* ─ Transições ─ */
  --t-fast: .12s ease;
  --t:      .2s ease;
  --t-slow: .35s ease;

  /* ─ Z-index ─ */
  --z-base:   1;
  --z-nav:    50;
  --z-modal:  200;
  --z-veil:   250;
  --z-loader: 300;
  --z-toast:  400;
  --z-cc:     2100000000;
}


/* ── BASE ─────────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: var(--fs-md);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }


/* ── ACESSIBILIDADE ───────────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}
:focus:not(:focus-visible) { outline: none; }

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus,
.screen-reader-text:focus {
  position: fixed;
  top: 8px; left: 8px;
  z-index: 999;
  width: auto; height: auto;
  clip: auto;
  background: var(--purple);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: .5px;
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}


/* ── LAYOUT ───────────────────────────────────────────────────────────── */
.ds-container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: var(--sp-8); }
.ds-container-sm { max-width: 720px; }
.ds-container-lg { max-width: 1400px; }
@media (max-width: 600px) {
  .ds-container { padding-inline: var(--sp-5); }
}

.ds-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-6); }
.ds-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.ds-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-6); }
@media (max-width: 900px) {
  .ds-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ds-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ds-grid-2, .ds-grid-3, .ds-grid-4 { grid-template-columns: 1fr; }
}

.ds-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: var(--sp-8) 0;
}


/* ── TIPOGRAFIA ───────────────────────────────────────────────────────── */
.font-bebas    { font-family: var(--font-display);   letter-spacing: 2px; }
.font-archivo  { font-family: var(--font-display-2); letter-spacing: -.3px; line-height: 1; }

.text-muted    { color: var(--muted); }
.text-dim      { color: var(--dim); }
.text-purple   { color: var(--purple); }
.text-green    { color: var(--green); }
.text-red      { color: var(--red); }
.text-blue     { color: var(--blue); }
.text-center   { text-align: center; }
.text-right    { text-align: right; }
.text-uppercase { text-transform: uppercase; letter-spacing: 1.5px; }
.text-sm       { font-size: var(--fs-sm); }
.text-xs       { font-size: var(--fs-xs); }


/* ── SEÇÕES ───────────────────────────────────────────────────────────── */
.ds-section {
  padding: var(--sp-16) var(--sp-8);
}
@media (max-width: 768px) {
  .ds-section { padding: var(--sp-12) var(--sp-5); }
}

.ds-section-head {
  text-align: center;
  margin-bottom: 56px;
}

.ds-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--purple);
  padding: 5px 12px;
  border: 1px solid rgba(192,38,211, .35);
  border-radius: var(--radius-sm);
  background: var(--purple-soft);
}

.ds-section-title {
  font-family: var(--font-display-2);
  font-weight: 400;
  font-size: clamp(32px, 5.5vw, 60px);
  letter-spacing: -1px;
  line-height: 1.05;
  margin-top: 18px;
  color: var(--text);
}

.ds-section-sub {
  font-size: clamp(14px, 2.2vw, 16px);
  color: var(--muted);
  max-width: 560px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.ds-accent { color: var(--purple); }


/* ── NAVEGAÇÃO ────────────────────────────────────────────────────────── */
.ds-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  padding: 16px 32px;
  background: rgba(5, 5, 5, .72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
}

.ds-nav-brand {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  letter-spacing: 4px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
}
.ds-nav-brand span { color: var(--purple); }

.ds-nav-menu { display: flex; align-items: center; gap: var(--sp-6); list-style: none; }

.ds-nav-menu a,
.ds-nav-link {
  font-size: var(--fs-sm);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color var(--t);
}
.ds-nav-menu a:hover,
.ds-nav-link:hover,
.ds-nav-menu .current-menu-item a,
.ds-nav-link.active { color: var(--text); }


/* ── CARDS ────────────────────────────────────────────────────────────── */
.ds-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t);
}
.ds-card:hover {
  border-color: var(--line-2);
  box-shadow: var(--shadow);
}

.ds-card-header {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.ds-card-body   { padding: var(--sp-6); }
.ds-card-footer {
  padding: var(--sp-4) var(--sp-6);
  border-top: 1px solid var(--line);
}

.ds-card-lift {
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.ds-card-lift:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.5);
  border-color: var(--purple);
}


/* ── BOTÕES ───────────────────────────────────────────────────────────── */
.ds-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 11px 22px;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 600;
  letter-spacing: .3px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--t), box-shadow var(--t), transform var(--t), border-color var(--t), color var(--t);
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  user-select: none;
}
.ds-btn:active { transform: translateY(1px) !important; }

.ds-btn-primary {
  background: var(--purple);
  color: #fff;
  border-color: var(--purple);
}
.ds-btn-primary:hover {
  background: var(--purple-deep);
  border-color: var(--purple-deep);
  box-shadow: 0 0 20px var(--purple-glow);
}

.ds-btn-ghost {
  background: rgba(255, 255, 255, .04);
  color: var(--text);
  border-color: var(--line-2);
}
.ds-btn-ghost:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-soft);
}

.ds-btn-display {
  font-family: var(--font-display);
  font-size: var(--fs-base);
  letter-spacing: 4px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 13px 28px;
}

.ds-btn-sm  { padding: 7px 14px;  font-size: var(--fs-sm);  }
.ds-btn-lg  { padding: 14px 30px; font-size: var(--fs-lg);  }
.ds-btn-full { width: 100%; }


/* ── WORDPRESS CORE ───────────────────────────────────────────────────── */
.alignleft   { float: left;  margin: 0 var(--sp-6) var(--sp-4) 0; }
.alignright  { float: right; margin: 0 0 var(--sp-4) var(--sp-6); }
.aligncenter { display: block; margin: 0 auto var(--sp-4); }

.wp-caption,
.wp-block-image figcaption,
.wp-element-caption {
  font-size: var(--fs-xs);
  color: var(--dim);
  text-align: center;
  margin-top: var(--sp-2);
}

.sticky { border-left: 2px solid var(--purple); padding-left: var(--sp-4); }


/* ── CONTEÚDO (posts/páginas) ────────────────────────────────────────── */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: var(--font-display-2);
  color: var(--text);
  line-height: 1.2;
  margin: var(--sp-8) 0 var(--sp-4);
}
.entry-content p     { margin-bottom: var(--sp-4); }
.entry-content ul,
.entry-content ol     { margin: 0 0 var(--sp-4) var(--sp-6); }
.entry-content a      { color: var(--purple); text-decoration: underline; }
.entry-content a:hover { color: var(--purple-deep); }
.entry-content img    { border-radius: var(--radius-md); margin-bottom: var(--sp-4); }


/* ── PAGINAÇÃO ────────────────────────────────────────────────────────── */
.ds-pagination {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-8);
}
.ds-pagination a,
.ds-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 var(--sp-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: var(--fs-sm);
}
.ds-pagination a:hover { border-color: var(--purple); color: var(--purple); }
.ds-pagination .current { background: var(--purple); color: #fff; border-color: var(--purple); }

/* ============================================================
   BLOG — Fase 2 (cards de listagem, post individual, arquivos)
   ============================================================ */

.ds-container-narrow { max-width: 720px; } /* alias de .ds-container-sm */

/* Cabeçalho de arquivo/busca */
.sb-archive-header { margin-bottom: var(--sp-10); }
.sb-archive-header .ds-tag { margin-bottom: var(--sp-3); }
.sb-archive-desc { max-width: 640px; margin-top: var(--sp-3); }

/* Grid de cards de post */
.sb-card-grid { margin-top: var(--sp-8); }

.sb-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.sb-card:hover {
  transform: translateY(-3px);
  border-color: var(--purple);
  box-shadow: 0 10px 30px -12px var(--purple-glow);
}

.sb-card-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  overflow: hidden;
}
.sb-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease, opacity .35s ease;
}
.sb-card:hover .sb-card-media img { transform: scale(1.04); }

.sb-card-media-empty {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display, inherit);
  letter-spacing: .12em;
  font-size: var(--fs-2xl);
  color: var(--dim);
  opacity: .35;
}
.sb-card-media-empty span { color: var(--purple); }

.sb-card-body { display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.sb-card-body .ds-tag { align-self: flex-start; }

.sb-card-title {
  font-size: var(--fs-xl);
  line-height: 1.25;
  margin: 0;
}
.sb-card-title a { color: var(--text); transition: color .15s ease; }
.sb-card-title a:hover { color: var(--purple); }

.sb-card-excerpt {
  color: var(--muted);
  font-size: var(--fs-base);
  line-height: 1.55;
  margin: 0;
  /* limita a 3 linhas pra alinhar os cards */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sb-card-meta { margin-top: auto; padding-top: var(--sp-2); }

/* Post individual */
.sb-single-header { padding-bottom: 0; }
.sb-single-header .ds-tag { margin-bottom: var(--sp-4); }
.sb-single-title {
  font-size: var(--fs-5xl);
  line-height: 1.1;
  margin: 0 0 var(--sp-4);
  color: var(--text);
}
.sb-single-meta { display: flex; align-items: center; gap: var(--sp-3); }

.sb-single-cover { margin: var(--sp-8) 0; }
.sb-single-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.sb-single-body { padding-top: var(--sp-6); }
.sb-single-body .entry-content { font-size: var(--fs-lg); line-height: 1.75; }

.sb-single-footer { padding-top: 0; }
.sb-tags { display: flex; flex-wrap: wrap; gap: var(--sp-2); }
.ds-tag-muted {
  color: var(--muted);
  background: transparent;
  border: 1px solid var(--line);
}
.ds-tag-muted:hover { color: var(--purple); border-color: var(--purple); }

/* Navegação prev/next entre posts */
.sb-postnav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}
.sb-postnav a { color: var(--muted); font-size: var(--fs-base); transition: color .15s ease; }
.sb-postnav a:hover { color: var(--purple); }
.sb-postnav-next { text-align: right; }
@media (max-width: 600px) {
  .sb-postnav-grid { grid-template-columns: 1fr; }
  .sb-postnav-next { text-align: left; }
}

/* ============================================================
   EVENTOS — Fase 3 (single-evento + agenda)
   ============================================================ */

/* HERO */
.ev-hero { position: relative; min-height: 62vh; display: flex; align-items: flex-end; overflow: hidden; }
.ev-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(.5) saturate(.85); }
.ev-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(5,5,5,.2) 0%, rgba(5,5,5,.55) 50%, rgba(5,5,5,.96) 100%); }
.ev-hero-content { position: relative; z-index: 2; max-width: 860px; margin: 0 auto; padding: 100px var(--sp-8) var(--sp-12); width: 100%; }

.ev-breadcrumb { display: flex; gap: var(--sp-2); font-size: var(--fs-sm); letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: var(--sp-6); align-items: center; flex-wrap: wrap; }
.ev-breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.ev-breadcrumb a:hover { color: #fff; }
.ev-breadcrumb .sep { opacity: .3; }

.ev-status { display: inline-block; font-size: var(--fs-xs); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-sm); margin-bottom: var(--sp-4); }
.ev-city-tag { font-size: var(--fs-sm); letter-spacing: 3px; text-transform: uppercase; color: var(--purple); font-weight: 600; margin-bottom: var(--sp-3); }
.ev-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(32px, 6vw, 64px); letter-spacing: -2px; line-height: 1; margin-bottom: var(--sp-5); color: var(--text); }
.ev-meta { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.ev-meta-item { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-md); color: rgba(255,255,255,.78); }

/* BODY */
.ev-body { max-width: 860px; margin: 0 auto; padding: var(--sp-12) var(--sp-8) var(--sp-16); }
.ev-cta-box { background: linear-gradient(135deg, rgba(192,38,211,.12), rgba(109,40,217,.06)); border: 1px solid rgba(192,38,211,.3); border-radius: var(--radius-xl); padding: var(--sp-8); margin-bottom: var(--sp-12); display: flex; gap: var(--sp-6); align-items: center; flex-wrap: wrap; }
.ev-cta-info { flex: 1; min-width: 200px; }
.ev-cta-price { font-size: var(--fs-sm); letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.ev-cta-label { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-3xl); letter-spacing: 2px; color: var(--text); margin-bottom: 4px; }
.ev-cta-sub { font-size: var(--fs-base); color: var(--muted); }
.ev-btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--sp-2); padding: var(--sp-4) var(--sp-8); border-radius: var(--radius-md); font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-2xl); letter-spacing: 3px; background: var(--purple); color: #fff; transition: background .2s, box-shadow .2s; white-space: nowrap; }
.ev-btn:hover { background: var(--purple-deep); box-shadow: 0 0 32px var(--purple-glow); }
.ev-btn.disabled { background: rgba(255,255,255,.08); color: var(--dim); pointer-events: none; }

.ev-euvou { text-align: center; margin: calc(-1 * var(--sp-6)) 0 var(--sp-12); }
.ev-euvou p { font-size: var(--fs-base); color: var(--muted); margin-bottom: var(--sp-3); }

.ev-section { margin-bottom: var(--sp-12); }
.ev-section-label { font-size: var(--fs-xs); letter-spacing: 3px; text-transform: uppercase; color: var(--dim); margin-bottom: var(--sp-4); padding-bottom: var(--sp-3); border-bottom: 1px solid var(--line); }
.ev-desc { font-size: var(--fs-xl); line-height: 1.8; color: rgba(255,255,255,.82); }
.ev-desc p { margin-bottom: var(--sp-4); }

.ev-lineup-list { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.ev-lineup-chip { background: rgba(192,38,211,.1); border: 1px solid rgba(192,38,211,.3); color: #c4b5fd; padding: var(--sp-2) var(--sp-4); border-radius: var(--radius); font-size: var(--fs-base); font-weight: 600; }

.ev-info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--sp-4); }
.ev-info-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-5); }
.ev-info-card .label { font-size: var(--fs-xs); letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 6px; }
.ev-info-card .value { font-size: var(--fs-lg); font-weight: 600; color: var(--text); line-height: 1.4; }

.ev-seo-text { background: rgba(255,255,255,.02); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-8); margin-top: var(--sp-12); }
.ev-seo-text h2 { font-family: 'Archivo Black', sans-serif; font-size: var(--fs-2xl); margin-bottom: var(--sp-3); color: var(--text); }
.ev-seo-text p { font-size: var(--fs-md); color: var(--muted); line-height: 1.8; margin-bottom: var(--sp-3); }
.ev-seo-text p:last-child { margin-bottom: 0; }

@media (max-width: 600px) {
  .ev-hero-content { padding: 90px var(--sp-5) var(--sp-8); }
  .ev-body { padding: var(--sp-8) var(--sp-5) var(--sp-12); }
  .ev-cta-box { flex-direction: column; align-items: stretch; }
}

/* CARD DE EVENTO (agenda) */
.ev-card .sb-card-media { position: relative; }
.ev-card-badge { position: absolute; top: var(--sp-3); left: var(--sp-3); font-size: var(--fs-xs); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-sm); backdrop-filter: blur(6px); }
.ev-card-place { letter-spacing: .5px; text-transform: uppercase; }

/* ============================================================
   WOOCOMMERCE — Fase 4 (overrides pro tema escuro)
   ============================================================ */
.woocommerce, .woocommerce-page { color: var(--text); }
.woocommerce a { color: var(--purple); }
.sb-page-content { max-width: 100%; }

/* Botões */
.woocommerce .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button.alt,
.wc-block-components-button {
  background: var(--purple) !important;
  color: #fff !important;
  border-radius: var(--radius-md) !important;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  transition: background .2s, box-shadow .2s;
}
.woocommerce .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce .button.alt:hover,
.wc-block-components-button:hover {
  background: var(--purple-deep) !important;
  box-shadow: 0 0 24px var(--purple-glow);
}

/* Grid de produtos */
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); margin: 0; }
@media (max-width: 980px) { .woocommerce ul.products { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .woocommerce ul.products { grid-template-columns: 1fr; } }
.woocommerce ul.products li.product {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--sp-4);
  margin: 0 !important;
  width: auto !important;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.woocommerce ul.products li.product:hover { transform: translateY(-3px); border-color: var(--purple); box-shadow: 0 10px 30px -12px var(--purple-glow); }
.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: var(--fs-lg); color: var(--text); padding: var(--sp-3) 0 var(--sp-1); }
.woocommerce ul.products li.product .price { color: var(--text); font-weight: 700; }
.woocommerce ul.products li.product img { border-radius: var(--radius); margin-bottom: var(--sp-2); background: var(--bg-2); }

/* Preço + sale badge */
.woocommerce .price { color: var(--text); }
.woocommerce .price del { color: var(--dim); }
.woocommerce .price ins { color: var(--purple); text-decoration: none; }
.woocommerce span.onsale {
  background: var(--purple); color: #fff; border-radius: var(--radius-sm);
  font-family: 'Bebas Neue', sans-serif; letter-spacing: 1px; min-height: auto; min-width: auto; padding: 4px 12px; line-height: 1.4;
}

/* Produto individual */
.woocommerce div.product .product_title { font-family: 'Archivo Black', sans-serif; color: var(--text); }
.woocommerce div.product p.price, .woocommerce div.product span.price { color: var(--purple); font-size: var(--fs-3xl); }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: var(--card); border-color: var(--line); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: var(--bg-2); }
.woocommerce .quantity .qty,
.woocommerce table.shop_table,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce select,
.select2-container .select2-selection {
  background: var(--bg-2) !important;
  color: var(--text) !important;
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
}

/* Tabelas (cart/checkout/conta) */
.woocommerce table.shop_table { border-radius: var(--radius-lg); border-color: var(--line); }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--line); color: var(--text); }
.woocommerce-cart table.cart td.actions, .woocommerce .cart-collaterals .cart_totals { color: var(--text); }

/* Notices */
.woocommerce-message, .woocommerce-info, .woocommerce-error, .woocommerce-noreviews {
  background: var(--bg-2); color: var(--text); border-top: 3px solid var(--purple);
}
.woocommerce-message::before, .woocommerce-info::before { color: var(--purple); }

/* Breadcrumb da loja */
.woocommerce .woocommerce-breadcrumb { color: var(--dim); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }
.woocommerce .woocommerce-breadcrumb a { color: var(--muted); }

/* ============================================================
   SAD RECORDS / ARTISTAS — Fase 5
   ============================================================ */

/* Hero do artista */
.ar-hero { padding: var(--sp-12) 0 var(--sp-6); border-bottom: 1px solid var(--line); }
.ar-hero-top { display: flex; gap: var(--sp-6); align-items: center; flex-wrap: wrap; }
.ar-avatar {
  width: 96px; height: 96px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff; font-family: 'Archivo Black', sans-serif; font-size: var(--fs-3xl);
  border-radius: var(--radius-lg); letter-spacing: 1px;
}
.ar-name { font-family: 'Archivo Black', sans-serif; font-size: clamp(28px, 5vw, 48px); line-height: 1; margin: var(--sp-2) 0; color: var(--text); }
.ar-genres { color: var(--purple); font-size: var(--fs-md); font-weight: 600; }
.ar-cities { margin-top: var(--sp-1); }

.ar-stats { display: flex; flex-wrap: wrap; gap: var(--sp-6); margin-top: var(--sp-6); }
.ar-stat { display: flex; flex-direction: column; }
.ar-stat-val { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-3xl); color: var(--text); line-height: 1; }
.ar-stat-label { font-size: var(--fs-xs); letter-spacing: 1.5px; text-transform: uppercase; color: var(--dim); }

.ar-social { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-6); }

/* Corpo / seções */
.ar-body { padding: var(--sp-10) var(--sp-8) var(--sp-16); }
.ar-section { margin-bottom: var(--sp-10); }
.ar-section-title { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-2xl); letter-spacing: 2px; text-transform: uppercase; color: var(--text); margin-bottom: var(--sp-4); padding-bottom: var(--sp-2); border-bottom: 1px solid var(--line); }
.ar-highlights { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); }
.ar-highlights li { padding-left: var(--sp-5); position: relative; color: var(--muted); }
.ar-highlights li::before { content: '▹'; position: absolute; left: 0; color: var(--purple); }

.ar-video { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: var(--sp-4); background: var(--bg-2); }
.ar-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ar-release-text { color: var(--muted); margin-bottom: var(--sp-4); }

.ar-chips { display: flex; flex-wrap: wrap; gap: var(--sp-2); }

.ar-rider-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--sp-4); }
.ar-rider-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-5); }
.ar-rider-label { font-size: var(--fs-xs); letter-spacing: 2px; text-transform: uppercase; color: var(--purple); margin-bottom: var(--sp-3); }
.ar-rider-card ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.ar-rider-card li { color: var(--muted); font-size: var(--fs-base); }

.ar-booking { text-align: center; background: linear-gradient(135deg, rgba(192,38,211,.1), rgba(109,40,217,.05)); border: 1px solid rgba(192,38,211,.2); border-radius: var(--radius-xl); padding: var(--sp-10) var(--sp-6); }
.ar-booking .ar-section-title { border: 0; display: inline-block; }
.ar-booking p { margin-bottom: var(--sp-4); }

/* Roster (arquivo) */
.ar-card { display: flex; align-items: center; gap: var(--sp-4); padding: var(--sp-4); text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.ar-card:hover { transform: translateY(-3px); border-color: var(--purple); }
.ar-card-avatar {
  width: 56px; height: 56px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-deep));
  color: #fff; font-family: 'Archivo Black', sans-serif; font-size: var(--fs-lg);
  border-radius: var(--radius-md);
}
.ar-card-avatar.has-photo {
  background-size: cover; background-position: center center;
  background-repeat: no-repeat;
}
.ar-card-name { font-size: var(--fs-lg); color: var(--text); margin: 0 0 2px; }
.ar-card-genres { line-height: 1.3; }

/* ============================================================
   GALERIA / NEWSLETTER / COMENTÁRIOS — Fase 7
   ============================================================ */

/* Galeria — card de álbum */
.gl-card { display: flex; flex-direction: column; overflow: hidden; text-decoration: none; }
.gl-card .sb-card-media { position: relative; }
.gl-count { position: absolute; bottom: var(--sp-2); right: var(--sp-2); background: rgba(5,5,5,.75); color: #fff; font-size: var(--fs-xs); letter-spacing: 1px; text-transform: uppercase; padding: 3px 8px; border-radius: var(--radius-sm); backdrop-filter: blur(4px); }

/* Galeria — grid de fotos do álbum */
.gl-photos { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: var(--sp-2); margin-top: var(--sp-6); }
.gl-photo { display: block; aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); background: var(--bg-2); }
.gl-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.gl-photo:hover img { transform: scale(1.06); }

/* Newsletter */
.sb-news-section { padding: var(--sp-16) var(--sp-8); border-top: 1px solid var(--line); background: linear-gradient(180deg, transparent, var(--purple-soft)); }
.sb-news { max-width: 520px; margin: 0 auto; }
.sb-news-label { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-2xl); letter-spacing: 1px; color: var(--text); margin-bottom: var(--sp-4); }
.sb-news-row { display: flex; gap: var(--sp-2); }
.sb-news-input { flex: 1; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--text); padding: 0 var(--sp-4); font-size: var(--fs-md); min-height: 44px; }
.sb-news-input:focus { outline: 2px solid var(--purple); border-color: var(--purple); }
.sb-news-msg { margin-top: var(--sp-3); font-size: var(--fs-base); color: var(--muted); }
.sb-news-msg.ok { color: #34d399; }
.sb-news-msg.err { color: #f87171; }
@media (max-width: 480px) { .sb-news-row { flex-direction: column; } }

/* Comentários */
.sb-comments-inner { border-top: 1px solid var(--line); padding-top: var(--sp-8); }
.sb-comment-list { list-style: none; margin: var(--sp-6) 0; display: flex; flex-direction: column; gap: var(--sp-5); }
.sb-comment-list .children { list-style: none; margin: var(--sp-4) 0 0 var(--sp-6); display: flex; flex-direction: column; gap: var(--sp-4); }
.sb-comment-list .comment-body { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: var(--sp-5); }
.sb-comment-list .comment-author { display: flex; align-items: center; gap: var(--sp-2); font-size: var(--fs-base); }
.sb-comment-list .comment-author .fn { color: var(--text); font-weight: 600; font-style: normal; }
.sb-comment-list .comment-meta { font-size: var(--fs-xs); color: var(--dim); margin: var(--sp-1) 0 var(--sp-3); }
.sb-comment-list .comment-meta a { color: var(--dim); }
.sb-comment-list .comment-content { color: var(--muted); font-size: var(--fs-md); line-height: 1.6; }
.sb-comment-list .reply a { font-size: var(--fs-xs); letter-spacing: 1px; text-transform: uppercase; color: var(--purple); }
.comment-respond { margin-top: var(--sp-8); }
.comment-respond .comment-reply-title { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-2xl); letter-spacing: 1px; color: var(--text); margin-bottom: var(--sp-4); }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
  width: 100%; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-md); color: var(--text); padding: var(--sp-3) var(--sp-4); font-size: var(--fs-md); margin-bottom: var(--sp-3);
}
.comment-form input:focus, .comment-form textarea:focus { outline: 2px solid var(--purple); border-color: var(--purple); }
.comment-form label { font-size: var(--fs-sm); color: var(--muted); }
.comment-form .form-submit { margin-top: var(--sp-2); }

/* ============================================================
   PÁGINAS — Fase 5.5 (home, gravadora, sobre, contato, mediakit, legal)
   ============================================================ */
.ev-btn-ghost { background: transparent !important; border: 1px solid var(--line) !important; color: var(--text) !important; }
.ev-btn-ghost:hover { border-color: var(--purple) !important; background: var(--purple-soft) !important; box-shadow: none !important; }
.home-alt { background: var(--bg-2); }

/* HERO da home */
.home-hero { padding: clamp(90px, 14vh, 160px) 0 var(--sp-12); text-align: center; border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 50% 0%, var(--purple-soft), transparent 60%); }
.home-hero-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(40px, 9vw, 96px); line-height: .95; letter-spacing: -2px; margin: var(--sp-3) 0; color: var(--text); }
.home-hero-sub { color: var(--muted); font-size: var(--fs-lg); }
.home-hero-cta { display: flex; gap: var(--sp-3); justify-content: center; flex-wrap: wrap; margin-top: var(--sp-6); }

.home-countdown { display: flex; gap: var(--sp-4); justify-content: center; margin: var(--sp-8) 0 0; }
.home-cd { display: flex; flex-direction: column; min-width: 64px; }
.home-cd span { font-family: 'Bebas Neue', sans-serif; font-size: clamp(32px, 6vw, 56px); line-height: 1; color: var(--purple); }
.home-cd small { font-size: var(--fs-xs); letter-spacing: 2px; text-transform: uppercase; color: var(--dim); }

/* Manifesto */
.home-manifesto-title { font-family: 'Archivo Black', sans-serif; font-size: clamp(24px, 4vw, 44px); line-height: 1.1; color: var(--text); }
.home-manifesto-desc { color: var(--muted); font-size: var(--fs-lg); line-height: 1.8; margin: var(--sp-5) 0; }

/* Stats */
.home-stats { text-align: center; }
.home-stat-val { font-family: 'Archivo Black', sans-serif; font-size: clamp(32px, 6vw, 56px); color: var(--purple); line-height: 1; }
.home-stat-label { font-size: var(--fs-md); color: var(--text); font-weight: 600; margin-top: var(--sp-2); }

/* Lineup */
.home-lineup-card { overflow: hidden; }
.home-lineup-img { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.home-lineup-name { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-2xl); letter-spacing: 1px; color: var(--text); margin: var(--sp-1) 0; }

/* Alumni */
.home-alumni { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.home-alumni-chip { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: var(--sp-3) var(--sp-4); display: flex; flex-direction: column; }
.home-alumni-chip strong { color: var(--text); font-size: var(--fs-md); }
.home-alumni-chip span { color: var(--dim); font-size: var(--fs-xs); letter-spacing: 1px; text-transform: uppercase; }

/* Sad Records landing */
.sr-studio { align-items: center; gap: var(--sp-8); }
.sr-studio-img { aspect-ratio: 4/3; background-size: cover; background-position: center; border-radius: var(--radius-lg); }

/* Sobre — timeline */
.sobre-timeline { display: flex; flex-direction: column; gap: var(--sp-8); }
.sobre-era { display: flex; gap: var(--sp-5); align-items: flex-start; }
.sobre-era-num { font-family: 'Archivo Black', sans-serif; font-size: var(--fs-3xl); color: var(--purple); opacity: .5; flex-shrink: 0; }

/* Contato */
.contato-card { text-decoration: none; transition: transform .18s ease, border-color .18s ease; }
.contato-card:hover { transform: translateY(-3px); border-color: var(--purple); }
.contato-ico { font-size: 28px; margin-bottom: var(--sp-2); }

/* Media Kit — pacotes */
.mk-pkg { display: flex; flex-direction: column; position: relative; }
.mk-pkg-featured { border-color: var(--purple); box-shadow: 0 10px 40px -16px var(--purple-glow); }
.mk-badge { position: absolute; top: calc(-1 * var(--sp-3)); left: 50%; transform: translateX(-50%); background: var(--purple); color: #fff; font-size: var(--fs-xs); letter-spacing: 1px; text-transform: uppercase; padding: 3px 12px; border-radius: var(--radius-sm); white-space: nowrap; }
.mk-pkg-name { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-3xl); letter-spacing: 2px; color: var(--text); margin-bottom: var(--sp-4); }
.mk-perks { list-style: none; display: flex; flex-direction: column; gap: var(--sp-2); margin-bottom: var(--sp-5); flex: 1; }
.mk-perks li { color: var(--muted); font-size: var(--fs-base); padding-left: var(--sp-4); position: relative; }
.mk-perks li::before { content: '✓'; position: absolute; left: 0; color: var(--purple); }

/* Legal */
.sb-legal h2 { font-family: 'Bebas Neue', sans-serif; font-size: var(--fs-2xl); letter-spacing: 1px; color: var(--text); margin: var(--sp-8) 0 var(--sp-3); }
.sb-legal h3 { font-size: var(--fs-lg); color: var(--text); margin: var(--sp-5) 0 var(--sp-2); }
.sb-legal ul { margin: 0 0 var(--sp-4) var(--sp-6); color: var(--muted); }
.sb-legal li { margin-bottom: var(--sp-1); }

/* ============================================================
   HERO da HOME — fiel ao legado (logo + watermark + data)
   ============================================================ */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: var(--sp-16) var(--sp-5); border-bottom: 1px solid var(--line); background: radial-gradient(ellipse at 50% 40%, var(--purple-soft), transparent 65%); }
.hero-stripes { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 130%; z-index: 1; pointer-events: none; mix-blend-mode: screen; opacity: .40; display: flex; flex-direction: column; gap: var(--sp-2); }
.hero-stripe { font-family: 'Archivo Black', sans-serif; font-size: clamp(70px, 12vw, 160px); letter-spacing: -2px; line-height: .85; white-space: nowrap; color: var(--purple); text-align: center; filter: blur(.5px); }
.hero-stripe.layer-2 { color: #fff; transform: scaleY(1.05) translateY(-4px); opacity: .35; }
.hero-stripe.layer-3 { color: var(--purple); transform: scaleY(.95); opacity: .55; }
.hero-stripe .acc { color: var(--text); margin: 0 18px; opacity: .65; }

.hero-content { position: relative; z-index: 3; text-align: center; max-width: 760px; }
.hero-edition { margin-bottom: 28px; }
.hero-logo { width: min(220px, 55vw); height: auto; display: block; margin: 0 auto 28px; filter: drop-shadow(0 0 24px var(--purple-glow)); }
.hero-date { font-family: 'Bebas Neue', sans-serif; font-size: clamp(56px, 10vw, 112px); letter-spacing: 6px; line-height: 1; color: var(--text); margin-bottom: 12px; text-shadow: 0 0 40px var(--purple-glow); }
.hero-date .dot { color: var(--purple); margin: 0 6px; display: inline-block; transform: translateY(-5px); }
.hero-city { font-family: 'Bebas Neue', sans-serif; font-size: clamp(16px, 3.5vw, 22px); letter-spacing: 10px; color: var(--muted); margin-bottom: 20px; }
.hero-desc { font-size: clamp(14px, 2.4vw, 16px); color: rgba(255,255,255,.75); line-height: 1.7; max-width: 520px; margin: 0 auto 28px; }
.hero-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: var(--sp-6); }
.hero .home-countdown { margin: 28px auto 0; }

.btn { display: inline-flex; align-items: center; gap: 8px; font-family: 'Bebas Neue', sans-serif; font-size: clamp(13px, 2.6vw, 16px); letter-spacing: 5px; padding: 16px 38px; text-decoration: none; border-radius: 2px; transition: all .25s; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--purple); color: var(--text); border-color: var(--purple); }
.btn-primary:hover { background: var(--purple-deep); box-shadow: 0 0 30px var(--purple-glow); transform: translateY(-2px); }
.btn-ghost { background: rgba(255,255,255,.03); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.18); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--purple); color: var(--text); background: rgba(192,38,211,.08); }

/* ============================================================
   NAV + FOOTER — fiel ao legado (chrome compartilhado)
   ============================================================ */
body { padding-top: 62px; } /* espaço pro nav fixo */

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(5,5,5,.72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.nav-brand { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 4px; color: var(--text); text-decoration: none; flex-shrink: 0; }
.nav-brand span { color: var(--purple); }
.nav-links { display: flex; gap: 24px; flex: 1; justify-content: center; list-style: none; margin: 0; padding: 0; }
.nav-links li { list-style: none; }
.nav-links a { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); text-decoration: none; font-weight: 500; transition: color .2s; }
.nav-links a:hover, .nav-links .current-menu-item a { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-cta { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: 4px; padding: 9px 22px; color: var(--text); background: var(--purple); text-decoration: none; border-radius: 2px; transition: all .2s; flex-shrink: 0; }
.nav-cta:hover { background: var(--purple-deep); box-shadow: 0 0 22px var(--purple-glow); }

.nav-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: rgba(255,255,255,.04); border: 1px solid var(--line); border-radius: 2px; cursor: pointer; padding: 0; }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 0 auto; transition: transform .25s ease, opacity .2s ease; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 99; background: rgba(5,5,5,.97); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: center; gap: 2px; padding: 88px 26px 40px; transform: translateX(100%); transition: transform .3s ease; visibility: hidden; overflow-y: auto; list-style: none; margin: 0; }
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu li { list-style: none; }
.mobile-menu a { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 3px; text-transform: uppercase; color: var(--text); text-decoration: none; padding: 16px 4px; border-bottom: 1px solid var(--line); transition: color .2s, padding-left .2s; }
.mobile-menu a:hover, .mobile-menu a:active { color: var(--purple); padding-left: 12px; }
.mobile-menu .mm-cta { margin-top: 28px; border: none; background: var(--purple); color: #fff; text-align: center; border-radius: 2px; font-size: 24px; padding: 20px; }
.mobile-menu .mm-cta:hover { background: var(--purple-deep); }

/* Footer fiel */
.footer { border-top: 1px solid var(--line); padding: 48px 32px 64px; display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.footer-logo { width: 80px; height: auto; opacity: .8; }
.footer-tag { font-family: 'Bebas Neue', sans-serif; font-size: 13px; letter-spacing: 5px; color: var(--muted); }
.footer-tag .accent { color: var(--purple); }
.footer-social { display: flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-social a { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-social a:hover { color: var(--purple); }
.footer-nav { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; list-style: none; margin: 0; padding: 0; }
.footer-nav a { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); text-decoration: none; }
.footer-nav a:hover { color: var(--purple); }
.footer-copy { font-size: 10px; letter-spacing: 2px; color: var(--dim); }

/* Responsivo do chrome */
@media (max-width: 900px) {
  .nav { padding: 12px 18px; gap: 12px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-brand { font-size: 12px; letter-spacing: 3px; }
  .nav-cta { padding: 8px 16px; font-size: 11px; letter-spacing: 3px; }
  .footer { padding: 36px 18px 64px; }
}

/* Utilities do design-system legado que os portes assumem (visually-hidden) */
.sr-only, .screen-reader-text { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.sr-only:focus, .screen-reader-text:focus { position: static !important; width: auto; height: auto; clip: auto; }

/* ============================================================
   LOJA — card/grid de produto fiéis ao shop.html legado
   ============================================================ */
.woocommerce ul.products, .woocommerce-page ul.products { display: grid !important; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; margin: 0; padding: 0; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product {
  width: auto !important; margin: 0 !important; padding: 0 !important; float: none !important;
  background: var(--card); border: 1px solid var(--line); border-radius: 4px; overflow: hidden;
  transition: border-color .2s, transform .2s; text-align: left;
}
.woocommerce ul.products li.product:hover { border-color: var(--purple); transform: translateY(-3px); box-shadow: none; }
.woocommerce ul.products li.product::before, .woocommerce ul.products li.product::after { display: none !important; }
.product-link { display: flex; flex-direction: column; text-decoration: none; color: inherit; height: 100%; }
.product-img-wrap { position: relative; width: 100%; aspect-ratio: 1; background: var(--bg-2); overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s; margin: 0; border-radius: 0; }
.product-link:hover .product-img { transform: scale(1.05); }
.product-img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--dim); font-family: 'Archivo Black', sans-serif; font-size: 64px; opacity: .3; }
.discount-tag { position: absolute; top: 10px; left: 10px; background: var(--purple); color: #fff; font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 2px; letter-spacing: 1px; }
.out-of-stock-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.7); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 3px; color: #f87171; text-transform: uppercase; }
.product-body { padding: 14px 14px 18px; flex: 1; display: flex; flex-direction: column; }
.product-name { font-size: 15px; font-weight: 600; color: var(--text); line-height: 1.4; margin-bottom: 10px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.product-prices { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.product-price { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--text); letter-spacing: 1px; }
.product-price-old { font-size: 12px; color: var(--muted); text-decoration: line-through; }
.product-installments { font-size: 12px; color: var(--muted); }

/* ── NEWSLETTER (porte do design-system.css; usado em home/blog/etc.) ──────── */
/* .nl-section.nl-section = especificidade (0,2,0) p/ vencer o reset `.sbpg-blog *{padding:0}` (0,1,1)
   das páginas que embrulham a newsletter num wrapper escopado. */
.nl-section.nl-section { position: relative; padding: 88px 32px; text-align: center; border-top: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; }
.nl-section::before { content: ""; position: absolute; top: 0; left: 50%; width: min(640px, 92%); height: 260px; transform: translateX(-50%); background: radial-gradient(ellipse 60% 100% at 50% 0%, var(--purple-glow), transparent 70%); opacity: .22; pointer-events: none; }
.nl-section > * { position: relative; z-index: 1; }
.nl-section .section-head { text-align: center; margin: 0; width: min(680px, 100%); }
.nl-section .tag { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--purple); padding: 5px 12px; border: 1px solid rgba(192,38,211, .35); border-radius: var(--radius-sm); background: var(--purple-soft); }
.nl-section .section-title { font-family: var(--font-display-2); font-weight: 400; font-size: clamp(32px, 5vw, 56px); letter-spacing: -1px; line-height: 1.05; margin: 18px 0 0; color: var(--text); }
.nl-section .section-title .accent { color: var(--purple); }
.nl-section .section-sub { font-size: clamp(14px, 2.2vw, 16px); color: var(--muted); max-width: 520px; margin: 16px auto 0; line-height: 1.7; }
.nl-section .nl-form { width: min(540px, 100%); max-width: 540px; margin-top: 34px; text-align: left; }
.nl-section .nl-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: stretch; }
.nl-section .nl-input { flex: 1 1 0 !important; min-width: 180px; width: auto !important; padding: 14px 16px; font-family: var(--font-body); font-size: 15px; line-height: 1.3; color: var(--text); background: var(--card-2); border: 1px solid var(--line); border-radius: var(--radius); outline: none; transition: border-color .2s, box-shadow .2s, background .2s; }
.nl-section .nl-input::placeholder { color: var(--dim); opacity: 1; }
.nl-section .nl-input:focus { border-color: var(--purple); background: rgba(192,38,211, .06); box-shadow: 0 0 0 3px var(--purple-glow); }
.nl-section .nl-btn { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; padding: 14px 30px; font-family: var(--font-display); font-weight: 400; font-size: 16px; letter-spacing: 4px; text-transform: uppercase; color: var(--text); background: var(--purple); border: 1px solid var(--purple); border-radius: var(--radius); cursor: pointer; transition: background .2s, box-shadow .2s, transform .2s; }
.nl-section .nl-btn:hover { background: var(--purple-deep); box-shadow: 0 0 24px var(--purple-glow); transform: translateY(-2px); }
.nl-section .nl-btn:active { transform: translateY(0); }
.nl-section .nl-btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.nl-section .nl-status { margin-top: 14px; font-size: 13px; min-height: 18px; color: var(--dim); }
.nl-section .nl-status.ok { color: #4ade80; }
.nl-section .nl-status.err { color: #f87171; }
@media (max-width: 600px) {
  .nl-section.nl-section { padding: 60px 18px; }
  .nl-section .nl-row { flex-direction: column; }
  .nl-section .nl-input { width: 100%; min-width: 0; font-size: 16px; }
  .nl-section .nl-btn { width: 100%; }
}

/* ===== Roster da Sad Records — grid grande de retratos (idêntico à sadrecords.html) ===== */
.sr-roster { display:grid; grid-template-columns:repeat(auto-fill,minmax(150px,1fr)); gap:16px; margin-top:44px; }
.sr-roster .art { text-decoration:none; color:inherit; }
.sr-roster .art-photo { position:relative; aspect-ratio:1; border-radius:14px; overflow:hidden; background:linear-gradient(135deg, rgba(192,38,211,.15), rgba(162,28,175,.08)); border:1px solid var(--line); display:flex; align-items:center; justify-content:center; transition:.25s; }
.sr-roster .art:hover .art-photo { border-color:var(--purple); transform:translateY(-4px); box-shadow:0 12px 30px rgba(192,38,211,.25); }
.sr-roster .art-photo img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:1; }
.sr-roster .art-initials { font-family:'Archivo Black',sans-serif; font-size:26px; color:#e9b8f5; letter-spacing:-1px; }
.sr-roster .art-name { font-family:'Archivo Black',sans-serif; font-size:13px; text-align:center; margin-top:11px; letter-spacing:-.2px; color:var(--text); }
.sr-roster .art.join .art-photo { border-style:dashed; border-color:rgba(192,38,211,.5); background:rgba(192,38,211,.08); }
.sr-roster .art.join .art-photo span { font-family:'Archivo Black',sans-serif; font-size:15px; color:#fff; text-align:center; padding:0 8px; line-height:1.2; }
