/* =============================================
   Confissões do CLT - CSS Principal
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,800&family=Barlow:wght@400;700;800;900&family=Inter:wght@400;500;600&display=swap');

/* --- Variáveis ---------------------------------------- */
:root {
  --yellow: #FFD600;
  --yellow-dark: #E6C000;
  --yellow-dim: rgba(255,214,0,0.12);
  --black: #0D0D0D;
  --card: #1A1A1A;
  --border: #333333;
  --mid: #2A2A2A;
  --white: #F2F2F2;
  --grey: #888;
  --red: #FF3B3B;
  --green: #00E676;
  --font-title: 'Barlow Condensed', sans-serif;
  --font-body:  'Inter', sans-serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
}

/* --- Reset ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
ul { list-style: none; }

/* --- Doodle Background ---------------------------------------- */
.doodle-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.doodle-bg svg {
  position: absolute;
  opacity: 0.04;
}
.page-wrap {
  position: relative;
  z-index: 1;
}

/* --- Typography ---------------------------------------- */
h1,h2,h3,h4 {
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}
.txt-yellow { color: var(--yellow); }
.txt-grey   { color: var(--grey); }

/* --- Header ---------------------------------------- */
.site-header {
  background: #111;
  border-bottom: 2px solid var(--border);
  padding: 0 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--white);
  white-space: nowrap;
}
.logo span { color: var(--yellow); }
.logo-icon {
  background: var(--yellow);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
nav.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
nav.main-nav a {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey);
  transition: color 0.2s;
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active { color: var(--yellow); }
.header-cta {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 18px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s, background 0.15s;
  display: inline-block;
}
.header-cta:hover { background: var(--yellow-dark); transform: translateY(-1px); }
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu {
  display: none;
  background: #111;
  border-top: 1px solid var(--border);
  padding: 1rem;
}
.mobile-menu a {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu.open { display: block; }

/* --- Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
  text-decoration: none;
}
.btn-yellow {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 20px rgba(255,214,0,0.3);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,214,0,0.4); }
.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}
.btn-outline:hover { background: var(--yellow-dim); }
.btn-dark {
  background: var(--card);
  color: var(--white);
  border: 2px solid var(--border);
}
.btn-dark:hover { border-color: var(--yellow); color: var(--yellow); }
.btn-lg { font-size: 1.2rem; padding: 18px 36px; }
.btn-full { width: 100%; }

/* --- Cards ---------------------------------------- */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover::before { opacity: 1; }

/* Tape effect */
.tape {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  background: rgba(255,214,0,0.6);
  width: 60px;
  height: 20px;
  border-radius: 3px;
  z-index: 2;
}

/* --- Post-it ---------------------------------------- */
.postit {
  background: var(--yellow);
  color: var(--black);
  border-radius: 4px 12px 12px 4px;
  padding: 1rem 1.25rem;
  position: relative;
  box-shadow: 3px 3px 0 rgba(0,0,0,0.3);
  transform: rotate(-1deg);
}
.postit::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 8px; height: 100%;
  background: rgba(0,0,0,0.15);
  border-radius: 4px 0 0 4px;
}
.postit p {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  line-height: 1.3;
}

/* --- Hero ---------------------------------------- */
.hero {
  padding: 4rem 1rem 3rem;
  text-align: center;
  position: relative;
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--grey);
  max-width: 500px;
  margin: 0 auto 2rem;
}
.hero-chars {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

/* --- Characters SVG ---------------------------------------- */
.char-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.char-label {
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--grey);
  letter-spacing: 0.1em;
}

/* CLT Worker Laughing */
.char-laugh svg, .char-cry svg, .char-anon svg {
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}

/* --- Humilhômetro ---------------------------------------- */
.humilhometro-card {
  background: var(--card);
  border: 2px solid var(--yellow);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  position: relative;
}
.humilhometro-card .tape { background: rgba(255,214,0,0.7); }
.humilhometro-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.5rem;
  letter-spacing: 0.1em;
}
.humilhometro-value {
  font-family: var(--font-title);
  font-size: 4.5rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  text-shadow: 0 0 30px rgba(255,214,0,0.5);
}
.humilhometro-bar-wrap {
  background: var(--border);
  border-radius: 99px;
  height: 12px;
  margin: 1rem 0 0.5rem;
  overflow: hidden;
}
.humilhometro-bar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #FFD600, #FF6B00);
  transition: width 1s ease;
}
.humilhometro-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: var(--grey);
  font-weight: 600;
  text-transform: uppercase;
}

