/* ════════════════════════════════════════════════════════════
   NARA MITSUBISHI · SHARED STYLES
   Importar em toda página: <link rel="stylesheet" href="/css/shared.css">
════════════════════════════════════════════════════════════ */

:root {
  --red:        #F07020;
  --red-deep:   #C25A16;
  --red-soft:   rgba(240, 112, 32, 0.10);
  --green:      #5BA130;
  --green-deep: #3E7A1F;
  --green-soft: rgba(91, 161, 48, 0.12);
  --black:      #050505;
  --carbon:     #0C0C0C;
  --graphite:   #141414;
  --line:       rgba(255, 255, 255, 0.06);
  --line-strong:rgba(255, 255, 255, 0.14);
  --white:      #F5F3F0;
  --muted:      #807A72;
  --dim:        #4A4640;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: none; border: none; background: none; color: inherit; }

/* ─── CURSOR ─── */
.cursor-dot {
  position: fixed; width: 6px; height: 6px;
  background: var(--red); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: transform 0.18s, opacity 0.2s;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(245, 243, 240, 0.4);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.4s cubic-bezier(.23,1,.32,1), width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--red); }
.cursor-ring.cinema { width: 110px; height: 110px; border-color: var(--white); background: rgba(240, 112, 32,0.08); }
.cursor-label {
  position: fixed; pointer-events: none; z-index: 9999;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); font-weight: 600;
  transform: translate(-50%, -50%);
  opacity: 0; transition: opacity 0.3s;
}
.cursor-label.show { opacity: 1; }
@media (max-width: 900px) {
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-label { display: none; }
  button, a { cursor: pointer !important; }
}

/* ─── LOADER ─── */
#loader {
  position: fixed; inset: 0; background: var(--black); z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 28px;
}
.loader-mark {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px; letter-spacing: 8px; font-weight: 600;
  text-transform: uppercase; color: var(--white);
}
.loader-mark svg { width: 26px; height: 24px; }
.loader-bar { width: 240px; height: 1px; background: var(--graphite); overflow: hidden; position: relative; }
.loader-bar::after {
  content:''; position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; background: var(--red);
  transform-origin: left; transform: scaleX(0);
  animation: loadFill 1.4s ease-out forwards;
}
@keyframes loadFill { to { transform: scaleX(1); } }

/* ─── OVERLAYS ─── */
.vignette {
  position: fixed; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse at 50% 40%, transparent 30%, rgba(0,0,0,0.85) 100%);
}
.grain {
  position: fixed; inset: 0; z-index: 2; pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ─── NAV ─── */
.page-transition {
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(240, 112, 32,0.12), transparent 42%),
    #050505;
  transform: scaleY(0);
}
.page-transition.active { transform: scaleY(1); }
.page-transition-mark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 12px; letter-spacing: 5px;
  text-transform: uppercase; font-weight: 700;
  color: var(--white);
}
.page-transition-mark svg { width: 28px; height: 28px; }
body.is-transitioning { pointer-events: none; }

nav.main-nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 28px 64px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.4s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
nav.main-nav.scrolled {
  padding: 18px 64px;
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom-color: var(--line);
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark { display: none; }
.brand-text {
  display: inline-block; width: 168px; height: 44px;
  background: url('/assets/plenus/logo-plenus-full.png') left center / contain no-repeat;
  font-size: 0; color: transparent; line-height: 0;
}
.brand-text small { display: none; }

.nav-links { display: flex; gap: 44px; list-style: none; }
.nav-links a {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); font-weight: 500; position: relative;
  transition: color 0.3s;
}
.nav-links a.active { color: var(--white); }
.nav-links a::after {
  content:''; position: absolute; bottom: -8px; left: 0;
  width: 100%; height: 1px; background: var(--red);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s cubic-bezier(.23,1,.32,1);
}
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: var(--white);
  padding: 13px 26px;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600;
  transition: background 0.3s, transform 0.3s;
}
.nav-cta:hover { background: var(--red-deep); transform: translateY(-1px); }

/* ─── COMMON SECTIONS ─── */
section { position: relative; z-index: 10; }

.eyebrow {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); font-weight: 600;
  display: flex; align-items: center; gap: 18px;
}
.eyebrow::before {
  content:''; width: 32px; height: 1px; background: var(--red); flex-shrink: 0;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(44px, 5.5vw, 92px);
  font-weight: 700; line-height: 0.95; letter-spacing: -2.5px;
  max-width: 720px;
}
.section-title em {
  font-family: 'Manrope', sans-serif;
  font-style: italic; font-weight: 700; color: var(--red);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 600; font-family: 'Manrope', sans-serif;
  transition: all 0.4s cubic-bezier(.23,1,.32,1);
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-deep); transform: translateY(-2px); }
.btn-ghost { border: 1px solid var(--line-strong); color: var(--white); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn .arrow { transition: transform 0.4s; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-mini {
  padding: 14px 22px;
  font-size: 9.5px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 600; font-family: 'Manrope', sans-serif;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all 0.35s;
}
.btn-mini.solid { background: var(--red); color: var(--white); }
.btn-mini.solid:hover { background: var(--red-deep); }
.btn-mini.outline { border: 1px solid var(--line-strong); color: var(--white); }
.btn-mini.outline:hover { border-color: var(--red); color: var(--red); }

/* ─── PAGE HEADER (sub-pages) ─── */
.page-header {
  padding: 200px 64px 120px;
  position: relative;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.page-header-eye {
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 28px;
}
.page-header h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(54px, 7vw, 120px);
  font-weight: 700; line-height: 0.92; letter-spacing: -3px;
  max-width: 1100px; margin-bottom: 32px;
}
.page-header h1 em {
  font-family: 'Manrope', sans-serif;
  font-style: italic; font-weight: 700; color: var(--red);
  letter-spacing: -2px;
}
.page-header-sub {
  font-size: 15px; color: var(--muted); line-height: 1.75;
  max-width: 560px; font-weight: 300;
}

/* ─── FORM FIELDS ─── */
.form-field { position: relative; }
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--line-strong);
  padding: 18px 0 14px;
  font-size: 15px; font-family: 'Inter', sans-serif;
  color: var(--white); outline: none; font-weight: 300;
  transition: border-color 0.3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--red); }
.form-field label {
  position: absolute; top: 18px; left: 0;
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--muted); pointer-events: none;
  transition: all 0.3s; font-weight: 500;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: -10px; font-size: 9px; color: var(--red);
}

/* ─── FOOTER ─── */
footer.main-footer {
  padding: 88px 64px 40px;
  background: #030303;
  border-top: 1px solid var(--line);
  position: relative; z-index: 10;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px; margin-bottom: 72px;
}
.footer-brand .brand { margin-bottom: 26px; }
.footer-brand p {
  font-size: 12px; color: var(--muted);
  line-height: 1.75; max-width: 280px; font-weight: 300;
}
.footer-col h4 {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); margin-bottom: 26px; font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.footer-col a {
  font-size: 13px; color: var(--white); font-weight: 400;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--red); }
.footer-bottom {
  padding-top: 36px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 11px; color: var(--dim); letter-spacing: 0.5px; }

/* ─── REVEAL ─── */
.reveal { opacity: 0; transform: translateY(40px); }

