/* =========================================================
   ENIOVERRI — STATIC CSS (converted from React/Tailwind)
   Preserva tokens HSL, gradientes, sombras e utilidades.
   ========================================================= */

:root {
  --background: 222 28% 6%;
  --foreground: 220 25% 96%;
  --bg-1: 224 24% 8%;
  --surface: 225 30% 12%;
  --card: 225 30% 12%;
  --card-foreground: 220 25% 96%;
  --popover: 224 24% 8%;
  --popover-foreground: 220 25% 96%;
  --primary: 44 97% 49%;
  --primary-foreground: 222 28% 6%;
  --primary-2: 43 100% 39%;
  --gold-outline: 47 100% 21%;
  --brand-blue: 219 35% 67%;
  --secondary: 222 28% 14%;
  --secondary-foreground: 220 25% 96%;
  --muted: 224 18% 18%;
  --muted-foreground: 220 18% 80%;
  --muted-2: 220 16% 65%;
  --accent: 44 97% 49%;
  --accent-foreground: 222 28% 6%;
  --destructive: 0 84% 60%;
  --destructive-foreground: 220 25% 96%;
  --border: 225 20% 18%;
  --input: 225 20% 18%;
  --ring: 44 97% 49%;
  --wa: 142 76% 28%;
  --wa-foreground: 0 0% 100%;
  --wa-2: 142 80% 22%;
  --radius: 0.85rem;

  --gradient-gold: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-2)) 100%);
  --gradient-hero:
    radial-gradient(1200px 600px at 80% -10%, hsl(44 97% 49% / 0.18), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, hsl(219 60% 40% / 0.18), transparent 60%),
    linear-gradient(180deg, hsl(222 28% 6%) 0%, hsl(224 24% 8%) 100%);
  --gradient-surface: linear-gradient(180deg, hsl(225 30% 12%) 0%, hsl(224 24% 9%) 100%);
  --shadow-glow: 0 10px 40px -10px hsl(44 97% 49% / 0.45);
  --shadow-card: 0 8px 30px -12px hsl(0 0% 0% / 0.6);
  --shadow-wa: 0 12px 30px -8px hsl(142 70% 49% / 0.55);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; border: 0 solid hsl(var(--border)); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  margin: 0; padding: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "rlig" 1, "calt" 1;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }

section[id], h1[id], h2[id], h3[id] { scroll-margin-top: 96px; }

:focus-visible { outline: 2px solid hsl(var(--primary)); outline-offset: 2px; border-radius: 4px; }

::selection { background: hsl(var(--primary) / 0.3); color: hsl(var(--foreground)); }