/* --- Nivéis de Humilhação ---------------------------------------- */
.niveis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1rem;
}
.nivel-card {
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid var(--border);
}
.nivel-emoji { font-size: 1.75rem; }
.nivel-info { flex: 1; }
.nivel-nome {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
}
.nivel-range { font-size: 0.75rem; color: var(--grey); }
.nivel-leve   { background: rgba(0,230,118,0.08); border-color: rgba(0,230,118,0.3); }
.nivel-medio  { background: rgba(255,214,0,0.06); border-color: rgba(255,214,0,0.3); }
.nivel-alto   { background: rgba(255,165,0,0.08); border-color: rgba(255,165,0,0.3); }
.nivel-grave  { background: rgba(255,80,0,0.08); border-color: rgba(255,80,0,0.3); }
.nivel-critico{ background: rgba(255,59,59,0.08); border-color: rgba(255,59,59,0.4); }

/* --- Confession Card ---------------------------------------- */
.confession-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}
.confession-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.confession-card .cat-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--yellow-dim);
  color: var(--yellow);
  border: 1px solid rgba(255,214,0,0.3);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font-title);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  margin-bottom: 0.75rem;
}
.confession-text {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #DDD;
  margin-bottom: 1rem;
}
.confession-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.confession-meta {
  font-size: 0.75rem;
  color: var(--grey);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.humil-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 6px;
}
.reactions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.reaction-btn {
  background: var(--mid);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.8rem;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-body);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 4px;
}
.reaction-btn:hover { background: var(--yellow-dim); border-color: var(--yellow); }
.reaction-btn.reacted { background: var(--yellow-dim); border-color: var(--yellow); color: var(--yellow); }

/* --- Form ---------------------------------------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 0.6rem;
}
.form-textarea {
  width: 100%;
  background: #111;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: vertical;
  min-height: 160px;
  line-height: 1.6;
  transition: border-color 0.2s;
  outline: none;
}
.form-textarea::placeholder { color: #555; }
.form-textarea:focus { border-color: var(--yellow); }
.char-counter {
  text-align: right;
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 0.3rem;
  font-weight: 600;
}
.char-counter.warn { color: #FF6B00; }
.char-counter.over  { color: var(--red); }

/* Categorias */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.6rem;
}
.cat-btn {
  background: var(--mid);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  cursor: pointer;
  color: var(--white);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}
.cat-btn:hover  { border-color: var(--yellow); color: var(--yellow); }
.cat-btn.active { background: var(--yellow); color: var(--black); border-color: var(--yellow); }

/* Slider */
.slider-wrap { position: relative; padding: 0 0 1.5rem; }
.form-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.form-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--yellow);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(255,214,0,0.5);
  border: 3px solid var(--black);
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--grey);
  margin-top: 0.4rem;
  font-weight: 600;
  text-transform: uppercase;
}
.slider-value {
  position: absolute;
  top: -32px;
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--yellow);
  transform: translateX(-50%);
  white-space: nowrap;
  pointer-events: none;
}

/* Checkboxes */
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.check-card {
  background: var(--mid);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.check-card:has(input:checked) { border-color: var(--yellow); background: var(--yellow-dim); }
.check-card input[type="checkbox"] {
  accent-color: var(--yellow);
  width: 18px; height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.check-card-label {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.check-card-sub { font-size: 0.72rem; color: var(--grey); margin-top: 2px; }

/* --- Tema do Dia ---------------------------------------- */
.tema-card {
  background: var(--yellow);
  color: var(--black);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  position: relative;
  margin-bottom: 1.5rem;
  transform: rotate(-0.5deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
}
.tema-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--black);
  color: var(--yellow);
  border-radius: 6px;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  margin-bottom: 0.5rem;
}
.tema-question {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  text-transform: uppercase;
  line-height: 1.2;
}
.tema-emoji {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
}

/* --- Search & Filter ---------------------------------------- */
.search-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.search-input {
  flex: 1;
  min-width: 200px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--yellow); }
.search-input::placeholder { color: #555; }
.filter-select {
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  outline: none;
  min-width: 160px;
}
.filter-select:focus { border-color: var(--yellow); }
.filter-select option { background: var(--card); }

/* --- Top Ranking ---------------------------------------- */
.ranking-list { display: flex; flex-direction: column; gap: 0.75rem; }
.ranking-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.ranking-pos {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--yellow);
  min-width: 30px;
}
.ranking-text { flex: 1; font-size: 0.9rem; color: #CCC; }
.ranking-score {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1rem;
  color: var(--yellow);
  white-space: nowrap;
}
.ranking-bar-small {
  width: 80px;
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
  margin-top: 4px;
}
.ranking-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--yellow), #FF6B00);
  border-radius: 3px;
}

