/* ============================================================
   GRAÇA & FORMA — styles.css  (redesign editorial escuro)
   Mobile-first · Sem frameworks
   ============================================================ */

/* ─────────────────────────────────────────
   1. DESIGN TOKENS
   ───────────────────────────────────────── */
:root {
  /* Paleta */
  --clr-black:       #070707;
  --clr-black-2:     #0d0d0d;
  --clr-black-3:     #111111;
  --clr-gold:        #FEBC4D;
  --clr-gold-dark:   #e5a535;
  --clr-gold-glow:   rgba(254,188,77,.28);
  --clr-white:       #FCFCFC;
  --clr-white-80:    rgba(252,252,252,.80);
  --clr-white-60:    rgba(252,252,252,.60);
  --clr-white-40:    rgba(252,252,252,.40);
  --clr-white-20:    rgba(252,252,252,.20);
  --clr-white-08:    rgba(252,252,252,.08);

  /* Tipografia */
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;

  /* Tamanhos */
  --fs-2xs: 0.6875rem; /* 11px */
  --fs-xs:  0.75rem;   /* 12px */
  --fs-sm:  0.875rem;  /* 14px */
  --fs-md:  1rem;      /* 16px */
  --fs-lg:  1.125rem;  /* 18px */
  --fs-xl:  1.25rem;   /* 20px */
  --fs-2xl: 1.5rem;    /* 24px */
  --fs-3xl: 2rem;      /* 32px */
  --fs-4xl: 2.5rem;    /* 40px */
  --fs-5xl: 3.25rem;   /* 52px */
  --fs-6xl: 4rem;      /* 64px */

  /* Espaço */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Bordas */
  --radius-xs:   2px;
  --radius-sm:   4px;
  --radius-md:   10px;
  --radius-lg:   18px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0,0,0,.25);
  --shadow-md: 0 4px 20px rgba(0,0,0,.35);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.50);
  --shadow-gold: 0 4px 20px rgba(254,188,77,.30);

  /* Transições */
  --ease:      .28s cubic-bezier(.4,0,.2,1);
  --ease-slow: .50s cubic-bezier(.4,0,.2,1);

  /* Bgs Especiais */
  --clr-bg-header:   rgba(7,7,7,.96);
  --clr-bg-overlay1: rgba(7,7,7,.85);
  --clr-bg-overlay2: rgba(7,7,7,.20);
  --clr-bg-tag:      rgba(7, 7, 7, 0.75);
  --clr-card-bg-fallback: #1a1a1a;

  /* Layout */
  --header-h:  72px;
  --max-w:    1200px;
}

/* ─────────────────────────────────────────
   1A. THEME OVERRIDES (LIGHT MODE)
   ───────────────────────────────────────── */
:root.light-mode {
  --clr-black:       #FCFCFC;
  --clr-black-2:     #f4f4f4;
  --clr-black-3:     #ebebeb;
  --clr-gold:        #D4A017;
  --clr-gold-dark:   #b5840b;
  --clr-white:       #070707;
  --clr-white-80:    rgba(7,7,7,.80);
  --clr-white-60:    rgba(7,7,7,.60);
  --clr-white-40:    rgba(7,7,7,.40);
  --clr-white-20:    rgba(7,7,7,.20);
  --clr-white-08:    rgba(7,7,7,.08);

  --clr-bg-header:   rgba(252,252,252,.96);
  --clr-bg-overlay1: rgba(7,7,7,.85);
  --clr-bg-overlay2: rgba(7,7,7,.20);
  --clr-bg-tag:      rgba(252, 252, 252, 0.75);
  --clr-card-bg-fallback: #e6e6e6;
}

/* ─────────────────────────────────────────
   2. 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(--ff-sans);
  font-size: var(--fs-md);
  line-height: 1.65;
  color: var(--clr-white);
  background-color: var(--clr-black);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color var(--ease), color var(--ease);
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
em  { font-style: italic; }

/* Fallback de cor para imagens ausentes */
img { background: var(--card-bg, var(--clr-card-bg-fallback)); }

:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

/* ─────────────────────────────────────────
   3. CONTAINER
   ───────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 640px)  { .container { padding-inline: var(--sp-8); } }
@media (min-width: 1024px) { .container { padding-inline: var(--sp-10); } }

/* ─────────────────────────────────────────
   4. TIPOGRAFIA
   ───────────────────────────────────────── */
