/* =====================================================================
   GABRIEL PIRES TATTOO — Design System
   Premium / Dark / Minimalista / Conversão
   Edite as variáveis abaixo para alterar cores, fontes e espaçamentos.
   ===================================================================== */

/* ---------- 1. VARIÁVEIS GLOBAIS ---------- */
:root {
  /* Cores base */
  --c-black:      #0a0a0b;
  --c-graphite:   #121214;
  --c-charcoal:   #1a1a1e;
  --c-surface:    #1f1f24;
  --c-border:     #2c2c33;
  --c-gray:       #8b8b95;
  --c-gray-light: #b9b9c2;
  --c-offwhite:   #f4f2ef;
  --c-white:      #ffffff;

  /* Acentos premium */
  --c-gold:       #c9a45c;
  --c-gold-deep:  #b8863b;
  --c-copper:     #c8794a;
  --c-red:        #8b1e1e;

  /* Gradientes */
  --grad-gold: linear-gradient(135deg, #e7c884 0%, #c9a45c 45%, #b8863b 100%);
  --grad-dark: linear-gradient(180deg, #121214 0%, #0a0a0b 100%);
  --glow-gold: radial-gradient(circle at 70% 30%, rgba(201,164,92,0.18), transparent 60%);

  /* Tipografia */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;   /* serif editorial de luxo */
  --font-grotesk: 'Space Grotesk', 'Segoe UI', sans-serif;         /* rótulos, botões, números */
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Espaçamento / layout */
  --max-width: 1200px;
  --radius:    16px;
  --radius-sm: 10px;
  --shadow:    0 24px 60px -20px rgba(0,0,0,0.7);
  --shadow-gold: 0 14px 40px -12px rgba(201,164,92,0.35);

  /* Transições */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--c-black);
  background-image:
    radial-gradient(1200px 600px at 80% -5%, rgba(201,164,92,0.06), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(120,120,140,0.05), transparent 55%);
  background-attachment: fixed;
  color: var(--c-offwhite);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Textura de grão sutil — profundidade premium */
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.04; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Seleção e barra de rolagem */
::selection { background: var(--c-gold); color: #14100a; }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--c-black); }
::-webkit-scrollbar-thumb { background: #2a2a31; border-radius: 10px; border: 3px solid var(--c-black); }
::-webkit-scrollbar-thumb:hover { background: var(--c-gold-deep); }

/* Âncoras não ficam escondidas atrás do header fixo */
section[id], [id] { scroll-margin-top: 96px; }

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

/* ---------- 3. TIPOGRAFIA ---------- */
h1, h2 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  color: var(--c-white);
}
h3, h4 {
  font-family: var(--font-grotesk);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--c-white);
}
h1 { font-size: clamp(2.6rem, 6.4vw, 5.2rem); }
h2 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

/* Palavra em destaque dentro de títulos: itálico serif = toque editorial */
h1 .text-gold, h2 .text-gold { font-style: italic; font-weight: 500; }

p { color: var(--c-gray-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-grotesk);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--c-gold);
  opacity: 0.7;
}

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

.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--c-gray-light); }

/* ---------- 4. LAYOUT ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.section-head p { margin-top: 20px; font-size: 1.08rem; }
.section-head h2 { text-wrap: balance; }

.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--c-border), transparent); border: 0; }

/* ---------- 5. BOTÕES ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-family: var(--font-grotesk);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 19px; height: 19px; flex-shrink: 0; }

.btn-primary {
  background: var(--grad-gold);
  color: #1a1306;
  font-weight: 700;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255,255,255,0.45);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 50px -10px rgba(201,164,92,0.6), inset 0 1px 0 rgba(255,255,255,0.45); }
/* brilho que atravessa o botão no hover */
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.55), transparent);
  transform: skewX(-18deg); transition: left 0.7s var(--ease);
}
.btn-primary:hover::after { left: 140%; }

.btn-ghost {
  background: transparent;
  color: var(--c-offwhite);
  border: 1px solid var(--c-border);
}
.btn-ghost:hover { border-color: var(--c-gold); color: var(--c-white); transform: translateY(-3px); }

.btn-wa { background: #25d366; color: #06371b; }
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -10px rgba(37,211,102,0.5); }

.btn-block { width: 100%; }
.btn-lg { padding: 19px 38px; font-size: 1.05rem; }

