/* ================================================================
   LOJAS FANTASIA — CSS PRINCIPAL
   Design disruptivo, teatral e mágico
   ================================================================ */

/* ───────────────────────────────────────────────────────────
   TOKENS E VARIÁVEIS
─────────────────────────────────────────────────────────── */
:root {
  /* Cores base */
  --c-bg:          #080010;
  --c-bg-2:        #0f0018;
  --c-bg-card:     #130020;
  --c-bg-card-2:   #1a002c;

  /* Roxo — da logo */
  --c-purple:      #6B21A8;
  --c-purple-light:#9333EA;
  --c-purple-glow: #A855F7;
  --c-purple-dim:  rgba(107,33,168,.15);

  /* Dourado — da logo */
  --c-gold:        #F5B800;
  --c-gold-light:  #FFD700;
  --c-gold-dim:    rgba(245,184,0,.15);

  /* Texto */
  --c-white:       #FFFFFF;
  --c-text:        #E2D4F0;
  --c-text-muted:  #9B87B8;
  --c-text-faint:  #5E4D78;

  /* Fontes */
  --f-display:     'Playfair Display', Georgia, serif;
  --f-body:        'Inter', system-ui, sans-serif;
  --f-accent:      'Space Grotesk', system-ui, sans-serif;

  /* Espaçamentos */
  --section-py:    clamp(80px, 10vw, 140px);
  --container:     1280px;
  --gap:           24px;

  /* Transições */
  --ease:          cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur:           0.4s;
}

/* ───────────────────────────────────────────────────────────
   RESET & BASE
─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--f-body);
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

body.loading { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.gold-text {
  color: var(--c-gold);
  font-style: normal;
}

/* ───────────────────────────────────────────────────────────
   CURSOR PERSONALIZADO
─────────────────────────────────────────────────────────── */
.cursor-dot {
  position: fixed;
  top: 0; left: 0;
  width: 8px; height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s var(--ease), background 0.2s;
}

.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  width: 36px; height: 36px;
  border: 2px solid rgba(245,184,0,.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 999998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
}

body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 60px; height: 60px;
  border-color: var(--c-purple-glow);
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
  body { cursor: auto; }
}

/* ───────────────────────────────────────────────────────────
   LOADER
─────────────────────────────────────────────────────────── */
.site-loader {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s;
}

.site-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo img {
  max-width: 200px;
  filter: brightness(0) invert(1);
}

.loader-brand {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 900;
  color: var(--c-white);
  letter-spacing: 0.1em;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-purple), var(--c-gold));
  border-radius: 2px;
  animation: loaderFill 1.4s var(--ease) forwards;
}

@keyframes loaderFill {
  to { width: 100%; }
}

.loader-text {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────────────────────
   HEADER
─────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.3s;
  padding: 20px 0;
}

.site-header.scrolled {
  background: rgba(8,0,16,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(107,33,168,.3), 0 4px 30px rgba(0,0,0,.4);
  padding: 12px 0;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.header-logo {
  flex-shrink: 0;
  display: block;
}

.header-logo img,
.header-logo .custom-logo {
  height: 52px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  transition: filter 0.3s;
}

.site-header.scrolled .header-logo img,
.site-header.scrolled .header-logo .custom-logo {
  height: 40px;
}

.header-logo:hover img { filter: brightness(1.1); }

.logo-text {
  font-family: var(--f-display);
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--c-white);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.logo-text strong {
  color: var(--c-gold);
  font-size: 1.4rem;
}

/* NAV */
.header-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-nav .nav-list li a {
  font-family: var(--f-accent);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-text);
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
  letter-spacing: 0.02em;
  position: relative;
}

.header-nav .nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 32px);
  height: 1px;
  background: var(--c-gold);
  transition: transform 0.3s var(--ease);
}

.header-nav .nav-list li a:hover { color: var(--c-white); }
.header-nav .nav-list li a:hover::after { transform: translateX(-50%) scaleX(1); }

/* AÇÕES */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: var(--f-accent);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  white-space: nowrap;
}

.btn-whatsapp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--c-white);
  transition: transform 0.3s var(--ease), opacity 0.3s, width 0.3s;
}

