/* =====================================================================
   Animes Digital - Static CSS (consolidated from React/Tailwind build)
   Design system 100% preserved: dark theme + accent yellow neon (#ffd700)
   All colors in HSL via CSS custom properties.
   ===================================================================== */

:root {
  --background: 0 0% 4%;
  --foreground: 0 0% 98%;
  --card: 0 0% 7%;
  --card-foreground: 0 0% 98%;
  --primary: 0 0% 0%;
  --primary-foreground: 51 100% 50%;
  --accent: 51 100% 50%;
  --accent-foreground: 0 0% 0%;
  --accent-glow: 48 100% 60%;
  --secondary: 0 0% 12%;
  --secondary-foreground: 0 0% 98%;
  --muted: 0 0% 12%;
  --muted-foreground: 0 0% 65%;
  --border: 0 0% 16%;
  --radius: 0.75rem;
  --gradient-hero: radial-gradient(ellipse at top, hsl(51 100% 50% / 0.18), transparent 60%), linear-gradient(180deg, hsl(0 0% 6%), hsl(0 0% 4%));
  --gradient-accent: linear-gradient(135deg, hsl(51 100% 50%), hsl(45 100% 55%));
  --gradient-card: linear-gradient(160deg, hsl(0 0% 9%), hsl(0 0% 5%));
  --shadow-glow: 0 0 40px hsl(51 100% 50% / 0.35);
  --shadow-card: 0 10px 40px -10px hsl(0 0% 0% / 0.6);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* =========================
   Reset & base
   ========================= */
*, *::before, *::after { box-sizing: border-box; }
* { border-color: hsl(var(--border)); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 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;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; padding: 0; }
ul, ol { margin: 0; padding: 0; }
h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.02em; margin: 0; }

/* =========================
   Layout
   ========================= */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-1 { flex: 1 1 0%; }