/* ---------- 6. HEADER / NAV ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(10,10,11,0.82);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--c-border);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }

.brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-grotesk); font-weight: 600; font-size: 1.12rem; letter-spacing: 0.01em; color: var(--c-white); white-space: nowrap; line-height: 1.1; }
.brand span:last-child { display: flex; flex-direction: column; }
.brand .mark {
  width: 40px; height: 40px; border-radius: 11px;
  display: grid; place-items: center; flex-shrink: 0;
  background: var(--grad-gold); color: #1a1306;
  font-weight: 700; font-size: 1.05rem;
  box-shadow: 0 6px 18px -6px rgba(201,164,92,0.6), inset 0 1px 0 rgba(255,255,255,0.5);
}
.brand small { display: block; font-family: var(--font-body); font-size: 0.6rem; letter-spacing: 0.28em; color: var(--c-gold); text-transform: uppercase; font-weight: 500; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 0.92rem; font-weight: 500; color: var(--c-gray-light); transition: color 0.3s; position: relative; white-space: nowrap; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--c-gold); transition: width 0.3s var(--ease); }
.nav-links a:hover { color: var(--c-white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 30px; height: 30px; justify-content: center; }
.nav-toggle span { display: block; height: 2px; width: 26px; background: var(--c-white); transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- 7. HERO ---------- */
.hero { padding-top: 130px; padding-bottom: 80px; position: relative; overflow: hidden; }
/* Primeira dobra: título forte, mas que deixa o CTA visível sem rolar */
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.6rem); }
.hero .hero-badge { margin-bottom: 20px; }
.hero .lead { margin-bottom: 28px; }
.hero::before { content: ''; position: absolute; inset: 0; background: var(--glow-gold); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--c-border); background: rgba(255,255,255,0.02);
  font-size: 0.82rem; color: var(--c-gray-light); margin-bottom: 26px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--c-gold); box-shadow: 0 0 12px var(--c-gold); }
