/* =========================================================
   Ótica Timon — Tema WordPress
   Design system portado do projeto original (oklch)
   Marca: #0B3DA6 (azul institucional) · #00AEEF (ciano)
   Fontes: Montserrat (títulos) · Poppins (texto)
   ========================================================= */

:root {
  --radius: 0.875rem;
  --background: oklch(1 0 0);
  --foreground: oklch(0.16 0 0);
  --ink: oklch(0.16 0 0);
  --surface: oklch(0.98 0.004 247.858);
  --brand-cyan: oklch(0.735 0.143 227);
  --card: oklch(1 0 0);
  --card-foreground: oklch(0.16 0 0);
  --primary: oklch(0.398 0.166 266.5);
  --primary-foreground: oklch(1 0 0);
  --secondary: oklch(0.96 0.012 247.9);
  --secondary-foreground: oklch(0.398 0.166 266.5);
  --muted: oklch(0.96 0.008 247.9);
  --muted-foreground: oklch(0.52 0.02 257.4);
  --accent: oklch(0.735 0.143 227);
  --accent-foreground: oklch(0.18 0.02 250);
  --border: oklch(0.91 0.008 255.5);

  --gradient-brand: linear-gradient(135deg, oklch(0.31 0.13 266.5), oklch(0.45 0.18 266.5) 55%, oklch(0.62 0.15 235));
  --gradient-cyan: linear-gradient(135deg, oklch(0.735 0.143 227), oklch(0.5 0.18 250));
  --shadow-soft: 0 12px 34px -18px oklch(0.398 0.166 266.5 / 0.45);
  --shadow-neon: 0 0 0 1px oklch(0.735 0.143 227 / 0.45), 0 18px 44px -18px oklch(0.735 0.143 227 / 0.7), 0 0 34px -6px oklch(0.735 0.143 227 / 0.55);
  --shadow-neon-blue: 0 0 0 1px oklch(0.398 0.166 266.5 / 0.4), 0 18px 44px -18px oklch(0.398 0.166 266.5 / 0.65), 0 0 30px -8px oklch(0.398 0.166 266.5 / 0.5);

  --font-display: "Montserrat", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-sans: "Poppins", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6rem; }
body {
  margin: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin: 0; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 6px; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: 80rem; margin-inline: auto; padding-inline: 1.25rem; }
.section-pad { padding-block: 5rem; }
.section-head { max-width: 42rem; margin-inline: auto; text-align: center; }
.eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: var(--accent); }
.section-head h2 { margin-top: 0.75rem; font-size: clamp(1.75rem, 4vw, 2.25rem); }
.section-head p { margin-top: 1rem; color: var(--muted-foreground); }