.flex-wrap { flex-wrap: wrap; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.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-10 { gap: 2.5rem; }
.shrink-0 { flex-shrink: 0; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-x-0 { left: 0; right: 0; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-24 { top: 6rem; }
.bottom-5 { bottom: 1.25rem; }
.right-3 { right: 0.75rem; }
.right-5 { right: 1.25rem; }
.left-1\/2 { left: 50%; }
.-top-2 { top: -0.5rem; }
.-top-3 { top: -0.75rem; }
.-translate-x-1\/2 { transform: translateX(-50%); }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-full { height: 100%; }
.w-full { width: 100%; }
.w-3 { width: 0.75rem; } .h-3 { height: 0.75rem; }
.w-3\.5 { width: 0.875rem; } .h-3\.5 { height: 0.875rem; }
.w-4 { width: 1rem; } .h-4 { height: 1rem; }
.w-5 { width: 1.25rem; } .h-5 { height: 1.25rem; }
.w-6 { width: 1.5rem; } .h-6 { height: 1.5rem; }
.w-7 { width: 1.75rem; } .h-7 { height: 1.75rem; }
.w-8 { width: 2rem; } .h-8 { height: 2rem; }
.w-9 { width: 2.25rem; } .h-9 { height: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; } .h-12 { height: 3rem; }
.w-14 { width: 3.5rem; } .h-14 { height: 3.5rem; }
.w-20 { width: 5rem; }
.h-\[250px\] { height: 250px; }
.min-w-0 { min-width: 0; }
.min-w-\[40px\] { min-width: 40px; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-xl { max-width: 36rem; }

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mt-auto { margin-top: auto; }
.mt-1 { margin-top: 0.25rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mr-1 { margin-right: 0.25rem; }
.ml-3 { margin-left: 0.75rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3 { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.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-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-28 { padding-top: 7rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }

/* =========================
   Typography
   ========================= */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-\[10px\] { font-size: 10px; line-height: 1.1; }
.text-\[11px\] { font-size: 11px; line-height: 1.2; }
.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; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-foreground { color: hsl(var(--foreground)); }
.text-foreground\/85 { color: hsl(var(--foreground) / 0.85); }
.text-foreground\/90 { color: hsl(var(--foreground) / 0.9); }
.text-muted-foreground { color: hsl(var(--muted-foreground)); }
.text-muted-foreground\/70 { color: hsl(var(--muted-foreground) / 0.7); }
.text-accent { color: hsl(var(--accent)); }
.text-accent-foreground { color: hsl(var(--accent-foreground)); }
.text-blue-300 { color: rgb(147 197 253); }
.text-emerald-300 { color: rgb(110 231 183); }
.leading-relaxed { line-height: 1.625; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-\[1\.7\] { line-height: 1.7; }
.leading-\[1\.65\] { line-height: 1.65; }
.line-clamp-2 {
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.max-w-\[40ch\] { max-width: 40ch; }
.list-disc { list-style: disc; }
.list-decimal { list-style: decimal; }
.list-inside { list-style-position: inside; }
.opacity-90 { opacity: 0.9; }
.opacity-40 { opacity: 0.4; }

/* Markers */
ul.marker-accent::marker, .marker\:text-accent > li::marker { color: hsl(var(--accent)); }
.marker\:font-bold > li::marker { font-weight: 700; }

/* =========================
   Backgrounds & borders
   ========================= */
.bg-background { background: hsl(var(--background)); }
.bg-background\/85 { background: hsl(var(--background) / 0.85); }
.bg-card { background: hsl(var(--card)); }
.bg-secondary { background: hsl(var(--secondary)); }
.bg-secondary\/40 { background: hsl(var(--secondary) / 0.4); }
.bg-secondary\/50 { background: hsl(var(--secondary) / 0.5); }
.bg-accent { background: hsl(var(--accent)); }
.bg-accent\/10 { background: hsl(var(--accent) / 0.1); }
.bg-accent\/30 { background: hsl(var(--accent) / 0.3); }
.bg-primary { background: hsl(var(--primary)); }
.bg-blue-400\/10 { background: rgb(96 165 250 / 0.1); }
.bg-emerald-400\/10 { background: rgb(52 211 153 / 0.1); }
.bg-hero { background: var(--gradient-hero); }
.bg-accent-gradient { background: var(--gradient-accent); }
.bg-card-gradient { background: var(--gradient-card); }
.shadow-glow { box-shadow: var(--shadow-glow); }

.border { border: 1px solid hsl(var(--border)); }
.border-t { border-top: 1px solid hsl(var(--border)); }
.border-b { border-bottom: 1px solid hsl(var(--border)); }
.border-y { border-top: 1px solid hsl(var(--border)); border-bottom: 1px solid hsl(var(--border)); }
.border-l-4 { border-left: 4px solid hsl(var(--border)); }
.border-border { border-color: hsl(var(--border)); }
.border-border\/60 { border-color: hsl(var(--border) / 0.6); }
.border-accent { border-color: hsl(var(--accent)); }
.border-accent\/30 { border-color: hsl(var(--accent) / 0.3); }
.border-accent\/40 { border-color: hsl(var(--accent) / 0.4); }
.border-accent\/60 { border-color: hsl(var(--accent) / 0.6); }
.border-blue-400 { border-color: rgb(96 165 250); }
.border-emerald-400 { border-color: rgb(52 211 153); }
.divide-y > * + * { border-top: 1px solid hsl(var(--border)); }

.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; }

/* =========================
   Effects
   ========================= */
.text-glow { text-shadow: 0 0 30px hsl(51 100% 50% / 0.5); }
.transition-smooth { transition: var(--transition-smooth); }
.backdrop-blur-xl { backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); }

/* Hover utilities */
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:bg-accent:hover { background: hsl(var(--accent)); }
.hover\:bg-accent\/10:hover { background: hsl(var(--accent) / 0.1); }
.hover\:bg-secondary:hover { background: hsl(var(--secondary)); }
.hover\:bg-secondary\/40:hover { background: hsl(var(--secondary) / 0.4); }
.hover\:bg-background:hover { background: hsl(var(--background)); }
.hover\:text-accent:hover { color: hsl(var(--accent)); }
.hover\:text-foreground:hover { color: hsl(var(--foreground)); }
.hover\:text-accent-foreground:hover { color: hsl(var(--accent-foreground)); }
.hover\:border-accent:hover { border-color: hsl(var(--accent)); }
.hover\:border-accent\/40:hover { border-color: hsl(var(--accent) / 0.4); }
.hover\:border-accent\/60:hover { border-color: hsl(var(--accent) / 0.6); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:shadow-glow:hover { box-shadow: var(--shadow-glow); }
.transition-transform { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.duration-500 { transition-duration: 500ms; }

/* Aspect ratio fallback */
.aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
.object-cover { object-fit: cover; }

/* Display helpers */
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.block { display: block; }
.hidden { display: none; }
.grid-place-items-center, .grid.place-items-center { place-items: center; }
.place-items-center { place-items: center; }

/* Lists */
.list-none { list-style: none; }

/* Disabled */
button:disabled { opacity: 0.4; cursor: not-allowed; }

/* =========================
   Animations
   ========================= */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px hsl(51 100% 50% / 0.4); }
  50% { box-shadow: 0 0 40px hsl(51 100% 50% / 0.7); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-fade-in { animation: fade-in 0.6s ease-out backwards; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-float { animation: float 3s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* =========================
   Site-specific components
   ========================= */

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsl(var(--background) / 0.85);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid hsl(var(--border));
}
.site-header .row {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem; padding: 0 1rem;
  max-width: 1400px; margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 0.5rem; }
.brand-icon {
  width: 2.25rem; height: 2.25rem; border-radius: var(--radius);
  background: var(--gradient-accent);
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  color: hsl(var(--accent-foreground));
}
.brand-text { font-weight: 800; font-size: 1.125rem; letter-spacing: -0.025em; }
.brand-text .accent { color: hsl(var(--accent)); }

.nav-desktop { display: none; align-items: center; gap: 0.25rem; }
.nav-desktop a {
  padding: 0.5rem 0.75rem; font-size: 0.875rem;
  border-radius: calc(var(--radius) - 2px);
  color: hsl(var(--muted-foreground));
  transition: var(--transition-smooth);
}
.nav-desktop a:hover { color: hsl(var(--foreground)); }
.nav-desktop a.active { color: hsl(var(--accent)); }

.btn-primary, .btn-cta {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gradient-accent); color: hsl(var(--accent-foreground));
  font-weight: 600; padding: 0.5rem 1rem;
  border-radius: calc(var(--radius) - 2px); font-size: 0.875rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover, .btn-cta:hover { opacity: 0.9; }
.btn-cta-lg {
  padding: 1rem 2rem; font-size: 1rem; font-weight: 700;
  border-radius: calc(var(--radius) - 2px);
}

.menu-toggle {
  padding: 0.5rem; border-radius: calc(var(--radius) - 2px);
}
.menu-toggle:hover { background: hsl(var(--secondary)); }

.nav-mobile {
  display: none;
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--background));
  animation: fade-in 0.3s ease-out;
}
.nav-mobile.open { display: block; }
.nav-mobile nav { padding: 0.75rem 1rem; display: flex; flex-direction: column; }
.nav-mobile nav a {
  padding: 0.75rem 0;
  border-bottom: 1px solid hsl(var(--border) / 0.6);
  font-size: 0.875rem;
  color: hsl(var(--foreground));
}
.nav-mobile nav a.active { color: hsl(var(--accent)); font-weight: 600; }
.nav-mobile .nav-cta {
  margin-top: 0.75rem; text-align: center;
  background: var(--gradient-accent); color: hsl(var(--accent-foreground));
  font-weight: 600; padding: 0.75rem 1rem; border-radius: calc(var(--radius) - 2px);
}

main { padding-top: 4rem; flex: 1 1 0; }

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 40;
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: var(--gradient-accent); color: hsl(var(--accent-foreground));
  display: grid; place-items: center;
  box-shadow: var(--shadow-glow);
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Footer */
footer {
  border-top: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  margin-top: 5rem;
}
footer .grid-4 {
  display: grid; gap: 2.5rem; padding: 3rem 1rem;
  max-width: 1400px; margin: 0 auto;
}
footer h4 { font-size: 0.875rem; font-weight: 600; color: hsl(var(--accent)); margin-bottom: 0.75rem; }
footer ul { list-style: none; }
footer li { margin-bottom: 0.5rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
footer li a:hover { color: hsl(var(--accent)); }
footer .copy {
  border-top: 1px solid hsl(var(--border));
  padding: 1.25rem 1rem; text-align: center;
  font-size: 0.75rem; color: hsl(var(--muted-foreground));
}
footer .social {
  display: flex; gap: 0.75rem; margin-top: 1rem;
}
footer .social a {
  width: 2.25rem; height: 2.25rem; border-radius: 9999px;
  background: hsl(var(--secondary));
  display: grid; place-items: center;
  transition: var(--transition-smooth);
}
footer .social a:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }

/* FAQ accordion */
.faq-section { padding: 4rem 1rem; max-width: 48rem; margin: 0 auto; }
.faq-section h2 {
  font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 2rem;
}
.faq-item {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.faq-trigger {
  width: 100%; text-align: left;
  padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  transition: background 0.3s;
}
.faq-trigger:hover { background: hsl(var(--secondary) / 0.4); }
.faq-trigger h3 { font-size: 1rem; font-weight: 600; }
.faq-trigger .chevron {
  width: 1.25rem; height: 1.25rem; color: hsl(var(--accent));
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-content > div {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
}

/* Plan card */
.plan-card {
  position: relative;
  border-radius: 1rem;
  border: 1px solid hsl(var(--border));
  padding: 1.5rem;
  display: flex; flex-direction: column;
  background: var(--gradient-card);
  transition: var(--transition-smooth);
}
.plan-card:hover { transform: translateY(-0.25rem); border-color: hsl(var(--accent) / 0.4); }
.plan-card.highlight { border-color: hsl(var(--accent)); box-shadow: var(--shadow-glow); }
.plan-card .badge {
  position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%);
  background: var(--gradient-accent); color: hsl(var(--accent-foreground));
  font-size: 0.75rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  display: inline-flex; align-items: center; gap: 0.25rem;
  white-space: nowrap;
}
.plan-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.plan-card .period { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }
.plan-card .price {
  font-size: 2.25rem; font-weight: 800; color: hsl(var(--accent));
  display: block; line-height: 1;
}
.plan-card .price-month {
  display: block; font-size: 0.75rem; color: hsl(var(--muted-foreground));
  margin-top: 0.25rem;
}
.plan-card .features {
  list-style: none; margin: 1.5rem 0 2rem; padding: 0;
  flex: 1 1 0;
}
.plan-card .features li {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; margin-bottom: 0.5rem;
}
.plan-card .features svg { color: hsl(var(--accent)); flex-shrink: 0; margin-top: 0.125rem; }
.plan-card .cta {
  display: block; text-align: center;
  font-weight: 600; padding: 0.75rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  background: hsl(var(--secondary)); color: hsl(var(--foreground));
  transition: var(--transition-smooth);
}
.plan-card.highlight .cta {
  background: var(--gradient-accent); color: hsl(var(--accent-foreground));
}
.plan-card .cta:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); opacity: 0.95; }

/* Page header (hero of internal pages) */
.page-header {
  background: var(--gradient-hero);
  border-bottom: 1px solid hsl(var(--border));
}
.page-header .inner {
  padding: 4rem 1rem;
  max-width: 56rem; margin: 0 auto; text-align: center;
}
.page-header .badge-pill {
  display: inline-block;
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.3);
  color: hsl(var(--accent));
  font-size: 0.75rem; font-weight: 500;
  margin-bottom: 1rem;
}
.page-header h1 {
  font-size: 1.875rem; font-weight: 800; margin-bottom: 1.25rem;
  text-shadow: 0 0 30px hsl(51 100% 50% / 0.5);
  animation: fade-in 0.6s ease-out backwards;
}
.page-header .answer {
  font-size: 1rem; color: hsl(var(--muted-foreground)); line-height: 1.625;
  animation: fade-in 0.6s ease-out 0.1s backwards;
}
.page-header .cta-wrap { margin-top: 2rem; }
.page-header .last-updated {
  font-size: 0.75rem; color: hsl(var(--muted-foreground) / 0.7); margin-top: 2rem;
}

/* Conversion block */
.conv-block {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}
.conv-stars { display: inline-flex; gap: 0.125rem; }
.conv-stars svg { width: 1rem; height: 1rem; color: hsl(var(--accent)); fill: hsl(var(--accent)); }
.conv-card {
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem; padding: 1.25rem;
  transition: var(--transition-smooth);
  display: flex; flex-direction: column;
}
.conv-card:hover { border-color: hsl(var(--accent) / 0.4); }
.conv-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.5rem; }
.conv-list li {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-size: 0.875rem; color: hsl(var(--muted-foreground)); list-style: none;
}

/* Tables */
table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
th { text-align: left; padding: 1rem; font-weight: 600; }
td { padding: 1rem; }

/* Blog content typography */
.blog-content p {
  font-size: 17px; line-height: 1.7;
  color: hsl(var(--foreground) / 0.9);
  margin-bottom: 1.25rem;
}
.blog-content h2 {
  font-size: 1.5rem; font-weight: 700;
  margin: 3rem 0 1rem; scroll-margin-top: 6rem;
}
.blog-content h3 {
  font-size: 1.25rem; font-weight: 700; color: hsl(var(--accent));
  margin: 2rem 0 0.75rem;
}
.blog-content ul, .blog-content ol {
  padding-left: 1.5rem; margin-bottom: 1.5rem;
  font-size: 17px; line-height: 1.7; color: hsl(var(--foreground) / 0.9);
}
.blog-content ul { list-style: disc; }
.blog-content ol { list-style: decimal; }
.blog-content li::marker { color: hsl(var(--accent)); }
.blog-content ol li::marker { font-weight: 700; }
.blog-content li { margin-bottom: 0.5rem; }
.blog-content em { font-style: italic; }
.blog-content strong { font-weight: 700; color: hsl(var(--foreground)); }
.blog-content .callout {
  margin: 1.5rem 0;
  border-radius: 0.75rem; padding: 1.25rem;
  font-size: 16px; line-height: 1.65;
  color: hsl(var(--foreground) / 0.9);
  border-left: 4px solid hsl(var(--accent));
  background: hsl(var(--accent) / 0.1);
}
.blog-content .callout strong { display: block; margin-bottom: 0.25rem; }
.blog-content .callout-tip { border-left-color: rgb(96 165 250); background: rgb(96 165 250 / 0.1); }
.blog-content .callout-tip strong { color: rgb(147 197 253); }
.blog-content .callout-warn { border-left-color: hsl(var(--accent)); background: hsl(var(--accent) / 0.1); }
.blog-content .callout-warn strong { color: hsl(var(--accent)); }
.blog-content .callout-summary { border-left-color: rgb(52 211 153); background: rgb(52 211 153 / 0.1); }
.blog-content .callout-summary strong { color: rgb(110 231 183); }
.blog-content .table-wrap {
  margin: 2rem 0; overflow-x: auto;
  border-radius: 0.75rem; border: 1px solid hsl(var(--border));
}
.blog-content table { width: 100%; font-size: 14px; }
.blog-content th {
  background: hsl(var(--card)); text-align: left;
  padding: 0.75rem 1rem; font-weight: 700;
  border-bottom: 1px solid hsl(var(--border));
}
.blog-content td {
  padding: 0.75rem 1rem; border-bottom: 1px solid hsl(var(--border) / 0.6);
  color: hsl(var(--foreground) / 0.85);
}
.blog-content td.accent { color: hsl(var(--accent)); font-weight: 600; }

/* Blog post details summary */
.blog-faq details {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
}
.blog-faq details[open] { border-color: hsl(var(--accent) / 0.4); }
.blog-faq summary {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-weight: 600; list-style: none;
}
.blog-faq summary::-webkit-details-marker { display: none; }
.blog-faq summary svg { transition: transform 0.3s; color: hsl(var(--accent)); }
.blog-faq details[open] summary svg { transform: rotate(90deg); }
.blog-faq details p { margin-top: 0.75rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.625; }

/* Blog page sidebar */
.blog-sidebar > div + div { margin-top: 1.5rem; }
.blog-sidebar .uppercase-label {
  font-size: 0.875rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.025em;
  color: hsl(var(--accent)); margin-bottom: 0.75rem;
}

/* Tabs (blog listing filters) */
.cat-tab {
  padding: 0.5rem 1rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600;
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  color: hsl(var(--muted-foreground));
  transition: var(--transition-smooth);
  text-decoration: none; display: inline-flex;
}
.cat-tab:hover { border-color: hsl(var(--accent)); color: hsl(var(--accent)); }
.cat-tab.active {
  background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent)); box-shadow: var(--shadow-glow);
}

/* Blog card */
.blog-card {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem; overflow: hidden;
  display: flex; flex-direction: column;
  transition: var(--transition-smooth);
}
.blog-card:hover {
  border-color: hsl(var(--accent) / 0.6);
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-glow);
}
.blog-card .cover { aspect-ratio: 16 / 9; overflow: hidden; background: hsl(var(--secondary)); }
.blog-card .cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .cover img { transform: scale(1.05); }
.blog-card .body { padding: 1.25rem; flex: 1 1 0; display: flex; flex-direction: column; }
.blog-card .cat-pill {
  display: inline-block; align-self: flex-start;
  padding: 0.25rem 0.625rem; border-radius: 9999px;
  background: hsl(var(--accent) / 0.1);
  border: 1px solid hsl(var(--accent) / 0.3);
  color: hsl(var(--accent));
  font-size: 11px; font-weight: 600; margin-bottom: 0.75rem;
}
.blog-card h3 {
  font-size: 1.125rem; line-height: 1.375;
  margin-bottom: 0.5rem;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card p {
  font-size: 0.875rem; color: hsl(var(--muted-foreground));
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}
.blog-card .meta {
  margin-top: auto; display: flex; align-items: center; gap: 1rem;
  font-size: 0.75rem; color: hsl(var(--muted-foreground));
}
.blog-card .meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.blog-card:hover h3 { color: hsl(var(--accent)); }

/* Compact blog card (sidebar) */
.blog-card-compact {
  display: flex; gap: 0.75rem; padding: 0.5rem;
  border-radius: var(--radius);
  transition: var(--transition-smooth);
}
.blog-card-compact:hover { background: hsl(var(--secondary)); }
.blog-card-compact img { width: 5rem; height: 4rem; object-fit: cover; border-radius: calc(var(--radius) - 2px); flex-shrink: 0; }
.blog-card-compact .cat { font-size: 0.75rem; color: hsl(var(--accent)); margin-bottom: 0.25rem; }
.blog-card-compact .ttl {
  font-size: 0.875rem; font-weight: 600; line-height: 1.375;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-compact:hover .ttl { color: hsl(var(--accent)); }

/* Pagination */
.pager {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 3rem; flex-wrap: wrap;
}
.pager a, .pager span {
  display: inline-flex; align-items: center; gap: 0.25rem;
  min-width: 40px; height: 40px; padding: 0 0.75rem;
  border-radius: var(--radius);
  border: 1px solid hsl(var(--border));
  background: hsl(var(--card));
  font-size: 0.875rem; font-weight: 600;
  color: hsl(var(--muted-foreground));
  text-decoration: none;
  transition: var(--transition-smooth);
}
.pager a:hover { border-color: hsl(var(--accent)); color: hsl(var(--accent)); }
.pager .current {
  background: hsl(var(--accent)); color: hsl(var(--accent-foreground));
  border-color: hsl(var(--accent)); box-shadow: var(--shadow-glow);
}
.pager .disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }

/* Hero capa do blog post */
.post-cover {
  position: relative; width: 100%;
  height: 250px; overflow: hidden;
  background: hsl(var(--secondary));
}
.post-cover img { width: 100%; height: 100%; object-fit: cover; }
.post-cover .gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.6) 50%, transparent);
}
.breadcrumb-nav {
  font-size: 0.75rem; color: hsl(var(--muted-foreground));
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.25rem;
  margin-bottom: 1.25rem;
}
.breadcrumb-nav a:hover { color: hsl(var(--accent)); }
.breadcrumb-nav .current { color: hsl(var(--accent)); }