.hamburger span:nth-child(2) { width: 70%; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-nav .mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-nav .mobile-nav-list li a {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 700;
  color: var(--c-text);
  padding: 12px 24px;
  display: block;
  transition: color 0.3s;
}

.mobile-nav .mobile-nav-list li a:hover { color: var(--c-gold); }

.mobile-whats {
  font-size: 1rem;
  padding: 14px 32px;
}

/* ───────────────────────────────────────────────────────────
   HERO
─────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--c-bg);
}

/* Partículas */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Orbs de fundo */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}

.hero-orb-1 {
  width: clamp(400px, 60vw, 800px);
  height: clamp(400px, 60vw, 800px);
  background: radial-gradient(circle, var(--c-purple) 0%, transparent 70%);
  top: -20%;
  left: -10%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: clamp(300px, 45vw, 600px);
  height: clamp(300px, 45vw, 600px);
  background: radial-gradient(circle, var(--c-gold) 0%, transparent 70%);
  bottom: -10%;
  right: -5%;
  opacity: 0.2;
  animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(circle, #C084FC 0%, transparent 70%);
  top: 50%;
  left: 55%;
  opacity: 0.15;
  animation: orbFloat1 18s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%       { transform: translate(30px,-20px) scale(1.05); }
  66%       { transform: translate(-20px,15px) scale(0.97); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-25px,20px) scale(1.08); }
}

/* CORTINAS */
.curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 55%;
  z-index: 1;
  pointer-events: none;
  background: var(--c-bg);
}

.curtain-left  { left: 0;  transform-origin: left center; }
.curtain-right { right: 0; transform-origin: right center; }

/* CONTEÚDO HERO */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 120px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

/* EYEBROW */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-purple-glow);
}

.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,184,0,.6); }
  50%       { box-shadow: 0 0 0 8px rgba(245,184,0,0); }
}

/* HERO BRAND NAME (fallback sem logo) */
.hero-brand-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 4px;
}

.hero-brand-top {
  font-family: var(--f-accent);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.5em;
  color: var(--c-text-muted);
  text-transform: uppercase;
}

.hero-brand-main {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 900;
  color: var(--c-gold);
  text-shadow:
    0 0 40px rgba(245,184,0,.5),
    0 0 100px rgba(245,184,0,.2);
  letter-spacing: -0.02em;
}

/* HERO LOGO (custom logo) */
.hero-logo {
  /* opacity controlada pelo GSAP */
}

.hero-logo img {
  max-width: min(320px, 80vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(107,33,168,.5));
  margin: 0 auto;
}

/* TAGLINE */
.hero-tagline {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--c-white);
  max-width: 700px;
  line-height: 1.3;
}

.tagline-line {
  display: block;
  position: relative;
}

/* SUBTÍTULO */
.hero-subtitle {
  font-family: var(--f-accent);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--c-text-muted);
  letter-spacing: 0.08em;
  max-width: 500px;
}

/* CTAs */
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--f-accent);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-bg);
  background: var(--c-gold);
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.btn-primary .btn-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-gold-light), var(--c-gold));
  transition: opacity 0.3s;
}

.btn-primary .btn-text, .btn-primary .btn-arrow {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(245,184,0,.5);
}

.btn-arrow {
  transition: transform 0.3s var(--ease);
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--f-accent);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.2);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-spring);
}

.btn-ghost:hover {
  border-color: var(--c-purple-glow);
  background: rgba(107,33,168,.15);
  transform: translateY(-3px);
}

/* SCROLL INDICATOR */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--c-text-faint);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--f-accent);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--c-purple-glow), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50%       { transform: scaleY(0.6); opacity: 0.5; }
}

/* FLOATERS */
.hero-floaters {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.floater {
  position: absolute;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  opacity: 0.3;
  animation: floatUp 8s ease-in-out infinite;
  filter: blur(0.5px);
}

.floater-1 { top: 20%;  left: 8%;   animation-delay: 0s;   animation-duration: 7s; }
.floater-2 { top: 60%;  left: 12%;  animation-delay: 1.5s; animation-duration: 9s; }
.floater-3 { top: 15%;  right: 10%; animation-delay: 3s;   animation-duration: 8s; }
.floater-4 { top: 55%;  right: 8%;  animation-delay: 0.5s; animation-duration: 10s; }
.floater-5 { bottom: 20%; left: 50%; animation-delay: 2s;  animation-duration: 7.5s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0)   rotate(0deg); }
  33%       { transform: translateY(-20px) rotate(5deg); }
  66%       { transform: translateY(10px)  rotate(-3deg); }
}

