/* ════════════════════════════════════════════════════
   HELLOZOO — Design System Completo
   hellozoo.com.br
   ════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fredoka+One&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── VARIABLES ── */
:root {
  --hz-green:   #1B5E20;
  --hz-leaf:    #2E7D32;
  --hz-lime:    #66BB6A;
  --hz-sun:     #FFD600;
  --hz-amber:   #FF8F00;
  --hz-coral:   #FF5722;
  --hz-sky:     #0288D1;
  --hz-ocean:   #01579B;
  --hz-teal:    #00695C;
  --hz-purple:  #6A1B9A;
  --hz-cream:   #F9FBE7;
  --hz-white:   #FFFFFF;
  --hz-gray:    #F5F5F5;
  --hz-dark:    #1A1A1A;
  --hz-text:    #333333;
  --hz-muted:   #777777;
  --hz-radius:  16px;
  --hz-shadow:  0 8px 30px rgba(0,0,0,0.10);
  --hz-shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --hz-font-display: 'Fredoka One', cursive;
  --hz-font-body:    'Nunito', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--hz-font-body);
  background: var(--hz-cream);
  color: var(--hz-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--hz-font-body); cursor: pointer; }

/* ── TYPOGRAPHY ── */
.hz-h1 { font-family: var(--hz-font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1; }
.hz-h2 { font-family: var(--hz-font-display); font-size: clamp(1.8rem, 4vw, 3rem); line-height: 1.1; }
.hz-h3 { font-family: var(--hz-font-display); font-size: clamp(1.3rem, 2.5vw, 2rem); }
.hz-label {
  font-size: 0.8rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--hz-lime);
}

/* ── LAYOUT ── */
.hz-container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }
.hz-section { padding: 5rem 0; }
.hz-section-header { text-align: center; margin-bottom: 3rem; }
.hz-section-header .hz-label { display: block; margin-bottom: 0.5rem; }

/* ── BUTTONS ── */
.hz-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--hz-font-body); font-weight: 800;
  border: none; cursor: pointer; border-radius: 50px;
  transition: all 0.2s ease; text-decoration: none;
  white-space: nowrap;
}
.hz-btn-lg  { padding: 14px 32px; font-size: 1.05rem; }
.hz-btn-md  { padding: 10px 22px; font-size: 0.95rem; }
.hz-btn-sm  { padding: 6px 16px;  font-size: 0.82rem; }

.hz-btn-primary {
  background: var(--hz-sun); color: var(--hz-green);
  box-shadow: 0 5px 0 #A68000;
}
.hz-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 0 #A68000; }

.hz-btn-secondary {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,0.5);
}
.hz-btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; }

.hz-btn-ghost {
  background: transparent; color: var(--hz-leaf);
  border: 2px solid var(--hz-lime);
}
.hz-btn-ghost:hover { background: var(--hz-leaf); color: white; }