/* ─── TEST DRIVE SECTION (shared across model pages) ─── */
.td-section {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--carbon);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.td-left {
  padding: 120px 64px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; justify-content: center;
}
.td-eyebrow {
  font-family: 'Manrope', sans-serif; font-size: 10px; letter-spacing: 4px;
  text-transform: uppercase; color: var(--red); font-weight: 600;
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.td-eyebrow::before { content:''; width: 32px; height: 1px; background: var(--red); }
.td-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(36px, 4vw, 68px);
  font-weight: 700; letter-spacing: -3px; line-height: 0.95; margin-bottom: 20px;
}
.td-title em { font-family: 'Manrope', sans-serif; font-style: italic; font-weight: 700; color: var(--red); }
.td-desc { font-size: 14px; color: var(--muted); line-height: 1.8; max-width: 420px; margin-bottom: 40px; }
.td-perks { display: flex; flex-direction: column; gap: 12px; }
.td-perk {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--muted);
}
.td-perk-dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

.td-right {
  padding: 120px 64px;
}
.td-form { display: flex; flex-direction: column; gap: 16px; }
.td-field { display: flex; flex-direction: column; gap: 8px; }
.td-label {
  font-family: 'Manrope', sans-serif; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--muted); font-weight: 600;
}
.td-input, .td-select {
  background: none; border: 1px solid var(--line-strong); color: var(--white);
  padding: 16px 18px; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 300;
  width: 100%; appearance: none; -webkit-appearance: none; outline: none;
  transition: border-color 0.3s;
}
.td-input::placeholder { color: var(--dim); }
.td-input:focus, .td-select:focus { border-color: var(--red); }
.td-select { cursor: none; }
.td-select option { background: var(--graphite); color: var(--white); }
.td-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.td-submit {
  background: var(--red); border: none; color: #fff;
  padding: 18px 32px; font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  cursor: none; transition: background 0.3s; margin-top: 8px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.td-submit:hover { background: var(--red-deep); }
.td-note { font-size: 11px; color: var(--dim); text-align: center; margin-top: 8px; }

@media (max-width: 900px) {
  .td-section { grid-template-columns: 1fr; }
  .td-left { padding: 80px 22px; border-right: none; border-bottom: 1px solid var(--line); }
  .td-right { padding: 64px 22px; }
  .td-row { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   MEGA MENU (auto-injected by shared.js no hover de "Modelos")
════════════════════════════════════════════════════════════ */
.mega {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99;
  background: rgba(8, 8, 8, 0.92);
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  border-bottom: 1px solid var(--line-strong);
  padding: 110px 64px 56px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.45s cubic-bezier(.23,1,.32,1),
              transform 0.55s cubic-bezier(.23,1,.32,1),
              visibility 0s linear 0.45s;
  pointer-events: none;
}
.mega.open {
  opacity: 1; visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.5s cubic-bezier(.23,1,.32,1),
              transform 0.6s cubic-bezier(.23,1,.32,1),
              visibility 0s linear 0s;
}
.mega-inner {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 56px;
  max-width: 1640px; margin: 0 auto;
}
.mega-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.mega-card {
  position: relative;
  background: var(--carbon);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 20px;
  text-decoration: none;
  color: var(--white);
  overflow: hidden;
  transition: background 0.5s;
  cursor: none;
  min-height: 320px;
}
.mega-card:hover { background: var(--graphite); }
.mega-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 0%; height: 1px; background: var(--red);
  transition: width 0.6s cubic-bezier(.23,1,.32,1);
}
.mega-card:hover::before { width: 100%; }

.mega-card-img {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 60%, rgba(240, 112, 32,0.08) 0%, transparent 60%);
  display: flex; align-items: center; justify-content: center;
}
.mega-card-img img {
  max-width: 92%; max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,0.6));
  transform: scale(1) translateY(0);
  transition: transform 0.7s cubic-bezier(.23,1,.32,1);
}
.mega-card:hover .mega-card-img img {
  transform: scale(1.08) translateY(-4px);
}
.mega-card-img-fallback {
  font-family: 'Manrope', sans-serif;
  font-size: 56px; font-weight: 800;
  color: rgba(240, 112, 32,0.18);
  letter-spacing: -2px;
  line-height: 1;
}

.mega-card-info { display: flex; flex-direction: column; gap: 6px; }
.mega-cat {
  font-family: 'Manrope', sans-serif;
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 4px;
}
.mega-card-info h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: -0.5px; line-height: 1.05;
  margin-bottom: 4px;
}
.mega-card-info .price {
  font-size: 12px; color: var(--muted);
  font-weight: 400; letter-spacing: 0.3px;
}

.mega-cta {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); font-weight: 700;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.4s, transform 0.5s cubic-bezier(.23,1,.32,1);
}
.mega-card:hover .mega-cta { opacity: 1; transform: translateX(0); }
.mega-cta::after {
  content: '→';
  display: inline-block;
  transition: transform 0.4s;
}
.mega-card:hover .mega-cta::after { transform: translateX(4px); }

.mega-side { display: flex; flex-direction: column; gap: 8px; }
.mega-side-eye {
  font-family: 'Manrope', sans-serif;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.mega-side-eye::before { content:''; width: 24px; height: 1px; background: var(--red); }
.mega-side-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Manrope', sans-serif;
  font-size: 14px; color: var(--white); font-weight: 500;
  text-decoration: none;
  transition: color 0.3s, padding 0.4s;
  cursor: none;
}
.mega-side-link:hover {
  color: var(--red);
  padding-left: 8px;
}
.mega-side-link::after {
  content: '→';
  font-size: 13px; color: var(--dim);
  transition: color 0.3s, transform 0.4s;
}
.mega-side-link:hover::after { color: var(--red); transform: translateX(4px); }

/* mega backdrop scrim atrás (apenas escurece o resto) */
.mega-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  pointer-events: none;
}
.mega-scrim.open {
  opacity: 1; visibility: visible;
  transition: opacity 0.4s ease;
}