.section-eyebrow {
  display: block;
  font-family: var(--ff-sans);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-4);
}
.section-eyebrow--gold { color: var(--clr-gold); }

.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-3xl), 4vw, var(--fs-4xl));
  font-weight: 600;
  line-height: 1.18;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}
.section-title em { color: var(--clr-gold); font-style: italic; }

.section-sub {
  font-size: var(--fs-md);
  line-height: 1.70;
  color: var(--clr-white-60);
  max-width: 520px;
}

/* Section spacing */
.section { padding-block: var(--sp-20); }
@media (min-width: 1024px) { .section { padding-block: var(--sp-24); } }

/* ─────────────────────────────────────────
   5. BOTÕES
   ───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4) var(--sp-8);
  font-family: var(--ff-sans);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  transition: background-color var(--ease), color var(--ease),
              border-color var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
}

/* Gold */
.btn--gold {
  position: relative;
  background: linear-gradient(90deg, #c77b00 0%, #ffde6a 50%, #c77b00 100%);
  background-size: 200% auto;
  color: #000;
  font-weight: 400; /* sans-serif leve */
  border-color: transparent;
  overflow: hidden;
  z-index: 1;
}

.btn--gold::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-20deg);
  z-index: -1;
  transition: none;
}

.btn--gold::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, rgba(255,255,255,0.9), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--ease);
  pointer-events: none;
  z-index: 2;
}

.btn--gold:hover, .btn--gold:focus-visible {
  background-position: right center;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(254,188,77,.40);
  color: #000;
}

.btn--gold:hover::before {
  animation: btn-shimmer 1.5s infinite;
}

.btn--gold:hover::after {
  opacity: 1;
}

@keyframes btn-shimmer {
  100% {
    left: 200%;
  }
}

/* Ghost / outline white */
.btn--ghost {
  background-color: transparent;
  color: var(--clr-white-80);
  border-color: var(--clr-white-40);
}
.btn--ghost:hover, .btn--ghost:focus-visible {
  background-color: var(--clr-white-08);
  border-color: var(--clr-white-80);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* Small variant */
.btn--sm {
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-2xs);
}

@media (min-width: 480px) {
  .btn--sm { padding: var(--sp-3) var(--sp-5); }
}

/* ─────────────────────────────────────────
   5.5 THEME TOGGLE
   ───────────────────────────────────────── */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  color: var(--clr-white);
  background: var(--clr-white-08);
  transition: background-color var(--ease), color var(--ease), transform var(--ease), border-color var(--ease);
  flex-shrink: 0;
  border: 1px solid transparent;
}
.theme-toggle:hover, .theme-toggle:focus-visible {
  background: var(--clr-white-20);
  border-color: var(--clr-white-40);
  transform: scale(1.05);
}
.theme-toggle svg {
  width: 20px; height: 20px;
  transition: transform var(--ease);
}
:root.light-mode .theme-toggle {
  color: var(--clr-white);
  background: var(--clr-white-08);
}

/* ─────────────────────────────────────────
   6. HEADER / NAV
   ───────────────────────────────────────── */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background-color var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  background-color: var(--clr-bg-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--clr-white-08);
}

.nav {
  display: flex;
  align-items: center;
  height: var(--header-h);
  gap: var(--sp-8);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
  transition: opacity var(--ease);
}
.nav__logo:hover { opacity: .80; }

.nav__logo-img {
  height: 38px;
  width: auto;
  display: block;
  background: transparent;
  /* Garante que o logo seja branco em fundos escuros.
     Se o PNG já tem fundo transparente e texto branco, remova o filter abaixo. */

}
:root.light-mode .nav__logo-img {
  content: url('assets/logo escuro.png');
}

.nav__menu {
  display: none;
  align-items: center;
  gap: var(--sp-8);
}
@media (min-width: 768px) {
  .nav__menu { display: flex; order: 1; margin-right: var(--sp-4); }
  .theme-toggle { order: 2; margin-right: var(--sp-4); }
  .nav__cta { order: 3; }
}
.nav__menu.is-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  inset-block-start: var(--header-h);
  inset-inline: 0;
  background-color: var(--clr-black);
  padding: var(--sp-8) var(--sp-6) var(--sp-10);
  gap: var(--sp-6);
  border-top: 1px solid var(--clr-white-08);
  animation: slideDown .22s ease;
}