/* ───────────────────────────────────────────────────────────
   MARQUEE
─────────────────────────────────────────────────────────── */
.marquee-section {
  background: linear-gradient(135deg, var(--c-purple) 0%, #4C0099 100%);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.marquee-track {
  display: flex;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-shrink: 0;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  padding-right: 32px;
}

.marquee-content span {
  font-family: var(--f-accent);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.marquee-sep {
  color: var(--c-gold) !important;
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-content { animation-play-state: paused; }
}

/* ───────────────────────────────────────────────────────────
   SECTION HEADER (genérico)
─────────────────────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-label {
  font-family: var(--f-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.section-label::before, .section-label::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--c-gold);
  opacity: 0.5;
}

.section-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.15;
}

.section-title em {
  font-style: normal;
  color: var(--c-gold);
}

.section-desc {
  color: var(--c-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}

/* ───────────────────────────────────────────────────────────
   PLACEHOLDERS DE IMAGEM (genérico)
─────────────────────────────────────────────────────────── */
.card-image-placeholder,
.sobre-img-placeholder,
.unidade-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(107,33,168,.15) 0%, rgba(245,184,0,.05) 100%);
  border: 2px dashed rgba(107,33,168,.25);
  color: var(--c-text-faint);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.card-image-placeholder::before,
.sobre-img-placeholder::before,
.unidade-photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 10px,
      rgba(107,33,168,.03) 10px,
      rgba(107,33,168,.03) 20px
    );
  pointer-events: none;
}

.placeholder-icon {
  font-size: 2.5rem;
  display: block;
  filter: grayscale(0.3);
}

.placeholder-label {
  font-family: var(--f-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-faint);
}

/* ───────────────────────────────────────────────────────────
   CATEGORIAS
─────────────────────────────────────────────────────────── */
.categorias-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

.categorias-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 80% 20%, rgba(107,33,168,.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(245,184,0,.04) 0%, transparent 60%);
  pointer-events: none;
}

.categorias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
}

@media (min-width: 1024px) {
  .categorias-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* CARD */
.categoria-card {
  position: relative;
  perspective: 1000px;
}

.js .categoria-card {
  opacity: 0;
  transform: translateY(40px);
}

.card-inner {
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s, box-shadow 0.4s;
  transform-style: preserve-3d;
  cursor: default;
}

.card-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--card-color, var(--c-purple)), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}

.categoria-card:hover .card-inner {
  border-color: var(--card-color, var(--c-purple));
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(var(--card-color-rgb, 107,33,168), .2);
}

.categoria-card:hover .card-inner::before {
  opacity: 0.07;
}

/* GLOW */
.card-glow {
  position: absolute;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--card-color, var(--c-purple)), transparent);
  opacity: 0;
  border-radius: 50%;
  filter: blur(30px);
  transition: opacity 0.4s;
  pointer-events: none;
  top: -20px; right: -20px;
  z-index: 2;
}

.categoria-card:hover .card-glow { opacity: 0.5; }

/* IMAGEM */
.card-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.categoria-card:hover .card-image img {
  transform: scale(1.08);
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
  border: none;
  border-bottom: 1px dashed rgba(107,33,168,.2);
}

/* BODY */
.card-body {
  padding: 20px 24px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-white);
}

.card-desc {
  font-size: 0.82rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  flex: 1;
}

/* CTA */
.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-accent);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--card-color, var(--c-purple-glow));
  letter-spacing: 0.05em;
  transition: gap 0.3s var(--ease);
  padding: 0 24px 24px;
}

.categoria-card:hover .card-cta { gap: 12px; }

/* NÚMERO */
.card-number {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(255,255,255,.08);
  line-height: 1;
  pointer-events: none;
  transition: color 0.3s;
  z-index: 3;
}

.categoria-card:hover .card-number {
  color: rgba(255,255,255,.15);
}

/* ───────────────────────────────────────────────────────────
   SOBRE
─────────────────────────────────────────────────────────── */
.sobre-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-bg-2) 0%, var(--c-bg) 100%);
}

.sobre-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 900;
  color: rgba(107,33,168,.04);
  pointer-events: none;
  letter-spacing: -0.05em;
  user-select: none;
}

.sobre-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

@media (max-width: 768px) {
  .sobre-grid { grid-template-columns: 1fr; }
}

