/* ──────────────────────────────────────────────────────────────
   Sr. Banheiro — Design System
   ────────────────────────────────────────────────────────────── */

:root {
  /* Brand */
  --yellow: #FFC72C;
  --yellow-deep: #E5A800;
  --yellow-soft: #FFE89B;
  --ink: #0E0E10;
  --ink-2: #1B1B1F;
  --cream: #F7F2E6;
  --cream-2: #F1ECDD;
  --white: #FFFFFF;
  --gray-50: #F5F3EE;
  --gray-100: #ECE9E1;
  --gray-200: #DDD9CE;
  --gray-400: #A8A299;
  --gray-500: #75716A;
  --gray-700: #3A3833;
  --gold: #C9A24E;
  --gold-bright: #E0BC6A;
  --gold-deep: #8E6F2C;

  /* Type */
  --font-display: "Archivo Black", "Archivo", Impact, system-ui, sans-serif;
  --font-head: "Archivo", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  /* Layout */
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --radius: 6px;
  --radius-lg: 14px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ────── Containers ────── */
.container { max-width: var(--container); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.container-wide { max-width: 1480px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

/* ────── Typography ────── */
.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.h1, h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(40px, 6vw, 96px); line-height: .9; letter-spacing: -.025em; margin: 0; text-transform: uppercase; }
.h2, h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(32px, 4.4vw, 64px); line-height: .95; letter-spacing: -.02em; margin: 0; text-transform: uppercase; }
.h3, h3 { font-family: var(--font-head); font-weight: 800; font-size: clamp(22px, 2.4vw, 32px); line-height: 1.1; margin: 0; }
.h4 { font-family: var(--font-head); font-weight: 800; font-size: 20px; line-height: 1.2; margin: 0; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gray-500);
}
.eyebrow-dark { color: var(--gray-400); }

/* ────── Buttons ────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .04em; text-transform: uppercase;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-primary:hover { background: var(--ink-2); }
.btn-yellow { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.btn-yellow:hover { background: var(--yellow-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--yellow); }
.btn-gold { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-bright); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.45); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }

.btn .arrow { display: inline-block; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ────── Header ────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--gray-100);
}
.site-header.scrolled { box-shadow: 0 1px 0 var(--gray-100), 0 8px 24px rgba(14,14,16,.04); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 44px; width: auto; }
.brand-dark .brand-logo { filter: brightness(0) invert(1); }
.brand-mark { width: 44px; height: 44px; }
.brand-name { font-family: var(--font-display); font-weight: 900; font-size: 18px; letter-spacing: -.01em; line-height: 1; }
.brand-name small { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 500; color: var(--gray-500); letter-spacing: .08em; text-transform: uppercase; margin-top: 4px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 14px;
  padding: 10px 14px; border-radius: 8px;
  color: var(--ink); transition: background .15s var(--ease), color .15s var(--ease);
}
.nav a:hover { background: var(--gray-100); }
.nav a.active { background: var(--ink); color: var(--yellow); }
.header-cta { display: flex; align-items: center; gap: 12px; }

/* ────── Hero ────── */
.hero-a {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
}
.hero-a-bg {
  position: absolute; inset: 0;
  background: url("photos/rjbanheiro.avif") center 35% / cover no-repeat;
}
.hero-a-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,10,.82) 0%, rgba(10,10,10,.55) 40%, rgba(10,10,10,.08) 78%, rgba(10,10,10,0) 100%),
    linear-gradient(0deg, rgba(10,10,10,.55) 0%, rgba(10,10,10,0) 45%);
}
.hero-a .container {
  position: relative;
  z-index: 2;
  padding-top: 96px;
  padding-bottom: 72px;
}
.hero-a-copy { max-width: 820px; min-width: 0; }
.hero-a-copy .eyebrow { color: var(--yellow); }
.hero-a-copy .display-title {
  color: var(--white);
  font-size: clamp(40px, 7vw, 104px);
  line-height: .92;
  margin-top: 18px;
  word-break: break-word;
  hyphens: auto;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero-a-copy .display-title .yellow-strike {
  background: var(--yellow);
  color: var(--ink);
  padding: 0 .15em;
  display: inline-block;
  transform: rotate(-1deg);
  box-shadow: 6px 6px 0 rgba(0,0,0,.45);
  white-space: nowrap;
  text-shadow: none;
}
.hero-a-copy p.lead {
  max-width: 540px;
  font-size: 18px; line-height: 1.55;
  color: rgba(255,255,255,.92);
  margin: 28px 0 32px;
  text-shadow: 0 1px 12px rgba(0,0,0,.4);
}
.hero-a-cta { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .hero-a { min-height: 0; }
  .hero-a .container { padding-top: 64px; padding-bottom: 48px; }
  .hero-a-copy .display-title { font-size: clamp(34px, 9vw, 64px); }
  .hero-a-bg { background-position: center 30%; }
}

/* Hero stats strip */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  margin-top: 56px;
}
.stat {
  padding: 24px 28px;
  border-right: 1px solid var(--gray-200);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 48px; line-height: 1; letter-spacing: -.02em; }