/* ---------- Backgrounds / gradients ---------- */
.bg-surface { background-color: var(--surface); }
.bg-brand-gradient { background-image: var(--gradient-brand); }
.bg-cyan-gradient { background-image: var(--gradient-cyan); }
.text-gradient-brand {
  background-image: var(--gradient-cyan);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.shadow-soft { box-shadow: var(--shadow-soft); }

/* ---------- Neon hover effects ---------- */
.neon-hover { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.neon-hover:hover { transform: translateY(-6px); box-shadow: var(--shadow-neon); }
.neon-hover-blue { transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease; }
.neon-hover-blue:hover { transform: translateY(-4px); box-shadow: var(--shadow-neon-blue); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  border-radius: 9999px; padding: .875rem 1.75rem; font-size: .875rem; font-weight: 600;
  border: 0; line-height: 1; transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background-color .3s ease;
}
.btn svg { width: 1rem; height: 1rem; flex: 0 0 auto; }
.btn-brand { background-image: var(--gradient-brand); color: var(--primary-foreground); }
.btn-cyan { background-image: var(--gradient-cyan); color: var(--primary-foreground); }
.btn-brand:hover, .btn-cyan:hover { transform: translateY(-4px); box-shadow: var(--shadow-neon); }
.btn-outline-light { border: 1px solid oklch(1 0 0 / .35); color: var(--primary-foreground); background: transparent; }
.btn-outline-light:hover { background: oklch(1 0 0 / .1); }
.btn-block { width: 100%; }

/* ---------- Header / Navbar ---------- */
.ot-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 50;
  background-color: color-mix(in oklab, var(--background) 72%, transparent);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid color-mix(in oklab, var(--primary) 12%, transparent);
  transition: box-shadow .3s ease;
}
.ot-header.is-scrolled { box-shadow: var(--shadow-soft); }
.ot-nav { display: flex; height: 5rem; align-items: center; justify-content: space-between; gap: 1rem; }
.ot-logo { display: inline-flex; align-items: center; gap: .75rem; }
.ot-logo img { height: 2.75rem; width: auto; border-radius: 10px; }
.ot-logo .site-name { font-family: var(--font-display); font-weight: 800; color: var(--primary); font-size: 1.05rem; }
.ot-menu { display: none; align-items: center; gap: 2rem; }
.ot-menu a { position: relative; font-size: .875rem; font-weight: 500; color: color-mix(in oklab, var(--foreground) 80%, transparent); transition: color .25s ease; }
.ot-menu a::after { content: ""; position: absolute; left: 0; bottom: -.375rem; height: 2px; width: 0; background-image: var(--gradient-cyan); transition: width .3s ease; border-radius: 2px; }
.ot-menu a:hover, .ot-menu a:focus-visible, .ot-menu .current-menu-item > a { color: var(--primary); }
.ot-menu a:hover::after, .ot-menu .current-menu-item > a::after { width: 100%; }
.ot-nav-actions { display: flex; align-items: center; gap: .5rem; }
.ot-header .btn { padding: .625rem 1.25rem; }
.nav-whatsapp { display: none; }
.ot-burger {
  display: inline-flex; width: 2.75rem; height: 2.75rem; align-items: center; justify-content: center;
  border-radius: 9999px; border: 1px solid var(--border); background: transparent; color: var(--foreground);
}
.ot-burger svg { width: 1.25rem; height: 1.25rem; }
.ot-mobile { display: none; border-top: 1px solid var(--border); background: color-mix(in oklab, var(--background) 95%, transparent); padding: 1rem 1.25rem; }
.ot-mobile.is-open { display: block; }
.ot-mobile a { display: block; border-radius: .625rem; padding: .75rem; font-size: 1rem; font-weight: 500; color: color-mix(in oklab, var(--foreground) 85%, transparent); }
.ot-mobile a:hover { background: var(--secondary); color: var(--primary); }
.ot-mobile .btn { margin-top: .75rem; width: 100%; }

@media (min-width: 1024px) {
  .ot-menu { display: flex; }
  .nav-whatsapp { display: inline-flex; }
  .ot-burger { display: none; }
}
@media (min-width: 640px) { .nav-whatsapp { display: inline-flex; } }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background-image: var(--gradient-brand); padding-top: 7rem; padding-bottom: 5rem; }
.hero__glow { position: absolute; border-radius: 9999px; filter: blur(60px); pointer-events: none; }
.hero__glow--a { left: -6rem; top: 2.5rem; width: 20rem; height: 20rem; background: oklch(0.735 0.143 227 / .25); }
.hero__glow--b { right: -5rem; bottom: 0; width: 24rem; height: 24rem; background: oklch(0.735 0.143 227 / .2); }
.hero__grid { position: relative; display: grid; gap: 3rem; align-items: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; border-radius: 9999px;
  border: 1px solid oklch(1 0 0 / .25); padding: .375rem 1rem;
  font-size: .75rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em;
  color: oklch(1 0 0 / .85);
}
.hero h1 { margin-top: 1.5rem; font-size: clamp(2.25rem, 6vw, 3.75rem); color: var(--primary-foreground); line-height: 1.05; }
.hero h1 .accent-line { display: block; margin-top: .5rem; }
.hero__lead { margin-top: 1.5rem; max-width: 36rem; color: oklch(1 0 0 / .8); font-size: 1.05rem; }
.hero__cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.hero__badges { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: .75rem 1.5rem; }
.hero__badges li { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: oklch(1 0 0 / .85); }
.hero__badges svg { width: 1rem; height: 1rem; color: var(--brand-cyan); }
.hero__media { position: relative; margin-inline: auto; width: 100%; max-width: 28rem; }
.hero__media-glow { position: absolute; inset: 0; transform: rotate(-3deg); border-radius: 3rem; background: oklch(0.735 0.143 227 / .25); filter: blur(40px); }
.hero__media img { position: relative; width: 100%; border-radius: 3rem; object-fit: cover; box-shadow: var(--shadow-soft); }
.hero__chip { position: absolute; bottom: -1.5rem; left: 1rem; border-radius: 1rem; background: color-mix(in oklab, var(--background) 95%, transparent); padding: 1rem 1.25rem; box-shadow: var(--shadow-soft); backdrop-filter: blur(6px); }
.hero__chip strong { display: block; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.hero__chip span { font-size: .75rem; color: var(--muted-foreground); }
@media (min-width: 1024px) { .hero { padding-top: 9rem; } .hero__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Cards grids ---------- */
.grid-3 { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Services ---------- */
.service-card { border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); padding: 1.75rem; }
.service-card__icon { display: inline-flex; width: 3.5rem; height: 3.5rem; align-items: center; justify-content: center; border-radius: 1rem; background-image: var(--gradient-brand); color: var(--primary-foreground); }
.service-card__icon svg { width: 1.5rem; height: 1.5rem; }
.service-card h3 { margin-top: 1.5rem; font-size: 1.125rem; }
.service-card p { margin-top: .75rem; font-size: .875rem; line-height: 1.65; color: var(--muted-foreground); }

/* ---------- Products ---------- */
.product-card { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); }
.product-card__media { position: relative; background: color-mix(in oklab, var(--secondary) 60%, transparent); overflow: hidden; }
.product-card__tag { position: absolute; left: 1rem; top: 1rem; z-index: 2; border-radius: 9999px; background-image: var(--gradient-brand); padding: .25rem .75rem; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; color: var(--primary-foreground); }
.product-card__media img { height: 14rem; width: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__media img { transform: scale(1.06); }
.product-card__body { padding: 1.5rem; }
.product-card__body h3 { font-size: 1rem; line-height: 1.35; font-weight: 700; }
.product-card__price { margin-top: .75rem; font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.product-card .btn { margin-top: 1.25rem; }
.products-more { margin-top: 2.5rem; text-align: center; }

/* ---------- Promotions ---------- */
.promotions { position: relative; overflow: hidden; background-image: var(--gradient-brand); }
.promotions .eyebrow { color: var(--brand-cyan); }
.promotions .section-head h2 { color: var(--primary-foreground); }
.promo-card { border-radius: 1.5rem; border: 1px solid oklch(1 0 0 / .15); background: oklch(1 0 0 / .1); padding: 2rem; backdrop-filter: blur(6px); }
.promo-card svg { width: 1.5rem; height: 1.5rem; color: var(--brand-cyan); }
.promo-card__title { margin-top: 1.25rem; font-family: var(--font-display); font-size: 1.875rem; font-weight: 800; color: var(--primary-foreground); }
.promo-card__subtitle { margin-top: .25rem; font-size: .875rem; font-weight: 600; color: var(--brand-cyan); }
.promo-card__detail { margin-top: 1rem; font-size: .875rem; color: oklch(1 0 0 / .8); }
.promotions .grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .promotions .grid-3 { grid-template-columns: repeat(3,1fr); } }
.promotions__cta { margin-top: 3rem; text-align: center; }

/* ---------- Brands ---------- */
.brands { border-block: 1px solid var(--border); background: var(--background); padding-block: 3.5rem; }
.brands p.eyebrow { text-align: center; color: var(--muted-foreground); }
.brands__grid { margin-top: 2rem; display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
@media (min-width:640px){ .brands__grid{ grid-template-columns:repeat(3,1fr);} }
@media (min-width:1024px){ .brands__grid{ grid-template-columns:repeat(6,1fr);} }
.brand-item { display: flex; height: 5rem; align-items: center; justify-content: center; border-radius: 1rem; border: 1px solid var(--border); background: var(--card); padding: 1rem; font-family: var(--font-display); font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: color-mix(in oklab, var(--primary) 80%, transparent); text-align: center; }
.brand-item img { max-height: 2.75rem; width: auto; object-fit: contain; }

/* ---------- Blog ---------- */
.blog-card { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); display: flex; flex-direction: column; }
.blog-card__media { height: 12rem; overflow: hidden; }
.blog-card__media img { height: 100%; width: 100%; object-fit: cover; transition: transform .5s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.05); }
.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--accent); }
.blog-card__body h3 { margin-top: .75rem; font-size: 1.125rem; line-height: 1.35; }
.blog-card__body p { margin-top: .75rem; font-size: .875rem; line-height: 1.6; color: var(--muted-foreground); }
.blog-card__link { margin-top: 1.25rem; display: inline-flex; align-items: center; gap: .5rem; font-size: .875rem; font-weight: 600; color: var(--primary); }
.blog-card__link svg { width: 1rem; height: 1rem; transition: transform .3s ease; }
.blog-card:hover .blog-card__link svg { transform: translateX(4px); }
.blog__more { margin-top: 2.5rem; text-align: center; }