/* SOBRE VISUAL (lado esquerdo) */
.sobre-visual {
  position: relative;
  margin: 0;
  max-width: 100%;
}

.sobre-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.4);
  border: 1px solid rgba(107,33,168,.2);
}

.sobre-img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 24px;
  position: relative;
}

.placeholder-visual-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.placeholder-emoji {
  font-size: 4rem;
  filter: grayscale(0.2);
}

.placeholder-main-text {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-text-faint);
}

.placeholder-sub-text {
  font-family: var(--f-accent);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-text-faint);
  opacity: 0.6;
  max-width: 200px;
  line-height: 1.5;
}

.sobre-placeholder-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.sobre-placeholder-accent.accent-1 {
  width: 200px; height: 200px;
  background: var(--c-purple);
  opacity: 0.15;
  top: -40px; right: -40px;
}

.sobre-placeholder-accent.accent-2 {
  width: 150px; height: 150px;
  background: var(--c-gold);
  opacity: 0.08;
  bottom: -30px; left: -30px;
}

/* SOBRE CONTENT (lado direito) */
.sobre-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sobre-text {
  text-align: left;
  margin: 0;
  align-items: flex-start;
}

.sobre-text .section-label {
  justify-content: flex-start;
}

.sobre-text .section-label::before { display: none; }

.sobre-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--c-text-muted);
  margin-bottom: 32px;
}

/* STATS */
.sobre-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stat-card {
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}

.stat-card:hover {
  border-color: rgba(107,33,168,.4);
  transform: translateX(8px);
}

.stat-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--c-purple), var(--c-gold));
  border-radius: 3px 0 0 3px;
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.counter {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1;
}

.stat-unit {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold);
}

.stat-label {
  font-family: var(--f-accent);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────────────────────
   COMO FUNCIONA
─────────────────────────────────────────────────────────── */
.como-section {
  padding: var(--section-py) 0;
  background: var(--c-bg);
}

.como-steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .como-steps {
    flex-direction: column;
    gap: 16px;
  }
  .como-step-connector { display: none; }
}

.como-step {
  flex: 1;
  text-align: center;
  padding: 48px 28px 40px;
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s;
}

.js .como-step {
  opacity: 0;
  transform: translateY(30px);
}

.como-step:hover {
  border-color: rgba(107,33,168,.3);
  transform: translateY(-4px);
}

.step-number {
  font-family: var(--f-display);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(107,33,168,.12);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
  pointer-events: none;
}

.step-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-purple-dim), var(--c-gold-dim));
  border: 1px solid rgba(107,33,168,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s;
}

.como-step:hover .step-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
  border-color: var(--c-purple-glow);
}

.step-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.como-step h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
}

.como-step p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  line-height: 1.7;
}

/* CONECTOR ENTRE STEPS */
.como-step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  flex-shrink: 0;
  color: var(--c-text-faint);
}

.como-step-connector svg {
  width: 40px;
  height: auto;
}

/* ───────────────────────────────────────────────────────────
   UNIDADES
─────────────────────────────────────────────────────────── */
.unidades-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
  background: var(--c-bg-2);
}

.unidades-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(107,33,168,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 70%, rgba(245,184,0,.2) 0%, transparent 100%);
  background-size: 60px 60px;
  opacity: 0.4;
  pointer-events: none;
}

.unidades-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

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

@media (max-width: 600px) {
  .unidades-grid { grid-template-columns: 1fr; }
}

.unidade-card {
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.4s;
}

.js .unidade-card {
  opacity: 0;
  transform: translateY(40px);
}

.unidade-card:hover {
  border-color: var(--unidade-cor, var(--c-purple));
  box-shadow: 0 20px 60px rgba(0,0,0,.3), 0 0 0 1px var(--unidade-cor, var(--c-purple));
  transform: translateY(-6px);
}

/* HEADER / FOTO */
.unidade-header {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.unidade-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.unidade-card:hover .unidade-photo {
  transform: scale(1.05);
}

.unidade-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--c-bg-card) 0%, transparent 60%);
  pointer-events: none;
}

.unidade-photo-placeholder {
  width: 100%;
  height: 100%;
  border: none;
  border-bottom: 1px dashed rgba(107,33,168,.2);
  border-radius: 0;
  background: linear-gradient(135deg, var(--unidade-cor, var(--c-purple)), rgba(0,0,0,.7));
}

.unidade-photo-placeholder svg {
  color: rgba(255,255,255,.25);
}