.stat-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); margin-top: 8px; }

/* Hero B: photo-led */
.hero-b {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
  min-height: 86vh;
}
.hero-b .bg-photo {
  position: absolute; inset: 0;
  opacity: .35;
}
.hero-b .bg-photo image-slot { width: 100%; height: 100%; }
.hero-b .gradient-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,.4) 0%, rgba(14,14,16,.85) 80%);
}
.hero-b-inner { position: relative; z-index: 2; padding: 140px 0 80px; }
.hero-b h1 { font-size: clamp(56px, 9vw, 152px); }
.hero-b .yellow-text { color: var(--yellow); }
.hero-b p.lead { max-width: 520px; font-size: 18px; color: rgba(255,255,255,.8); margin: 24px 0 32px; }

/* Hero C: editorial split */
.hero-c { background: var(--cream); padding: 40px 0; }
.hero-c-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  background: var(--ink);
  color: var(--white);
  min-height: 78vh;
  overflow: hidden;
}
.hero-c-copy { padding: 64px; display: flex; flex-direction: column; justify-content: space-between; }
.hero-c-copy h1 { font-size: clamp(52px, 6.5vw, 108px); }
.hero-c-photo { background: var(--gray-700); position: relative; }
.hero-c-photo image-slot { width: 100%; height: 100%; }

/* ────── Sections ────── */
.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 48px; flex-wrap: wrap; }
.section-head .title-block { max-width: 720px; }
.section-head h2 { margin-top: 12px; }
.section-head .actions { display: flex; gap: 12px; }

/* ────── Service grid ────── */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.service-cell {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 32px 28px 36px;
  background: var(--cream);
  position: relative;
  transition: background .2s var(--ease);
  min-height: 280px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service-cell:hover { background: var(--yellow); }
.service-cell .num { font-family: var(--font-mono); font-size: 12px; color: var(--gray-500); letter-spacing: .12em; }
.service-cell h3 { margin-top: 18px; }
.service-cell .desc { margin-top: 10px; color: var(--gray-700); font-size: 14px; }
.service-cell .arrow-link { font-family: var(--font-mono); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; margin-top: 18px; }

/* ────── Model cards ────── */
.models-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.model-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column;
}
.model-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(14,14,16,.08); }
.model-card .photo-wrap {
  aspect-ratio: 4/5;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}
