/* ============================================
   WOL PREVIEW | CSS compartilhado
   Identidade visual da Wol Marketing
============================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Exo+2:wght@300;400;500;600;700&display=swap');

:root {
  --brand: #181818;
  --brand-light: #3f3f46;
  --bg: #f8f6f6;
  --bg-card: #ffffff;
  --zinc-200: #e4e4e7;
  --zinc-300: #d4d4d8;
  --zinc-600: #52525b;
  --zinc-700: #3f3f46;
  --zinc-800: #27272a;
  --text-primary: #181818;
  --text-secondary: #52525b;
  --text-muted: #a1a1aa;
  --accent-green: #15803d;
  --accent-amber: #d97706;
  --accent-blue: #1e40af;
  --radius: 1.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Exo 2', Arial, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  min-height: 100vh;
  font-weight: 400;
}

h1, h2, h3, .heading-font {
  font-family: 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}

/* HEADER WOL */
.wol-header {
  background: var(--brand);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.wol-header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wol-header .logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
}
.wol-header .logo-text span {
  font-family: 'Exo 2', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 0.5px;
  opacity: 0.6;
  margin-left: 8px;
}
.wol-header .badge {
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.wol-exclusive {
  background: var(--zinc-800);
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 6px 16px;
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.wol-exclusive strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}

/* Logo cortada */
.wol-logo-wrap {
  display: inline-block;
  height: 18px;
  overflow: hidden;
  vertical-align: middle;
}
.wol-logo-wrap img {
  height: 26px;
  filter: brightness(0) invert(1);
  display: block;
  margin-top: -1px;
}
.wol-logo-wrap.small { height: 13px; }
.wol-logo-wrap.small img { height: 19px; margin-top: -1px; }

/* FOOTER */
.wol-footer {
  text-align: center;
  padding: 24px;
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 300;
  letter-spacing: 1px;
}

/* STATUS PILLS */
.status-pill {
  font-family: 'Exo 2', sans-serif;
  font-size: 10px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}
.pill-pending { background: #fef3c7; color: #92400e; }
.pill-approved { background: #dcfce7; color: #15803d; }
.pill-scheduled { background: #dbeafe; color: #1e40af; }

/* ACTION BAR (fixa embaixo com botoes) */
.action-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(24,24,24,0.95);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  display: flex;
  gap: 10px;
  justify-content: center;
  z-index: 100;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.btn {
  padding: 12px 28px;
  border: none;
  border-radius: 2rem;
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-approve { background: #fff; color: var(--brand); }
.btn-approve:hover { background: #f5f5f5; transform: translateY(-1px); }
.btn-change {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-change:hover { background: rgba(255,255,255,0.1); }
.btn-download {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  padding: 10px 20px;
}
.btn-download:hover { background: rgba(255,255,255,0.1); color: #fff; }

/* TOAST DE DOWNLOAD */
.download-toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: var(--brand);
  color: #fff;
  padding: 14px 24px;
  border-radius: 2rem;
  font-family: 'Exo 2', sans-serif;
  font-size: 13px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 400;
  opacity: 0;
  transition: all 0.4s ease;
  max-width: 90%;
}
.download-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.download-toast .toast-filename { font-weight: 600; }
.download-toast .toast-label { font-weight: 300; opacity: 0.6; font-size: 11px; }

/* PADDING PRO CONTEUDO NAO FICAR ATRAS DA ACTION BAR */
.content-wrapper { padding-bottom: 100px; }