.hero h1 { margin-bottom: 26px; text-wrap: balance; }
.hero .lead { margin-bottom: 36px; max-width: 552px; color: #cfcfd8; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-trust .item { display: flex; flex-direction: column; }
.hero-trust .num { font-family: var(--font-grotesk); font-size: 1.7rem; font-weight: 700; color: var(--c-white); }
.hero-trust .lbl { font-size: 0.82rem; color: var(--c-gray); }

.hero-visual { position: relative; }
.hero-visual .frame {
  position: relative; border-radius: 20px;
  overflow: hidden; aspect-ratio: 4/5; width: 100%;
  border: 1px solid rgba(201,164,92,0.25);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.02);
  background-color: #141418;
  background-image: linear-gradient(150deg, #1c1c22 0%, #101013 60%, #0c0c0f 100%);
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-visual .frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(10,10,11,0.6)); }
.hero-visual::before {
  content: ''; position: absolute; inset: -8% -8% -8% 8%; z-index: -1; border-radius: 30px;
  background: var(--glow-gold); filter: blur(20px); opacity: 0.7;
}
.hero-visual .float-card {
  position: absolute; bottom: 22px; left: -18px; z-index: 2;
  background: rgba(18,18,20,0.9); backdrop-filter: blur(10px);
  border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  padding: 16px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow);
}
.hero-visual .float-card .ic { width: 42px; height: 42px; border-radius: 10px; background: var(--grad-gold); display: grid; place-items: center; color: #1a1306; }
.hero-visual .float-card .ic svg { width: 22px; height: 22px; }
.hero-visual .float-card b { color: var(--c-white); display: block; font-size: 0.95rem; }
.hero-visual .float-card span { font-size: 0.78rem; color: var(--c-gray); }

/* ---------- 8. LOGOS / FAIXA DE CONFIANÇA ---------- */
.marquee { border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); padding: 22px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: scroll 28s linear infinite; }
.marquee-track span { font-family: var(--font-grotesk); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gray-light); display: inline-flex; align-items: center; gap: 60px; }
.marquee-track span::after { content: '◆'; color: var(--c-gold); font-size: 0.55rem; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- 9. CARDS / GRID GENÉRICO ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: linear-gradient(180deg, var(--c-graphite), var(--c-black));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}
/* borda em gradiente dourado (hairline) */
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(160deg, rgba(201,164,92,0.45), rgba(201,164,92,0) 35%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0.5; transition: opacity 0.5s var(--ease), background 0.5s var(--ease);
  pointer-events: none;
}
.card:hover { transform: translateY(-6px); border-color: rgba(201,164,92,0.35); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; background: linear-gradient(160deg, rgba(231,200,132,0.85), rgba(201,164,92,0.05) 60%); }
.card .ic {
  width: 52px; height: 52px; border-radius: 12px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(201,164,92,0.1); border: 1px solid rgba(201,164,92,0.25);
  color: var(--c-gold);
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 12px; }
.card p { font-size: 0.96rem; }
.premium-stack {
  border-color: rgba(201,164,92,0.45);
  background: linear-gradient(180deg, rgba(201,164,92,0.08), var(--c-black));
}
.product-side {
  display: grid;
  gap: 22px;
}
.sales-hero { padding-bottom: 70px; }
.sales-hero .hero-grid { align-items: center; }
.hero-offer-strip {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin: 2px 0 24px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(201,164,92,0.48);
  background: linear-gradient(135deg, rgba(201,164,92,0.16), rgba(255,255,255,0.035));
  box-shadow: 0 20px 54px -30px rgba(201,164,92,0.72);
}
.hero-offer-strip span {
  font-family: var(--font-grotesk);
  font-size: 0.95rem;
  color: var(--c-gray-light);
}
.hero-offer-strip s {
  color: var(--c-gray);
  text-decoration-color: var(--c-gold);
  text-decoration-thickness: 2px;
}
.hero-offer-strip strong {
  font-family: var(--font-grotesk);
  font-size: clamp(3.2rem, 8vw, 5rem);
  line-height: 0.95;
  color: var(--c-white);
}
.hero-offer-strip small {
  color: var(--c-gold);
  font-family: var(--font-grotesk);
  font-size: 0.86rem;
}
.mini-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}
.mini-proof li {
  padding: 9px 13px;
  border-radius: 100px;
  border: 1px solid rgba(201,164,92,0.28);
  background: rgba(255,255,255,0.035);
  color: var(--c-gray-light);
  font-family: var(--font-grotesk);
  font-size: 0.84rem;
}
.offer-highlight {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin: 20px 0 6px;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(201,164,92,0.48);
  background: linear-gradient(135deg, rgba(201,164,92,0.14), rgba(10,10,11,0.92));
  box-shadow: 0 20px 52px -28px rgba(201,164,92,0.62);
}
.offer-highlight .offer-kicker {
  font-family: var(--font-grotesk);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.offer-highlight .offer-from {
  color: var(--c-gray-light);
  font-size: 1rem;
}
.offer-highlight .offer-from s {
  color: var(--c-gray);
  text-decoration-color: var(--c-gold);
  text-decoration-thickness: 2px;
}
.offer-highlight strong {
  font-family: var(--font-grotesk);
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  color: var(--c-white);
}
.offer-highlight .offer-note {
  font-size: 0.92rem;
  color: var(--c-gray-light);
}
.creative-video-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(201,164,92,0.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(10,10,11,0.92));
  box-shadow: var(--shadow);
}
.creative-video-card .eyebrow { margin-bottom: 16px; }
.creative-video-frame {
  width: min(100%, 360px);
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(201,164,92,0.35);
  background: #08080a;
}
.creative-video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.creative-video-card p {
  margin-top: 16px;
  font-size: 0.92rem;
  color: var(--c-gray-light);
}
.hero-creative {
  max-width: 430px;
  margin: 0 auto;
}
.hero-creative .creative-video-frame {
  width: min(100%, 340px);
}
.offer-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.guarantee-card {
  max-width: 900px;
  margin: 0 auto;
  padding: clamp(32px, 6vw, 58px);
  border-radius: 24px;
  border: 1px solid rgba(201,164,92,0.42);
  background:
    radial-gradient(circle at 85% 0%, rgba(201,164,92,0.14), transparent 42%),
    linear-gradient(135deg, var(--c-graphite), var(--c-black));
  box-shadow: var(--shadow);
  text-align: center;
}
.guarantee-card .eyebrow { justify-content: center; }
.guarantee-card p {
  max-width: 620px;
  margin: 18px auto 28px;
  font-size: 1.05rem;
}
.sales-authority {
  grid-template-columns: 0.85fr 1.15fr;
}
.authority-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(201,164,92,0.36);
  background: var(--c-graphite);
  box-shadow: var(--shadow), 0 22px 60px -34px rgba(201,164,92,0.7);
}
.authority-photo-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
  background: linear-gradient(180deg, transparent 58%, rgba(10,10,11,0.42));
}
.authority-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}
.authority-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}
.authority-stats div {
  padding: 16px 14px;
  border-radius: 16px;
  border: 1px solid rgba(201,164,92,0.24);
  background: rgba(255,255,255,0.035);
}
.authority-stats strong {
  display: block;
  font-family: var(--font-grotesk);
  font-size: 1.25rem;
  color: var(--c-white);
}
.authority-stats span {
  display: block;
  margin-top: 3px;
  font-size: 0.82rem;
  color: var(--c-gray);
}
.future-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  border-style: solid;
}
.future-card h3 { margin-top: 4px; }
.future-card p { flex: 1; }
.future-note {
  margin-top: 18px;
  font-family: var(--font-grotesk);
  font-size: 0.78rem;
  color: var(--c-gray);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

/* numerado */
.num-badge {
  font-family: var(--font-grotesk); font-size: 0.85rem; font-weight: 700;
  color: var(--c-gold); letter-spacing: 0.1em; margin-bottom: 14px; display: block;
}

/* ---------- 10. AUTORIDADE ---------- */
.authority-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.authority-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.authority-photos .ph { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-border); aspect-ratio: 3/4; background-color: #141418; background-image: linear-gradient(150deg, #1c1c22, #0c0c0f); background-size: cover; background-position: center; background-repeat: no-repeat; box-shadow: var(--shadow); }
.authority-photos .ph.tall { aspect-ratio: 3/5; transform: translateY(28px); }
.stat-row { display: flex; gap: 40px; margin-top: 34px; flex-wrap: wrap; }
.stat-row .num { font-family: var(--font-grotesk); font-size: 2.2rem; font-weight: 700; color: var(--c-gold); }
.stat-row .lbl { font-size: 0.85rem; color: var(--c-gray); }

/* ---------- 11. PRODUTO DESTAQUE ---------- */
.product-feature {
  background: linear-gradient(135deg, var(--c-graphite), var(--c-black));
  border: 1px solid var(--c-border);
  border-radius: 24px;
  padding: clamp(30px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.product-feature::before { content: ''; position: absolute; inset: 0; background: var(--glow-gold); pointer-events: none; }
.product-feature .pf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  background: var(--c-red); color: #fff; margin-bottom: 20px;
}
.tag-muted {
  background: rgba(255,255,255,0.04);
  color: var(--c-gold);
  border: 1px solid rgba(201,164,92,0.35);
}
.price-block { display: flex; align-items: baseline; gap: 14px; margin: 26px 0; flex-wrap: wrap; }
.price-block .old { color: var(--c-gray); text-decoration: line-through; font-size: 1.1rem; }
.price-block .now { font-family: var(--font-grotesk); font-size: 2.6rem; font-weight: 700; color: var(--c-white); }
.price-block .now small { font-size: 1rem; color: var(--c-gray-light); font-weight: 400; }
.price-block .save { font-size: 0.82rem; color: var(--c-gold); background: rgba(201,164,92,0.1); padding: 4px 12px; border-radius: 100px; }

.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; color: var(--c-gray-light); font-size: 0.98rem; }
.check-list li svg { width: 22px; height: 22px; color: var(--c-gold); flex-shrink: 0; margin-top: 1px; }

/* linha de confiança (reversão de risco) abaixo dos CTAs */
.trust-mini { margin-top: 18px; font-size: 0.86rem; color: var(--c-gray); font-family: var(--font-grotesk); letter-spacing: 0.02em; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.trust-mini::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 16px rgba(201,164,92,0.65);
  flex-shrink: 0;
}

/* ---------- 7b. HERO: VÍDEO / CREDENCIAL ---------- */
.hero-video {
  position: relative; width: 100%; aspect-ratio: 4/5;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(201,164,92,0.25);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.02);
  background: #141418;
}
.hero-video video, .hero-video img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.hero-video::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,11,0.45));
}
.hero-cred {
  font-family: var(--font-grotesk); font-size: 0.88rem; font-weight: 500;
  color: var(--c-gold); letter-spacing: 0.02em; line-height: 1.7;
}