/* --- Categorias Grid ---------------------------------------- */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 0.75rem;
}
.category-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: var(--white);
}
.category-card:hover { border-color: var(--yellow); transform: translateY(-2px); }
.category-card .cat-icon { font-size: 1.75rem; margin-bottom: 0.4rem; }
.category-card .cat-name {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Obrigado Page ---------------------------------------- */
.obrigado-hero {
  text-align: center;
  padding: 4rem 1rem 2rem;
}
.obrigado-icon {
  width: 100px; height: 100px;
  background: var(--yellow);
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  box-shadow: 0 0 50px rgba(255,214,0,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 30px rgba(255,214,0,0.4); transform: scale(1); }
  50% { box-shadow: 0 0 60px rgba(255,214,0,0.7); transform: scale(1.05); }
}
.garantias-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
}
.garantia-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.garantia-item .check { color: var(--green); font-size: 1.25rem; }
.garantia-item .text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Section Layout ---------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.section { padding: 3rem 0; }
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-title {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  text-transform: uppercase;
}
.section-title .accent { color: var(--yellow); }
.section-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--yellow), transparent);
  border: none;
  margin: 0 0 2rem;
  border-radius: 2px;
}

/* Grid layouts */
.confessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .sidebar-layout { grid-template-columns: 1fr; }
  nav.main-nav, .header-cta { display: none; }
  .hamburger { display: block; }
  .check-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .confessions-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.8rem; }
}

/* --- Page header strip ---------------------------------------- */
.page-hero {
  background: linear-gradient(180deg, #161616 0%, var(--black) 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1rem;
  text-align: center;
}
.page-hero-title {
  font-size: clamp(2rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.page-hero-sub { color: var(--grey); font-size: 1rem; }

/* --- Footer ---------------------------------------- */
.site-footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding: 3rem 1rem 2rem;
  margin-top: 4rem;
}
.footer-inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.footer-brand .logo { margin-bottom: 0.75rem; }
.footer-brand p { font-size: 0.85rem; color: var(--grey); line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--grey);
}

/* --- Alerts / Messages ---------------------------------------- */
.alert {
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.alert-error { background: rgba(255,59,59,0.1); border: 1px solid rgba(255,59,59,0.4); color: #FF8A8A; }
.alert-success { background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.4); color: #60FFB0; }

/* --- Loading spinner ---------------------------------------- */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid transparent;
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* --- Dica CLT card ---------------------------------------- */
.dica-card {
  background: #161600;
  border: 1px dashed rgba(255,214,0,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.dica-icon { font-size: 1.5rem; flex-shrink: 0; }
.dica-text { font-size: 0.85rem; color: #AAA; line-height: 1.5; }
.dica-text strong { color: var(--yellow); }

/* --- Animated entry ---------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

/* --- Doodles animation ---------------------------------------- */
@keyframes floatDoodle {
  0%,100% { transform: translateY(0) rotate(0deg); }
  33%      { transform: translateY(-12px) rotate(5deg); }
  66%      { transform: translateY(8px) rotate(-3deg); }
}
.doodle { animation: floatDoodle 8s ease-in-out infinite; }

/* --- Back button ---------------------------------------- */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.back-btn:hover { color: var(--yellow); }

/* --- Stats bar ---------------------------------------- */
.stats-strip {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item { text-align: center; }
.stat-value {
  font-family: var(--font-title);
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--yellow);
  display: block;
}
.stat-label { font-size: 0.72rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.08em; }

/* --- Hero Banner Image ---------------------------------------- */
.hero-banner-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 2rem auto 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,0.7), 0 0 0 2px rgba(255,214,0,0.15);
}
.hero-banner-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 2px rgba(255,214,0,0.2);
  pointer-events: none;
}
.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero-banner-wrap { border-radius: 10px; margin-top: 1.5rem; }
  .hero-banner-img { border-radius: 10px; }
}

/* Empty state */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--grey);
}
.empty-state .empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.5rem;
}