.nav__link {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-white-60);
  transition: color var(--ease);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--clr-gold);
  transition: width var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--clr-gold); }
.nav__link:hover::after { width: 100%; }

.nav__cta {
  flex-shrink: 0;
  display: none;
}
@media (min-width: 640px) { .nav__cta { display: inline-flex; } }

.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px; height: 32px;
  padding: var(--sp-1);
  flex-shrink: 0;
}
.nav__toggle span {
  display: block;
  width: 100%; height: 1.5px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
  transform-origin: center;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (min-width: 768px) { .nav__toggle { display: none; } }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────
   7. HERO — split layout
   ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--clr-black);
  background-image: url('assets/BG%20mobile%20Mordomia.png');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-block-start: var(--header-h);
  overflow: hidden;
  transition: background-image var(--ease-slow);
}
:root.light-mode .hero {
  background-image: url('assets/bg%20mobile%20mordomia%20claro.png');
}
@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    background-image: url('assets/Bg%20desktop%20Mordomia.png');
    background-position: center center;
  }
  :root.light-mode .hero {
    background-image: url('assets/Bg%20desktop%20Mordomia%20claro.png');
  }
}

/* Left / conteúdo */
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-12) var(--sp-5);
  padding-block-start: var(--sp-16);
}
@media (min-width: 640px)  { .hero__left { padding-inline: var(--sp-8); } }
@media (min-width: 900px)  { .hero__left { padding-inline: var(--sp-10); padding-block: var(--sp-12); } }
@media (min-width: 1200px) {
  .hero__left {
    /* Alinha com a borda esquerda do .container: centering offset + padding do container */
    padding-inline-start: max(var(--sp-10), calc((100vw - 15px - var(--max-w)) / 2 + var(--sp-10)));
    padding-inline-end: var(--sp-12);
  }
}

.hero__eyebrow {
  display: block;
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-5);
  opacity: 0;
  animation: fadeUp .80s ease .15s forwards;
}

.hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-4xl), 5.5vw, var(--fs-6xl));
  font-weight: 700;
  line-height: 1.10;
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp .80s ease .30s forwards;
}
.hero__title em {
  color: var(--clr-gold);
  font-style: italic;
}

.hero__subtitle {
  font-size: clamp(var(--fs-sm), 1.8vw, var(--fs-md));
  line-height: 1.75;
  color: var(--clr-white-60);
  max-width: 480px;
  margin-bottom: var(--sp-10);
  opacity: 0;
  animation: fadeUp .80s ease .45s forwards;
}

.hero__actions {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-12);
  opacity: 0;
  animation: fadeUp .80s ease .60s forwards;
}

/* Stats */
.hero__stats {
  display: flex;
  gap: var(--sp-6);
  align-items: center;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-white-08);
  opacity: 0;
  animation: fadeUp .80s ease .75s forwards;
}

.hero__stat strong {
  display: block;
  font-family: var(--ff-serif);
  font-size: var(--fs-2xl);
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: var(--sp-1);
}
.hero__stat strong sup {
  font-size: .55em;
  vertical-align: super;
}
.hero__stat span {
  font-size: var(--fs-xs);
  color: var(--clr-white-40);
  line-height: 1.35;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background: var(--clr-white-20);
  flex-shrink: 0;
}

/* Right / mosaico */
.hero__right {
  display: none;
  padding: var(--sp-8);
  align-items: center;
}
@media (min-width: 900px) { .hero__right { display: flex; } }

.hero__mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--sp-3);
  width: 100%;
  height: calc(100vh - var(--header-h) - var(--sp-16));
  max-height: 700px;
}

.hero__mosaic-slot {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-bg, var(--clr-card-bg-fallback));
}
.hero__mosaic-slot--tall {
  grid-row: span 2;
}
.hero__mosaic-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: none;
}

