/* ============================================================
   HAAYgo Store — Design System Completo
   Paleta: Tiffani (#019c9e) → Laranja (#FF6B35) + Dark
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Hanken+Grotesk:wght@400;500;600;700;900&display=swap");

/* ============================================================
   01. VARIÁVEIS
   ============================================================ */
:root {
  /* Cores */
  --primary:       #019c9e;
  --primary-light: #00c4c7;
  --primary-dark:  #017a7c;
  --primary-glow:  rgba(1,156,158,0.18);
  --accent:        #FF6B35;
  --accent-dark:   #E55A25;
  --accent-glow:   rgba(255,107,53,0.2);
  --gradient:      linear-gradient(135deg, #019c9e 0%, #FF6B35 100%);
  --gradient-r:    linear-gradient(135deg, #FF6B35 0%, #019c9e 100%);

  /* Neutros */
  --black:    #0a0a0a;
  --dark-1:   #111318;
  --dark-2:   #1a1e27;
  --dark-3:   #242833;
  --dark-4:   #2e3340;
  --white:    #ffffff;
  --gray-1:   #f5f6fa;
  --gray-2:   #eaecf2;
  --gray-3:   #c4c9d4;
  --text:     #1a1e27;
  --text-s:   #555f7a;
  --text-m:   #8896a8;

  /* Tipografia */
  --font:       'Hanken Grotesk', 'Inter', sans-serif;
  --h1:         clamp(38px, 6vw, 68px);
  --h2:         clamp(28px, 4vw, 48px);
  --h3:         clamp(20px, 3vw, 28px);

  /* Layout */
  --radius:     14px;
  --radius-sm:  8px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Sombras */
  --shadow:      0 4px 24px rgba(0,0,0,0.08);
  --shadow-md:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-tiff: 0 8px 40px rgba(1,156,158,0.28);
  --shadow-blue: 0 8px 40px rgba(1,156,158,0.22);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);

  /* Transição */
  --t: 0.28s ease;
}

/* ============================================================
   02. RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; transition: color var(--t); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }

/* ============================================================
   03. TIPOGRAFIA
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--dark-1);
}
h1 { font-size: var(--h1); }
h2 { font-size: var(--h2); }
h3 { font-size: var(--h3); }
h4 { font-size: 20px; }
h5 { font-size: 16px; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

.text_white   { color: #fff !important; }
.text_primary { color: var(--primary) !important; }
.text_accent  { color: var(--accent) !important; }
.text_muted   { color: var(--text-m) !important; }

/* ============================================================
   04. UTILITÁRIOS
   ============================================================ */
.container     { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container_xl  { max-width: 1400px; }
.section       { padding: 100px 0; }
.section_sm    { padding: 60px 0; }
.section_lg    { padding: 140px 0; }
.bg_dark       { background: var(--dark-1); }
.bg_dark2      { background: var(--dark-2); }
.bg_gray       { background: var(--gray-1); }
.bg_white      { background: #fff; }
.d_flex        { display: flex; }
.align_center  { align-items: center; }
.justify_between { justify-content: space-between; }
.justify_center  { justify-content: center; }
.flex_wrap     { flex-wrap: wrap; }
.gap_2  { gap: 8px; }
.gap_3  { gap: 12px; }
.gap_4  { gap: 16px; }
.gap_5  { gap: 20px; }
.gap_6  { gap: 24px; }
.text_center { text-align: center; }
.w_100  { width: 100%; }
.mt_4   { margin-top: 16px; }
.mt_6   { margin-top: 24px; }
.mt_8   { margin-top: 32px; }
.mb_4   { margin-bottom: 16px; }
.mb_6   { margin-bottom: 24px; }

/* Fade-in animation */
.fade_in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade_in.delay_1 { transition-delay: 0.15s; }
.fade_in.delay_2 { transition-delay: 0.3s; }
.fade_in.delay_3 { transition-delay: 0.45s; }
.fade_in.delay_4 { transition-delay: 0.6s; }
.fade_in.visible { opacity: 1; transform: translateY(0); }

/* Section labels */
.section_kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(1,156,158,0.08);
  border: 1px solid rgba(1,156,158,0.18);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section_kicker.orange {
  color: var(--accent);
  background: rgba(255,107,53,0.08);
  border-color: rgba(255,107,53,0.2);
}

/* ============================================================
   05. BOTÕES
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.15) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:hover { transform: translateY(-2px); }

.btn_primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 6px 24px rgba(1,156,158,0.35);
}
.btn_primary:hover {
  background: linear-gradient(135deg, #017a7c 0%, #c4501f 100%);
  color: #fff;
  box-shadow: 0 12px 40px rgba(1,156,158,0.45);
}

.btn_accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,107,53,0.3);
}
.btn_accent:hover {
  background: var(--accent-dark);
  color: #fff;
  box-shadow: 0 12px 40px rgba(255,107,53,0.4);
}

.btn_outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.2);
}
.btn_outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

.btn_outline_dark {
  background: transparent;
  color: var(--dark-1);
  border: 2px solid rgba(0,0,0,0.15);
}
.btn_outline_dark:hover {
  background: var(--gray-1);
  border-color: rgba(0,0,0,0.2);
}

.btn_shopee {
  background: #EE4D2D;
  color: #fff;
  box-shadow: 0 6px 20px rgba(238,77,45,0.3);
}
.btn_shopee:hover {
  background: #C73D20;
  color: #fff;
  box-shadow: 0 12px 36px rgba(238,77,45,0.4);
}

.btn_lg { padding: 16px 36px; font-size: 15px; border-radius: var(--radius); }
.btn_sm { padding: 9px 18px; font-size: 13px; border-radius: var(--radius-sm); }

/* ============================================================
   06. HEADER
   ============================================================ */
.site_header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--t), box-shadow var(--t);
  height: 72px;
  display: flex;
  align-items: center;
}

.site_header.scrolled {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 4px 32px rgba(0,0,0,0.3);
  border-bottom-color: rgba(1,156,158,0.12);
}

.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.header_logo a {
  display: flex;
  align-items: center;
}

.header_logo img {
  height: 32px;
  width: auto;
}

/* Nav */
.header_nav { display: flex; align-items: center; gap: 4px; }

.header_nav a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--t);
}