/* mobile: mega menu vira drawer simples */
@media (max-width: 1080px) {
  .mega { padding: 100px 32px 40px; }
  .mega-inner { grid-template-columns: 1fr; gap: 32px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-card { min-height: auto; flex-direction: row; align-items: center; gap: 24px; }
  .mega-card-img { height: 90px; min-width: 130px; }
}
@media (max-width: 680px) {
  .mega { padding: 90px 22px 32px; }
  .mega-card { flex-direction: column; align-items: flex-start; }
  .mega-card-img { width: 100%; height: 110px; }
}

/* ════════════════════════════════════════════════════════════
   CINEMA · scrollytelling pinado (reusável em qualquer página)
════════════════════════════════════════════════════════════ */
.cinema-section { position: relative; background: var(--black); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cinema-pin { height: 100vh; min-height: 700px; position: relative; overflow: hidden; isolation: isolate; }
.cinema-scope {
  position: absolute; left: 0; right: 0;
  height: 9vh;
  background: #020202;
  z-index: 18;
  pointer-events: none;
}
.cinema-scope.top { top: 0; }
.cinema-scope.bottom { bottom: 0; }
.cinema-light {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 0%, transparent 42%, rgba(255,255,255,0.18) 49%, transparent 58%, transparent 100%);
  mix-blend-mode: screen;
  transform: translateX(-120%);
  opacity: 0.32;
  z-index: 9;
  pointer-events: none;
  animation: cinemaLightSweep 6.8s cubic-bezier(.23,1,.32,1) infinite;
}
.cinema-frame { position: absolute; inset: 0; opacity: 0; transition: opacity 1s cubic-bezier(.4,0,.2,1); pointer-events: none; }
.cinema-frame.active { opacity: 1; pointer-events: auto; }
.cinema-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 12s cubic-bezier(.25,0,.25,1);
  filter: brightness(0.45) blur(36px) saturate(120%);
}
.cinema-frame.active .cinema-bg { transform: scale(1.1); }
.cinema-bg-fg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 12s cubic-bezier(.25,0,.25,1), filter 1s ease;
  filter: brightness(0.92) contrast(1.05) drop-shadow(0 40px 80px rgba(0,0,0,0.7));
  z-index: 1;
}
.cinema-frame.active .cinema-bg-fg { transform: scale(1); filter: brightness(1) contrast(1.08) drop-shadow(0 40px 80px rgba(0,0,0,0.7)); }
.cinema-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(95deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 30%, transparent 55%, rgba(0,0,0,0.35) 100%),
    linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 35%);
  pointer-events: none;
}
.cinema-text { position: absolute; bottom: 13%; left: 7%; max-width: 620px; z-index: 10; }
.cinema-text-eye { font-family: 'Manrope', sans-serif; font-size: 10px; letter-spacing: 4.5px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 24px; display: flex; align-items: center; gap: 14px; }
.cinema-text-eye::before { content:''; width: 30px; height: 1px; background: var(--red); display: block; }
.cinema-text h2 { font-family: 'Manrope', sans-serif; font-size: clamp(22px, 2.6vw, 44px); font-weight: 700; line-height: 1.05; letter-spacing: -1px; margin-bottom: 0; color: var(--white); }
.cinema-text h2 em { font-family: 'Manrope', sans-serif; font-style: italic; font-weight: 700; color: var(--red); letter-spacing: -0.5px; }
.cinema-text p { font-size: 15px; color: rgba(245,243,240,0.72); line-height: 1.75; font-weight: 300; max-width: 480px; }
.cinema-frame.active .cinema-text-eye { animation: cinemaTextIn 0.7s cubic-bezier(.23,1,.32,1) 0.04s both; }
.cinema-frame.active .cinema-text h2 { animation: cinemaTextIn 0.82s cubic-bezier(.23,1,.32,1) 0.12s both; }
.cinema-frame.active .cinema-text p { animation: cinemaTextIn 0.82s cubic-bezier(.23,1,.32,1) 0.22s both; }
.cinema-progress { position: absolute; top: 0; left: 0; height: 2px; background: var(--red); z-index: 20; width: 0%; box-shadow: 0 0 12px rgba(240, 112, 32,0.6); }
.cinema-meta-top { position: absolute; top: 48px; left: 56px; right: 56px; z-index: 15; display: flex; justify-content: space-between; align-items: flex-start; pointer-events: none; }
.cinema-chapter { font-family: 'Manrope', sans-serif; font-style: italic; font-size: 18px; color: rgba(245,243,240,0.55); letter-spacing: -0.3px; transition: opacity 0.4s; }
.cinema-counter { font-family: 'Manrope', sans-serif; display: flex; align-items: baseline; gap: 8px; }
.cinema-counter .current { font-size: 48px; font-weight: 800; color: var(--white); letter-spacing: -2px; line-height: 1; transition: color 0.4s; }
.cinema-counter .sep { font-size: 16px; color: var(--muted); font-weight: 500; }
.cinema-counter .total { font-size: 14px; color: var(--muted); font-weight: 500; }
.cinema-dots { position: absolute; bottom: 13%; right: 7%; z-index: 12; display: flex; flex-direction: column; gap: 12px; }
.cinema-dot { width: 28px; height: 1px; background: rgba(255,255,255,0.2); transition: background 0.4s, width 0.4s; cursor: none; border: none; padding: 0; }
.cinema-dot.active { background: var(--red); width: 56px; }
.cinema-dot:hover { background: rgba(255,255,255,0.5); }
.cinema-badge { position: absolute; bottom: 13%; right: 7%; transform: translateY(120px); display: flex; align-items: center; gap: 14px; padding: 14px 22px; background: rgba(5,5,5,0.6); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,0.08); z-index: 13; }
.cinema-badge-dot { width: 8px; height: 8px; background: var(--red); border-radius: 50%; animation: pulseDot 1.6s ease-in-out infinite; }
@keyframes pulseDot { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
@keyframes cinemaLightSweep {
  0%, 38% { transform: translateX(-120%); opacity: 0; }
  52% { opacity: 0.34; }
  72%, 100% { transform: translateX(120%); opacity: 0; }
}
@keyframes cinemaTextIn {
  from { opacity: 0; transform: translate3d(0, 26px, 0); filter: blur(8px); }
  to { opacity: 1; transform: translate3d(0, 0, 0); filter: blur(0); }
}
.cinema-badge-text { font-family: 'Manrope', sans-serif; font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); font-weight: 600; }
.cinema-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 12; font-family: 'Manrope', sans-serif; font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: rgba(245,243,240,0.4); font-weight: 500; transition: opacity 0.4s; }
.cinema-hint.fade { opacity: 0; }

/* Triton gallery masonry */
.triton-gallery { padding: 140px 56px; background: var(--black); border-bottom: 1px solid var(--line); }
.triton-gallery .gallery-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; flex-wrap: wrap; gap: 24px; }
.triton-gallery .gallery-title { font-family: 'Manrope', sans-serif; font-size: clamp(40px, 4.5vw, 72px); font-weight: 700; letter-spacing: -2px; line-height: 1; }
.triton-gallery .gallery-title em { font-family: 'Manrope', sans-serif; font-style: italic; font-weight: 700; color: var(--red); }
.triton-gallery .gallery-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 280px 280px; gap: 16px; }
.g-cell { position: relative; overflow: hidden; cursor: none; background: var(--carbon); }
.g-cell.tall { grid-row: span 2; }
.g-cell.wide { grid-column: span 2; }
/* Sem filter permanente: o filter promove a imagem a uma camada de composição que
   o Chrome (desktop) às vezes não pinta, deixando o bloco preto. Escurecimento vai
   para um overlay (::before), que não promove camada nem quebra o paint. */
.g-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(.23,1,.32,1); }
.g-cell:hover img { transform: scale(1.06); }
.g-cell::before { content: ''; position: absolute; inset: 0; z-index: 1; background: rgba(0,0,0,0.15); pointer-events: none; transition: background 0.5s; }
.g-cell:hover::before { background: rgba(0,0,0,0); }
.g-cell::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.85), transparent 50%); pointer-events: none; }
.g-tag { position: absolute; bottom: 24px; left: 24px; z-index: 5; font-family: 'Manrope', sans-serif; font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); font-weight: 600; transform: translateY(8px); opacity: 0.85; transition: transform 0.5s, opacity 0.5s; }
.g-tag em { font-family: 'Manrope', sans-serif; font-style: italic; font-weight: 700; color: var(--red); letter-spacing: 0; text-transform: none; font-size: 14px; display: block; margin-top: 4px; }
.g-cell:hover .g-tag { transform: translateY(0); opacity: 1; }