/* ===== Layout helpers ===== */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.place-items-center { place-items: center; }
.text-center { text-align: center; }
.text-left { text-align: left; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.top-0 { top: 0; }
.bottom-3 { bottom: 0.75rem; }
.left-3 { left: 0.75rem; }
.right-3 { right: 0.75rem; }
.left-6 { left: 1.5rem; }
.-top-3 { top: -0.75rem; }
.-bottom-4 { bottom: -1rem; }
.-right-4 { right: -1rem; }
.bottom-5 { bottom: 1.25rem; }
.right-5 { right: 1.25rem; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }

.hidden { display: none; }
.inline-flex { display: inline-flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.shrink-0 { flex-shrink: 0; }

.w-full { width: 100%; }
.h-2\.5 { height: 0.625rem; }
.w-2\.5 { width: 0.625rem; }
.h-3 { height: 0.75rem; }
.w-3 { width: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.w-3\.5 { width: 0.875rem; }
.h-4 { height: 1rem; }
.w-4 { width: 1rem; }
.h-5 { height: 1.25rem; }
.w-5 { width: 1.25rem; }
.h-6 { height: 1.5rem; }
.w-6 { width: 1.5rem; }
.h-7 { height: 1.75rem; }
.w-7 { width: 1.75rem; }
.h-8 { height: 2rem; }
.w-8 { width: 2rem; }
.h-9 { height: 2.25rem; }
.w-9 { width: 2.25rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-11 { height: 2.75rem; }
.w-11 { width: 2.75rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.h-16 { height: 4rem; }
.w-16 { width: 4rem; }

.max-w-md { max-width: 28rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-6xl { max-width: 72rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-5 { margin-top: 1.25rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-20 { margin-top: 5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.ml-2 { margin-left: 0.5rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-20 { margin-top: 5rem; margin-bottom: 5rem; }

.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-5 { padding-left: 1.25rem; }
.pr-4 { padding-right: 1rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-24 { padding-top: 6rem; }
.pt-32 { padding-top: 8rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-0 { padding-top: 0; }

.rounded-md { border-radius: calc(var(--radius) - 2px); }
.rounded-lg { border-radius: var(--radius); }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-border { border-color: hsl(var(--border)); }
.border-primary\/40 { border-color: hsl(var(--primary) / 0.4); }
.border-primary\/60 { border-color: hsl(var(--primary) / 0.6); }
.border-gold-outline { border-color: hsl(var(--gold-outline)); }
.border-gold-outline\/40 { border-color: hsl(var(--gold-outline) / 0.4); }
.border-gold-outline\/60 { border-color: hsl(var(--gold-outline) / 0.6); }
.border-wa\/40 { border-color: hsl(var(--wa) / 0.4); }
.divide-y > * + * { border-top-width: 1px; border-color: hsl(var(--border)); }
.divide-border > * + * { border-color: hsl(var(--border)); }

.bg-background { background-color: hsl(var(--background)); }
.bg-background\/85 { background-color: hsl(var(--background) / 0.85); }
.bg-background\/95 { background-color: hsl(var(--background) / 0.95); }
.bg-bg-1 { background-color: hsl(var(--bg-1)); }
.bg-card { background-color: hsl(var(--card)); }
.bg-card\/40 { background-color: hsl(var(--card) / 0.4); }
.bg-card\/50 { background-color: hsl(var(--card) / 0.5); }
.bg-card\/60 { background-color: hsl(var(--card) / 0.6); }
.bg-secondary { background-color: hsl(var(--secondary)); }
.bg-primary { background-color: hsl(var(--primary)); }
.bg-primary\/70 { background-color: hsl(var(--primary) / 0.7); }
.bg-destructive\/70 { background-color: hsl(var(--destructive) / 0.7); }
.bg-wa { background-color: hsl(var(--wa)); }
.bg-wa\/70 { background-color: hsl(var(--wa) / 0.7); }
.bg-transparent { background-color: transparent; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-gradient-gold { background: var(--gradient-gold); }
.bg-gradient-surface { background: var(--gradient-surface); }
.bg-hero { background: var(--gradient-hero); }
.bg-gradient-hero { background: var(--gradient-hero); }

.text-foreground { color: hsl(var(--foreground)); }
.text-foreground\/90 { color: hsl(var(--foreground) / 0.9); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-muted-2 { color: hsl(var(--muted-2)); }
.text-primary { color: hsl(var(--primary)); }
.text-primary-foreground { color: hsl(var(--primary-foreground)); }
.text-wa { color: hsl(var(--wa)); }
.text-wa-foreground { color: hsl(var(--wa-foreground)); }
.text-brand-blue { color: hsl(var(--brand-blue)); }
.text-transparent { color: transparent; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-widest { letter-spacing: 0.1em; }
.uppercase { text-transform: uppercase; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.05\] { line-height: 1.05; }

.fill-current { fill: currentColor; }

.shadow-card { box-shadow: var(--shadow-card); }
.shadow-glow { box-shadow: var(--shadow-glow); }
.shadow-wa { box-shadow: var(--shadow-wa); }

.opacity-60 { opacity: 0.6; }
.pointer-events-none { pointer-events: none; }
.break-all { word-break: break-all; }
.whitespace-nowrap { white-space: nowrap; }

.aspect-video { aspect-ratio: 16 / 9; }

.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-bg-1 { --tw-gradient-from: hsl(var(--bg-1)); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-surface { --tw-gradient-to: hsl(var(--surface)); }
.from-bg-1.to-surface {
  background-image: linear-gradient(to bottom right, hsl(var(--bg-1)), hsl(var(--surface)));
}

.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

.hover\:text-primary:hover { color: hsl(var(--primary)); }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:text-brand-blue:hover { color: hsl(var(--brand-blue)); }
.hover\:bg-primary\/10:hover { background-color: hsl(var(--primary) / 0.1); }
.hover\:bg-secondary:hover { background-color: hsl(var(--secondary)); }
.hover\:bg-wa-2:hover { background-color: hsl(var(--wa-2)); }
.hover\:opacity-95:hover { opacity: 0.95; }
.hover\:border-primary\/50:hover { border-color: hsl(var(--primary) / 0.5); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:no-underline:hover { text-decoration: none; }

/* ===== Components from index.css ===== */
.container-custom {
  margin-left: auto; margin-right: auto;
  width: 100%;
  max-width: 72rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container-custom { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container-custom { padding-left: 2rem; padding-right: 2rem; }
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bg-surface-gradient {
  background: var(--gradient-surface);
}

.card-premium {
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  background-color: hsl(var(--card));
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-premium:hover {
  border-color: hsl(var(--primary) / 0.4);
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-glow);
}

.marker-gold {
  background-image: linear-gradient(120deg, hsl(var(--primary) / 0.35) 0%, hsl(var(--primary) / 0.15) 100%);
  background-repeat: no-repeat;
  background-size: 100% 38%;
  background-position: 0 88%;
  padding: 0 2px;
}

/* ===== Backdrop blur for header ===== */
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

/* ===== Animations ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 hsl(var(--wa) / 0.5); }
  50% { box-shadow: 0 0 0 14px hsl(var(--wa) / 0); }
}
@keyframes accordion-down {
  from { height: 0; }
  to { height: var(--radix-accordion-content-height); }
}
@keyframes accordion-up {
  from { height: var(--radix-accordion-content-height); }
  to { height: 0; }
}

.animate-fade-up { animation: fade-up 0.6s ease-out both; }
.animate-fade-in { animation: fade-in 0.5s ease-out both; }
.animate-pulse-glow { animation: pulse-glow 2s ease-out infinite; }
.\[animation-delay\:120ms\] { animation-delay: 120ms; }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 40;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  background-color: transparent;
}
.site-header.is-scrolled {
  background-color: hsl(var(--background) / 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
}
.site-header .row {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-header .brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header .brand-mark {
  display: grid;
  place-items: center;
  height: 2.25rem;
  width: 2.25rem;
  border-radius: 0.75rem;
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
}
.site-header .brand-text {
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.025em;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
.nav-desktop a {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.nav-desktop a:hover { color: hsl(var(--brand-blue)); }
.nav-desktop a.active { color: hsl(var(--primary)); }

.header-cta-desktop { display: none; }

.menu-btn {
  display: grid;
  place-items: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.375rem;
  border: 1px solid hsl(var(--border));
  color: hsl(var(--foreground));
  transition: border-color 0.2s;
}
.menu-btn:hover { border-color: hsl(var(--primary) / 0.5); }

.nav-mobile {
  display: none;
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--background) / 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: fade-in 0.5s ease-out both;
}
.nav-mobile.is-open { display: block; }
.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .nav-mobile nav { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .nav-mobile nav { padding-left: 2rem; padding-right: 2rem; } }

.nav-mobile a {
  padding: 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  transition: background-color 0.2s, color 0.2s;
}
.nav-mobile a:hover { background-color: hsl(var(--secondary)); color: hsl(var(--foreground)); }
.nav-mobile a.active { background-color: hsl(var(--secondary)); color: hsl(var(--primary)); }
.nav-mobile .btn-wa { margin-top: 0.5rem; }

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .header-cta-desktop { display: block; }
  .menu-btn { display: none; }
  .nav-mobile { display: none !important; }
}

/* ===== Buttons (variants) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
  height: 2.5rem;
  padding: 0.5rem 1rem;
}
.btn svg { pointer-events: none; width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-sm { height: 2.25rem; padding-left: 0.75rem; padding-right: 0.75rem; border-radius: 0.375rem; }
.btn-lg { height: 2.75rem; padding-left: 2rem; padding-right: 2rem; border-radius: 0.375rem; }
.btn-xl { height: 3rem; padding-left: 2rem; padding-right: 2rem; border-radius: 0.75rem; font-size: 1rem; }
.btn-xl svg { width: 1.25rem; height: 1.25rem; }

.btn-wa {
  background-color: hsl(var(--wa));
  color: hsl(var(--wa-foreground));
  font-weight: 600;
  box-shadow: var(--shadow-wa);
}
.btn-wa:hover { background-color: hsl(var(--wa-2)); }

.btn-gold {
  background: var(--gradient-gold);
  color: hsl(var(--primary-foreground));
  box-shadow: var(--shadow-glow);
  font-weight: 600;
}
.btn-gold:hover { opacity: 0.95; }

.btn-outline-gold {
  border: 1px solid hsl(var(--gold-outline));
  background: transparent;
  color: hsl(var(--primary));
  font-weight: 500;
}
.btn-outline-gold:hover { background-color: hsl(var(--primary) / 0.1); }

/* ===== WhatsApp Floating Action Button ===== */
.wa-fab {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background-color: hsl(var(--wa));
  color: hsl(var(--wa-foreground));
  padding-left: 0.75rem;
  padding-right: 1rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  box-shadow: var(--shadow-wa);
  transition: background-color 0.3s;
  animation: pulse-glow 2s ease-out infinite;
}
.wa-fab:hover { background-color: hsl(var(--wa-2)); }
.wa-fab .wa-fab-icon {
  display: grid;
  place-items: center;
  height: 2rem;
  width: 2rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.15);
}
.wa-fab .wa-fab-label {
  display: none;
  font-size: 0.875rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .wa-fab .wa-fab-label { display: inline; }
}

/* ===== Footer ===== */
.site-footer {
  margin-top: 5rem;
  border-top: 1px solid hsl(var(--border));
  background-color: hsl(var(--bg-1));
}
.site-footer .grid-footer {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .site-footer .grid-footer { grid-template-columns: repeat(4, minmax(0,1fr)); }
}
.site-footer h3 {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
}
.site-footer ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.site-footer a:hover { color: hsl(var(--primary)); }
.site-footer .icon-row { display: flex; align-items: flex-start; gap: 0.5rem; }
.site-footer .icon-row svg { margin-top: 0.125rem; flex-shrink: 0; }
.site-footer .icon-row .icon-wa { color: hsl(var(--wa)); }
.site-footer .icon-row .icon-blue { color: hsl(var(--brand-blue)); }
.site-footer .legal-row {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(var(--border));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 768px) {
  .site-footer .legal-row { flex-direction: row; }
}

/* ===== Tables ===== */
table { width: 100%; border-collapse: collapse; }
table thead { background-color: hsl(var(--card)); color: hsl(var(--foreground)); }
table th { padding: 1rem; text-align: left; font-weight: 600; }
table td { padding: 1rem; }
.table-bordered { border: 1px solid hsl(var(--border)); border-radius: 1rem; overflow: hidden; }

/* ===== Accordion (FAQ) ===== */
.accordion-item {
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 0 1rem;
  margin: 0.5rem 0;
  transition: background-color 0.2s;
}
.accordion-item[data-state="open"] { background-color: hsl(var(--card) / 0.4); }
.accordion-trigger {
  display: flex;
  flex: 1 1 0%;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  width: 100%;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
}
.accordion-trigger:hover { color: hsl(var(--primary)); text-decoration: none; }
.accordion-trigger svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.accordion-item[data-state="open"] .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  overflow: hidden;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  max-height: 0;
  transition: max-height 0.25s ease-out;
}
.accordion-item[data-state="open"] .accordion-content { max-height: 1500px; }
.accordion-content > div { padding: 0 0 1rem 0; }

/* ===== Breadcrumbs ===== */
.breadcrumbs {
  padding-top: 6rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: 0.375rem; }
.breadcrumbs a { display: inline-flex; align-items: center; gap: 0.25rem; transition: color 0.2s; }
.breadcrumbs a:hover { color: hsl(var(--primary)); }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 0.375rem; }
.breadcrumbs .crumb-separator { color: hsl(var(--muted-2)); width: 0.875rem; height: 0.875rem; }
.breadcrumbs .crumb-current { color: hsl(var(--foreground) / 0.9); }

/* ===== Hero player mock ===== */
.hero-player-wrap {
  position: relative;
  border-radius: 1.5rem;
  border: 1px solid hsl(var(--border));
  background: var(--gradient-surface);
  padding: 0.75rem;
  box-shadow: var(--shadow-card);
}
.hero-player-inner {
  border-radius: 1rem;
  border: 1px solid hsl(var(--gold-outline) / 0.4);
  background: hsl(var(--bg-1));
  padding: 1.5rem;
}

.hero-player-screen {
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  background-image: linear-gradient(to bottom right, hsl(var(--bg-1)), hsl(var(--surface)));
  position: relative;
  overflow: hidden;
  border: 1px solid hsl(var(--border));
}

.hero-badge-wa {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  display: none;
  border-radius: 1rem;
  border: 1px solid hsl(var(--wa) / 0.4);
  background-color: hsl(var(--card));
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow-wa);
}
@media (min-width: 768px) { .hero-badge-wa { display: block; } }

/* ===== Responsive grid utilities ===== */
@media (min-width: 640px) {
  .sm\:inline { display: inline; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1; }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .md\:p-12 { padding: 3rem; }
  .md\:p-14 { padding: 3.5rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:items-center { align-items: center; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:items-center { align-items: center; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .lg\:grid-cols-6 { grid-template-columns: repeat(6, minmax(0,1fr)); }
  .lg\:grid-cols-\[1\.4fr_1fr\] { grid-template-columns: 1.4fr 1fr; }
  .lg\:grid-cols-\[1\.2fr_1fr\] { grid-template-columns: 1.2fr 1fr; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
}

/* fallback for the strong inside lead-text */
.crit-lead strong { color: hsl(var(--foreground)); }

/* utility for ring offset in custom CTAs */
.ring-offset-background { --tw-ring-offset-color: hsl(var(--background)); }