.unidade-photo-placeholder span {
  font-family: var(--f-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}

.unidade-badge {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,.12);
  line-height: 1;
  z-index: 1;
}

.unidade-body {
  padding: 28px 28px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.unidade-cidade {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-white);
}

.unidade-end, .unidade-horario {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.unidade-end svg, .unidade-horario svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--unidade-cor, var(--c-purple-glow));
}

.unidade-actions {
  padding: 0 28px 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.unidade-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--f-accent);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-spring), opacity 0.3s;
  white-space: nowrap;
}

.unidade-btn:hover { transform: translateY(-2px); opacity: 0.9; }

.unidade-btn-whats {
  background: #25D366;
  color: #fff;
}

.unidade-btn-maps {
  background: rgba(255,255,255,.08);
  color: var(--c-white);
  border: 1px solid rgba(255,255,255,.12);
}

.unidade-btn-insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

/* ───────────────────────────────────────────────────────────
   CTA FINAL
─────────────────────────────────────────────────────────── */
.cta-final-section {
  padding: var(--section-py) 0;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--c-purple) 0%, transparent 60%);
  opacity: 0.12;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
}

.cta-orb-2 {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--c-gold) 0%, transparent 60%);
  opacity: 0.08;
  bottom: 0; right: 0;
  filter: blur(60px);
}

.cta-final-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-final-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.25;
  margin-bottom: 48px;
}

.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-whatsapp-large {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  font-family: var(--f-accent);
  font-size: 1rem;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
}

.btn-whatsapp-large:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 50px rgba(37,211,102,.45);
}

/* ───────────────────────────────────────────────────────────
   FOOTER
─────────────────────────────────────────────────────────── */
.site-footer {
  background: #050008;
  border-top: 1px solid rgba(107,33,168,.2);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-purple), var(--c-gold), var(--c-purple), transparent);
}

/* NEWSLETTER */
.footer-newsletter {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.newsletter-text h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 8px;
}

.newsletter-text p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
}

.newsletter-form { flex: 0 0 auto; }

.newsletter-input-wrap {
  display: flex;
  gap: 0;
  border: 1.5px solid rgba(107,33,168,.4);
  border-radius: 100px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.newsletter-input-wrap:focus-within {
  border-color: var(--c-purple-glow);
}

.newsletter-input-wrap input {
  background: rgba(255,255,255,.04);
  border: none;
  color: var(--c-white);
  font-family: var(--f-body);
  font-size: 0.9rem;
  padding: 14px 20px;
  outline: none;
  min-width: 260px;
}

.newsletter-input-wrap input::placeholder { color: var(--c-text-faint); }

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-gold);
  color: var(--c-bg);
  font-family: var(--f-accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 14px 24px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-gold:hover { background: var(--c-gold-light); }

/* FOOTER MAIN */
.footer-main {
  padding: 80px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand img { max-width: 160px; margin-bottom: 20px; }
.footer-logo-text { margin-bottom: 20px; }

.footer-brand p {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-text-muted);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-spring), border-color 0.3s;
}

.social-link:hover {
  background: var(--c-purple);
  color: var(--c-white);
  border-color: var(--c-purple);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--f-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--c-text-muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--c-white); }

.footer-unidade {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-unidade strong {
  font-family: var(--f-accent);
  font-size: 0.95rem;
  color: var(--c-white);
}

.footer-unidade span {
  font-size: 0.82rem;
  color: var(--c-text-muted);
}

.footer-whats {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #25D366;
  margin-top: 6px;
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.04);
  padding: 24px 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--c-text-faint);
}

.footer-bottom a {
  color: var(--c-purple-glow);
  transition: color 0.3s;
}

.footer-bottom a:hover { color: var(--c-gold); }

/* ───────────────────────────────────────────────────────────
   ANIMAÇÕES GSAP — estado inicial controlado por JS (gsap.set)
   Apenas cards/steps mantêm opacity:0 em CSS como fallback
─────────────────────────────────────────────────────────── */

/* ───────────────────────────────────────────────────────────
   RESPONSIVO
─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-nav { display: none; }
  .hamburger  { display: flex; }
  .btn-whatsapp span { display: none; }
}

@media (max-width: 600px) {
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-input-wrap { width: 100%; }
  .newsletter-input-wrap input { min-width: 0; flex: 1; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 280px; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}

/* ───────────────────────────────────────────────────────────
   UTILITÁRIOS
─────────────────────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* WordPress admin bar */
.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}