/* ---------- 10b. CHIPS DE ESTILOS DE TATUAGEM ---------- */
.style-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip {
  font-family: var(--font-grotesk); font-size: 0.86rem; font-weight: 500;
  color: var(--c-gray-light); padding: 10px 18px; border-radius: 100px;
  border: 1px solid var(--c-border); background: rgba(255,255,255,0.02);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.chip:hover { border-color: var(--c-gold); color: var(--c-white); }

/* ---------- 11b2. CARDS DE JORNADA ---------- */
.plan.journey { text-align: left; }
.plan.journey .ic {
  width: 54px; height: 54px; border-radius: 13px; margin-bottom: 20px;
  display: grid; place-items: center;
  background: rgba(201,164,92,0.1); border: 1px solid rgba(201,164,92,0.25);
  color: var(--c-gold);
}
.plan.journey .ic svg { width: 27px; height: 27px; }
.plan.journey .plan-desc { flex-grow: 1; margin-top: 12px; }

/* ---------- 11b. PLANOS (ESCOLHA SEU ACESSO) ---------- */
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; max-width: 940px; margin: 0 auto; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: linear-gradient(180deg, var(--c-graphite), var(--c-black));
  border: 1px solid var(--c-border); border-radius: 20px; padding: 38px 32px;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.plan:hover { transform: translateY(-5px); border-color: rgba(201,164,92,0.35); }
.plan-label { font-family: var(--font-grotesk); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--c-gray-light); }
.plan-name { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; color: #fff; margin: 10px 0 0; line-height: 1.18; }
.plan-price { display: flex; align-items: baseline; gap: 8px; margin: 20px 0 4px; }
.plan-price .val { font-family: var(--font-grotesk); font-weight: 700; font-size: 2.9rem; color: #fff; line-height: 1; }
.plan-price .per { font-size: 0.88rem; color: var(--c-gray); }
.plan-desc { font-size: 0.95rem; color: var(--c-gray-light); margin-bottom: 22px; }
.plan-list { list-style: none; margin: 0 0 28px; padding: 0; flex-grow: 1; }
.plan-list li { display: flex; gap: 11px; align-items: flex-start; padding: 9px 0; font-size: 0.94rem; color: var(--c-gray-light); border-bottom: 1px solid rgba(255,255,255,0.045); }
.plan-list li:last-child { border-bottom: 0; }
.plan-list li svg { width: 19px; height: 19px; color: var(--c-gold); flex-shrink: 0; margin-top: 1px; }
.plan .btn { width: 100%; margin-top: auto; white-space: normal; line-height: 1.3; height: auto; min-height: 54px; }
.plan-card-note { margin-top: 14px; text-align: center; font-size: 0.8rem; color: var(--c-gray); }

/* Card em destaque */
.plan.featured {
  border-color: rgba(201,164,92,0.65);
  background: linear-gradient(180deg, #1b160c, var(--c-black));
  box-shadow: 0 28px 64px -26px rgba(201,164,92,0.45);
}
.plan.featured .plan-label { color: var(--c-gold); }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad-gold); color: #1a1306;
  font-family: var(--font-grotesk); font-weight: 700; font-size: 0.72rem;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 18px;
  border-radius: 100px; white-space: nowrap;
  box-shadow: 0 8px 20px -6px rgba(201,164,92,0.6), inset 0 1px 0 rgba(255,255,255,0.5);
}

.plans-note { max-width: 720px; margin: 36px auto 0; text-align: center; font-size: 0.84rem; color: var(--c-gray); line-height: 1.6; }
.plans-guarantee { text-align: center; margin-top: 14px; font-size: 0.96rem; color: var(--c-gray-light); display: flex; align-items: center; justify-content: center; gap: 8px; }
.plans-guarantee::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 16px rgba(201,164,92,0.65);
}