@media (max-width: 1080px) {
  .cinema-scope { height: 6vh; }
  .cinema-text { left: 5%; bottom: 16%; max-width: 500px; }
  .cinema-meta-top { left: 32px; right: 32px; top: 32px; }
  .cinema-counter .current { font-size: 36px; }
  .cinema-dots { right: 4%; bottom: 18%; }
  .cinema-badge { right: 4%; bottom: 18%; transform: translateY(80px); }
  .triton-gallery { padding: 96px 32px; }
  .triton-gallery .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 220px 220px; }
  .g-cell.wide, .g-cell.tall { grid-column: auto; grid-row: auto; }
}
@media (max-width: 680px) {
  .cinema-scope { height: 4vh; }
  .cinema-light { display: none; }
  .cinema-text { left: 22px; right: 22px; bottom: 20%; }
  .cinema-text h2 { font-size: 44px; letter-spacing: -2px; }
  .cinema-meta-top { left: 22px; right: 22px; top: 24px; }
  .cinema-counter .current { font-size: 28px; }
  .cinema-chapter { font-size: 14px; }
  .cinema-dots, .cinema-badge { display: none; }
  .triton-gallery { padding: 64px 22px; }
  .triton-gallery .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(5, 220px); }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-light,
  .cinema-frame.active .cinema-text-eye,
  .cinema-frame.active .cinema-text h2,
  .cinema-frame.active .cinema-text p {
    animation: none;
  }
}

/* ════════════════════════════════════════════════════════════
   STICKY CTA · botão flutuante após scroll do hero
════════════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--red);
  color: var(--white);
  font-family: 'Manrope', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 14px 32px rgba(240, 112, 32,0.4), 0 0 0 1px rgba(255,255,255,0.05) inset;
  opacity: 0;
  transform: translateY(28px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(.23,1,.32,1), transform 0.55s cubic-bezier(.23,1,.32,1), background 0.3s;
}
.sticky-cta.visible { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.sticky-cta.suppressed,
.sticky-cta.mobile-suppressed { opacity: 0; transform: translateY(28px) scale(0.96); pointer-events: none; }
.sticky-cta:hover { background: var(--red-deep); transform: translateY(-3px) scale(1); }
.sticky-cta-pulse {
  width: 8px; height: 8px; background: var(--white); border-radius: 50%;
  animation: pulseDot 1.6s ease-in-out infinite;
}
.sticky-cta .arrow { transition: transform 0.4s; }
.sticky-cta:hover .arrow { transform: translateX(4px); }
@media (max-width: 680px) {
  /* Sticky CTA mobile: full-width pill na base (thumb-friendly, não canto) */
  .sticky-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    padding: 16px 22px;
    font-size: 11px;
    letter-spacing: 1.8px;
    gap: 10px;
    min-height: 52px;
    justify-content: center;
    box-shadow: 0 16px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05) inset;
  }
}

/* ════════════════════════════════════════════════════════════
   MOBILE-FIRST UNIVERSAL · padrões aplicados em todas as páginas
   (override por página tem prioridade — inline styles ganham)
   80% dos leads vêm de mobile, então essa é a base.
════════════════════════════════════════════════════════════ */
@media (max-width: 680px) {
  /* Sistema base de touch */
  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }
  body {
    cursor: auto;
    -webkit-tap-highlight-color: rgba(240, 112, 32, 0.18);
  }
  /* iOS: prevenir zoom em input/select/textarea */
  input, select, textarea {
    font-size: 16px !important;
    min-height: 48px;
  }
  textarea { min-height: 96px; }

  /* Page sections — padding lateral mobile (22px universal) */
  section[class$="-section"],
  section[class$="-hero"],
  .page-header,
  .triton-gallery,
  .perf-section,
  .versions-section,
  .gallery-section,
  .specs-strip,
  .td-section,
  .cta-section,
  .stats-section,
  .ofertas-section,
  .servicos-section,
  .produtos-section,
  .unidades-section,
  .contato-section,
  .finder-section,
  .garantia-section,
  .showcase-section,
  .agendar-section,
  .mundo-mit-section,
  .garantia-strip,
  .services-grid-section,
  .color-studio {
    padding-left: 22px;
    padding-right: 22px;
  }

  /* Vertical padding agressivo em mobile — economia de scroll */
  section[class$="-section"]:not(.cinema-section):not(.hero):not([class$="-hero"]),
  .triton-gallery,
  .perf-section,
  .versions-section,
  .gallery-section,
  .agendar-section,
  .mundo-mit-section,
  .services-grid-section,
  .garantia-strip {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  /* Heroes de página interna — top suficiente pra nav fixa */
  section[class$="-hero"] {
    padding-top: 100px;
    padding-bottom: 64px;
    min-height: auto;
  }

  /* Big bg words (texto fantasma atrás) — reduzir */
  [class$="-hero-word"],
  [class$="-bg-word"],
  .showcase-bg-text,
  .cinema-bg-word {
    font-size: clamp(72px, 22vw, 140px) !important;
    letter-spacing: -4px !important;
  }

  /* Hero titles — fluido ao viewport, max 2 linhas */
  [class$="-hero-title"],
  [class$="-hero"] h1 {
    font-size: clamp(36px, 9vw, 56px) !important;
    line-height: 1 !important;
    letter-spacing: -1.6px !important;
    max-width: 32ch;
  }

  [class$="-hero-sub"],
  [class$="-hero"] [class$="-sub"],
  [class$="-hero"] p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    max-width: 38ch;
  }

  /* Section titles — escalar pra mobile */
  .section-title,
  .perf-title,
  .ofertas-title,
  .servicos-title,
  .lineup-title,
  .gallery-title,
  .cta-title,
  .finder-title,
  .garantia-label,
  .agendar-title,
  .mm-title,
  .seminovos-title,
  .stats-headline,
  .showcase-title,
  .contato-left h2,
  .versions-section h2,
  .produto-title {
    font-size: clamp(30px, 8vw, 46px) !important;
    line-height: 1 !important;
    letter-spacing: -1.4px !important;
    max-width: 100%;
  }

  /* Grids universais — qualquer grid 2+ cols vira 1 col */
  [class$="-grid"]:not(.lineup-grid):not(.cinema-frame):not(.gallery-grid):not(.specs-strip-grid):not(.footer-units),
  .perf-grid,
  .pricing-grid,
  .plans-grid,
  .faq-grid,
  .what-grid,
  .calc-grid,
  .sim-bar,
  .seg-grid,
  .seg-panel,
  .vd-models-grid,
  .vd-cta-actions,
  .stats-grid,
  .stats-strip,
  .timeline-list,
  .timeline-grid,
  .sobre-stats,
  .sobre-grid,
  .ofertas-grid,
  .of-grid,
  .of-filters,
  .of-cards,
  .services-grid,
  .cons-models-grid,
  .ass-cta-actions,
  .cons-cta-actions {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  /* Stats grid específico — 2 colunas em mobile pra economizar scroll */
  .specs-strip-grid,
  .stats-strip-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }

  /* Botões — touch target mínimo 48px universal */
  .btn,
  .btn-mini,
  button[type="submit"],
  .form-submit,
  .nav-cta,
  .vd-cta-btn,
  .cons-cta-btn,
  .ass-cta-btn,
  .seg-cta,
  .plan-cta,
  .sim-cta,
  a.btn,
  button.btn {
    min-height: 48px;
    padding-top: 14px;
    padding-bottom: 14px;
    justify-content: center;
    text-align: center;
  }

  /* Touch states (substitui hover) — vermelho na ativação */
  .btn:active,
  .btn-mini:active,
  .nav-cta:active,
  button:active,
  a:active { transform: scale(0.98); }

  /* CTA actions — stack vertical com gap menor */
  .cta-actions,
  .hero-actions,
  .vd-cta-actions,
  .cons-cta-actions,
  .ass-cta-actions {
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .cta-actions .btn,
  .hero-actions .btn,
  .vd-cta-actions .btn,
  .cons-cta-actions .btn,
  .ass-cta-actions .btn {
    width: 100%;
  }

  /* Cards genéricos — padding mobile */
  .perf-card,
  .seg-card,
  .plan-card,
  .vd-model-card,
  .cons-model-card,
  .what-card,
  .timeline-item,
  .agendar-option,
  .servico-card,
  .of-card,
  .servico,
  .produto-card {
    padding: 28px 22px !important;
  }

  /* Forms — touch friendly */
  .form-field,
  .td-field {
    margin-bottom: 4px;
  }
  .td-input,
  .td-select,
  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 16px 16px !important;
  }
  .td-row,
  .form-grid-2 {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  /* Eyebrow mobile — menor mas legível */
  .eyebrow,
  [class$="-eye"]:not(.cinema-text-eye) {
    font-size: 9.5px;
    letter-spacing: 2.4px;
    margin-bottom: 18px !important;
  }
  .eyebrow::before,
  [class$="-eye"]:not(.cinema-text-eye)::before {
    width: 24px;
  }

  /* Eclipse: lineup gallery wrap mobile */
  .triton-gallery .gallery-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
    gap: 12px;
  }
  .g-cell { min-height: 240px; }
  .g-cell.tall, .g-cell.wide { grid-row: auto; grid-column: auto; }

  /* Footer mobile — units stack */
  .footer-units {
    grid-template-columns: 1fr !important;
  }
  .footer-tagline { font-size: 18px !important; }

  /* Cursor custom desabilitado em touch */
  .cursor-dot, .cursor-ring, .cursor-label { display: none !important; }
}