.header_nav a:hover,
.header_nav a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}

.header_nav a.active { color: var(--primary-light); }

/* Cat dropdown hint */
.header_nav .has_cats {
  position: relative;
}
.header_nav .has_cats > a::after {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  margin-bottom: 2px;
}

/* Header right */
.header_right { display: flex; align-items: center; gap: 10px; }

.header_wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  transition: all var(--t);
  font-size: 16px;
}
.header_wa:hover {
  background: rgba(37,211,102,0.15);
  border-color: rgba(37,211,102,0.3);
  color: #25d366;
}

.header_menu_btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.1);
}
.header_menu_btn span {
  display: block;
  width: 20px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--t);
}

@media (max-width: 991px) {
  .header_nav { display: none; }
  .header_menu_btn { display: flex; }
}

/* ============================================================
   07. MENU MOBILE
   ============================================================ */
.mobile_menu_wrap {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile_menu_wrap.open {
  opacity: 1;
  pointer-events: all;
}

.mobile_menu {
  position: absolute;
  top: 0; right: 0;
  width: min(340px, 90vw);
  height: 100%;
  background: var(--dark-1);
  padding: 28px 28px 40px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
}

.mobile_menu_wrap.open .mobile_menu { transform: translateX(0); }

.mobile_menu_head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile_menu_head img { height: 28px; }

.mobile_close {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  flex-shrink: 0;
}
.mobile_close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.mobile_nav { flex: 1; }

.mobile_nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--t);
}
.mobile_nav a i { color: var(--primary); width: 18px; font-size: 14px; }
.mobile_nav a:hover, .mobile_nav a.active { color: #fff; }

.mobile_menu_footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.mobile_wa_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(37,211,102,0.1);
  border: 1px solid rgba(37,211,102,0.2);
  border-radius: var(--radius);
  color: #25d366;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  transition: all var(--t);
}
.mobile_wa_btn:hover {
  background: rgba(37,211,102,0.18);
  color: #25d366;
}