/* ─────────────────────────────────────────
   8. TICKER
   ───────────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-block: 1px solid var(--clr-white-08);
  background-color: var(--clr-black-2);
  padding-block: var(--sp-4);
}

.ticker__track {
  display: flex;
  gap: var(--sp-8);
  width: max-content;
  animation: ticker 35s linear infinite;
}

.ticker__track span {
  font-family: var(--ff-serif);
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--clr-white-60);
  white-space: nowrap;
  font-style: italic;
}

.ticker__dot {
  color: var(--clr-gold) !important;
  font-style: normal !important;
  font-family: var(--ff-sans) !important;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* ─────────────────────────────────────────
   9. CATEGORIAS — grid assimétrico
   ───────────────────────────────────────── */
.categories { background-color: var(--clr-black); }

.categories__header {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  margin-bottom: var(--sp-10);
}
@media (min-width: 900px) {
  .categories__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-12);
  }
  .categories__header .section-title { margin-bottom: 0; }
  .categories__sub { max-width: 400px; }
}

/* Grid assimétrico / Accordion */
.categories__grid {
  display: flex;
  flex-direction: column;
  height: 60vh;
  min-height: 480px;
  max-height: 640px;
  gap: var(--sp-2);
}

@media (min-width: 768px) {
  .categories__grid {
    flex-direction: row;
    height: 55vh;
    min-height: 400px;
    max-height: 500px;
  }
}

.category-card {
  flex: 1; /* Default: all are equal (25%) */
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  background-color: var(--card-bg, var(--clr-card-bg-fallback));
  transition: flex 1.2s cubic-bezier(0.33, 1, 0.68, 1), box-shadow var(--ease);
  will-change: flex;
  aspect-ratio: auto !important; 
  min-height: unset !important;
  grid-column: unset !important;
  grid-row: unset !important;
}

/* Accordion Logic */
@media (hover: hover) and (pointer: fine) {
  .categories__grid:hover .category-card {
    flex: 1;
  }
  .categories__grid:hover .category-card:hover {
    flex: 3;
  }
}
.category-card.is-expanded {
  flex: 3;
}

.category-card:hover, .category-card:focus-visible {
  box-shadow: var(--shadow-lg);
}

/* Images (Retracted / Expanded Swap Logic) */
.category-card__img-wrap {
  position: absolute;
  inset: 0;
}
.category-card__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background: none;
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  will-change: transform, opacity;
}

/* Default state: show retracted, hide expanded */
.category-card__img--retracted {
  opacity: .50;
}
.category-card__img--expanded {
  opacity: 0;
  transform: scale(1.04); /* Starts slightly scaled up for a neat zoom-out effect when fading in, or just to match expanded state */
}

/* Hover/Expanded states */
@media (hover: hover) and (pointer: fine) {
  .categories__grid:hover .category-card:hover .category-card__img--retracted { 
    opacity: 0; 
  }
  .categories__grid:hover .category-card:hover .category-card__img--expanded { 
    opacity: .75; 
    transform: scale(1);
  }
}
.category-card.is-expanded .category-card__img--retracted { 
  opacity: 0; 
}
.category-card.is-expanded .category-card__img--expanded { 
  opacity: .75; 
  transform: scale(1);
}

/* Generic Overlay */
.category-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 4, 4, 0.65); /* Aumentado escurecimento padrão do cartão recolhido */
  transition: background 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) and (pointer: fine) {
  .categories__grid:hover .category-card:hover .category-card__overlay {
    background: linear-gradient(0deg, var(--clr-bg-overlay1) 0%, var(--clr-bg-overlay2) 55%, transparent 100%);
  }
}
.category-card.is-expanded .category-card__overlay {
  background: linear-gradient(0deg, var(--clr-bg-overlay1) 0%, var(--clr-bg-overlay2) 55%, transparent 100%);
}

/* Collapsed Title */
.category-card__title-collapsed {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--clr-white);
  white-space: nowrap;
  margin: 0;
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (min-width: 768px) {
  .category-card__title-collapsed {
    transform: rotate(-90deg);
  }
}
@media (hover: hover) and (pointer: fine) {
  .categories__grid:hover .category-card:hover .category-card__title-collapsed { opacity: 0; pointer-events: none; }
}
.category-card.is-expanded .category-card__title-collapsed { opacity: 0; pointer-events: none; }