.model-card .photo-wrap image-slot { width: 100%; height: 100%; }
.card-carousel { position: absolute; inset: 0; }
.card-carousel .cc-track { position: absolute; inset: 0; }
.card-carousel .cc-slide {
  position: absolute; inset: 0;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease;
}
.card-carousel .cc-slide.active { opacity: 1; visibility: visible; }
.card-carousel .cc-slide image-slot { width: 100%; height: 100%; }
.card-carousel .cc-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(14,14,16,.55); color: #fff;
  border: none; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .2s ease, background .2s ease;
}
.card-carousel .cc-prev { left: 10px; }
.card-carousel .cc-next { right: 10px; }
.model-card:hover .card-carousel .cc-arrow { opacity: 1; }
.card-carousel .cc-arrow:hover { background: var(--ink); }
.card-carousel .cc-dots {
  position: absolute; bottom: 12px; left: 0; right: 0; z-index: 3;
  display: flex; gap: 7px; justify-content: center;
}
.card-carousel .cc-dot {
  width: 7px; height: 7px; border-radius: 50%; padding: 0;
  border: none; cursor: pointer;
  background: rgba(255,255,255,.55);
  box-shadow: 0 0 0 1px rgba(0,0,0,.18);
  transition: background .2s ease, transform .2s ease;
}
.card-carousel .cc-dot.on { background: var(--yellow); transform: scale(1.25); }
@media (max-width: 760px) {
  .card-carousel .cc-arrow { opacity: 1; background: rgba(14,14,16,.45); }
}
.model-card .photo-wrap .cod {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--yellow);
  font-family: var(--font-mono); font-size: 10px;
  padding: 5px 10px; border-radius: 999px;
  letter-spacing: .12em;
}
.model-card .body { padding: 22px 22px 26px; }
.model-card h3 { font-size: 22px; }
.model-card .features { list-style: none; padding: 0; margin: 14px 0 0; }
.model-card .features li {
  padding: 8px 0; border-top: 1px dashed var(--gray-200);
  font-size: 13px; color: var(--gray-700);
  display: flex; align-items: center; gap: 8px;
}
.model-card .features li::before {
  content: ""; width: 6px; height: 6px; background: var(--yellow-deep); border-radius: 50%;
  flex-shrink: 0;
}

/* ────── VIP teaser block ────── */
.vip-block {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.vip-block .grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 0;
}
.vip-block .copy { padding: 72px 56px; position: relative; }
.vip-block .photo { background: var(--gray-700); min-height: 480px; position: relative; }
.vip-block .photo image-slot { width: 100%; height: 100%; }
.vip-block .premium-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-bright) 100%);
  color: var(--ink);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 24px;
}
.vip-block h2 { font-size: clamp(40px, 4.5vw, 64px); }
.vip-block h2 .gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vip-block p { color: rgba(255,255,255,.75); max-width: 460px; margin: 20px 0 32px; }
.vip-block .features-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px;
  margin: 28px 0 36px;
}
.vip-block .features-mini li {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .04em;
  color: rgba(255,255,255,.8); padding: 0; list-style: none;
  display: flex; gap: 8px; align-items: center;
}
.vip-block .features-mini li::before {
  content: ""; width: 8px; height: 8px; background: var(--gold);
  flex-shrink: 0;
  transform: rotate(45deg);
}

/* ────── Licenças ────── */
.licenses {
  background: var(--ink);
  color: var(--white);
  padding: 80px 0;
}
.licenses-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin-top: 40px;
}
.license-card {
  background: var(--ink-2);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
}
.license-card:hover { border-color: var(--yellow); }
.license-card .badge-wrap {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
}
.license-card .logo-wrap {
  height: 72px;
  background: var(--white);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  padding: 12px 20px;
}
.license-card .logo-wrap img {
  max-height: 100%; max-width: 100%; width: auto; height: auto;
  object-fit: contain;
}
.license-card-large {
  min-height: 280px;
}
.license-card-large .logo-wrap {
  height: 100px;
}
.licenses-grid-feature {
  grid-template-columns: repeat(4, 1fr);
}
.license-card-logo {
  background: transparent;
  border: none;
  padding: 0;
  min-height: 0;
}
.license-card-logo:hover { border: none; }
.license-card-logo .logo-wrap {
  height: 140px;
  padding: 24px 28px;
}
.license-card h4 { color: var(--white); }
.license-card .desc { font-size: 13px; color: var(--gray-400); line-height: 1.5; }
.license-card .meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gray-500); margin-top: auto; }

/* ────── Clientes ────── */
.clients-marquee {
  background: var(--cream);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 0;
  overflow: hidden;
}
.clients-strip {
  display: flex; align-items: center; gap: 80px;
  padding: 32px 0;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-logo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .06em;
  color: var(--gray-700);
  opacity: .55;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ────── CTA strip ────── */
.cta-strip {
  background: var(--yellow);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: center; }
.cta-strip h2 { font-size: clamp(36px, 4vw, 56px); }
.cta-strip .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

/* ────── Footer ────── */
.site-footer {
  background: var(--ink);
  color: var(--gray-400);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-size: 14px; max-width: 280px; margin: 16px 0 24px; }
.footer-col h5 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--yellow); margin: 0 0 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin: 10px 0; }
.footer-col a { color: var(--gray-400); font-size: 14px; transition: color .15s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--gray-700);
  padding-top: 24px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em;
  color: var(--gray-500);
}