@media (max-width: 760px) {
  .plans { grid-template-columns: 1fr; max-width: 440px; gap: 38px; }
  .plan { padding: 32px 26px; }
}

/* ---------- 12. MÓDULOS ---------- */
.module-list { display: grid; gap: 16px; }
.module {
  display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  background: var(--c-graphite); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 26px 28px;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.module:hover { border-color: rgba(201,164,92,0.5); transform: translateX(6px); }
.module .mod-num { font-family: var(--font-display); font-style: italic; font-size: 2rem; font-weight: 500; color: var(--c-gold); min-width: 58px; line-height: 1; }
.module h3 { font-size: 1.2rem; margin-bottom: 8px; }
.module p { font-size: 0.94rem; }

/* ---------- 13. DEPOIMENTOS ---------- */
.testimonial {
  background: var(--c-graphite); border: 1px solid var(--c-border);
  border-radius: var(--radius); padding: 30px;
  position: relative; transition: border-color 0.5s var(--ease), transform 0.5s var(--ease);
}
.testimonial::before {
  content: '\201C'; position: absolute; top: 6px; right: 22px;
  font-family: var(--font-display); font-size: 4.5rem; line-height: 1;
  color: var(--c-gold); opacity: 0.16;
}
.testimonial:hover { transform: translateY(-4px); border-color: rgba(201,164,92,0.4); }
.testimonial .stars { color: var(--c-gold); margin-bottom: 16px; letter-spacing: 3px; }
.testimonial p { color: var(--c-offwhite); font-size: 1rem; margin-bottom: 22px; font-style: italic; }
.testimonial .person { display: flex; align-items: center; gap: 14px; }
.testimonial .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--c-surface) center/cover; border: 1px solid var(--c-border); display: grid; place-items: center; color: var(--c-gold); font-family: var(--font-grotesk); font-weight: 700; }
.testimonial .person b { color: var(--c-white); display: block; font-size: 0.95rem; }
.testimonial .person span { font-size: 0.82rem; color: var(--c-gray); }
.placeholder-note { border: 1px dashed var(--c-gold); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 0.72rem; color: var(--c-gold); text-transform: uppercase; letter-spacing: 0.1em; display: inline-block; margin-top: 14px; }