/* Expanded Content Wrapper */
.category-card__expanded-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--sp-5) var(--sp-6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) and (pointer: fine) {
  .categories__grid:hover .category-card:hover .category-card__expanded-wrapper { 
    opacity: 1; 
    transform: translateY(0); 
    pointer-events: auto; 
  }
}
.category-card.is-expanded .category-card__expanded-wrapper { 
  opacity: 1; 
  transform: translateY(0); 
  pointer-events: auto; 
}

/* Override default expanded card when grid is hovered on desktop */
@media (hover: hover) and (pointer: fine) {
  .categories__grid:hover .category-card.is-expanded:not(:hover) {
    flex: 1;
  }
  .categories__grid:hover .category-card.is-expanded:not(:hover) .category-card__img--expanded {
    opacity: 0;
    transform: scale(1.04);
  }
  .categories__grid:hover .category-card.is-expanded:not(:hover) .category-card__img--retracted {
    opacity: .50;
    transform: scale(1);
  }
  .categories__grid:hover .category-card.is-expanded:not(:hover) .category-card__overlay {
    background: rgba(4, 4, 4, 0.65); /* Aumentado escurecimento do cartão resetado */
  }
  .categories__grid:hover .category-card.is-expanded:not(:hover) .category-card__title-collapsed {
    opacity: 1; pointer-events: auto;
  }
  .categories__grid:hover .category-card.is-expanded:not(:hover) .category-card__expanded-wrapper {
    opacity: 0; pointer-events: none; transform: translateY(15px);
  }
}

/* Elements inside the expanded wrapper */
.category-card__num {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-6);
  font-family: var(--ff-sans);
  font-size: var(--fs-2xs);
  font-weight: 600;
  letter-spacing: .16em;
  color: var(--clr-white-40);
}

.category-card__info { flex: 1; display: flex; flex-direction: column; justify-content: flex-end; }

.category-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-lg), 2.5vw, var(--fs-2xl));
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}
.category-card__title em { color: var(--clr-gold); font-style: italic; }

.category-card__count {
  font-size: var(--fs-xs);
  color: var(--clr-white-40);
  margin-bottom: var(--sp-4);
  letter-spacing: .04em;
}

.category-card__cta {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--clr-gold);
  display: block;
}
.category-card__cta:hover {
  text-decoration: underline;
}

/* Light Mode Overrides for Category Card Text on Dark Overlay */
:root.light-mode .category-card__num {
  color: rgba(252,252,252,.40);
}
:root.light-mode .category-card__title-collapsed,
:root.light-mode .category-card__title {
  color: #FCFCFC;
}
:root.light-mode .category-card__count {
  color: rgba(252,252,252,.60);
}

/* ─────────────────────────────────────────
   10. DESTAQUES
   ───────────────────────────────────────── */
.highlights { background-color: var(--clr-black-2); }

.highlights__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}
.highlights__header .section-title { margin-bottom: 0; }

.highlights__see-all {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--clr-gold);
  white-space: nowrap;
  transition: opacity var(--ease);
  padding-bottom: var(--sp-2);
}
.highlights__see-all:hover { opacity: .75; }

/* Filter bar */
.filter-bar {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.filter-btn {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-2xs);
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-white-40);
  border: 1px solid var(--clr-white-08);
  border-radius: var(--radius-full);
  background: transparent;
  transition: all var(--ease);
  line-height: 1;
}
.filter-btn:hover { border-color: var(--clr-gold); color: var(--clr-white-80); }
.filter-btn.active {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-black);
  font-weight: 600;
}

/* Products grid */
.products-grid {
  display: grid;
  gap: var(--sp-3);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 480px)  { .products-grid { gap: var(--sp-4); } }
@media (min-width: 768px)  { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

/* Product card */
.product-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: var(--clr-black-3);
  border: 1px solid var(--clr-white-08);
  display: flex;
  flex-direction: column;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-white-20);
}
.product-card.is-hidden { display: none; }

.product-card__img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--card-bg, #1a1a1a);
  flex-shrink: 0;
}
.product-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: none;
  opacity: .75;
  transition: transform var(--ease-slow), opacity var(--ease);
}
.product-card:hover .product-card__img { transform: scale(1.05); opacity: .85; }