/* ───────────────────────────────────────────────────────────
   PÁGINA DE CATEGORIA
─────────────────────────────────────────────────────────── */

/* HERO */
.cat-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding-top: 140px;
  padding-bottom: 60px;
  overflow: hidden;
}

.admin-bar .cat-hero { padding-top: 172px; }

.cat-hero-bg {
  position: absolute;
  inset: 0;
}

.cat-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.cat-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    var(--c-bg) 0%,
    rgba(8,0,16,0.85) 40%,
    rgba(8,0,16,0.5) 100%
  );
}

.cat-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cat-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-accent);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--c-text-muted);
  margin-bottom: 12px;
  transition: color 0.3s;
  width: fit-content;
}

.cat-breadcrumb:hover { color: var(--c-white); }

/* TÍTULO COM ÍCONE NA FRENTE */
.cat-hero-title-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cat-hero-icon {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  flex-shrink: 0;
}

.cat-hero-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: var(--c-white);
  line-height: 1.1;
}

.cat-hero-desc {
  font-size: 1.1rem;
  color: var(--c-text-muted);
  max-width: 500px;
  line-height: 1.6;
}

.cat-hero-count {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 8px;
}

.cat-count-number {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--cat-color, var(--c-gold));
}

.cat-count-label {
  font-family: var(--f-accent);
  font-size: 0.82rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* FILTROS */
.cat-filters {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
  position: sticky;
  top: 68px;
  z-index: 50;
  background: rgba(8,0,16,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.admin-bar .cat-filters { top: 100px; }

.cat-filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.cat-filter-bar::-webkit-scrollbar { display: none; }

.cat-filter-btn {
  flex-shrink: 0;
  font-family: var(--f-accent);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,.08);
  background: transparent;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.cat-filter-btn:hover {
  border-color: var(--cat-color, var(--c-purple));
  color: var(--c-white);
}

.cat-filter-btn.active {
  background: var(--cat-color, var(--c-purple));
  border-color: var(--cat-color, var(--c-purple));
  color: var(--c-bg);
}

/* GRID DE PRODUTOS */
.cat-grid-section {
  padding: 60px 0 var(--section-py);
}

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

@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* CARD DE PRODUTO */
.prod-card {
  animation: prodFadeIn 0.5s var(--ease) both;
  animation-delay: var(--prod-delay, 0s);
}

@keyframes prodFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.prod-card-inner {
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s, box-shadow 0.4s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.prod-card-inner:hover {
  border-color: var(--cat-color, var(--c-purple));
  box-shadow: 0 16px 50px rgba(0,0,0,.3);
  transform: translateY(-6px);
}

/* IMAGEM DO PRODUTO */
.prod-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.prod-card-inner:hover .prod-photo {
  transform: scale(1.06);
}

.prod-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.prod-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    hsl(calc(var(--prod-hue, 270)), 40%, 12%) 0%,
    hsl(calc(var(--prod-hue, 270) + 30), 30%, 8%) 100%
  );
}

.prod-placeholder-icon {
  font-size: clamp(3rem, 6vw, 4.5rem);
  filter: saturate(0.7);
  opacity: 0.5;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s;
}

.prod-card-inner:hover .prod-placeholder-icon {
  transform: scale(1.15) rotate(-5deg);
  opacity: 0.7;
}

/* TAG */
.prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--f-accent);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  background: var(--cat-color, var(--c-purple));
  color: var(--c-bg);
  z-index: 2;
}

/* CARD CLICÁVEL */
.prod-card-inner[role="button"] {
  cursor: pointer;
}

/* FILTRO ATIVO — animação */
.prod-card {
  transition: opacity 0.2s, transform 0.2s;
}

/* INFO DO PRODUTO */
.prod-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prod-name {
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.3;
}

.prod-desc {
  font-size: 0.8rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  flex: 1;
}

.prod-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.05);
}

.prod-type {
  font-family: var(--f-accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cat-color, var(--c-purple-glow));
  padding: 4px 10px;
  border: 1px solid currentColor;
  border-radius: 100px;
  opacity: 0.7;
}

.prod-price {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-gold);
}

/* CTA CATEGORIA */
.cat-cta {
  padding: 80px 0;
  background: var(--c-bg-2);
  text-align: center;
}