/* ---------- 14. FAQ ACCORDION ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  width: 100%; text-align: left; padding: 26px 0;
  font-family: var(--font-grotesk); font-weight: 600; font-size: 1.1rem; color: var(--c-white);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--c-gold); }
.faq-q .plus { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-q .plus::before, .faq-q .plus::after { content: ''; position: absolute; background: var(--c-gold); transition: transform 0.4s var(--ease); }
.faq-q .plus::before { top: 50%; left: 0; right: 0; height: 2px; transform: translateY(-50%); }
.faq-q .plus::after { left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-50%); }
.faq-item.open .plus::after { transform: translateX(-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-a p { padding-bottom: 26px; color: var(--c-gray-light); }

/* ---------- 15. CTA FINAL ---------- */
.cta-final { text-align: center; }
.cta-box {
  background: linear-gradient(135deg, var(--c-graphite), var(--c-black));
  border: 1px solid var(--c-border);
  border-radius: 24px; padding: clamp(40px, 7vw, 80px) 24px;
  position: relative; overflow: hidden;
}
.cta-box::before { content: ''; position: absolute; inset: 0; background: var(--glow-gold); pointer-events: none; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { margin-bottom: 20px; }
.cta-box p { max-width: 560px; margin: 0 auto 36px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- 16. RODAPÉ ---------- */
.footer { border-top: 1px solid var(--c-border); padding: 70px 0 36px; background: var(--c-graphite); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { font-size: 0.92rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-gold); margin-bottom: 20px; font-family: var(--font-body); }
.footer-grid p { font-size: 0.92rem; margin-bottom: 18px; max-width: 300px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 0.92rem; color: var(--c-gray-light); transition: color 0.3s; }
.footer-links a:hover { color: var(--c-gold); }
.footer-social { display: flex; gap: 12px; margin-top: 8px; }
.footer-social a { width: 42px; height: 42px; border-radius: 10px; border: 1px solid var(--c-border); display: grid; place-items: center; color: var(--c-gray-light); transition: all 0.3s var(--ease); }
.footer-social a:hover { border-color: var(--c-gold); color: var(--c-gold); transform: translateY(-3px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid var(--c-border); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.85rem; color: var(--c-gray); }
.footer-bottom .made { font-size: 0.82rem; }

/* ---------- 17. WHATSAPP FLUTUANTE ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,0.6);
  transition: transform 0.4s var(--ease);
  animation: pulse 2.4s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }

/* ---------- 17b. BARRA FIXA DE CTA ---------- */
.cta-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 997;
  background: rgba(12,12,14,0.86); backdrop-filter: blur(16px);
  border-top: 1px solid rgba(201,164,92,0.28);
  box-shadow: 0 -16px 40px -20px rgba(0,0,0,0.8);
  transform: translateY(110%); transition: transform 0.5s var(--ease);
}
.cta-bar.show { transform: none; }
.cta-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 24px; }
.cta-bar-info { display: flex; flex-direction: column; min-width: 0; }
.cta-bar-title { font-family: var(--font-grotesk); font-weight: 600; font-size: 1rem; color: var(--c-white); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cta-bar-sub { font-size: 0.8rem; color: var(--c-gold); display: flex; align-items: center; gap: 6px; white-space: nowrap; }
.cta-bar-sub::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 14px rgba(201,164,92,0.65);
  flex-shrink: 0;
}
.cta-bar-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.cta-bar-wa { width: 46px; height: 46px; border-radius: 50%; background: #25d366; display: grid; place-items: center; flex-shrink: 0; transition: transform 0.3s var(--ease); }
.cta-bar-wa:hover { transform: scale(1.07); }
.cta-bar-wa svg { width: 24px; height: 24px; color: #fff; }

/* quando a barra aparece, sobe o WhatsApp flutuante para não sobrepor */
body.bar-on .wa-float { bottom: 92px; }

@media (max-width: 560px) {
  .cta-bar-inner { padding: 10px 16px; gap: 12px; }
  .cta-bar-sub { display: none; }
  .cta-bar-title { font-size: 0.88rem; white-space: normal; line-height: 1.2; }
  .cta-bar-wa { display: none; }
  .cta-bar .btn { padding: 13px 20px; font-size: 0.92rem; }
  body.bar-on .wa-float { bottom: 84px; }
}

/* ---------- 17c. GALERIA DE FOTOS ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery .g-item {
  position: relative; margin: 0; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; border: 1px solid var(--c-border); box-shadow: var(--shadow);
}
.gallery .g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease); }
.gallery .g-item:hover img { transform: scale(1.05); }
.gallery .g-item::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(10,10,11,0.5));
  box-shadow: inset 0 0 0 1px rgba(201,164,92,0.18);
}
@media (max-width: 560px) { .gallery { gap: 10px; } }

/* Prova social — grade de prints/resultados de alunos */
.proof-results { margin-top: 64px; }
.print-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.print-slot {
  aspect-ratio: 4/5; border-radius: var(--radius); overflow: hidden; position: relative;
  border: 1px solid var(--c-border); box-shadow: var(--shadow);
  background-color: #141418; background-image: linear-gradient(150deg, #1c1c22, #0c0c0f);
  background-size: cover; background-position: center top; background-repeat: no-repeat;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.print-slot::after { content: ''; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(201,164,92,0.14); }
.print-slot:hover { transform: translateY(-4px); border-color: rgba(201,164,92,0.4); }
@media (max-width: 620px) { .print-grid { grid-template-columns: 1fr 1fr; gap: 12px; } }

/* ---------- 18. PÁGINAS INTERNAS / HEADERS ---------- */
.page-hero { padding-top: 160px; padding-bottom: 70px; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: var(--glow-gold); pointer-events: none; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 640px; margin: 22px auto 0; }
.breadcrumb { font-size: 0.85rem; color: var(--c-gray); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--c-gold); }

/* prose para páginas legais */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.prose h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.prose p, .prose li { color: var(--c-gray-light); margin-bottom: 14px; font-size: 1rem; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 18px; }
.prose strong { color: var(--c-white); }
.prose a { color: var(--c-gold); }
.prose .updated { font-size: 0.85rem; color: var(--c-gray); margin-bottom: 30px; }

/* contato */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; background: var(--c-graphite); border: 1px solid var(--c-border); border-radius: var(--radius); padding: 26px; margin-bottom: 18px; transition: border-color 0.4s; }
.contact-card:hover { border-color: rgba(201,164,92,0.5); }
.contact-card .ic { width: 48px; height: 48px; border-radius: 12px; background: rgba(201,164,92,0.1); border: 1px solid rgba(201,164,92,0.25); display: grid; place-items: center; color: var(--c-gold); flex-shrink: 0; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.contact-card p { font-size: 0.94rem; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.88rem; color: var(--c-gray-light); margin-bottom: 8px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  background: var(--c-charcoal); border: 1px solid var(--c-border);
  color: var(--c-offwhite); font-family: inherit; font-size: 0.96rem;
  transition: border-color 0.3s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--c-gold); }

/* obrigado */
.thanks { text-align: center; padding-top: 180px; min-height: 70vh; }
.thanks .check-circle { width: 90px; height: 90px; border-radius: 50%; background: var(--grad-gold); display: grid; place-items: center; margin: 0 auto 30px; color: #1a1306; }
.thanks .check-circle svg { width: 46px; height: 46px; }

/* ---------- 19. ANIMAÇÕES DE ENTRADA ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- 20. RESPONSIVO ---------- */

/* --- Notebooks / telas médias --- */
@media (max-width: 1080px) {
  .container { padding: 0 28px; }
}

/* --- Tablet (paisagem) e abaixo: empilha blocos de 2 colunas --- */
@media (max-width: 980px) {
  .hero-grid, .authority-grid, .product-feature .pf-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .hero-visual { width: 100%; max-width: 440px; margin: 8px auto 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .authority-photos .ph.tall { transform: none; }
}

/* --- Menu vira hambúrguer --- */
@media (max-width: 900px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 78px; left: 0; right: 0;
    background: rgba(10,10,11,0.97); backdrop-filter: blur(16px);
    padding: 16px 24px 26px; border-bottom: 1px solid var(--c-border);
  }
  .nav.open .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--c-border); width: 100%; }
}

/* --- Tablet retrato --- */
@media (max-width: 720px) {
  body { font-size: 16px; }
  section { padding: clamp(60px, 11vw, 90px) 0; }
  .stat-row { gap: 26px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* --- Celular: tudo em 1 coluna --- */
@media (max-width: 620px) {
  .container { padding: 0 20px; }
  .btn { white-space: normal; line-height: 1.3; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 26px; }
  .module { padding: 22px; gap: 16px; }
  .product-feature { padding: 26px 22px; }
  .hero-actions, .cta-actions { gap: 12px; }
  .hero-actions .btn, .cta-actions .btn, .price-block { width: 100%; }
  .cta-actions { flex-direction: column; }
  .price-block { justify-content: flex-start; }
  .price-block .now { font-size: 2.2rem; }
  .offer-highlight { width: 100%; }
  .offer-highlight strong { font-size: clamp(3rem, 16vw, 4.3rem); }
  .hero-offer-strip { width: 100%; }
  .hero-offer-strip strong { font-size: clamp(3.2rem, 18vw, 4.6rem); }
  .mini-proof { gap: 8px; }
  .mini-proof li { width: 100%; text-align: center; }
  .offer-actions .btn { width: 100%; }
  .creative-video-card { padding: 20px; }
  .authority-stats { grid-template-columns: 1fr; }
  .stat-row .num { font-size: 1.9rem; }
  .stat-row .num[style], .stat-row div .num { word-break: break-word; }
}

/* --- Celulares pequenos --- */
@media (max-width: 400px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 130px; }
  .hero-visual .float-card { left: 8px; }
  h1 { font-size: clamp(2.1rem, 9vw, 2.6rem); }
}

/* ---------- 21. PÁGINA DO EBOOK (produtos.html) ---------- */

/* Menu simplificado para página de anúncio: só logo + CTA de compra */
.nav-simple .nav-cta { margin-left: auto; }
@media (max-width: 900px) {
  .nav-simple .nav-cta .btn { display: inline-flex; }
}
@media (max-width: 560px) {
  .nav-simple .brand span:last-child { display: none; }
  .nav-simple .nav-cta .btn { padding: 12px 18px; font-size: 0.88rem; min-height: 44px; }
}

/* Capa do eBook no hero */
.ebook-cover-card {
  position: relative;
  width: min(100%, 380px);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,164,92,0.35);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.02);
  background: #141418;
}
.ebook-cover-card img { width: 100%; height: auto; display: block; }
.ebook-cover-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(201,164,92,0.16);
}