/* TOC */
.toc-card {
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: 0.75rem;
  padding: 1.25rem; margin-bottom: 2.5rem;
}
.toc-card .label { font-weight: 700; font-size: 0.875rem; margin-bottom: 0.75rem; }
.toc-card ol { padding-left: 1.25rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.toc-card ol li { margin-bottom: 0.375rem; }
.toc-card a:hover { color: hsl(var(--accent)); }

/* Post layout */
.post-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 2.5rem;
}
.post-main { min-width: 0; max-width: 720px; margin: 0 auto; width: 100%; }
.post-meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0.5rem 1.25rem; font-size: 0.75rem; color: hsl(var(--muted-foreground));
  margin-bottom: 1rem;
}
.post-meta span { display: inline-flex; align-items: center; gap: 0.25rem; }
.last-updated-banner {
  display: inline-block;
  background: hsl(var(--accent) / 0.1); color: hsl(var(--accent));
  border: 1px solid hsl(var(--accent) / 0.3);
  font-size: 0.875rem; font-weight: 600;
  border-radius: calc(var(--radius) - 2px);
  padding: 0.5rem 1rem; margin-bottom: 2rem;
}

/* Share buttons */
.share-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.share-buttons a {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: calc(var(--radius) - 2px);
  background: hsl(var(--card)); border: 1px solid hsl(var(--border));
  font-size: 0.875rem; transition: var(--transition-smooth);
}
.share-buttons a:hover { border-color: hsl(var(--accent)); color: hsl(var(--accent)); }