/* Touch primary detection — quando dispositivo é touch (sem mouse) */
@media (hover: none) and (pointer: coarse) {
  body { cursor: auto !important; }
  .cursor-dot, .cursor-ring, .cursor-label { display: none !important; }
  /* hover effects → não disparam em touch (browsers lidam), mas garantir transição limpa */
  a, button { cursor: pointer; }
}

/* ════════════════════════════════════════════════════════════
   FOOTER REDESIGN · mais alma, hierarquia, blocks de contato
════════════════════════════════════════════════════════════ */
footer.main-footer {
  position: relative;
  overflow: hidden;
}
footer.main-footer::before {
  content: '';
  position: absolute; top: 0; left: 50%;
  width: 70%; height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.5;
}
footer.main-footer::after {
  content: '';
  position: absolute; bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 112, 32,0.06), transparent 70%);
  pointer-events: none;
}
.footer-top {
  position: relative;
  z-index: 2;
}
.footer-brand {
  position: relative;
}
.footer-brand p {
  font-size: 13px;
  margin-bottom: 24px;
}
.footer-contacts {
  display: flex; flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--white);
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s, padding 0.3s;
}
.footer-contact-item:hover { color: var(--red); padding-left: 4px; }
.footer-contact-item svg {
  width: 14px; height: 14px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}
.footer-contact-item small {
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 4px;
}
.footer-units {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.footer-unit {
  background: #050505;
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-unit-tag {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); font-weight: 700;
}
.footer-unit-name {
  font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 700;
  letter-spacing: -0.3px;
}
.footer-unit-addr {
  font-size: 12px; color: var(--muted); line-height: 1.6; font-weight: 300;
}
.footer-unit-tel {
  font-family: 'Manrope', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--white);
  text-decoration: none;
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: color 0.3s;
}
.footer-unit-tel:hover { color: var(--red); }
.footer-tagline {
  position: relative; z-index: 2;
  font-family: 'Manrope', sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  letter-spacing: -0.5px;
  margin-bottom: 24px;
  padding-top: 12px;
}
.footer-tagline em { color: var(--red); font-style: italic; }
.footer-bottom { position: relative; z-index: 2; }

@media (max-width: 680px) {
  .footer-units { grid-template-columns: 1fr; }
  .footer-tagline { font-size: 18px; }
}

/* ════════════════════════════════════════════════════════════
   TYPOGRAPHY OVERRIDE · Mitsubishi-grade
   Sobrescreve TODOS os <em> antigos (Cormorant serif) com
   Manrope italic peso 700 — coerência tipográfica total
════════════════════════════════════════════════════════════ */
h1 em, h2 em, h3 em, h4 em, h5 em, h6 em,
p em, span em,
.hero-title em, .model-hero-title em, .section-title em,
.lineup-title em, .gallery-title em, .cinema-text h2 em,
.cta-title em, .perf-title em, .finder-title em,
.garantia-label em, .agendar-title em, .mm-title em,
.stats-headline em, .ofertas-title em, .showcase-title em,
.unidade-name em, .footer-tagline em, .footer-tagline,
.contato-left h2 em, .td-title em, .servicos-title em,
.produto-title em, .seminovos-title em, .servico-name em,
.mm-benefit-name em, .garantia-title em, .versions-head em,
.brand-text em {
  font-family: 'Manrope', sans-serif !important;
  font-style: italic !important;
  font-weight: 700 !important;
  color: var(--red) !important;
  letter-spacing: inherit;
}
.footer-tagline {
  font-style: italic !important;
  font-weight: 500 !important;
  font-size: 19px !important;
  color: rgba(245, 243, 240, 0.55) !important;
  letter-spacing: -0.2px !important;
}
.footer-tagline em {
  font-weight: 700 !important;
}

/* Versões cursivas internas (showcase-bottom, version-tagline, mm-title b)
   também herdam Manrope */
.showcase-angle, .version-tagline, .gallery-tag em, .g-tag em {
  font-family: 'Manrope', sans-serif !important;
  font-style: italic !important;
  font-weight: 500 !important;
  letter-spacing: -0.2px !important;
}