/* Chips de entrega */
.ebook-chips {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  max-width: 760px; margin: -24px auto 40px;
}
.ebook-chips li {
  font-family: var(--font-grotesk); font-size: 0.88rem; font-weight: 500;
  color: var(--c-gray-light); padding: 11px 18px; border-radius: 100px;
  border: 1px solid rgba(201,164,92,0.28); background: rgba(255,255,255,0.035);
}

/* Colagem responsiva de páginas */
.ebook-collage {
  max-width: 980px; margin: 0 auto 56px;
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(201,164,92,0.3);
  box-shadow: var(--shadow);
  background: #141418;
}
.ebook-collage img { width: 100%; height: auto; display: block; }

/* Carrossel scroll-snap */
.ebook-carousel-wrap { max-width: 1080px; margin: 0 auto; }
.ebook-carousel-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 20px;
}
.ebook-carousel-head h3 { font-size: 1.25rem; }
.ebook-carousel-nav { display: flex; gap: 10px; }
.ec-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--c-border); background: rgba(255,255,255,0.03);
  color: var(--c-offwhite);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ec-btn:hover { border-color: var(--c-gold); color: var(--c-gold); transform: translateY(-2px); }
.ec-btn:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.ec-btn svg { width: 22px; height: 22px; }

.ebook-carousel {
  display: flex; gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 4px 4px 18px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-gold-deep) transparent;
}
.ebook-carousel:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 4px; border-radius: 12px; }
.ec-slide {
  flex: 0 0 auto;
  width: min(72vw, 300px);
  scroll-snap-align: start;
}
.ec-slide figure { margin: 0; }
.ec-zoom {
  display: block; width: 100%; padding: 0;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--c-border);
  background: #141418;
  box-shadow: var(--shadow);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.ec-zoom:hover { border-color: rgba(201,164,92,0.5); transform: translateY(-4px); }