/* ---------- Testimonials ---------- */
.testimonial-card { border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); padding: 2rem; }
.testimonial-card > svg { width: 1.75rem; height: 1.75rem; color: var(--accent); }
.testimonial-card blockquote { margin: 1.25rem 0 0; font-size: .875rem; line-height: 1.65; color: var(--muted-foreground); }
.testimonial-card figcaption { margin-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.testimonial-card figcaption .name { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--foreground); }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.stars svg { width: 1rem; height: 1rem; fill: currentColor; }

/* ---------- FAQ (accordion) ---------- */
.faq { background: var(--background); }
.faq__list { margin-top: 3rem; max-width: 48rem; margin-inline: auto; display: flex; flex-direction: column; gap: .875rem; }
.faq-item { border: 1px solid var(--border); border-radius: 1.25rem; background: var(--card); overflow: hidden; transition: box-shadow .3s ease, border-color .3s ease; }
.faq-item:hover { border-color: color-mix(in oklab, var(--accent) 40%, var(--border)); }
.faq-item.is-open { box-shadow: var(--shadow-neon-blue); }
.faq-item__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 1.5rem; background: transparent; border: 0; text-align: left; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--foreground); }
.faq-item__q svg { width: 1.25rem; height: 1.25rem; flex: 0 0 auto; color: var(--accent); transition: transform .3s ease; }
.faq-item.is-open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease; }
.faq-item.is-open .faq-item__a { grid-template-rows: 1fr; }
.faq-item__a-inner { overflow: hidden; }
.faq-item__a p { padding: 0 1.5rem 1.35rem; font-size: .925rem; line-height: 1.65; color: var(--muted-foreground); }