.hz-btn-danger {
  background: var(--hz-coral); color: white;
  box-shadow: 0 4px 0 #8B2500;
}
.hz-btn-danger:hover { transform: translateY(-2px); box-shadow: 0 6px 0 #8B2500; }

/* ── CARDS ── */
.hz-card {
  background: var(--hz-white); border-radius: var(--hz-radius);
  box-shadow: var(--hz-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.hz-card:hover { transform: translateY(-6px); box-shadow: var(--hz-shadow-lg); }

/* ── BADGES ── */
.hz-badge {
  display: inline-block; padding: 3px 10px;
  border-radius: 50px; font-size: 0.78rem; font-weight: 800;
}
.hz-badge-lendario { background: var(--hz-amber); color: white; }
.hz-badge-epico    { background: var(--hz-purple); color: white; }
.hz-badge-raro     { background: var(--hz-sky); color: white; }
.hz-badge-comum    { background: var(--hz-leaf); color: white; }

.hz-status { display: inline-block; padding: 2px 10px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.hz-status-lc { background: #E8F5E9; color: #2E7D32; }
.hz-status-nt { background: #FFF9C4; color: #F57F17; }
.hz-status-vu { background: #FFE0B2; color: #E65100; }
.hz-status-en { background: #FFCCBC; color: #BF360C; }
.hz-status-cr { background: #FFCDD2; color: #B71C1C; }

/* ── NAV ── */
.hz-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--hz-green);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.hz-nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; padding: 0 1.5rem;
}
.hz-nav-logo {
  font-family: var(--hz-font-display);
  font-size: 1.9rem; color: var(--hz-sun);
  letter-spacing: 2px;
  display: flex; align-items: center; gap: 8px;
}
.hz-nav-links {
  display: flex; gap: 1.5rem; list-style: none;
}
.hz-nav-links a {
  color: rgba(255,255,255,0.8); font-weight: 700; font-size: 0.9rem;
  transition: color 0.2s; padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.hz-nav-links a:hover, .hz-nav-links a.active {
  color: var(--hz-sun); border-bottom-color: var(--hz-sun);
}
.hz-nav-right { display: flex; align-items: center; gap: 1rem; }
.hz-nav-coins {
  background: rgba(255,214,0,0.15); border: 1px solid rgba(255,214,0,0.3);
  color: var(--hz-sun); padding: 5px 14px; border-radius: 50px;
  font-weight: 800; font-size: 0.85rem;
  display: none; /* shown when logged in */
}
.hz-nav-mobile-toggle {
  display: none; background: none; border: none;
  color: white; font-size: 1.5rem;
}

/* ── HERO ── */
.hz-hero {
  min-height: 92vh;
  background: linear-gradient(140deg, #0D3B12 0%, #1B5E20 35%, #1565C0 80%, #0D1B6E 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 5rem 1.5rem;
}
.hz-hero-particles {
  position: absolute; inset: 0; pointer-events: none;
}
.hz-particle {
  position: absolute; border-radius: 50%;
  animation: hz-float linear infinite;
  opacity: 0.06;
}
@keyframes hz-float {
  0%   { transform: translateY(110vh) rotate(0deg) scale(0.8); }
  100% { transform: translateY(-10vh) rotate(720deg) scale(1.2); }
}
.hz-hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px; margin: 0 auto;
}
.hz-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,214,0,0.15); border: 1.5px solid rgba(255,214,0,0.4);
  color: var(--hz-sun); padding: 6px 20px; border-radius: 50px;
  font-weight: 800; font-size: 0.82rem; letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 1.5rem;
  animation: hz-fadeup 0.6s ease both;
}
.hz-hero-wordmark {
  font-family: var(--hz-font-display);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9; letter-spacing: 3px; margin-bottom: 1.5rem;
  animation: hz-fadeup 0.6s 0.1s ease both;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.4));
}
.hz-wm-h  { color: #FF5252; }
.hz-wm-e  { color: #FF9800; }
.hz-wm-l1 { color: #FFD600; }
.hz-wm-l2 { color: #69F0AE; }
.hz-wm-o  { color: #40C4FF; }
.hz-wm-z  { color: #CE93D8; }
.hz-wm-o2 { color: #FF80AB; }
.hz-wm-o3 { color: #FFAB40; }

.hz-hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem); font-weight: 700;
  color: rgba(255,255,255,0.88); margin-bottom: 0.75rem;
  animation: hz-fadeup 0.6s 0.2s ease both;
}
.hz-hero-sub {
  color: rgba(255,255,255,0.6); font-size: 1rem; margin-bottom: 2.5rem;
  animation: hz-fadeup 0.6s 0.25s ease both;
}
.hz-hero-stats {
  display: flex; justify-content: center; gap: 1.5rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
  animation: hz-fadeup 0.6s 0.35s ease both;
}
.hz-hero-stat {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border-radius: 14px; padding: 0.9rem 1.4rem;
  min-width: 110px; text-align: center;
}
.hz-hero-stat-num {
  font-family: var(--hz-font-display); font-size: 2.2rem;
  color: var(--hz-sun); display: block; line-height: 1;
}
.hz-hero-stat-label {
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1px;
}
.hz-hero-ctas {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: hz-fadeup 0.6s 0.45s ease both;
}

@keyframes hz-fadeup {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── CESAR SECTION ── */
.hz-cesar {
  background: var(--hz-white);
  padding: 5rem 0;
}
.hz-cesar-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.hz-cesar-text h2 {
  font-family: var(--hz-font-display);
  font-size: 2.8rem; color: var(--hz-green);
  margin-bottom: 1rem;
}
.hz-cesar-text p { color: var(--hz-muted); line-height: 1.9; margin-bottom: 1rem; }
.hz-cesar-quote {
  background: linear-gradient(135deg, #E8F5E9, #F3E5F5);
  border-left: 5px solid var(--hz-lime);
  padding: 1.4rem 1.6rem; border-radius: 0 14px 14px 0;
  font-size: 1.05rem; font-style: italic;
  color: var(--hz-green); font-weight: 700; margin-top: 1.5rem;
}
.hz-cesar-card {
  background: linear-gradient(145deg, var(--hz-green), #1565C0);
  border-radius: 24px; padding: 2.5rem; color: white;
  text-align: center;
  box-shadow: 0 24px 60px rgba(27,94,32,0.35);
  position: relative; overflow: hidden;
}
.hz-cesar-card::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,214,0,0.12) 0%, transparent 70%);
}
.hz-cesar-avatar { font-size: 5rem; display: block; margin-bottom: 1rem; }
.hz-cesar-name {
  font-family: var(--hz-font-display); font-size: 2rem;
  color: var(--hz-sun); margin-bottom: 0.4rem;
}
.hz-director-badge {
  display: inline-block; background: var(--hz-sun); color: var(--hz-green);
  font-weight: 900; padding: 7px 22px; border-radius: 50px; font-size: 0.9rem;
  margin-top: 0.8rem;
}
.hz-cesar-nums {
  display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; flex-wrap: wrap;
}
.hz-cesar-num { text-align: center; }
.hz-cesar-num-val { font-family: var(--hz-font-display); font-size: 2rem; color: var(--hz-sun); display: block; }
.hz-cesar-num-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); }

/* ── MAP / AREAS ── */
.hz-map { background: linear-gradient(180deg, #F1F8E9, #E8F5E9); padding: 5rem 0; }
.hz-map .hz-section-header .hz-h2 { color: var(--hz-green); }

.hz-areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.hz-area-card { cursor: pointer; }
.hz-area-card-header {
  padding: 1.4rem 1.6rem;
  display: flex; align-items: center; gap: 1rem;
}
.hz-area-card-icon { font-size: 2.4rem; line-height: 1; }
.hz-area-card-title {
  font-family: var(--hz-font-display); font-size: 1.35rem;
  color: white; text-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.hz-area-card-sub { color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 700; }
.hz-area-card-body { padding: 1.2rem 1.6rem 1.5rem; }
.hz-area-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.hz-tag {
  background: var(--hz-gray); border: 1.5px solid #E0E0E0;
  padding: 3px 10px; border-radius: 50px;
  font-size: 0.76rem; font-weight: 700; color: #666;
}
.hz-tag.rare   { border-color: #FFD600; background: #FFF8E1; color: #A68000; }
.hz-tag.epic   { border-color: #CE93D8; background: #F3E5F5; color: var(--hz-purple); }
.hz-tag.legend { border-color: var(--hz-amber); background: #FFF3E0; color: var(--hz-amber); }
.hz-area-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.8rem; border-top: 1px solid #f0f0f0;
  font-size: 0.82rem; color: var(--hz-muted); font-weight: 700;
}

/* Aquarium special card */
.hz-aqua-tabs {
  display: flex; gap: 6px; padding: 0.7rem 1.4rem;
  background: rgba(1,87,155,0.05);
}
.hz-aqua-tab {
  font-size: 0.74rem; font-weight: 800; padding: 4px 12px;
  border-radius: 50px; cursor: pointer; border: 2px solid #B3E5FC;
  transition: all 0.2s; color: var(--hz-ocean); background: white;
}
.hz-aqua-tab.active { background: var(--hz-ocean); color: white; border-color: var(--hz-ocean); }

/* ── ZOO GAME SECTION ── */
.hz-game {
  background: linear-gradient(140deg, #1A237E 0%, #283593 50%, #1B5E20 100%);
  padding: 5rem 0;
}
.hz-game .hz-h2 { color: var(--hz-sun); }
.hz-game .hz-label { color: var(--hz-lime); }
.hz-game .hz-section-header p { color: rgba(255,255,255,0.65); }

.hz-roles-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem; margin-bottom: 3rem;
}
.hz-role-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--hz-radius); padding: 1.5rem;
  text-align: center; cursor: pointer;
  transition: all 0.25s; backdrop-filter: blur(4px);
}
.hz-role-card:hover { background: rgba(255,255,255,0.14); transform: translateY(-4px); }
.hz-role-card.director { background: rgba(255,214,0,0.12); border-color: var(--hz-sun); }
.hz-role-emoji { font-size: 2.4rem; display: block; margin-bottom: 0.7rem; }
.hz-role-name { font-family: var(--hz-font-display); font-size: 1.05rem; color: var(--hz-sun); margin-bottom: 0.4rem; }
.hz-role-desc { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

.hz-xp-widget {
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 2rem;
}
.hz-xp-title { font-family: var(--hz-font-display); font-size: 1.3rem; color: var(--hz-sun); text-align: center; margin-bottom: 1.5rem; }
.hz-xp-row { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.hz-xp-label { flex: 1.2; font-size: 0.88rem; color: rgba(255,255,255,0.75); font-weight: 700; }
.hz-xp-track { flex: 2; background: rgba(255,255,255,0.1); border-radius: 50px; height: 9px; overflow: hidden; }
.hz-xp-fill { height: 100%; border-radius: 50px; background: linear-gradient(90deg, var(--hz-lime), var(--hz-sun)); }
.hz-xp-val { min-width: 60px; text-align: right; font-weight: 800; color: var(--hz-sun); font-size: 0.88rem; }

/* ── BADGES ── */
.hz-badges { background: var(--hz-white); padding: 5rem 0; }
.hz-badges .hz-h2 { color: var(--hz-dark); }
.hz-badges-grid { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; max-width: 860px; margin: 0 auto; }
.hz-badge-item {
  background: linear-gradient(135deg, #F3E5F5, #E8EAF6);
  border-radius: 14px; padding: 1.2rem 1.4rem; text-align: center;
  min-width: 135px; border: 2px solid #E0E0E0;
  transition: transform 0.2s, box-shadow 0.2s; cursor: pointer;
}
.hz-badge-item:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.hz-badge-item.locked { opacity: 0.35; filter: grayscale(0.7); }
.hz-badge-emoji { font-size: 2.4rem; display: block; margin-bottom: 0.5rem; }
.hz-badge-name { font-weight: 800; font-size: 0.82rem; color: #333; margin-bottom: 0.25rem; }
.hz-badge-rarity { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; color: #aaa; }
.hz-badge-rarity.epic    { color: var(--hz-purple); }
.hz-badge-rarity.legend  { color: var(--hz-amber); }

/* ── GIFT SHOP ── */
.hz-shop { background: linear-gradient(180deg, #FFF8E1, #FFF3E0); padding: 5rem 0; }
.hz-shop .hz-h2 { color: var(--hz-amber); }
.hz-shop .hz-label { color: var(--hz-coral); }

.hz-shop-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin-bottom: 2rem;
}
.hz-product { cursor: pointer; }
.hz-product-img {
  height: 155px; display: flex; align-items: center;
  justify-content: center; font-size: 4.5rem; position: relative;
}
.hz-product-flag {
  position: absolute; top: 10px; right: 10px;
  background: var(--hz-coral); color: white;
  font-size: 0.68rem; font-weight: 900; padding: 3px 9px;
  border-radius: 50px; text-transform: uppercase;
}
.hz-product-body { padding: 1.1rem 1.3rem 1.4rem; }
.hz-product-name { font-family: var(--hz-font-display); font-size: 1.05rem; color: #333; margin-bottom: 0.3rem; }
.hz-product-desc { font-size: 0.8rem; color: var(--hz-muted); margin-bottom: 0.9rem; line-height: 1.5; }
.hz-product-foot { display: flex; align-items: center; justify-content: space-between; }
.hz-product-price { font-weight: 900; font-size: 1.1rem; color: var(--hz-green); }
.hz-cart-btn {
  background: var(--hz-green); color: white; border: none;
  border-radius: 50px; padding: 7px 15px;
  font-size: 0.8rem; font-weight: 800; cursor: pointer;
  font-family: var(--hz-font-body); transition: all 0.2s;
}
.hz-cart-btn:hover { background: var(--hz-leaf); transform: scale(1.05); }

.hz-shop-banner {
  background: linear-gradient(135deg, var(--hz-amber), var(--hz-coral));
  border-radius: 20px; padding: 2rem 2.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; color: white;
}
.hz-shop-banner-emoji { font-size: 3.5rem; }
.hz-shop-banner h3 { font-family: var(--hz-font-display); font-size: 1.5rem; margin-bottom: 0.3rem; }
.hz-shop-banner p { color: rgba(255,255,255,0.8); font-size: 0.9rem; }
.hz-shop-banner-btn {
  margin-left: auto; background: white; color: var(--hz-coral);
  font-weight: 900; font-size: 0.95rem; padding: 11px 26px;
  border-radius: 50px; border: none; cursor: pointer;
  font-family: var(--hz-font-body); transition: transform 0.2s;
  white-space: nowrap;
}
.hz-shop-banner-btn:hover { transform: scale(1.04); }

/* ── JOIN ── */
.hz-join { background: var(--hz-green); padding: 5rem 0; text-align: center; }
.hz-join .hz-h2 { color: var(--hz-sun); margin-bottom: 0.8rem; }
.hz-join-desc { color: rgba(255,255,255,0.65); margin-bottom: 3rem; font-size: 1rem; }
.hz-join-form { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.hz-join-input, .hz-join-select {
  padding: 13px 20px; border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08); color: white;
  font-family: var(--hz-font-body); font-size: 1rem; outline: none;
  transition: border-color 0.2s;
}
.hz-join-input::placeholder { color: rgba(255,255,255,0.35); }
.hz-join-input:focus, .hz-join-select:focus { border-color: var(--hz-sun); }
.hz-join-select { color: rgba(255,255,255,0.65); cursor: pointer; appearance: none; }
.hz-join-note { color: rgba(255,255,255,0.35); font-size: 0.78rem; }

/* ── FOOTER ── */
.hz-footer { background: #0A1628; padding: 3rem 0; text-align: center; }
.hz-footer-logo {
  font-family: var(--hz-font-display);
  font-size: 2.2rem; color: var(--hz-sun); display: block; margin-bottom: 1rem;
}
.hz-footer-links { display: flex; gap: 1.8rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.hz-footer-links a { color: rgba(255,255,255,0.45); font-size: 0.88rem; font-weight: 700; transition: color 0.2s; }
.hz-footer-links a:hover { color: var(--hz-sun); }
.hz-footer-copy { color: rgba(255,255,255,0.25); font-size: 0.78rem; }

/* ── SINGLE ANIMAL PAGE ── */
.hz-animal-page { padding: 3rem 0 5rem; }
.hz-animal-breadcrumb { color: var(--hz-muted); font-size: 0.85rem; margin-bottom: 2rem; }
.hz-animal-breadcrumb a { color: var(--hz-leaf); font-weight: 700; }
.hz-animal-hero {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: start; margin-bottom: 3rem;
}
.hz-animal-gallery { border-radius: 20px; overflow: hidden; box-shadow: var(--hz-shadow-lg); }
.hz-animal-gallery img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hz-animal-info-panel { position: sticky; top: 80px; }
.hz-animal-name { font-family: var(--hz-font-display); font-size: 2.8rem; color: var(--hz-green); line-height: 1; margin-bottom: 0.3rem; }
.hz-animal-sci { color: var(--hz-muted); font-style: italic; font-size: 1rem; margin-bottom: 1rem; }
.hz-animal-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.hz-animal-stats-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.8rem; margin-bottom: 1.5rem;
}
.hz-animal-stat {
  background: var(--hz-gray); border-radius: 12px;
  padding: 0.9rem 1rem; text-align: center;
}
.hz-animal-stat-icon { font-size: 1.4rem; display: block; margin-bottom: 0.3rem; }
.hz-animal-stat-val { font-weight: 900; font-size: 1.1rem; color: var(--hz-green); display: block; }
.hz-animal-stat-label { font-size: 0.75rem; color: var(--hz-muted); text-transform: uppercase; letter-spacing: 1px; }
.hz-curiosidades { background: var(--hz-cream); border-radius: 16px; padding: 1.5rem; margin-bottom: 1.5rem; }
.hz-curiosidade-item { display: flex; gap: 0.8rem; margin-bottom: 0.8rem; font-size: 0.9rem; color: #555; line-height: 1.6; }
.hz-curiosidade-item:last-child { margin-bottom: 0; }
.hz-curiosidade-item::before { content: '💡'; flex-shrink: 0; }
.hz-cuidador-box {
  background: linear-gradient(135deg, #E8F5E9, #F1F8E9);
  border: 2px solid #C8E6C9; border-radius: 16px; padding: 1.2rem;
}
.hz-cuidador-box h4 { font-weight: 800; color: var(--hz-green); margin-bottom: 0.8rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }
.hz-cuidador-row { display: flex; align-items: center; gap: 0.8rem; }
.hz-cuidador-avatar { width: 44px; height: 44px; border-radius: 50%; border: 2px solid #81C784; }
.hz-action-btns { display: flex; gap: 0.7rem; flex-wrap: wrap; margin-top: 1rem; }

/* ── AREA PAGE ── */
.hz-area-hero {
  padding: 4rem 1.5rem;
  text-align: center; position: relative; overflow: hidden;
  color: white;
}
.hz-area-hero h1 { font-family: var(--hz-font-display); font-size: clamp(2.5rem, 6vw, 4rem); color: var(--hz-sun); margin-bottom: 0.5rem; text-shadow: 0 3px 10px rgba(0,0,0,0.3); }
.hz-area-hero p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 2rem; }
.hz-area-stats { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.hz-area-stat { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 0.8rem 1.4rem; text-align: center; backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.15); }
.hz-area-stat-num { font-family: var(--hz-font-display); font-size: 2rem; color: var(--hz-sun); display: block; }
.hz-area-stat-label { font-size: 0.74rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 1px; }
.hz-animals-filter { padding: 1.2rem 1.5rem; background: var(--hz-gray); display: flex; gap: 0.8rem; flex-wrap: wrap; align-items: center; }
.hz-filter-btn { padding: 7px 16px; border-radius: 50px; border: 2px solid #DDD; background: white; font-weight: 700; cursor: pointer; transition: all 0.2s; font-size: 0.85rem; font-family: var(--hz-font-body); }
.hz-filter-btn.active, .hz-filter-btn:hover { background: var(--hz-green); color: white; border-color: var(--hz-green); }
.hz-search-input { padding: 7px 16px; border-radius: 50px; border: 2px solid #DDD; font-size: 0.9rem; outline: none; min-width: 200px; font-family: var(--hz-font-body); }
.hz-search-input:focus { border-color: var(--hz-lime); }
.hz-animals-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(275px, 1fr)); gap: 1.5rem; padding: 2rem 1.5rem; max-width: 1160px; margin: 0 auto; }

/* Animal card in area/list view */
.hz-animal-card { cursor: pointer; border: 2px solid transparent; }
.hz-animal-card.hz-rarity-lendario { border-color: var(--hz-amber); }
.hz-animal-card.hz-rarity-epico    { border-color: #CE93D8; }
.hz-animal-card.hz-rarity-raro     { border-color: #90CAF9; }
.hz-animal-card-thumb { position: relative; height: 195px; overflow: hidden; }
.hz-animal-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.hz-animal-card:hover .hz-animal-card-thumb img { transform: scale(1.06); }
.hz-animal-card-qty { position: absolute; top: 10px; left: 10px; background: rgba(0,0,0,0.6); color: white; font-weight: 900; padding: 3px 10px; border-radius: 50px; font-size: 0.82rem; }
.hz-animal-card-rarity { position: absolute; top: 10px; right: 10px; }
.hz-animal-card-body { padding: 1.1rem 1.3rem 1.3rem; }
.hz-animal-card-name { font-family: var(--hz-font-display); font-size: 1.15rem; color: var(--hz-dark); margin-bottom: 0.2rem; }
.hz-animal-card-sci { color: var(--hz-muted); font-style: italic; font-size: 0.82rem; margin-bottom: 0.6rem; }
.hz-animal-card-mini-stats { display: flex; gap: 0.6rem; flex-wrap: wrap; margin: 0.5rem 0 0.8rem; }
.hz-mini-stat { display: flex; align-items: center; gap: 3px; font-size: 0.78rem; color: #666; background: var(--hz-gray); padding: 2px 8px; border-radius: 50px; }
.hz-animal-card-tip { font-size: 0.78rem; color: #555; background: #F9FBE7; padding: 7px 10px; border-radius: 8px; border-left: 3px solid #CDDC39; line-height: 1.5; margin-bottom: 0.8rem; }
.hz-cuidador-mini { display: flex; align-items: center; gap: 8px; background: #F1F8E9; padding: 7px 10px; border-radius: 10px; }
.hz-cuidador-mini img { width: 30px; height: 30px; border-radius: 50%; }
.hz-cuidador-mini-name { font-size: 0.8rem; font-weight: 800; color: #333; }
.hz-cuidador-mini-role { font-size: 0.72rem; color: var(--hz-muted); }
.hz-vaga-open { background: #FFF3E0; padding: 7px 10px; border-radius: 10px; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: var(--hz-amber); font-weight: 700; }
.hz-card-actions { display: flex; gap: 0.5rem; margin-top: 0.8rem; }

/* ── NOTIFICATION TOAST ── */
.hz-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: var(--hz-green); color: white;
  padding: 1rem 1.5rem; border-radius: 14px; font-weight: 700;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  animation: hz-slideIn 0.3s ease;
  max-width: 300px;
}
@keyframes hz-slideIn {
  from { transform: translateX(120%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
.hz-toast.error { background: var(--hz-coral); }
.hz-toast.warning { background: var(--hz-amber); color: var(--hz-dark); }

/* ── DASHBOARD (logged-in user) ── */
.hz-dashboard { padding: 2.5rem 0 5rem; }
.hz-dashboard-header { background: linear-gradient(135deg, var(--hz-green), var(--hz-ocean)); color: white; padding: 2.5rem 1.5rem; margin-bottom: 2rem; }
.hz-dashboard-header h1 { font-family: var(--hz-font-display); font-size: 2.2rem; color: var(--hz-sun); }
.hz-dashboard-grid { display: grid; grid-template-columns: 260px 1fr; gap: 2rem; }
.hz-sidebar { display: flex; flex-direction: column; gap: 1.2rem; }
.hz-sidebar-card { background: var(--hz-white); border-radius: var(--hz-radius); padding: 1.5rem; box-shadow: var(--hz-shadow); }
.hz-xp-bar-full { background: var(--hz-gray); border-radius: 50px; height: 10px; overflow: hidden; margin: 0.5rem 0; }
.hz-xp-bar-inner { height: 100%; background: linear-gradient(90deg, var(--hz-lime), var(--hz-sun)); border-radius: 50px; transition: width 1s ease; }
.hz-my-animals { display: flex; flex-direction: column; gap: 0.8rem; }
.hz-my-animal-row { display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem; background: var(--hz-gray); border-radius: 10px; }
.hz-my-animal-thumb { width: 44px; height: 44px; border-radius: 10px; object-fit: cover; }
.hz-my-animal-name { font-weight: 800; font-size: 0.88rem; }
.hz-my-animal-area { font-size: 0.75rem; color: var(--hz-muted); }
.hz-task-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.hz-task-done { background: var(--hz-lime); }
.hz-task-pending { background: var(--hz-amber); }
.hz-task-overdue { background: var(--hz-coral); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hz-cesar-grid { grid-template-columns: 1fr; }
  .hz-animal-hero { grid-template-columns: 1fr; }
  .hz-dashboard-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .hz-nav-links { display: none; }
  .hz-nav-mobile-toggle { display: block; }
  .hz-nav-links.open { display: flex; flex-direction: column; position: absolute; top: 66px; left: 0; right: 0; background: var(--hz-green); padding: 1rem 1.5rem; gap: 0.5rem; }
  .hz-areas-grid { grid-template-columns: 1fr; }
  .hz-roles-grid { grid-template-columns: repeat(2, 1fr); }
  .hz-hero-stats { gap: 0.8rem; }
  .hz-shop-banner { flex-direction: column; text-align: center; }
  .hz-shop-banner-btn { margin-left: 0; }
}
@media (max-width: 480px) {
  .hz-roles-grid { grid-template-columns: 1fr; }
  .hz-hero-ctas { flex-direction: column; align-items: center; }
}

/* ── UTILITIES ── */
.hz-text-center { text-align: center; }
.hz-mt-1 { margin-top: 1rem; }
.hz-mt-2 { margin-top: 2rem; }
.hz-mb-1 { margin-bottom: 1rem; }
.hz-mb-2 { margin-bottom: 2rem; }
.hz-hidden { display: none !important; }
.hz-sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