/* ────── Page hero (sub-pages) ────── */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero .yellow-wedge {
  position: absolute;
  top: 0; left: -10%;
  width: 50%; height: 100%;
  background: var(--yellow);
  clip-path: polygon(0 0, 50% 0, 100% 100%, 0 100%);
  opacity: .12;
}
.page-hero .crumb {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 24px;
}
.page-hero h1 { color: var(--white); }
.page-hero p.lead { max-width: 620px; font-size: 18px; color: rgba(255,255,255,.78); margin-top: 24px; }

/* ────── Sobre/About specifics ────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start;
}
.about-grid .photo-block { aspect-ratio: 4/5; background: var(--gray-100); position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.about-grid .photo-block image-slot { width: 100%; height: 100%; }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  margin-top: 56px;
}
.value-card { padding: 0; }
.value-card .icon-circle {
  width: 56px; height: 56px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink);
  margin-bottom: 20px;
}

/* ────── Catalog ────── */
.catalog-section { padding: 80px 0; border-bottom: 1px solid var(--gray-200); }
.catalog-section:last-child { border-bottom: none; }
.catalog-header { display: flex; align-items: end; justify-content: space-between; margin-bottom: 40px; gap: 32px; }
.catalog-header .pill {
  display: inline-flex; align-items: center;
  background: var(--ink); color: var(--yellow);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 600;
  padding: 6px 16px; border-radius: 999px; margin-bottom: 12px;
}

/* ────── VIP page ────── */
.vip-page { background: var(--ink); color: var(--white); }
.vip-page-hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: end;
  background: var(--ink);
  overflow: hidden;
}
.vip-page-hero .hero-bg {
  position: absolute; inset: 0;
}
.vip-page-hero .hero-bg image-slot { width: 100%; height: 100%; }
.vip-page-hero .hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,14,16,.3) 0%, rgba(14,14,16,.9) 80%);
  z-index: 1;
}
.vip-page-hero .hero-content { position: relative; z-index: 2; padding-bottom: 80px; }
.vip-page-hero .crown {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold-bright); margin-bottom: 24px;
  display: flex; align-items: center; gap: 12px;
}
.vip-page-hero .crown::before { content: "♛"; font-size: 20px; }
.vip-page-hero h1 { color: var(--white); font-size: clamp(56px, 9vw, 168px); line-height: .88; }
.vip-page-hero h1 .gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.vip-page-hero p.lead { max-width: 580px; font-size: 18px; color: rgba(255,255,255,.82); margin: 28px 0 36px; }

.vip-section { padding: 100px 0; }
.vip-section-light { background: var(--ink-2); }
.vip-compact-media {
  display: grid;
  grid-template-rows: auto auto;
  gap: 16px;
}
.vip-compact-main {
  aspect-ratio: 4/5;
  background: var(--gray-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.vip-compact-thumb {
  aspect-ratio: 16/9;
  background: var(--gray-700);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
@media (max-width: 860px) {
  .vip-compact-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
}
.vip-features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--gray-700);
  border: 1px solid var(--gray-700);
}
.vip-feature {
  background: var(--ink);
  padding: 40px 32px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background .2s var(--ease);
}
.vip-feature:hover { background: var(--ink-2); }
.vip-feature .icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-bright) 100%);
  color: var(--ink);
  border-radius: 50%;
}
.vip-feature h3 { color: var(--white); font-size: 20px; }
.vip-feature .desc { font-size: 14px; color: var(--gray-400); line-height: 1.55; }

.vip-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 600px;
}
.vip-gallery .slot {
  background: var(--gray-700);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.vip-gallery .slot:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.4); }