/* ---------- Contact ---------- */
.contact__grid { margin-top: 3.5rem; display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact__grid { grid-template-columns: 1fr 1fr; } }
.contact__stores { display: flex; flex-direction: column; gap: 1.5rem; }
.store-card { border-radius: 1.5rem; border: 1px solid var(--border); background: var(--card); padding: 1.75rem; }
.store-card h3 { font-size: 1.125rem; }
.store-card p { margin-top: 1rem; display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: var(--muted-foreground); }
.store-card p:first-of-type { margin-top: 1rem; }
.store-card svg { margin-top: 2px; width: 1rem; height: 1rem; flex: 0 0 auto; color: var(--accent); }
.contact__phone { border-radius: 1.5rem; background-image: var(--gradient-brand); padding: 1.75rem; }
.contact__phone .row { display: flex; align-items: center; gap: .75rem; color: var(--primary-foreground); }
.contact__phone .row svg { width: 1.25rem; height: 1.25rem; color: var(--brand-cyan); }
.contact__phone .num { font-family: var(--font-display); font-size: 1.25rem; font-weight: 800; }
.contact__phone .btn { margin-top: 1.25rem; }
.contact__map { overflow: hidden; border-radius: 1.5rem; border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.contact__map iframe { height: 100%; min-height: 420px; width: 100%; border: 0; display: block; }

/* ---------- Footer ---------- */
.ot-footer { background: var(--ink); padding: 4rem 0 2rem; color: oklch(1 0 0 / .75); }
.ot-footer__grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .ot-footer__grid { grid-template-columns: repeat(3, 1fr); } }
.ot-footer__logo img { height: 3rem; width: auto; border-radius: 10px; }
.ot-footer__logo .site-name { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: #fff; }
.ot-footer p.about { margin-top: 1.25rem; max-width: 20rem; font-size: .875rem; }
.ot-footer__social { margin-top: 1.5rem; display: flex; gap: .75rem; }
.ot-footer__social a { display: inline-flex; width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; border-radius: 9999px; border: 1px solid oklch(1 0 0 / .2); color: #fff; transition: background-image .3s ease, transform .3s ease; }
.ot-footer__social a:hover { background-image: var(--gradient-cyan); transform: translateY(-3px); }
.ot-footer__social svg { width: 1rem; height: 1rem; }
.ot-footer h3 { font-family: var(--font-display); font-size: .875rem; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; color: #fff; }
.ot-footer nav ul, .ot-footer__contact { margin-top: 1.25rem; }
.ot-footer nav li { margin-bottom: .5rem; }
.ot-footer nav a { font-size: .875rem; transition: color .25s ease; }
.ot-footer nav a:hover { color: var(--brand-cyan); }
.ot-footer__contact p { margin-top: .5rem; display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; }
.ot-footer__contact svg { margin-top: 2px; width: 1rem; height: 1rem; color: var(--brand-cyan); flex: 0 0 auto; }
.ot-footer__bottom { max-width: 80rem; margin: 3rem auto 0; padding: 1.5rem 1.25rem 0; border-top: 1px solid oklch(1 0 0 / .1); text-align: center; font-size: .75rem; color: oklch(1 0 0 / .55); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  display: inline-flex; width: 3.5rem; height: 3.5rem; align-items: center; justify-content: center;
  border-radius: 9999px; background-image: var(--gradient-cyan); color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease;
  animation: wa-pulse 2.4s ease-in-out infinite;
}
.wa-float:hover { transform: translateY(-6px) scale(1.05); box-shadow: var(--shadow-neon); animation: none; }
.wa-float svg { width: 1.6rem; height: 1.6rem; }
@keyframes wa-pulse { 0%,100% { box-shadow: var(--shadow-soft); } 50% { box-shadow: 0 0 0 1px oklch(0.735 0.143 227 / .5), 0 0 26px 2px oklch(0.735 0.143 227 / .45); } }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .06s; }
.reveal[data-delay="2"] { transition-delay: .12s; }
.reveal[data-delay="3"] { transition-delay: .18s; }
.reveal[data-delay="4"] { transition-delay: .24s; }
.reveal[data-delay="5"] { transition-delay: .3s; }

/* ---------- Page (blog / generic) ---------- */
.page-hero { background-image: var(--gradient-brand); padding: 8rem 0 4rem; text-align: center; }
.page-hero .eyebrow { color: var(--brand-cyan); }
.page-hero h1 { margin-top: .75rem; font-size: clamp(2rem, 5vw, 3rem); color: var(--primary-foreground); }
.page-hero p { margin-top: 1rem; color: oklch(1 0 0 / .8); max-width: 40rem; margin-inline: auto; }
.content-area { padding-block: 4rem; }
.post-single { max-width: 46rem; margin-inline: auto; }
.post-single__meta { color: var(--muted-foreground); font-size: .875rem; margin-bottom: 1rem; }
.post-single__thumb { border-radius: 1.5rem; overflow: hidden; margin-bottom: 2rem; box-shadow: var(--shadow-soft); }
.prose { font-size: 1.02rem; line-height: 1.75; color: var(--foreground); }
.prose h2 { margin: 2rem 0 1rem; font-size: 1.6rem; }
.prose h3 { margin: 1.75rem 0 .75rem; font-size: 1.3rem; }
.prose p { margin-bottom: 1.1rem; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose ul, .prose ol { margin: 0 0 1.1rem 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose img { border-radius: 1rem; margin: 1.5rem 0; }
.prose blockquote { border-left: 4px solid var(--accent); padding-left: 1.25rem; margin: 1.5rem 0; color: var(--muted-foreground); font-style: italic; }

.pagination { margin-top: 3rem; display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.pagination .page-numbers { display: inline-flex; min-width: 2.5rem; height: 2.5rem; align-items: center; justify-content: center; padding: 0 .75rem; border-radius: 9999px; border: 1px solid var(--border); background: var(--card); font-weight: 600; font-size: .875rem; transition: all .25s ease; }
.pagination .page-numbers.current, .pagination .page-numbers:hover { background-image: var(--gradient-brand); color: var(--primary-foreground); border-color: transparent; }

.back-link { display: inline-flex; align-items: center; gap: .5rem; margin-top: 2.5rem; font-weight: 600; color: var(--primary); }
.back-link svg { width: 1rem; height: 1rem; }

/* Editor-friendly: highlight empty sections in customizer preview only handled by WP */

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .neon-hover, .neon-hover-blue, .btn, .wa-float { transition: box-shadow .2s ease; animation: none; }
  .neon-hover:hover, .neon-hover-blue:hover, .btn-brand:hover, .btn-cyan:hover { transform: none; }
}