.product-card__tag {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  padding: var(--sp-1) var(--sp-3);
  background: var(--clr-bg-tag);
  color: var(--clr-gold);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  font-size: var(--fs-2xs);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  line-height: 1.6;
}
:root.light-mode .product-card__tag {
  color: var(--clr-white);
}

.product-card__body {
  display: flex;
  flex-direction: column;
  padding: var(--sp-3) var(--sp-3) var(--sp-4);
  gap: var(--sp-2);
  flex: 1;
}

@media (min-width: 480px) {
  .product-card__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); gap: var(--sp-3); }
}

.product-card__main { flex: 1; }

.product-card__name {
  font-family: var(--ff-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-white);
  line-height: 1.25;
  margin-bottom: var(--sp-1);
}

@media (min-width: 480px) {
  .product-card__name { font-size: var(--fs-lg); margin-bottom: var(--sp-2); }
}

.product-card__desc {
  font-size: var(--fs-xs);
  color: var(--clr-white-60);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
}

.product-card__desc.is-expanded {
  -webkit-line-clamp: unset;
  line-clamp: unset;
}

.product-card__read-more {
  display: inline-block;
  background: none;
  border: none;
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  padding: 0;
  margin-top: 4px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.8;
}

@media (min-width: 480px) {
  .product-card__desc { font-size: var(--fs-sm); -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
  .product-card__read-more { display: none; }
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--clr-white-08);
  flex-wrap: wrap;
}

.product-card__footer .btn {
  white-space: normal;
  text-align: center;
  flex: 1 1 100%;
  line-height: 1.2;
}

@media (min-width: 480px) {
  .product-card__footer .btn {
    flex: 0 0 auto;
  }
}

.product-card__price {
  font-size: var(--fs-sm);
  color: var(--clr-white-40);
  font-weight: 400;
}
.product-card__price em {
  font-style: normal;
  color: var(--clr-gold);
  font-weight: 600;
}

/* ─────────────────────────────────────────
   11. SOBRE — quote + imagem
   ───────────────────────────────────────── */
.about { background-color: var(--clr-black); }

.about__grid {
  display: grid;
  gap: var(--sp-12);
}
@media (min-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: var(--sp-20);
  }
}

/* Imagem */
.about__visual { position: relative; }

.about__img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background-color: #181818;
}
.about__img {
  width: 100%; height: 100%;
  object-fit: cover;
  background: none;
  opacity: .80;
}

.about__img-accent {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 55%; aspect-ratio: 4 / 5;
  border: 1.5px solid var(--clr-gold);
  border-radius: var(--radius-lg);
  opacity: .25;
  z-index: -1;
  pointer-events: none;
}

/* Conteúdo / Quote */
.about__quote {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-3xl), 4.5vw, var(--fs-5xl));
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
  color: var(--clr-white);
  margin-bottom: var(--sp-8);
}
.about__quote::before { content: ''; }

.about__text {
  font-size: var(--fs-md);
  color: var(--clr-white-60);
  line-height: 1.80;
  margin-bottom: var(--sp-4);
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--clr-white-08);
}

.about__list-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.about__list-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--clr-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.about__list-item strong {
  display: block;
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--sp-1);
}
.about__list-item span {
  font-size: var(--fs-sm);
  color: var(--clr-white-60);
  line-height: 1.60;
}

/* ─────────────────────────────────────────
   12. COMO PEDIR
   ───────────────────────────────────────── */
.how-to { background-color: var(--clr-black-2); }

.how-to__header {
  margin-bottom: var(--sp-10);
}
.how-to__header .section-title { max-width: 480px; }

.how-to__grid {
  display: grid;
  gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .how-to__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how-to__grid { grid-template-columns: repeat(4, 1fr); } }

.step-card {
  padding: var(--sp-8) var(--sp-6);
  border: 1px solid var(--clr-white-08);
  border-radius: var(--radius-md);
  background-color: var(--clr-black-3);
  position: relative;
  transition: border-color var(--ease), transform var(--ease);
}
.step-card:hover {
  border-color: var(--clr-gold);
  transform: translateY(-3px);
}

.step-card__num {
  display: block;
  font-family: var(--ff-serif);
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--clr-white-08);
  line-height: 1;
  margin-bottom: var(--sp-5);
  user-select: none;
}