/* ─── RESPONSIVE BASE ─── */
@media (max-width: 1080px) {
  nav.main-nav { padding: 20px 28px; }
  nav.main-nav.scrolled { padding: 14px 28px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .page-header { padding: 160px 32px 96px; }
  footer.main-footer { padding: 64px 32px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 680px) {
  nav.main-nav { padding: 16px 20px; }
  nav.main-nav.scrolled { padding: 13px 20px; }
  .page-header { padding: 140px 20px 80px; }
  footer.main-footer { padding: 56px 20px 28px; }
  .brand { gap: 10px; }
  .brand-mark { width: 28px; height: 25px; }
  .brand-text { width: 140px; height: 37px; }
  .brand-text small { display: none; }
  .model-hero .model-hero-actions {
    width: 100%;
    max-width: 360px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .model-hero .model-hero-actions .btn {
    min-width: 0;
    width: 100%;
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 9px;
    letter-spacing: 1.8px;
    white-space: nowrap;
  }
}
@media (max-width: 420px) {
  nav.main-nav { padding: 14px 16px; }
  nav.main-nav.scrolled { padding: 12px 16px; }
  .model-hero .model-hero-actions { max-width: calc(100vw - 32px); }
  .model-hero .model-hero-actions .btn { padding-left: 12px; padding-right: 12px; }
}

/* ════════════════════════════════════════════════════════════
   HAMBURGER · botão mobile (auto-injetado via shared.js)
════════════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px 6px;
  background: none; border: none;
  cursor: pointer !important;
  z-index: 101; flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.4s cubic-bezier(.23,1,.32,1), opacity 0.3s, width 0.3s;
  transform-origin: center;
}
.nav-hamburger span:nth-child(2) { width: 14px; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }
@media (max-width: 1080px) {
  .nav-hamburger { display: flex; }
}

/* ════════════════════════════════════════════════════════════
   MOBILE DRAWER · painel lateral de navegação
════════════════════════════════════════════════════════════ */
.mobile-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(380px, 100vw);
  height: 100vh;
  height: 100dvh;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(28px) saturate(130%);
  -webkit-backdrop-filter: blur(28px) saturate(130%);
  border-left: 1px solid var(--line-strong);
  z-index: 200;
  transform: translateX(105%);
  transition: transform 0.55s cubic-bezier(.23,1,.32,1);
  display: flex; flex-direction: column;
  overflow-y: auto; overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer::-webkit-scrollbar { display: none; }
.mobile-drawer { scrollbar-width: none; }

.drawer-scrim {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0s linear 0.4s;
  pointer-events: none;
}
.drawer-scrim.open {
  opacity: 1; visibility: visible; pointer-events: auto;
  transition: opacity 0.4s ease;
}

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line-strong);
  color: var(--muted); cursor: pointer !important;
  transition: border-color 0.3s, color 0.3s;
}
.drawer-close:hover { border-color: var(--red); color: var(--white); }

.drawer-nav {
  padding: 18px 22px 14px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: 'Manrope', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: -0.5px; line-height: 1;
  color: var(--white); text-decoration: none;
  transition: color 0.3s, padding-left 0.35s;
  cursor: pointer !important;
}
.drawer-nav-link:last-child { border-bottom: none; padding-bottom: 4px; }
.drawer-nav-link:hover, .drawer-nav-link:active { color: var(--red); padding-left: 6px; }
.drawer-nav-link-sm { font-size: 14px; font-weight: 500; letter-spacing: 0; padding: 10px 0; color: var(--muted); }
.drawer-nav-link-sm:hover, .drawer-nav-link-sm:active { color: var(--white); }
.drawer-nav-side { border-top: none; }
.drawer-nav-footer { border-top: 1px solid var(--line); padding-top: 14px; }
.drawer-nav-arrow {
  font-size: 13px; color: var(--dim);
  transition: color 0.3s, transform 0.35s; flex-shrink: 0;
}
.drawer-nav-link:hover .drawer-nav-arrow,
.drawer-nav-link:active .drawer-nav-arrow { color: var(--red); transform: translateX(4px); }

.drawer-section-label {
  padding: 16px 22px 10px;
  font-size: 9px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 600;
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.drawer-section-label::before { content:''; width: 16px; height: 1px; background: var(--red); flex-shrink: 0; }

.drawer-models {
  display: flex; flex-direction: column; gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.drawer-model-card {
  background: var(--carbon);
  padding: 14px 22px;
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: var(--white);
  transition: background 0.3s;
  position: relative; overflow: hidden;
  cursor: pointer !important;
}
.drawer-model-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 0%; height: 1px; background: var(--red);
  transition: width 0.5s;
}
.drawer-model-card:hover { background: var(--graphite); }
.drawer-model-card:hover::before, .drawer-model-card:active::before { width: 100%; }
.drawer-model-img {
  width: 70px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.drawer-model-img img {
  max-width: 100%; max-height: 100%; object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.6)) contrast(2.0) brightness(0.9);
}
.drawer-model-info { flex: 1; min-width: 0; }
.drawer-model-cat {
  font-size: 8px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--red); font-weight: 600; margin-bottom: 3px;
}
.drawer-model-name {
  font-family: 'Manrope', sans-serif;
  font-size: 14px; font-weight: 700; letter-spacing: -0.3px;
}
.drawer-model-price { font-size: 10px; color: var(--muted); margin-top: 2px; }
.drawer-model-arr {
  color: var(--dim); font-size: 12px; flex-shrink: 0;
  transition: color 0.3s, transform 0.35s;
}
.drawer-model-card:hover .drawer-model-arr,
.drawer-model-card:active .drawer-model-arr { color: var(--red); transform: translateX(3px); }

.drawer-contacts {
  padding: 16px 22px;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--line); flex-shrink: 0;
}
.drawer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--muted);
  text-decoration: none; transition: color 0.3s;
}
.drawer-contact-item:hover { color: var(--white); }
.drawer-contact-item svg {
  width: 13px; height: 13px; stroke: var(--red);
  fill: none; stroke-width: 1.5; flex-shrink: 0;
}
.drawer-contact-item small {
  font-size: 8px; letter-spacing: 1.8px; text-transform: uppercase;
  color: var(--dim); margin-right: 2px;
}

.drawer-cta {
  margin: 14px 22px 28px;
  background: var(--red); color: var(--white);
  padding: 17px 20px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  transition: background 0.3s; flex-shrink: 0;
  cursor: pointer !important;
}
.drawer-cta:hover { background: var(--red-deep); }

/* ════════════════════════════════════════════════════════════
   MOBILE CINEMA · swipe horizontal (em vez de pin scroll-driven)
   Em mobile/tablet, vira um carrossel snap-x natural.
   shared.js detecta o tamanho e desabilita o ScrollTrigger pin.
════════════════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════════════════
   BLEND FIX · elimina retângulo visível em imagens de estúdio
   mix-blend-mode: screen → pixels preto-de-estúdio evaporam,
   apenas a carroceria visível permanece sobre o fundo da página
════════════════════════════════════════════════════════════ */

/* ─── Version configurator ───
   contrast(1.55): pixels de estúdio < ~30% luminosidade → preto puro.
   O carro (partes claras) sobrevive. Mask corta as bordas sobra. */
.version-visual {
  background: var(--carbon) !important;
  position: relative !important;
  overflow: hidden !important;
}
.version-visual::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse 80% 86% at 55% 54%,
    transparent 0%,
    transparent 50%,
    rgba(12,12,12,0.5) 64%,
    rgba(12,12,12,0.9) 78%,
    #0C0C0C 92%
  );
}
.version-visual img {
  position: relative !important; z-index: 1 !important;
  width: 100% !important; max-height: 100% !important;
  object-fit: contain !important;
  filter: contrast(2.2) brightness(0.84) drop-shadow(0 28px 52px rgba(0,0,0,0.9)) !important;
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 6%, black 14%, black 84%, rgba(0,0,0,0.3) 93%, transparent 100%),
    linear-gradient(to right,  transparent 0%, rgba(0,0,0,0.2) 4%, black 12%, black 88%, rgba(0,0,0,0.3) 96%, transparent 100%) !important;
  -webkit-mask-composite: destination-in !important;
  mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 6%, black 14%, black 84%, rgba(0,0,0,0.3) 93%, transparent 100%),
    linear-gradient(to right,  transparent 0%, rgba(0,0,0,0.2) 4%, black 12%, black 88%, rgba(0,0,0,0.3) 96%, transparent 100%) !important;
  mask-composite: intersect !important;
}