/* Author */
.author-box {
  margin-top: 3rem;
  background: var(--gradient-card);
  border: 1px solid hsl(var(--border));
  border-radius: 1rem; padding: 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
}
.author-box .avatar {
  width: 3.5rem; height: 3.5rem; border-radius: 9999px;
  background: var(--gradient-accent);
  display: grid; place-items: center;
  color: hsl(var(--accent-foreground)); font-weight: 800; font-size: 1.125rem;
  flex-shrink: 0;
}

/* Cover gradient overlays */
.bg-gradient-to-t {
  background: linear-gradient(to top, hsl(var(--background)), hsl(var(--background) / 0.6) 50%, transparent);
}

/* Utility text */
.list-disc-yellow li::marker { color: hsl(var(--accent)); }

/* =========================
   Responsive
   ========================= */
@media (min-width: 640px) {
  .sm\:inline { display: inline; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex-row { flex-direction: row; }
}
@media (min-width: 768px) {
  .md\:hidden { display: none; }
  .md\:block { display: block; }
  .md\:inline { display: inline; }
  .md\:flex { display: flex; }
  .md\:inline-flex { display: inline-flex; }
  .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\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-14 { padding: 3.5rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .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\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-8xl { font-size: 6rem; line-height: 1; }
  .md\:text-\[18px\] { font-size: 18px; line-height: 1.7; }
  .md\:p-3 { padding: 0.75rem; }
  .md\:p-4 { padding: 1rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .post-cover { height: 400px; }
}
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:inline-block { display: inline-block; }
  .lg\:mx-0 { margin-left: 0; margin-right: 0; }
  .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-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
  .post-grid { grid-template-columns: minmax(0, 1fr) 300px; }
  .post-main { max-width: 720px; margin: 0; }
}

/* Hide menu toggle on lg */
@media (min-width: 1024px) {
  .nav-mobile { display: none !important; }
}