.step-card__title {
  font-family: var(--ff-serif);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}

.step-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-white-60);
  line-height: 1.65;
}

.how-to__note {
  margin-top: var(--sp-8);
  padding: var(--sp-4) var(--sp-6);
  border-left: 2px solid var(--clr-gold);
  font-size: var(--fs-xs);
  color: var(--clr-white-40);
  line-height: 1.60;
  letter-spacing: .03em;
}

/* ─────────────────────────────────────────
   13. FAQ SECTION (Glassmorphism)
   ───────────────────────────────────────── */
.faq { 
  background-color: var(--clr-black-2);
  position: relative;
  overflow: hidden;
}

.faq__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: 
    "left"
    "right"
    "card";
  gap: var(--sp-8);
}
@media (min-width: 900px) {
  .faq__container {
    grid-template-columns: 1.1fr 1.5fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
      "left right"
      "card right";
    gap: var(--sp-12) var(--sp-16);
  }
}

.faq__left {
  grid-area: left;
  display: flex;
  flex-direction: column;
}
.faq__left .section-title {
  margin-bottom: 0;
}
@media (min-width: 900px) {
  .faq__left .section-title {
    margin-bottom: var(--sp-10);
  }
}

.faq__contact-card {
  grid-area: card;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  align-self: end;
  transition: border-color var(--ease);
}
.faq__contact-card h3 {
  font-family: var(--ff-serif);
  font-size: var(--fs-xl);
  font-weight: 500;
  margin-bottom: var(--sp-2);
  color: var(--clr-white);
}
.faq__contact-card p {
  color: var(--clr-white-60);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

.faq__right {
  grid-area: right;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--sp-4);
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--ease), background-color var(--ease), transform var(--ease);
}
:root.light-mode .faq-item {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}
:root.light-mode .faq__contact-card {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}
:root.light-mode .faq-item:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: #ffffff;
}

.faq-item__header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-5) var(--sp-6);
  background: transparent;
  color: var(--clr-white);
  font-size: var(--fs-md);
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color var(--ease);
}
.faq-item__header:hover {
  color: var(--clr-gold);
}

.faq-item__icon {
  flex-shrink: 0;
  color: var(--clr-white-60);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-xs);
  padding: 4px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease);
}
:root.light-mode .faq-item__icon {
  background: rgba(255, 255, 255, 0.6);
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.8);
}

.faq-item__header[aria-expanded="true"] .faq-item__icon {
  transform: rotate(180deg);
  background: var(--clr-gold-glow);
  color: var(--clr-gold);
  border-color: rgba(254, 188, 77, 0.2);
}
:root.light-mode .faq-item__header[aria-expanded="true"] .faq-item__icon {
  background: var(--clr-gold-glow);
  color: var(--clr-gold-dark);
  border-color: rgba(181, 132, 11, 0.2);
}

.faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--ease);
}
.faq-item__header[aria-expanded="true"] + .faq-item__body {
  grid-template-rows: 1fr;
}

.faq-item__content {
  overflow: hidden;
}
.faq-item__content-inner {
  padding: 0 var(--sp-6) var(--sp-6) var(--sp-6);
  color: var(--clr-white-60);
  font-size: var(--fs-md);
  line-height: 1.6;
  opacity: 0;
  transition: opacity 0.4s ease 0.1s;
}
.faq-item__header[aria-expanded="true"] + .faq-item__body .faq-item__content-inner {
  opacity: 1;
}

/* ─────────────────────────────────────────
   14. CTA SECTION
   ───────────────────────────────────────── */
.cta-section {
  padding-block: var(--sp-24);
  background-color: var(--clr-black);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(254,188,77,.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  max-width: 720px;
  margin-inline: auto;
}

.cta-section__title {
  font-family: var(--ff-serif);
  font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl));
  font-weight: 700;
  line-height: 1.10;
  color: var(--clr-white);
  margin-bottom: var(--sp-5);
  letter-spacing: -.01em;
}
.cta-section__title em {
  font-style: italic;
  color: var(--clr-gold);
}

.cta-section__sub {
  font-size: var(--fs-lg);
  color: var(--clr-white-60);
  line-height: 1.72;
  margin-bottom: var(--sp-10);
}