.cat-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cat-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--c-white);
}

.cat-cta p {
  color: var(--c-text-muted);
  font-size: 1rem;
}

.cat-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 16px;
}

/* OUTRAS CATEGORIAS */
.cat-related {
  padding: var(--section-py) 0;
}

.cat-related-title {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--c-white);
  text-align: center;
  margin-bottom: 40px;
}

.cat-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .cat-related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .cat-related-grid { grid-template-columns: 1fr 1fr; }
}

.cat-related-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,.05);
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
  display: flex;
  flex-direction: column;
}

.cat-related-card:hover {
  transform: translateY(-4px);
  border-color: var(--card-color, var(--c-purple));
}

.cat-related-img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(107,33,168,.1), rgba(245,184,0,.05));
}

.cat-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease);
}

.cat-related-card:hover .cat-related-img img {
  transform: scale(1.08);
}

.cat-related-info {
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cat-related-icon { font-size: 1.4rem; }

.cat-related-name {
  font-family: var(--f-accent);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-white);
}

/* ───────────────────────────────────────────────────────────
   LIGHTBOX
─────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 1;
  background: var(--c-bg-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 32px;
  width: min(460px, 90vw);
  overflow: hidden;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: 0 40px 120px rgba(0,0,0,.6);
}

.lightbox.open .lightbox-content {
  transform: scale(1) translateY(0);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 2;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--c-white);
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,.15);
  transform: rotate(90deg);
}

.lightbox-icon {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  background: linear-gradient(
    135deg,
    hsl(calc(var(--lb-hue, 270)), 40%, 12%) 0%,
    hsl(calc(var(--lb-hue, 270) + 30), 30%, 8%) 100%
  );
  filter: saturate(0.8);
}

.lightbox-info {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lightbox-name {
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--c-white);
}

.lightbox-desc {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.lightbox-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.lb-type {
  font-family: var(--f-accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-purple-glow);
  padding: 5px 14px;
  border: 1px solid var(--c-purple-glow);
  border-radius: 100px;
}

.lb-tag {
  font-family: var(--f-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  background: var(--c-gold);
  color: var(--c-bg);
}

.lb-price {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-left: auto;
}

/* ───────────────────────────────────────────────────────────
   FOOTER BOTTOM LINKS
─────────────────────────────────────────────────────────── */
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-bottom-links p { margin: 0; }

.footer-dot {
  color: var(--c-text-faint);
  font-size: 0.7rem;
}

/* ───────────────────────────────────────────────────────────
   BANNER DE COOKIES
─────────────────────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
  max-width: 420px;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  pointer-events: none;
}

.cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}

.cookie-banner-inner {
  background: rgba(19, 0, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(107,33,168,.25);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}

.cookie-banner p {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

.cookie-banner a {
  color: var(--c-purple-glow);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner a:hover {
  color: var(--c-gold);
}

.cookie-btn {
  flex-shrink: 0;
  font-family: var(--f-accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 100px;
  border: none;
  background: var(--c-purple);
  color: var(--c-white);
  cursor: pointer;
  transition: background 0.3s, transform 0.2s var(--ease-spring);
  white-space: nowrap;
}

.cookie-btn:hover {
  background: var(--c-purple-light);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}

/* ───────────────────────────────────────────────────────────
   PÁGINAS LEGAIS (page.php)
─────────────────────────────────────────────────────────── */
.page-legal {
  padding-top: 140px;
  padding-bottom: var(--section-py);
}

.admin-bar .page-legal { padding-top: 172px; }

.page-legal .container { max-width: 800px; }

.page-legal h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-legal h2 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--c-white);
  margin-top: 40px;
  margin-bottom: 16px;
}

.page-legal p,
.page-legal li {
  font-size: 0.95rem;
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: 12px;
}

.page-legal ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 20px;
}

.page-legal ul li {
  margin-bottom: 8px;
}

.page-legal a {
  color: var(--c-purple-glow);
}

.page-legal a:hover {
  color: var(--c-gold);
}

.page-legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.page-legal th,
.page-legal td {
  padding: 12px 16px;
  text-align: left;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.page-legal th {
  font-family: var(--f-accent);
  font-weight: 600;
  color: var(--c-gold);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-legal td {
  color: var(--c-text-muted);
}

.page-legal em {
  color: var(--c-text-faint);
  font-style: italic;
}