.vip-gallery .slot:hover .zoom-badge { opacity: 1; transform: scale(1); }
.vip-gallery .slot image-slot { width: 100%; height: 100%; pointer-events: none; }
.vip-gallery .zoom-badge {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transform: scale(.8);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  pointer-events: none;
  z-index: 2;
}
.vip-gallery .slot.large { grid-column: 1; grid-row: 1 / span 2; }
.vip-gallery .slot.s2 { grid-column: 2; grid-row: 1; }
.vip-gallery .slot.s3 { grid-column: 3; grid-row: 1; }
.vip-gallery .slot.s4 { grid-column: 2 / span 2; grid-row: 2; }

/* ────── Lightbox ────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(8, 8, 10, .96);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 40px 80px;
  animation: lb-fade .2s var(--ease);
}
@keyframes lb-fade { from { opacity: 0; } to { opacity: 1; } }
.lb-figure {
  margin: 0;
  max-width: min(1200px, 92vw);
  max-height: 88vh;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  animation: lb-scale .25s var(--ease);
}
@keyframes lb-scale { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lb-figure img {
  max-width: 100%;
  max-height: 76vh;
  width: auto; height: auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06);
}
.lb-figure figcaption {
  display: flex; align-items: center; gap: 18px;
  font-family: var(--font-mono);
  color: rgba(255,255,255,.7);
}
.lb-count {
  background: var(--gold);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .12em;
  font-weight: 600;
}
.lb-caption { font-size: 13px; }
.lb-btn {
  position: absolute;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s var(--ease), border-color .15s var(--ease);
  z-index: 2;
}
.lb-btn:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }

@media (max-width: 640px) {
  .lightbox { padding: 16px; }
  .lb-btn { width: 44px; height: 44px; }
  .lb-close { top: 12px; right: 12px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
}

/* ────── Contato ────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form .field { margin-bottom: 18px; }
.contact-form label {
  display: block;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 8px; font-weight: 600;
}
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  font: inherit; font-family: var(--font-body);
  padding: 14px 16px;
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  outline: none;
  transition: border-color .15s var(--ease), background .15s var(--ease);
  color: var(--ink);
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  border-color: var(--ink); background: var(--white);
}
.contact-form .row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form textarea { min-height: 120px; resize: vertical; }

.contact-info { padding: 16px 0; }
.contact-info .info-block { padding: 24px 0; border-bottom: 1px solid var(--gray-200); }
.contact-info .info-block:first-child { padding-top: 0; }
.contact-info .info-block:last-child { border-bottom: none; }
.contact-info .label-row {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray-500); margin-bottom: 8px;
}
.contact-info .info-value { font-family: var(--font-head); font-weight: 700; font-size: 18px; }

/* ────── Utility ────── */
.bg-cream { background: var(--cream); }
.bg-ink { background: var(--ink); color: var(--white); }
.bg-white { background: var(--white); }
.bg-yellow { background: var(--yellow); }
.text-yellow { color: var(--yellow); }
.text-muted { color: var(--gray-500); }
.divider { height: 1px; background: var(--gray-200); margin: 80px 0; }

/* ────── image-slot defaults ────── */
image-slot {
  --is-empty-bg: repeating-linear-gradient(45deg, var(--gray-100), var(--gray-100) 8px, var(--gray-50) 8px, var(--gray-50) 16px);
  --is-empty-fg: var(--gray-500);
  --is-empty-font: var(--font-mono);
}

/* ────── Mobile ────── */
@media (max-width: 960px) {
  .hero-a-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-c-grid { grid-template-columns: 1fr; }
  .service-grid, .models-grid, .vip-features, .licenses-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid, .about-grid, .contact-grid, .vip-block .grid, .cta-strip .container { grid-template-columns: 1fr; }
  .vip-block .copy { padding: 48px 32px; }
  .vip-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
  .vip-gallery .slot.large, .vip-gallery .slot.s2, .vip-gallery .slot.s3, .vip-gallery .slot.s4 {
    grid-column: 1; grid-row: auto; aspect-ratio: 4/3;
  }
  .nav { display: none; }
  .section { padding: 64px 0; }
  .values-grid { grid-template-columns: 1fr; }
  .cta-strip .actions { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .service-grid, .models-grid, .vip-features, .licenses-grid, .stats-strip { grid-template-columns: 1fr; }
  .header-cta .btn:not(.primary-cta) { display: none; }
  .brand-name small { display: none; }
}