.cta-section__actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.cta-section__trust {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  align-items: center;
}
.cta-section__trust li {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  color: var(--clr-white-40);
}
.cta-section__trust li svg { color: var(--clr-gold); flex-shrink: 0; }

/* ─────────────────────────────────────────
   14. FOOTER
   ───────────────────────────────────────── */
.footer {
  background-color: #030303;
  padding-block: var(--sp-10);
  border-top: 1px solid var(--clr-white-08);
  transition: background-color var(--ease), border-color var(--ease);
}
:root.light-mode .footer {
  background-color: var(--clr-black-2);
}

.footer__top {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--clr-white-08);
  margin-bottom: var(--sp-6);
}
@media (min-width: 768px) {
  .footer__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footer__logo-link {
  display: inline-block;
  margin-bottom: var(--sp-2);
  transition: opacity var(--ease);
}
.footer__logo-link:hover { opacity: .75; }

.footer__logo-img {
  height: 48px;
  width: auto;
  display: block;
  background: transparent;
}
:root.light-mode .footer__logo-img {
  content: url('assets/logo escuro.png');
}

.footer__tagline {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--clr-white-40);
}

.footer__links {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.footer__links a {
  font-size: var(--fs-xs);
  color: var(--clr-white-40);
  text-transform: uppercase;
  letter-spacing: .10em;
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--clr-gold); }

.footer__contact p {
  font-size: var(--fs-xs);
  color: var(--clr-white-40);
  text-transform: uppercase;
  letter-spacing: .10em;
  margin-bottom: var(--sp-2);
}
.footer__contact a {
  font-size: var(--fs-md);
  color: var(--clr-white-80);
  font-weight: 500;
  transition: color var(--ease);
}
.footer__contact a:hover { color: var(--clr-gold); }

.footer__bottom {
  text-align: center;
}
.footer__bottom p {
  font-size: var(--fs-xs);
  color: var(--clr-white-20);
}

/* ─────────────────────────────────────────
   15. WHATSAPP FLOAT
   ───────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: var(--sp-6); right: var(--sp-6);
  z-index: 200;
  width: 56px; height: 56px;
  border-radius: 50%;
  background-color: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,.40);
  transition: transform var(--ease), box-shadow var(--ease);
}
.wa-float:hover { transform: scale(1.10); box-shadow: 0 6px 30px rgba(37,211,102,.55); }

.wa-float__tooltip {
  position: absolute;
  right: calc(100% + var(--sp-3));
  top: 50%;
  transform: translateY(-50%) translateX(4px);
  background: var(--clr-black-3);
  color: var(--clr-white);
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--ease), transform var(--ease);
  border: 1px solid var(--clr-white-08);
}
.wa-float__tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--clr-black-3);
}
.wa-float:hover .wa-float__tooltip,
.wa-float:focus-visible .wa-float__tooltip { opacity: 1; transform: translateY(-50%) translateX(0); }

/* Pulse */
.wa-float::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 3s ease-out 2s infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .65; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ─────────────────────────────────────────
   16. ANIMAÇÕES / SCROLL REVEAL
   ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ─────────────────────────────────────────
   17. REDUÇÃO DE MOVIMENTO
   ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .wa-float::before { animation: none; }
}

/* ─────────────────────────────────────────
   18. IMPRESSÃO
   ───────────────────────────────────────── */
@media print {
  .header, .wa-float, .ticker { display: none; }
  body { color: #000; background: #fff; }
  .section-title, .hero__title { color: #000; }
}

/* ─────────────────────────────────────────
   19. LIGHTBOX / MODAL DE IMAGEM
   ───────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ease), visibility var(--ease);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

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

.lightbox__close {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  background: rgba(0, 0, 0, 0.5);
  color: #FCFCFC;
  border: 1px solid rgba(252,252,252,.20);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10000;
  transition: background-color var(--ease), color var(--ease);
  padding-bottom: 3px;
}

.lightbox__close:hover,
.lightbox__close:focus-visible {
  background: var(--clr-gold);
  color: #070707;
  border-color: var(--clr-gold);
  transform: scale(1.05);
}

.lightbox__content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 95vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: transform var(--ease-slow);
}

.lightbox.is-open .lightbox__img {
  transform: scale(1);
}