.mobile_group_badge {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

/* ============================================================
   08. HERO
   ============================================================ */
.store_hero {
  background: linear-gradient(160deg, #060d1c 0%, #091d1f 48%, #0e0818 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
}

/* Glows — maiores e mais vibrantes */
.hero_glow_1 {
  position: absolute;
  top: -120px; right: -100px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(1,156,158,0.22) 0%, transparent 60%);
  pointer-events: none;
}
.hero_glow_2 {
  position: absolute;
  bottom: -100px; left: -60px;
  width: 650px; height: 650px;
  background: radial-gradient(circle, rgba(255,107,53,0.16) 0%, transparent 62%);
  pointer-events: none;
}
.hero_glow_3 {
  position: absolute;
  top: 30%; left: 22%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(124,58,237,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero_grid_pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1,156,158,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1,156,158,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Content */
.hero_content { position: relative; z-index: 1; }

.hero_kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid rgba(1,156,158,0.25);
  border-radius: 100px;
  background: rgba(1,156,158,0.07);
  margin-bottom: 24px;
}

.hero_title {
  font-size: var(--h1);
  color: #fff;
  font-weight: 900;
  line-height: 1.06;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero_title .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero_sub {
  color: rgba(255,255,255,0.55);
  font-size: 18px;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 40px;
}

.hero_actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero_badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero_badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.hero_badge i { color: var(--primary-light); font-size: 13px; }

/* ============================================================
   HERO SHOWCASE — painel de categorias redesenhado
   ============================================================ */
.hero_showcase {
  position: relative;
  padding: 8px;
}

/* Anéis decorativos rotativos */
.hs_ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hs_ring_1 {
  width: 380px; height: 380px;
  top: -90px; right: -70px;
  border: 1.5px solid rgba(1,156,158,0.12);
  animation: hs_spin 28s linear infinite;
}
.hs_ring_2 {
  width: 250px; height: 250px;
  bottom: 20px; left: -50px;
  border: 1.5px solid rgba(255,107,53,0.1);
  animation: hs_spin 18s linear infinite reverse;
}
.hs_ring_3 {
  width: 130px; height: 130px;
  top: 50%; right: -10px;
  border: 1px solid rgba(124,58,237,0.1);
  animation: hs_spin3 14s linear infinite;
}

@keyframes hs_spin  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hs_spin3 { from { transform: translateY(-50%) rotate(0deg); } to { transform: translateY(-50%) rotate(360deg); } }

/* Grid principal — 2 colunas */
.hs_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  z-index: 1;
}

/* Wrapper para animação de flutuação */
.hs_wrap          { animation-timing-function: ease-in-out; animation-iteration-count: infinite; }
.hs_drone_wrap    { grid-column: 1 / -1; animation: hs_fa 5s   ease-in-out infinite; }
.hs_wrap:nth-child(2) { animation: hs_fb 6s   ease-in-out infinite 0.4s; }
.hs_wrap:nth-child(3) { animation: hs_fc 5.5s ease-in-out infinite 0.8s; }
.hs_wrap:nth-child(4) { animation: hs_fd 4.8s ease-in-out infinite 1.2s; }
.hs_wrap:nth-child(5) { animation: hs_fe 6.2s ease-in-out infinite 0.6s; }

@keyframes hs_fa { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
@keyframes hs_fb { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }
@keyframes hs_fc { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
@keyframes hs_fd { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes hs_fe { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* Card base */
.hs_card {
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.hs_card:hover { transform: translateY(-5px) scale(1.03); z-index: 3; }

/* Glow hover via pseudo-element */
.hs_card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 100px; height: 100px;
  border-radius: 50%;
  filter: blur(25px);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.hs_card:hover::before { opacity: 1; }

/* — DRONES (teal) — */
.hs_drone {
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(1,156,158,0.1) 0%, rgba(0,100,100,0.18) 100%);
  border: 1px solid rgba(1,156,158,0.28);
}
.hs_drone:hover  { border-color: rgba(1,156,158,0.55); box-shadow: 0 20px 50px rgba(1,156,158,0.22); }
.hs_drone::before { background: rgba(1,156,158,0.55); }
.hs_drone .hs_icon { background: rgba(1,156,158,0.18);  color: #00c4c7; }
.hs_drone .hs_tag  { background: rgba(1,156,158,0.18);  color: #00c4c7; }

/* — CÂMERAS (roxo) — */
.hs_camera {
  background: linear-gradient(135deg, rgba(124,58,237,0.1) 0%, rgba(90,30,190,0.18) 100%);
  border: 1px solid rgba(124,58,237,0.22);
}
.hs_camera:hover  { border-color: rgba(124,58,237,0.5); box-shadow: 0 16px 40px rgba(124,58,237,0.2); }
.hs_camera::before { background: rgba(124,58,237,0.55); }
.hs_camera .hs_icon { background: rgba(124,58,237,0.18); color: #a78bfa; }

/* — FERRAMENTAS (slate) — */
.hs_tools {
  background: linear-gradient(135deg, rgba(71,85,105,0.12) 0%, rgba(45,55,75,0.2) 100%);
  border: 1px solid rgba(100,116,139,0.22);
}
.hs_tools:hover  { border-color: rgba(100,116,139,0.5); box-shadow: 0 16px 40px rgba(100,116,139,0.15); }
.hs_tools::before { background: rgba(100,116,139,0.4); }
.hs_tools .hs_icon { background: rgba(100,116,139,0.18); color: #94a3b8; }

/* — ROBÓTICA (cyan) — */
.hs_robot {
  background: linear-gradient(135deg, rgba(14,165,233,0.1) 0%, rgba(0,120,180,0.18) 100%);
  border: 1px solid rgba(14,165,233,0.22);
}
.hs_robot:hover  { border-color: rgba(14,165,233,0.5); box-shadow: 0 16px 40px rgba(14,165,233,0.2); }
.hs_robot::before { background: rgba(14,165,233,0.55); }
.hs_robot .hs_icon { background: rgba(14,165,233,0.18); color: #38bdf8; }

/* — EDUCATIVOS (laranja quente) — */
.hs_edu {
  background: linear-gradient(135deg, rgba(255,107,53,0.1) 0%, rgba(200,70,20,0.18) 100%);
  border: 1px solid rgba(255,107,53,0.28);
}
.hs_edu:hover  { border-color: rgba(255,107,53,0.55); box-shadow: 0 16px 40px rgba(255,107,53,0.2); }
.hs_edu::before { background: rgba(255,107,53,0.55); }
.hs_edu .hs_icon { background: rgba(255,107,53,0.18); color: #ff8c61; }

/* Ícone */
.hs_icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

/* Texto */
.hs_body { flex: 1; min-width: 0; }
.hs_name {
  display: block;
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.88);
  line-height: 1.25; margin-bottom: 3px;
}
.hs_sub {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  line-height: 1.4;
}

/* Tag "Tech Pro" no drone */
.hs_tag {
  font-size: 10px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap; flex-shrink: 0;
}

/* Seta */
.hs_arrow {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.hs_card:hover .hs_arrow { background: rgba(255,255,255,0.14); color: rgba(255,255,255,0.8); }

/* Sparkle (estrelinhas nos cards infantis) */
.hs_spark {
  position: absolute;
  top: 10px; right: 12px;
  font-size: 13px; line-height: 1;
  pointer-events: none;
  animation: hs_sparkle 3s ease-in-out infinite;
}
.hs_robot .hs_spark { color: #38bdf8; animation-delay: 0.5s; }
.hs_edu   .hs_spark { color: #ff8c61; animation-delay: 1.2s; }

@keyframes hs_sparkle {
  0%,100% { opacity: 0.35; transform: scale(1) rotate(0deg); }
  50%     { opacity: 0.9;  transform: scale(1.3) rotate(25deg); }
}

/* Barra de stats */
.hs_stats {
  display: flex;
  align-items: center;
  margin-top: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 12px 0;
  position: relative; z-index: 1;
}
.hs_stat {
  flex: 1; text-align: center; padding: 0 8px;
}
.hs_stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.07); }
.hs_stat_val {
  display: block;
  font-size: 16px; font-weight: 800;
  color: rgba(255,255,255,0.88);
  line-height: 1.2;
}
.hs_stat_lbl {
  display: block;
  font-size: 10px; font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ============================================================
   09. TICKER
   ============================================================ */
.store_ticker {
  background: var(--gradient);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker_track {
  display: inline-flex;
  gap: 0;
  animation: ticker_scroll 25s linear infinite;
}

.ticker_item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 0 32px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.ticker_item::after {
  content: '•';
  color: rgba(255,255,255,0.4);
}

@keyframes ticker_scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   10. CATEGORIAS
   ============================================================ */
.categories_section { background: var(--dark-1); padding: 100px 0; }

.categories_grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.cat_card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 32px 22px 28px;
  text-align: center;
  transition: all var(--t);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
}

.cat_card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity var(--t);
}

.cat_card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,0.1); }
.cat_card:hover::before { opacity: 1; }

.cat_card__icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.cat_card__name {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.cat_card__count {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
  font-weight: 500;
}

.cat_card__arrow {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: all var(--t);
}

.cat_card:hover .cat_card__arrow {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}

/* Variações de cor por categoria */
.cat_drone  .cat_card__icon { background: rgba(1,156,158,0.15); color: var(--primary-light); }
.cat_drone::before          { background: var(--primary); }
.cat_drone:hover             { border-color: rgba(1,156,158,0.25); }

.cat_camera .cat_card__icon { background: rgba(107,61,255,0.15); color: #A78BFA; }
.cat_camera::before         { background: #7C3AED; }
.cat_camera:hover            { border-color: rgba(107,61,255,0.2); }

.cat_tools  .cat_card__icon { background: rgba(100,116,139,0.15); color: #94A3B8; }
.cat_tools::before           { background: #64748B; }
.cat_tools:hover             { border-color: rgba(100,116,139,0.2); }

.cat_robot  .cat_card__icon { background: rgba(0,180,216,0.15); color: #22D3EE; }
.cat_robot::before           { background: #0EA5E9; }
.cat_robot:hover             { border-color: rgba(0,180,216,0.2); }

.cat_edu    .cat_card__icon { background: rgba(255,107,53,0.15); color: var(--accent); }
.cat_edu::before             { background: var(--accent); }
.cat_edu:hover               { border-color: rgba(255,107,53,0.2); }

@media (max-width: 1023px) {
  .categories_grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 599px) {
  .categories_grid { grid-template-columns: repeat(2, 1fr); }
  .cat_card:last-child { grid-column: 1 / -1; max-width: 200px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   11. PRODUTOS — GRID E CARDS
   ============================================================ */
.products_section { padding: 100px 0; background: var(--gray-1); }

.section_header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 16px;
}

.section_header__left { max-width: 520px; }
.section_header h2   { margin-bottom: 8px; }
.section_header p    { color: var(--text-s); font-size: 16px; }

/* Filtro */
.filter_bar {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-card);
}

.filter_search {
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-1);
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  height: 44px;
  transition: border-color var(--t);
}
.filter_search:focus-within { border-color: var(--primary); }
.filter_search i   { color: var(--text-m); font-size: 14px; }
.filter_search input {
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  outline: none;
  width: 100%;
}

.filter_cats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter_btn {
  padding: 7px 16px;
  border: 2px solid var(--gray-2);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-s);
  background: transparent;
  transition: all var(--t);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}
.filter_btn:hover { border-color: var(--primary); color: var(--primary); }
.filter_btn.active { border-color: var(--primary); background: var(--gradient); color: #fff; }
.filter_btn.active:hover { color: #fff; }

/* Contagem + clear */
.filter_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.filter_count { font-size: 14px; color: var(--text-s); }
.filter_count strong { color: var(--dark-1); }
.filter_clear {
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Grid */
.products_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1199px) { .products_grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .products_grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 399px)  { .products_grid { grid-template-columns: 1fr; } }

/* Card */
.product_card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform var(--t), box-shadow var(--t);
  border: 1px solid rgba(0,0,0,0.04);
}
.product_card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-blue);
}

/* Thumb */
.product_card__thumb {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-1);
}
.product_card__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product_card:hover .product_card__thumb img { transform: scale(1.06); }

.product_card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(1,156,158,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  gap: 8px;
}
.product_card:hover .product_card__overlay { opacity: 1; }

.product_card__badges {
  position: absolute;
  top: 10px; left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.badge_destaque {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--gradient);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.badge_off {
  background: #EE4D2D;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
  display: inline-block;
}

.product_card__cat {
  position: absolute;
  bottom: 10px; right: 10px;
  background: rgba(0,0,0,0.6);
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
  z-index: 2;
}

/* Body */
.product_card__body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product_card__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-1);
  line-height: 1.45;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product_card__price { margin-bottom: 10px; }

.price_old {
  display: block;
  font-size: 12px;
  color: #bbb;
  text-decoration: line-through;
  margin-bottom: 2px;
}
.price_current {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.product_card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
  flex: 1;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  color: #F59E0B;
}
.stars .count {
  color: #aaa;
  font-size: 11px;
  margin-left: 3px;
}

.sold_count { font-size: 11px; color: #aaa; }

/* Botão Shopee */
.btn_card_shopee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  background: #EE4D2D;
  color: #fff;
  border-radius: 9px;
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--t);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.btn_card_shopee::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.14) 45%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}
.btn_card_shopee:hover {
  background: #C73D20;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(238,77,45,0.35);
}
.btn_card_shopee:hover::after { transform: translateX(120%); }

/* Estado vazio */
.products_empty {
  text-align: center;
  padding: 80px 20px;
  grid-column: 1 / -1;
}
.products_empty i { font-size: 52px; color: #ddd; display: block; margin-bottom: 20px; }
.products_empty h3 { color: #888; font-size: 20px; margin-bottom: 8px; }
.products_empty p  { color: #bbb; font-size: 14px; }

/* DB notice */
.db_notice {
  background: #fff9e6;
  border: 1px solid #f5c842;
  border-left: 4px solid #f5c842;
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 32px;
  color: #7a5c00;
  font-size: 14px;
  line-height: 1.6;
}
.db_notice code {
  background: rgba(0,0,0,0.06);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* Paginação */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.page_btn {
  width: 42px; height: 42px;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-s);
  text-decoration: none;
  transition: all var(--t);
}
.page_btn:hover, .page_btn.active {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
}

/* ============================================================
   12. BENEFÍCIOS / POR QUE NOS ESCOLHER
   ============================================================ */
.benefits_section {
  background: var(--dark-1);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.benefits_section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(1,156,158,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.benefits_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.benefit_item {
  text-align: center;
  padding: 36px 24px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  transition: all var(--t);
}
.benefit_item:hover {
  border-color: rgba(1,156,158,0.2);
  transform: translateY(-4px);
}

.benefit_icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(1,156,158,0.1);
  border: 1px solid rgba(1,156,158,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--primary-light);
}

.benefit_title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit_desc {
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) { .benefits_grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .benefits_grid { grid-template-columns: 1fr; } }

/* ============================================================
   13. SEÇÃO GRUPO HAAYGO
   ============================================================ */
.group_section {
  padding: 100px 0;
  background: var(--gray-1);
}

.group_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ---------- Badge card ---------- */
.group_badge {
  position: relative;
  background: linear-gradient(135deg,
    rgba(1,156,158,0.07) 0%,
    rgba(18,20,30,0.9)  40%,
    rgba(124,58,237,0.05) 100%);
  border: 1px solid rgba(1,156,158,0.22);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(1,156,158,0.08), inset 0 1px 0 rgba(255,255,255,0.06);
}

/* Borda gradiente animada */
.group_badge::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(1,156,158,0.35) 0%, transparent 45%, rgba(255,107,53,0.2) 100%);
  z-index: -1;
  pointer-events: none;
}

/* Glow interno */
.gb_inner_glow {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(1,156,158,0.18) 0%, transparent 65%);
  pointer-events: none;
}

/* Anéis decorativos */
.gb_ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.gb_ring_1 {
  width: 280px; height: 280px;
  top: -80px; right: -80px;
  border: 1px solid rgba(1,156,158,0.1);
  animation: hs_spin 22s linear infinite;
}
.gb_ring_2 {
  width: 160px; height: 160px;
  bottom: -40px; left: -40px;
  border: 1px solid rgba(255,107,53,0.08);
  animation: hs_spin 16s linear infinite reverse;
}

/* Tag "verificada" */
.gb_tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #00c4c7;
  background: rgba(1,156,158,0.1);
  border: 1px solid rgba(1,156,158,0.2);
  border-radius: 100px;
  padding: 5px 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Logo */
.group_badge_logo {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: -2px;
  display: block;
  margin-bottom: 8px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

/* Sub */
.group_badge_sub {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 28px;
}

/* Divisor */
.gb_divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(1,156,158,0.3), transparent);
  margin-bottom: 28px;
}

/* Stats */
.group_stat_row {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.group_stat {
  text-align: center;
  flex: 1;
}

.gs_icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  margin: 0 auto 10px;
}

.group_stat__val {
  font-size: 26px;
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  display: block;
  line-height: 1;
  margin-bottom: 5px;
}
.group_stat__lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  line-height: 1.4;
}

.group_links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.group_link_item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  transition: all var(--t);
  color: var(--dark-1);
  text-decoration: none;
}
.group_link_item:hover {
  border-color: rgba(1,156,158,0.2);
  box-shadow: var(--shadow-blue);
  transform: translateX(4px);
  color: var(--dark-1);
}
.group_link_item i    { color: var(--primary); font-size: 16px; width: 20px; }
.group_link_item span { flex: 1; font-weight: 600; font-size: 14px; }
.group_link_item .arrow { color: var(--text-m); font-size: 13px; }

@media (max-width: 991px) {
  .group_inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   14. SUSTENTABILIDADE (index mini-section)
   ============================================================ */
.sus_section {
  padding: 100px 0;
  background: var(--dark-1);
  position: relative;
  overflow: hidden;
}
.sus_glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.sus_header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.sus_title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-top: 20px;
}
.sus_desc {
  color: var(--text-s);
  font-size: 16px;
  line-height: 1.8;
  padding-top: 56px;
}
.sus_desc strong { color: rgba(255,255,255,0.8); }
.sus_link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4ade80;
  font-weight: 700;
  font-size: 14px;
  margin-top: 16px;
  text-decoration: none;
  transition: gap 0.2s;
}
.sus_link:hover { gap: 10px; }

.sus_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sus_card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s, transform 0.3s;
}
.sus_card:hover {
  border-color: rgba(34,197,94,0.2);
  transform: translateY(-4px);
}
.sus_card_icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.sus_card h4 { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.88); margin-bottom: 8px; }
.sus_card p  { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; }

/* Texto gradiente verde */
.eco_text {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #00c4c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 991px) {
  .sus_header { grid-template-columns: 1fr; gap: 16px; }
  .sus_desc   { padding-top: 0; }
  .sus_cards  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
  .sus_cards { grid-template-columns: 1fr; }
}

/* ============================================================
   PÁGINA SOBRE — Hero
   ============================================================ */
.sb_hero {
  background: linear-gradient(160deg, #060d1c 0%, #091d1f 48%, #0e0818 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.sb_hero_glow_1 {
  position: absolute;
  top: -100px; right: -80px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(1,156,158,0.18) 0%, transparent 60%);
  pointer-events: none;
}
.sb_hero_glow_2 {
  position: absolute;
  bottom: -80px; left: -60px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.sb_hero_inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.sb_hero_title {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 20px;
}
.gradient_text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.sb_hero_sub {
  font-size: 18px;
  color: var(--text-s);
  line-height: 1.75;
  max-width: 620px;
  margin-bottom: 48px;
}
.sb_hero_stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 20px 0;
  display: inline-flex;
}
.sb_hs { text-align: center; padding: 0 32px; }
.sb_hs_val { display: block; font-size: 22px; font-weight: 900; color: #fff; line-height: 1.2; }
.sb_hs_lbl { display: block; font-size: 11px; color: rgba(255,255,255,0.3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 3px; }
.sb_hs_div { width: 1px; height: 40px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ============================================================
   PÁGINA SOBRE — Quem somos
   ============================================================ */
.sb_story {
  padding: 100px 0;
  background: var(--gray-1);
}
.sb_story_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sb_story_grid h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--dark-1);
  line-height: 1.15;
  margin: 16px 0 24px;
}
.sb_valores_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.sb_valor_card {
  background: #fff;
  border: 1px solid var(--gray-2);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sb_valor_card:hover {
  border-color: rgba(1,156,158,0.2);
  box-shadow: var(--shadow-blue);
}
.sb_val_icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
}
.sb_valor_card h4 { font-size: 14px; font-weight: 700; color: var(--dark-1); margin-bottom: 8px; }
.sb_valor_card p  { font-size: 13px; color: var(--text-s); line-height: 1.6; }

/* ============================================================
   PÁGINA SOBRE — Sustentabilidade / PLA
   ============================================================ */
.pla_section {
  padding: 100px 0;
  background: linear-gradient(160deg, #050d10 0%, #071a0f 45%, #0a0d16 100%);
  position: relative;
  overflow: hidden;
}
.pla_glow_1 {
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(34,197,94,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.pla_glow_2 {
  position: absolute;
  bottom: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(1,156,158,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.pla_grid_bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.pla_intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  position: relative; z-index: 1;
}
.pla_title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin: 20px 0 20px;
}
.pla_sub {
  font-size: 17px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}
.pla_sub strong { color: rgba(255,255,255,0.82); }

/* "O que é PLA" */
.pla_what {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  background: rgba(34,197,94,0.05);
  border: 1px solid rgba(34,197,94,0.14);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 48px;
  position: relative; z-index: 1;
}
.pla_what_icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(34,197,94,0.12);
  color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.pla_what h3 { font-size: 18px; font-weight: 800; color: rgba(255,255,255,0.9); margin-bottom: 10px; }
.pla_what p  { font-size: 15px; color: rgba(255,255,255,0.45); line-height: 1.75; }
.pla_what strong { color: rgba(255,255,255,0.75); }

/* 4 pilares */
.pla_pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
  position: relative; z-index: 1;
}
.pla_pillar {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.3s, transform 0.3s;
}
.pla_pillar:hover { border-color: rgba(34,197,94,0.2); transform: translateY(-4px); }
.pla_pillar_icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(34,197,94,0.1);
  color: #4ade80;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.pla_pillar h4 { font-size: 15px; font-weight: 700; color: rgba(255,255,255,0.88); margin-bottom: 10px; }
.pla_pillar p  { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.65; margin-bottom: 16px; }
.pla_pillar_tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ade80;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Comparativo PLA vs convencional */
.pla_compare {
  position: relative; z-index: 1;
}
.pla_compare_title {
  font-size: 22px; font-weight: 800;
  color: rgba(255,255,255,0.88);
  text-align: center;
  margin-bottom: 28px;
}
.pla_compare_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pla_compare_col {
  border-radius: var(--radius);
  padding: 32px;
}
.pla_col_good {
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
}
.pla_col_bad {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}
.pcc_header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px; font-weight: 700;
  margin-bottom: 20px;
}
.pla_col_good .pcc_header { color: #4ade80; }
.pla_col_bad  .pcc_header { color: rgba(255,255,255,0.4); }
.pcc_header i { font-size: 18px; }
.pla_compare_col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pla_compare_col li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(255,255,255,0.55);
}
.pla_col_good li i { color: #4ade80; font-size: 13px; }
.pla_col_bad  li i { color: rgba(239,68,68,0.6); font-size: 13px; }

/* Responsive sobre */
@media (max-width: 991px) {
  .sb_story_grid { grid-template-columns: 1fr; gap: 48px; }
  .pla_pillars   { grid-template-columns: 1fr 1fr; }
  .pla_compare_grid { grid-template-columns: 1fr; }
  .sb_hero_stats { flex-wrap: wrap; }
}
@media (max-width: 576px) {
  .sb_valores_grid { grid-template-columns: 1fr; }
  .pla_pillars     { grid-template-columns: 1fr; }
  .pla_what        { flex-direction: column; }
}

/* ============================================================
   14. CTA FINAL
   ============================================================ */
.store_cta {
  background: var(--gradient);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.store_cta::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta_title {
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  margin-bottom: 16px;
  position: relative;
}
.cta_sub {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 520px;
  margin: 0 auto 40px;
  position: relative;
}
.cta_actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   15. CONTATO
   ============================================================ */
.contact_section { padding: 100px 0; }

.contact_grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact_info h2 { margin-bottom: 16px; }
.contact_info p  { color: var(--text-s); margin-bottom: 36px; }

.contact_item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact_item_icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(1,156,158,0.08);
  border: 1px solid rgba(1,156,158,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 16px;
  flex-shrink: 0;
}
.contact_item_label {
  font-size: 12px;
  color: var(--text-m);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact_item a, .contact_item span {
  font-size: 15px;
  font-weight: 600;
  color: var(--dark-1);
}
.contact_item a:hover { color: var(--primary); }

.contact_form_wrap {
  background: var(--gray-1);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form_row.full { grid-template-columns: 1fr; }

.form_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form_group label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-s);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form_input,
.form_select,
.form_textarea {
  padding: 11px 16px;
  border: 2px solid var(--gray-2);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: #fff;
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
}
.form_input:focus, .form_select:focus, .form_textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(1,156,158,0.1);
}
.form_textarea { resize: vertical; min-height: 110px; }

.form_submit_row { margin-top: 24px; }

@media (max-width: 991px) {
  .contact_grid  { grid-template-columns: 1fr; gap: 48px; }
  .form_row      { grid-template-columns: 1fr; }
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.site_footer {
  background: var(--dark-1);
  padding: 80px 0 0;
  color: rgba(255,255,255,0.55);
}

.footer_grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer_brand img { height: 30px; margin-bottom: 20px; }

.footer_brand_desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
}

.footer_social {
  display: flex;
  gap: 10px;
}
.footer_social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  transition: all var(--t);
}
.footer_social a:hover {
  background: rgba(1,156,158,0.15);
  border-color: rgba(1,156,158,0.25);
  color: var(--primary-light);
}

.footer_col h4 {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer_col ul { display: flex; flex-direction: column; gap: 10px; }
.footer_col a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color var(--t);
}
.footer_col a:hover { color: rgba(255,255,255,0.85); }

.footer_bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer_copy {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
}
.footer_group_link {
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  transition: color var(--t);
}
.footer_group_link:hover { color: rgba(255,255,255,0.55); }
.footer_group_link span { color: var(--primary-light); }

@media (max-width: 991px) { .footer_grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 575px)  { .footer_grid { grid-template-columns: 1fr; } }

/* ============================================================
   17. BACK TO TOP + WHATSAPP FLUTUANTE
   ============================================================ */
.back_top {
  position: fixed;
  bottom: 90px; right: 24px;
  width: 44px; height: 44px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 20px rgba(1,156,158,0.35);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t);
  z-index: 500;
}
.back_top.visible { opacity: 1; pointer-events: all; }
.back_top:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(1,156,158,0.45); }

.float_wa {
  position: fixed;
  bottom: 24px; right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  z-index: 500;
  transition: all var(--t);
  text-decoration: none;
}
.float_wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.45);
  color: #fff;
}
.float_wa i { font-size: 18px; }

@media (max-width: 599px) {
  .float_wa span { display: none; }
  .float_wa { padding: 14px; border-radius: 50%; }
}

/* ============================================================
   18. ANIMAÇÕES EXTRAS
   ============================================================ */
@keyframes float_pulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.float_anim { animation: float_pulse 4s ease-in-out infinite; }

/* ============================================================
   19. ADMIN — PANEL COMPLETO
   (importado apenas nas páginas admin/)
   ============================================================ */
.admin_body { background: #f0f2f5; min-height: 100vh; font-family: var(--font); }
.admin_layout { display: flex; min-height: 100vh; }

.admin_sidebar {
  width: 252px;
  background: var(--dark-1);
  color: #fff;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin_sidebar__logo {
  padding: 22px 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.admin_sidebar__logo img { height: 26px; margin-bottom: 4px; }
.admin_sidebar__logo .badge {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.admin_nav { padding: 14px 0; flex: 1; }
.admin_nav__sec {
  padding: 10px 20px 6px;
  font-size: 10px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
}
.admin_nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  text-decoration: none;
}
.admin_nav a i { width: 15px; font-size: 13px; }
.admin_nav a:hover { color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.05); }
.admin_nav a.active { color: #fff; background: rgba(1,156,158,0.12); border-left-color: var(--primary); }

.admin_sidebar__foot {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin_sidebar__foot .user { font-size: 12px; color: rgba(255,255,255,0.28); display: flex; align-items: center; gap: 7px; }
.admin_sidebar__foot a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; display: flex; align-items: center; gap: 7px; transition: color 0.2s; }
.admin_sidebar__foot a:hover { color: rgba(255,255,255,0.7); }

.admin_content { flex: 1; padding: 30px 34px; overflow-x: auto; min-width: 0; }

.admin_topbar { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; gap: 14px; flex-wrap: wrap; }
.admin_topbar h1 { font-size: 22px; margin: 0; color: var(--dark-1); }
.admin_topbar p  { font-size: 13px; color: #999; margin: 4px 0 0; }

.admin_stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.admin_stat { background: #fff; border-radius: 12px; padding: 20px 22px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.admin_stat__val { font-size: 28px; font-weight: 900; color: var(--dark-1); line-height: 1; margin-bottom: 4px; }
.admin_stat--blue .admin_stat__val { color: var(--primary); }
.admin_stat--orange .admin_stat__val { color: var(--accent); }
.admin_stat__lbl { font-size: 12px; color: #999; font-weight: 500; }

.admin_card { background: #fff; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); overflow: hidden; }
.admin_card__head {
  padding: 16px 22px;
  border-bottom: 1px solid #f2f2f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.admin_card__head h2 { font-size: 16px; margin: 0; }

.admin_search { display: flex; gap: 8px; }
.admin_search input { height: 36px; padding: 0 12px; border: 2px solid #e8e8e8; border-radius: 8px; font-family: var(--font); font-size: 13px; outline: none; width: 210px; transition: border-color 0.2s; }
.admin_search input:focus { border-color: var(--primary); }

.tbl_wrap { overflow-x: auto; }
.admin_tbl { width: 100%; border-collapse: collapse; min-width: 780px; }
.admin_tbl th { text-align: left; padding: 10px 14px; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; color: #aaa; background: #fafafa; border-bottom: 1px solid #f0f0f0; white-space: nowrap; }
.admin_tbl td { padding: 12px 14px; border-bottom: 1px solid #f8f8f8; font-size: 13px; color: #333; vertical-align: middle; }
.admin_tbl tr:last-child td { border-bottom: none; }
.admin_tbl tr:hover td { background: #fafafa; }
.tbl_img { width: 44px; height: 44px; object-fit: cover; border-radius: 8px; background: #f0f0f0; }
.tbl_name { font-weight: 600; color: var(--dark-1); max-width: 180px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.abadge { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; white-space: nowrap; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.abadge.on      { background: #d1fae5; color: #059669; }
.abadge.off     { background: #fee2e2; color: #dc2626; }
.abadge.feat    { background: rgba(1,156,158,0.1); color: var(--primary); }
.abadge.no_feat { background: #f5f5f5; color: #bbb; }

.abtn { display: inline-flex; align-items: center; gap: 5px; padding: 6px 12px; border-radius: 7px; font-family: var(--font); font-size: 12px; font-weight: 700; text-decoration: none; cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; }
.abtn.primary  { background: var(--gradient); color: #fff; }
.abtn.primary:hover { background: linear-gradient(135deg, #017a7c 0%, #c4501f 100%); color: #fff; }
.abtn.danger   { background: #fee2e2; color: #dc2626; }
.abtn.danger:hover  { background: #dc2626; color: #fff; }
.abtn.secondary{ background: #f0f0f0; color: #555; }
.abtn.secondary:hover { background: #e0e0e0; }
.abtn.warning  { background: #fef3c7; color: #d97706; }
.abtn.warning:hover  { background: #d97706; color: #fff; }
.abtn.lg { padding: 11px 22px; font-size: 14px; border-radius: 10px; }
.abtn_row { display: flex; gap: 6px; flex-wrap: wrap; }

.admin_form { padding: 26px 28px; }
.arow { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.arow.full   { grid-template-columns: 1fr; }
.arow.three  { grid-template-columns: 1fr 1fr 1fr; }
.agroup { display: flex; flex-direction: column; gap: 5px; }
.agroup label { font-size: 11px; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: 0.5px; }
.agroup label.req::after { content: ' *'; color: #dc2626; }
.ainput,.aselect,.atextarea { padding: 10px 13px; border: 2px solid #e8e8e8; border-radius: 8px; font-family: var(--font); font-size: 14px; color: var(--dark-1); background: #fff; outline: none; transition: border-color 0.2s, box-shadow 0.2s; width: 100%; }
.ainput:focus,.aselect:focus,.atextarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(1,156,158,0.1); }
.atextarea { resize: vertical; min-height: 88px; line-height: 1.6; }
.ahint { font-size: 11px; color: #bbb; line-height: 1.5; }
.apreview { width: 96px; height: 96px; object-fit: cover; border-radius: 8px; border: 2px solid #e8e8e8; display: block; margin-top: 7px; }
.afoot { padding: 0 28px 26px; display: flex; gap: 12px; align-items: center; border-top: 1px solid #f2f2f2; padding-top: 20px; margin-top: 4px; }

.aalert { padding: 13px 16px; border-radius: 9px; margin-bottom: 20px; font-size: 14px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.aalert.ok  { background: #d1fae5; color: #059669; border-left: 4px solid #059669; }
.aalert.err { background: #fee2e2; color: #dc2626; border-left: 4px solid #dc2626; }

.admin_login_page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--dark-1); padding: 20px; position: relative; }
.admin_login_page::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(1,156,158,0.1) 0%, transparent 65%); pointer-events: none; }
.login_card { background: #fff; border-radius: 18px; padding: 48px 44px; width: 420px; max-width: 100%; box-shadow: 0 32px 80px rgba(0,0,0,0.4); position: relative; }
.login_brand { text-align: center; margin-bottom: 28px; }
.login_brand .name { font-size: 26px; font-weight: 900; color: var(--primary); letter-spacing: -0.5px; }
.login_brand .sub  { font-size: 12px; color: #aaa; letter-spacing: 2px; text-transform: uppercase; margin-top: 2px; }
.login_title { text-align: center; font-size: 20px; font-weight: 700; color: var(--dark-1); margin: 0 0 6px; }
.login_sub   { text-align: center; color: #aaa; font-size: 13px; margin-bottom: 28px; }
.login_back  { text-align: center; margin-top: 20px; }
.login_back a { color: #bbb; font-size: 12px; text-decoration: none; transition: color 0.2s; }
.login_back a:hover { color: #666; }

@media (max-width: 991px) {
  .admin_stats { grid-template-columns: 1fr 1fr; }
  .arow.three  { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 599px) {
  .admin_stats { grid-template-columns: 1fr; }
  .arow, .arow.three { grid-template-columns: 1fr; }
  .admin_content { padding: 20px 16px; }
}

/* ============================================================
   20. RESPONSIVIDADE HERO + GERAL
   ============================================================ */
@media (max-width: 991px) {
  .hero_showcase { display: none; }
  .store_hero  { min-height: auto; padding: 120px 0 80px; }
}

@media (max-width: 767px) {
  .section, .products_section, .benefits_section,
  .group_section, .contact_section { padding: 72px 0; }
  .filter_bar { flex-direction: column; align-items: stretch; }
  .hero_actions { flex-direction: column; align-items: flex-start; }
  .footer_bottom { flex-direction: column; text-align: center; }
  .section_header { flex-direction: column; align-items: flex-start; }
  .cta_actions { flex-direction: column; align-items: center; }
}

@media (max-width: 575px) {
  .hero_title { font-size: 34px; }
  .hero_sub   { font-size: 16px; }
  .btn_lg     { padding: 14px 24px; }
  .categories_section { padding: 60px 0; }
}