/* Hero flutuante dos modelos (contrast remove fundo de estúdio) */
.model-hero-img img {
  filter: contrast(2.2) brightness(0.84)
    drop-shadow(0 60px 100px rgba(0,0,0,0.92))
    drop-shadow(0 18px 46px rgba(240, 112, 32,0.34));
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 6%, black 16%, black 80%, rgba(0,0,0,0.3) 91%, transparent 100%),
    linear-gradient(to right,  transparent 0%, rgba(0,0,0,0.15) 4%, black 12%, black 90%, rgba(0,0,0,0.3) 97%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.15) 6%, black 16%, black 80%, rgba(0,0,0,0.3) 91%, transparent 100%),
    linear-gradient(to right,  transparent 0%, rgba(0,0,0,0.15) 4%, black 12%, black 90%, rgba(0,0,0,0.3) 97%, transparent 100%);
  mask-composite: intersect;
}

/* Color picker stage — blended backdrop */
.color-stage img {
  filter: contrast(2.1) brightness(0.86);
  -webkit-mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 8%, black 18%, black 82%, rgba(0,0,0,0.2) 92%, transparent 100%),
    linear-gradient(to right,  transparent 0%, rgba(0,0,0,0.2) 5%, black 14%, black 86%, rgba(0,0,0,0.2) 95%, transparent 100%);
  -webkit-mask-composite: destination-in;
  mask-image:
    linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.2) 8%, black 18%, black 82%, rgba(0,0,0,0.2) 92%, transparent 100%),
    linear-gradient(to right,  transparent 0%, rgba(0,0,0,0.2) 5%, black 14%, black 86%, rgba(0,0,0,0.2) 95%, transparent 100%);
  mask-composite: intersect;
}

/* ════════════════════════════════════════════════════════════
   MOTION REEL · vídeo em movimento com autoplay no scroll
════════════════════════════════════════════════════════════ */
.motion-reel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.motion-scope {
  position: absolute; left: 0; right: 0;
  height: 9vh;
  background: #020202;
  z-index: 8;
  pointer-events: none;
}
.motion-scope.top { top: 0; }
.motion-scope.bottom { bottom: 0; }
.motion-reel video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.motion-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(5,5,5,0.78) 0%, transparent 42%),
    linear-gradient(to right, rgba(5,5,5,0.52) 0%, transparent 52%);
  z-index: 2;
  pointer-events: none;
}
.motion-hud {
  position: absolute; inset: 0;
  z-index: 6;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 0 64px 13%;
}
.motion-copy { display: flex; flex-direction: column; gap: 16px; }
.motion-eye {
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--red); font-weight: 600;
  display: flex; align-items: center; gap: 14px;
}
.motion-eye::before { content:''; width: 30px; height: 1px; background: var(--red); }
.motion-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 700; letter-spacing: -1.5px; line-height: 1;
  color: var(--white); white-space: nowrap;
}
.motion-sound-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(5,5,5,0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--white); font-weight: 600;
  cursor: none;
  transition: border-color 0.3s, background 0.3s;
  align-self: flex-end;
}
.motion-sound-btn:hover { border-color: var(--red); background: rgba(240, 112, 32,0.08); }
@media (max-width: 1080px) {
  .motion-hud { padding: 0 32px 15%; }
  .motion-scope { height: 6vh; }
}
@media (max-width: 680px) {
  .motion-hud { padding: 0 22px 20%; flex-direction: column; align-items: flex-start; gap: 24px; }
  .motion-title { font-size: 26px; white-space: normal; }
  .motion-scope { height: 4vh; }
  .motion-sound-btn { align-self: flex-start; }
}

@media (max-width: 1080px) {
  .cinema-section[data-mode="mobile"] .cinema-pin {
    height: 80vh;
    min-height: 560px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: row;
  }
  .cinema-section[data-mode="mobile"] .cinema-pin::-webkit-scrollbar { display: none; }
  .cinema-section[data-mode="mobile"] .cinema-pin { scrollbar-width: none; }

  .cinema-section[data-mode="mobile"] .cinema-frame {
    position: relative;
    flex: 0 0 100%;
    width: 100%; height: 100%;
    opacity: 1 !important;
    pointer-events: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .cinema-section[data-mode="mobile"] .cinema-frame .cinema-bg {
    transform: scale(1) !important;
  }
  .cinema-section[data-mode="mobile"] .cinema-frame .cinema-bg-fg {
    transform: scale(1) !important;
  }

  /* HUD ajustes no mobile */
  .cinema-section[data-mode="mobile"] .cinema-meta-top {
    position: sticky;
    pointer-events: none;
  }
  .cinema-section[data-mode="mobile"] .cinema-hint {
    bottom: 22px;
    font-size: 9px;
  }
  .cinema-section[data-mode="mobile"] .cinema-hint::before {
    content: '← deslize →';
    display: block;
    margin-bottom: 6px;
    color: var(--red);
    letter-spacing: 4px;
  }
  /* Dots viram horizontais embaixo */
  .cinema-section[data-mode="mobile"] .cinema-dots {
    display: flex !important;
    flex-direction: row;
    top: auto; right: auto;
    bottom: 56px; left: 50%;
    transform: translateX(-50%);
  }
  .cinema-section[data-mode="mobile"] .cinema-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
  }
  .cinema-section[data-mode="mobile"] .cinema-dot.active {
    width: 24px; height: 8px;
    border-radius: 4px;
    background: var(--red);
  }
}