.ec-zoom:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 3px; }
.ec-zoom img { width: 100%; height: auto; display: block; }
.ec-slide figcaption {
  margin-top: 12px; font-size: 0.88rem; line-height: 1.5;
  color: var(--c-gray-light); padding: 0 4px;
}
.ebook-note {
  margin-top: 18px; font-size: 0.84rem; color: var(--c-gray);
  text-align: center;
}

/* Lightbox acessível e leve */
.ebook-lightbox { position: fixed; inset: 0; z-index: 1200; display: grid; place-items: center; padding: 24px; }
.ebook-lightbox[hidden] { display: none; }
.elb-backdrop { position: absolute; inset: 0; background: rgba(6,6,8,0.9); backdrop-filter: blur(4px); }
.elb-content {
  position: relative; z-index: 1; margin: 0;
  max-width: min(92vw, 560px); max-height: 92vh;
  display: flex; flex-direction: column;
}
.elb-content img {
  width: 100%; height: auto; max-height: 78vh; object-fit: contain;
  border-radius: 14px; border: 1px solid rgba(201,164,92,0.4);
  background: #141418;
}
.elb-content figcaption { margin-top: 12px; text-align: center; font-size: 0.92rem; color: var(--c-gray-light); }
.elb-close {
  position: absolute; top: -14px; right: -8px; z-index: 2;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-gold); color: #1a1306;
  font-size: 1.5rem; line-height: 1; font-weight: 700;
  display: grid; place-items: center;
  box-shadow: var(--shadow-gold);
}
.elb-close:focus-visible { outline: 2px solid var(--c-white); outline-offset: 3px; }

@media (max-width: 620px) {
  .ebook-chips { margin-top: -12px; }
  .ebook-chips li { font-size: 0.84rem; padding: 10px 14px; }
  .ebook-carousel-head { flex-direction: column; align-items: flex-start; }
  .ec-slide { width: 76vw; }
  .elb-close { top: -18px; right: 2px; }
}

/* Acessibilidade: reduz movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