/* ════════════════════════════════════════════════════════════
   MOBILE PERFORMANCE — reduz filtros pesados em telas ≤1080px
════════════════════════════════════════════════════════════ */
@media (max-width: 1080px) {
  /* Nav blur: 28px → 10px (80% menor) */
  nav.main-nav.scrolled {
    backdrop-filter: blur(10px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(10px) saturate(120%) !important;
  }
  /* Mega menu backdrop */
  .mega {
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }
  /* Mobile drawer backdrop */
  .mobile-drawer {
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
  }
  /* Cinema BG: blur(36px) → blur(12px) */
  .cinema-bg {
    filter: brightness(0.45) blur(12px) saturate(110%) !important;
  }
  /* Cinema car: drop-shadow menor */
  .cinema-bg-fg {
    filter: brightness(0.92) contrast(1.05) drop-shadow(0 20px 40px rgba(0,0,0,0.7)) !important;
  }
  .cinema-frame.active .cinema-bg-fg {
    filter: brightness(1) contrast(1.08) drop-shadow(0 20px 40px rgba(0,0,0,0.7)) !important;
  }
  /* Model hero img: drop-shadow menor, sem vermelho */
  .model-hero-img img {
    filter: contrast(2.0) brightness(0.86)
      drop-shadow(0 24px 44px rgba(0,0,0,0.88))
      drop-shadow(0 8px 20px rgba(240, 112, 32,0.18)) !important;
  }
  /* Color picker stage */
  .color-stage img {
    filter: contrast(1.9) brightness(0.88) !important;
  }
  /* Version picker */
  .version-visual img {
    filter: contrast(2.0) brightness(0.86) drop-shadow(0 14px 28px rgba(0,0,0,0.85)) !important;
  }
  /* Gallery cells: transition mais curta */
  .g-cell img {
    transition: transform 0.6s cubic-bezier(.23,1,.32,1), filter 0.3s !important;
  }
}

@media (max-width: 680px) {
  .sticky-cta {
    left: 16px;
    right: 16px;
    bottom: 14px;
    min-height: 54px;
    justify-content: center;
    padding: 15px 18px;
    font-size: 9.5px;
    letter-spacing: 1.7px;
    box-shadow: 0 12px 28px rgba(240, 112, 32,0.32), 0 0 0 1px rgba(255,255,255,0.06) inset;
  }

  .model-hero {
    min-height: 100svh !important;
    padding: 112px 20px 30px !important;
    justify-content: flex-end !important;
  }
  .model-hero::before {
    filter: blur(18px) saturate(112%) brightness(0.58) !important;
    opacity: 0.92 !important;
  }
  .model-hero::after {
    left: -8% !important;
    right: -8% !important;
    bottom: 30% !important;
    height: 22vh !important;
    filter: blur(14px) !important;
    opacity: 0.7 !important;
  }
  .model-hero-film { height: 5vh !important; }
  .model-hero-bg-word {
    top: 32% !important;
    font-size: 104px !important;
    letter-spacing: -4px !important;
    color: rgba(240, 112, 32,0.08) !important;
  }
  .model-hero-img {
    top: 34% !important;
    width: 164vw !important;
    max-width: none !important;
    transform: translate(-50%, -50%) !important;
  }
  .model-hero-img img {
    filter: contrast(1.7) brightness(0.9)
      drop-shadow(0 28px 50px rgba(0,0,0,0.88))
      drop-shadow(0 10px 24px rgba(240, 112, 32,0.2)) !important;
    -webkit-mask-image: radial-gradient(ellipse 76% 70% at 50% 50%, #000 0%, #000 58%, rgba(0,0,0,0.72) 74%, transparent 94%) !important;
    mask-image: radial-gradient(ellipse 76% 70% at 50% 50%, #000 0%, #000 58%, rgba(0,0,0,0.72) 74%, transparent 94%) !important;
  }
  .model-hero-content {
    max-width: 350px !important;
  }
  .model-hero-eye {
    font-size: 9px !important;
    letter-spacing: 2.5px !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
  }
  .model-hero-eye::before { width: 28px !important; }
  .model-hero-title {
    font-size: 54px !important;
    line-height: 0.92 !important;
    letter-spacing: -2px !important;
    margin-bottom: 18px !important;
  }
  .model-hero-title em { letter-spacing: -1.2px !important; }
  .model-hero-row {
    display: block !important;
  }
  .model-hero-info p {
    font-size: 13px !important;
    line-height: 1.58 !important;
    max-width: 32ch !important;
    margin-bottom: 22px !important;
    color: rgba(245,243,240,0.68) !important;
  }
  .model-hero-price {
    text-align: left !important;
    margin-top: 20px !important;
  }
  .model-hero-price .price {
    font-size: 30px !important;
  }
}

/* ════════════════════════════════════════════════════════════
   ARTICLE · páginas de post do blog (single post)
════════════════════════════════════════════════════════════ */
.article-hero {
  padding: 168px 24px 0;
  max-width: 900px; margin: 0 auto;
  position: relative;
}
.article-back {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-bottom: 40px;
  transition: color .3s, gap .3s;
}
.article-back:hover { color: var(--red); gap: 14px; }
.article-back svg { width: 13px; height: 13px; }
.article-cat {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 26px;
}
.article-cat::before { content:''; width: 26px; height: 1px; background: var(--red); }
.article-h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(32px, 4.6vw, 60px);
  font-weight: 700; line-height: 1.03; letter-spacing: -2px;
  margin-bottom: 30px; max-width: 18ch;
}
.article-h1 em { font-style: italic; color: var(--red); }
.article-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  padding-bottom: 44px; border-bottom: 1px solid var(--line);
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--dim); font-weight: 500;
}
.article-meta .dot { width: 3px; height: 3px; background: var(--dim); border-radius: 50%; }
.article-meta strong { color: var(--muted); font-weight: 600; }

.article-figure { max-width: 1180px; margin: 48px auto 0; padding: 0 24px; }
.article-figure img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line); background: var(--carbon);
}
.article-figure figcaption {
  font-size: 11px; color: var(--dim); letter-spacing: 0.5px;
  margin-top: 14px; text-align: center; font-weight: 400;
}

.article-body { max-width: 760px; margin: 0 auto; padding: 64px 24px 40px; }
.article-lead {
  font-size: clamp(17px, 2vw, 20px); line-height: 1.7;
  color: var(--white); font-weight: 300; margin-bottom: 40px;
  padding-left: 22px; border-left: 2px solid var(--red);
}
.article-body h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700; letter-spacing: -0.8px; line-height: 1.15;
  color: var(--white); margin: 52px 0 20px;
}
.article-body h2:first-of-type { margin-top: 8px; }
.article-body p {
  font-size: 16px; line-height: 1.85; color: #B8B2AA;
  font-weight: 300; margin-bottom: 20px;
}
.article-body strong { color: var(--white); font-weight: 600; }
.article-body ul { list-style: none; margin: 4px 0 26px; display: flex; flex-direction: column; gap: 13px; }
.article-body ul li {
  position: relative; padding-left: 26px;
  font-size: 16px; line-height: 1.7; color: #B8B2AA; font-weight: 300;
}
.article-body ul li::before {
  content: ''; position: absolute; left: 0; top: 11px;
  width: 7px; height: 7px; background: var(--red); border-radius: 50%;
}
.article-divider {
  width: 100%; height: 1px; background: var(--line);
  margin: 48px 0 8px; position: relative;
}

/* FAQ */
.article-faq { max-width: 760px; margin: 0 auto; padding: 24px 24px 40px; }
.article-faq-eye {
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--red); font-weight: 700; margin-bottom: 8px;
  display: flex; align-items: center; gap: 12px;
}
.article-faq-eye::before { content:''; width: 24px; height: 1px; background: var(--red); }
.article-faq h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(26px, 3.2vw, 40px); font-weight: 700;
  letter-spacing: -1.4px; margin-bottom: 36px;
}
.faq-item { border-top: 1px solid var(--line); padding: 26px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 17px; font-weight: 700; letter-spacing: -0.4px;
  color: var(--white); margin-bottom: 12px;
}
.faq-item p {
  font-size: 15px; line-height: 1.75; color: #B8B2AA; font-weight: 300;
}

/* related */
.article-related { max-width: 1180px; margin: 0 auto; padding: 40px 24px 20px; }
.article-related-head {
  font-family: 'Manrope', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 28px;
  display: flex; align-items: center; gap: 12px;
}
.article-related-head::before { content:''; width: 24px; height: 1px; background: var(--red); }
.article-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.rel-card { background: var(--black); padding: 30px 28px; display: flex; flex-direction: column; gap: 14px; transition: background .4s; min-height: 180px; }
.rel-card:hover { background: var(--carbon); }
.rel-card .rel-cat { font-family:'Manrope',sans-serif; font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); font-weight: 700; }
.rel-card h4 { font-family:'Manrope',sans-serif; font-size: 17px; font-weight: 700; letter-spacing: -0.4px; line-height: 1.2; margin-top: auto; }
.rel-card .rel-arrow { font-size: 12px; color: var(--dim); transition: color .3s, transform .3s; }
.rel-card:hover .rel-arrow { color: var(--red); transform: translateX(4px); }

@media (max-width: 780px) {
  .article-related-grid { grid-template-columns: 1fr; }
  .article-hero { padding-top: 120px; }
  .article-body { padding: 48px 22px 32px; }
  .article-h1 { letter-spacing: -1px; }
}
