/* =========================================================
   COOWORKS — design system + componentes
   Paleta 100% monocromática da marca:
   #010001 · #6D6B6B · #ECECEC · #FFFFFF
   ========================================================= */

:root {
  /* ---- Escala de tinta (derivada do preto da marca) ---- */
  --ink-950: #010001;   /* PRETO DA MARCA */
  --ink-900: #0a0a0a;
  --ink-800: #141414;
  --ink-700: #1e1e1e;
  --ink-600: #2b2b2b;
  --ink-500: #3d3d3d;

  --gray-600: #4a4949;
  --gray-500: #6d6b6b;  /* CINZA DA MARCA */
  --gray-400: #8d8b8b;
  --gray-300: #b4b3b3;
  --gray-200: #d6d5d5;
  --gray-100: #ececec;  /* CINZA CLARO DA MARCA */
  --gray-50:  #f5f5f5;
  --white:    #ffffff;

  /* ---- Tokens semânticos ---- */
  --bg-primary:    var(--white);
  --bg-secondary:  var(--gray-100);
  --bg-elevated:   var(--white);
  --bg-deep:       var(--ink-900);
  --bg-deep-soft:  var(--ink-800);

  --text-primary:   var(--ink-900);
  --text-secondary: var(--gray-600);
  --text-muted:     var(--gray-500);
  --text-on-deep:        #f4f4f4;
  --text-on-deep-muted:  #a9a7a7;

  --border-subtle:  #e4e3e3;
  --border-strong:  var(--gray-200);
  --border-on-deep: rgba(255, 255, 255, .14);
  --border-on-deep-strong: rgba(255, 255, 255, .28);

  /* ---- Tipografia ---- */
  --font-display: 'Archivo', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --fs-display: clamp(2.5rem, 6.2vw, 4.5rem);
  --fs-h2:      clamp(1.85rem, 3.8vw, 2.85rem);
  --fs-h3:      1.2rem;
  --fs-lead:    clamp(1.02rem, 1.5vw, 1.18rem);
  --fs-body:    1rem;
  --fs-sm:      .9rem;
  --fs-xs:      .78rem;

  /* ---- Espaçamento (8pt) ---- */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 16px; --sp-4: 24px;
  --sp-5: 32px; --sp-6: 48px; --sp-7: 64px; --sp-8: 96px; --sp-9: 128px;

  /* ---- Raios (ecoam a marca arredondada) ---- */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 30px; --r-full: 999px;

  /* ---- Sombras (neutras, 3 níveis) ---- */
  --sh-1: 0 1px 2px rgba(0,0,0,.05), 0 2px 6px rgba(0,0,0,.04);
  --sh-2: 0 4px 12px rgba(0,0,0,.06), 0 14px 32px rgba(0,0,0,.07);
  --sh-3: 0 10px 24px rgba(0,0,0,.10), 0 30px 70px rgba(0,0,0,.16);

  /* ---- Motion ---- */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur: 260ms;

  --container: 1180px;
  --header-h: 72px;
}

/* =========================================================
   RESET
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0;
  font-weight: 800;
  text-wrap: balance;
}

p { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

:focus-visible {
  outline: 2px solid var(--ink-900);
  outline-offset: 3px;
  border-radius: 4px;
}
.section--deep :focus-visible,
.site-footer :focus-visible,
.cta-band :focus-visible,
.hero :focus-visible { outline-color: var(--white); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  background: var(--ink-950);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.svg-sprite { position: absolute; }

.ic {
  width: 1.1em;
  height: 1.1em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic-solid { fill: currentColor; stroke: none; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  height: 2px;
  width: 0;
  background: var(--ink-950);
  z-index: 200;
  transition: width 90ms linear;
}

/* =========================================================
   TIPOGRAFIA UTILITÁRIA
   ========================================================= */
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-3);
}
.section--deep .eyebrow,
.hero .eyebrow { color: var(--text-on-deep-muted); }

.section-sub {
  font-size: var(--fs-lead);
  color: var(--text-secondary);
  max-width: 62ch;
}
.section--deep .section-sub { color: var(--text-on-deep-muted); }

.br-lg { display: none; }
@media (min-width: 900px) { .br-lg { display: inline; } }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--text-primary);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 22px;
  border: 1.5px solid var(--btn-bd);
  border-radius: var(--r-full);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: -.005em;
  cursor: pointer;
  transition: transform var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ic { width: 1.05em; height: 1.05em; }

/* preto sólido — CTA principal em fundo claro */
.btn-invert { --btn-bg: var(--ink-950); --btn-fg: var(--white); --btn-bd: var(--ink-950); }
.btn-invert:hover { --btn-bg: var(--ink-700); --btn-bd: var(--ink-700); box-shadow: var(--sh-2); }

/* branco sólido — CTA principal em fundo escuro */
.btn-solid { --btn-bg: var(--white); --btn-fg: var(--ink-950); --btn-bd: var(--white); }
.btn-solid:hover { --btn-bg: var(--gray-100); --btn-bd: var(--gray-100); box-shadow: 0 10px 30px rgba(0,0,0,.35); }

/* contornado em fundo claro */
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink-900); --btn-bd: var(--border-strong); }
.btn-outline:hover { --btn-bd: var(--ink-950); --btn-bg: var(--gray-50); }

/* contornado em fundo escuro */
.btn-outline-light { --btn-bg: transparent; --btn-fg: var(--white); --btn-bd: var(--border-on-deep-strong); }
.btn-outline-light:hover { --btn-bd: var(--white); --btn-bg: rgba(255,255,255,.08); }

/* fantasma sobre imagem escura */
.btn-ghost {
  --btn-bg: rgba(255,255,255,.06);
  --btn-fg: var(--white);
  --btn-bd: rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { --btn-bg: rgba(255,255,255,.14); --btn-bd: var(--white); }

.btn-sm { min-height: 40px; padding: 9px 18px; font-size: var(--fs-xs); }
.btn-lg { min-height: 54px; padding: 15px 30px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  border-bottom: 1.5px solid var(--border-strong);
  padding-bottom: 3px;
  transition: gap var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.link-arrow:hover { gap: 14px; border-color: var(--ink-950); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink-950);
  color: var(--text-on-deep);
  transition: box-shadow var(--dur) var(--ease);
}
.site-header.scrolled { box-shadow: 0 8px 30px rgba(0,0,0,.35); }

.topbar {
  border-bottom: 1px solid var(--border-on-deep);
  font-size: var(--fs-xs);
  color: var(--text-on-deep-muted);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 38px;
  flex-wrap: wrap;
}
.topbar-right { display: flex; align-items: center; gap: var(--sp-3); }
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color var(--dur) var(--ease);
}
a.topbar-item:hover { color: var(--white); }
.topbar-sep { width: 1px; height: 14px; background: var(--border-on-deep); }
/* mantém a topbar sempre em UMA linha — o menu mobile assume 38px de altura */
.topbar-inner { flex-wrap: nowrap; }
.topbar-item, .topbar-right { white-space: nowrap; }
@media (max-width: 640px) { .topbar-hide-sm { display: none; } }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; }
.brand-logo {
  width: auto;
  height: 26px;
  transition: opacity var(--dur) var(--ease);
}
.brand:hover .brand-logo { opacity: .78; }
@media (min-width: 900px) { .brand-logo { height: 30px; } }

.main-nav { display: none; }
@media (min-width: 1024px) {
  .main-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
    margin-left: auto;
  }
  .mobile-extra { display: none; }
}

.nav-link {
  position: relative;
  padding: 10px 13px;
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--text-on-deep-muted);
  border-radius: var(--r-full);
  transition: color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.07); }
.nav-link.active { color: var(--white); }
.nav-link.active::after {
  content: '';
  position: absolute;
  left: 13px; right: 13px; bottom: 4px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: var(--sp-2); }
.header-actions .btn-invert {
  --btn-bg: var(--white); --btn-fg: var(--ink-950); --btn-bd: var(--white);
}
.header-actions .btn-invert:hover { --btn-bg: var(--gray-200); --btn-bd: var(--gray-200); }
@media (max-width: 640px) { .header-actions .btn { display: none; } }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 0 10px;
  background: none;
  border: 1px solid var(--border-on-deep);
  border-radius: var(--r-full);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 1024px) { .nav-toggle { display: none; } }

/* Menu mobile */
@media (max-width: 1023px) {
  .main-nav {
    position: fixed;
    inset: calc(var(--header-h) + 38px) 0 auto 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--ink-950);
    border-top: 1px solid var(--border-on-deep);
    padding: var(--sp-3) var(--sp-4) var(--sp-5);
    max-height: calc(100dvh - var(--header-h) - 38px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease), visibility var(--dur);
  }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-link { padding: 14px 4px; font-size: 1.05rem; border-radius: 0; border-bottom: 1px solid var(--border-on-deep); }
  .nav-link.active::after { display: none; }
  .mobile-extra { margin-top: var(--sp-4); }
  .mobile-extra .btn-invert { --btn-bg: var(--white); --btn-fg: var(--ink-950); --btn-bd: var(--white); }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--ink-950);
  color: var(--text-on-deep);
  overflow: hidden;
  isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(.42);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 90% at 15% 0%, rgba(0,0,0,.35), transparent 60%),
    linear-gradient(180deg, rgba(1,0,1,.72) 0%, rgba(1,0,1,.86) 55%, var(--ink-950) 100%);
}

.hero-grid {
  display: grid;
  gap: var(--sp-6);
  padding-block: var(--sp-7) var(--sp-7);
}
@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
    align-items: center;
    gap: var(--sp-7);
    padding-block: var(--sp-9) var(--sp-8);
  }
}

.hero-title {
  font-size: var(--fs-display);
  letter-spacing: -.038em;
  margin-bottom: var(--sp-4);
  text-wrap: initial; /* as quebras do H1 são intencionais */
}
.hero-title em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero-title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: .1em;
  background: var(--white);
  transform-origin: left;
  animation: swipe 900ms var(--ease-out) 400ms both;
}
@keyframes swipe { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.hero-lead {
  font-size: var(--fs-lead);
  color: var(--text-on-deep-muted);
  max-width: 56ch;
  margin-bottom: var(--sp-5);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.hero-slogan {
  margin-top: var(--sp-5);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: .01em;
  color: var(--text-on-deep-muted);
  padding-left: var(--sp-3);
  border-left: 2px solid var(--border-on-deep-strong);
}

/* Cartão de preço (referência: peça do Instagram) */
.price-card {
  background: var(--white);
  color: var(--ink-950);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--sh-3);
}
@media (min-width: 980px) { .price-card { padding: var(--sp-6) var(--sp-5); } }

.price-card-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: var(--sp-3);
}
.price-card-title {
  font-size: clamp(1.7rem, 3.4vw, 2.1rem);
  margin-bottom: var(--sp-3);
}
.price-card-value {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.05em;
}
.price-card-value .cur { font-size: 1.6rem; margin-top: .35em; }
.price-card-value .num { font-size: clamp(3.6rem, 9vw, 4.6rem); }
.price-card-value .cents { font-size: 1.8rem; margin-top: .18em; }
.price-card-period {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-top: var(--sp-2);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
}
.price-card-list {
  display: grid;
  gap: 10px;
  margin: var(--sp-4) 0 var(--sp-5);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.price-card-list li { display: flex; align-items: flex-start; gap: 10px; }
.price-card-list .ic { margin-top: .25em; stroke-width: 2.4; color: var(--ink-950); }
.price-card .btn-solid { --btn-bg: var(--ink-950); --btn-fg: var(--white); --btn-bd: var(--ink-950); min-height: 52px; }
.price-card .btn-solid:hover { --btn-bg: var(--ink-700); --btn-bd: var(--ink-700); }

.hero-strip { border-top: 1px solid var(--border-on-deep); }
.hero-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-4);
  padding-block: var(--sp-4);
  font-size: var(--fs-xs);
  color: var(--text-on-deep-muted);
}
.strip-item { display: flex; align-items: center; gap: 9px; }
@media (min-width: 860px) {
  .hero-strip-inner { grid-template-columns: repeat(4, 1fr); font-size: var(--fs-sm); }
}

/* =========================================================
   SEÇÕES
   ========================================================= */
.section { padding-block: var(--sp-8); }
@media (max-width: 640px) { .section { padding-block: var(--sp-7); } }

.section--alt { background: var(--bg-secondary); }
.section--deep {
  background: var(--bg-deep);
  color: var(--text-on-deep);
}

.section-head { max-width: 720px; margin: 0 auto var(--sp-6); text-align: center; }
.section-head h2 { font-size: var(--fs-h2); margin-bottom: var(--sp-3); }
.section-head .section-sub { margin-inline: auto; }
.section-head--left { margin-inline: 0; text-align: left; }
.section-head--left .section-sub { margin-inline: 0; }

.section-cta { display: flex; justify-content: center; margin-top: var(--sp-6); }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   DUO (dois serviços)
   ========================================================= */
.duo { display: grid; gap: var(--sp-4); }
@media (min-width: 860px) { .duo { grid-template-columns: 1fr 1fr; gap: var(--sp-5); } }

.duo-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out), border-color var(--dur) var(--ease);
}
.duo-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: var(--border-strong); }

.duo-media { position: relative; margin: 0; aspect-ratio: 4 / 3; background: var(--ink-800); overflow: hidden; }
.duo-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 700ms var(--ease-out);
}
.duo-card:hover .duo-media img { transform: scale(1.05); }
.duo-badge {
  position: absolute;
  left: var(--sp-3); bottom: var(--sp-3);
  background: var(--white);
  color: var(--ink-950);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 800;
  letter-spacing: .02em;
  padding: 8px 14px;
  border-radius: var(--r-full);
}

.duo-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1; }
.duo-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 46px; height: 46px;
  border-radius: var(--r-full);
  background: var(--ink-950);
  color: var(--white);
  font-size: 1.15rem;
}
.duo-body h3 { font-size: 1.5rem; }
.duo-body p { color: var(--text-secondary); }
.duo-body .link-arrow { margin-top: auto; align-self: flex-start; }

/* =========================================================
   SPLIT (endereço fiscal)
   ========================================================= */
.split { display: grid; gap: var(--sp-6); }
@media (min-width: 980px) {
  .split { grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr); gap: var(--sp-7); align-items: start; }
}
.split-copy h2 { font-size: var(--fs-h2); margin-bottom: var(--sp-3); }
.split-copy .section-sub { margin-bottom: var(--sp-5); }

.check-list { display: grid; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border-on-deep);
  color: var(--text-on-deep-muted);
  font-size: var(--fs-sm);
}
.check-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.check-list .ic { margin-top: .3em; stroke-width: 2.6; color: var(--white); }
.check-list strong { color: var(--white); font-weight: 600; }

.split-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); }

.stack-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--white);
  color: var(--ink-950);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  box-shadow: var(--sh-3);
}
@media (max-width: 979px) { .stack-card { position: static; } }

.stack-eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.stack-title { font-size: 1.35rem; margin-top: var(--sp-2); }
.stack-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 3.4rem);
  letter-spacing: -.05em;
  line-height: 1;
  margin: var(--sp-4) 0 var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
}
.stack-price .cur { font-size: .42em; vertical-align: .9em; margin-right: 4px; }
.stack-price .cents { font-size: .42em; vertical-align: .9em; }
.stack-price .per {
  font-family: var(--font-body);
  font-size: .26em;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--text-muted);
  margin-left: 8px;
  vertical-align: .55em;
}
.stack-list { display: grid; gap: 12px; margin-bottom: var(--sp-5); font-size: var(--fs-sm); color: var(--text-secondary); }
.stack-list li { display: flex; align-items: flex-start; gap: 11px; }
.stack-list .ic { margin-top: .2em; color: var(--ink-950); }
.stack-note { margin-top: var(--sp-3); font-size: var(--fs-xs); color: var(--text-muted); text-align: center; }

/* =========================================================
   SALAS
   ========================================================= */
.rooms { display: grid; gap: var(--sp-4); }
@media (min-width: 760px) { .rooms { grid-template-columns: repeat(3, 1fr); } }

.room {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
.room:hover { transform: translateY(-6px); box-shadow: var(--sh-2); }
.room--featured { border: 2px solid var(--ink-950); box-shadow: var(--sh-2); }

.room-flag {
  position: absolute;
  top: var(--sp-3); right: var(--sp-3);
  z-index: 2;
  background: var(--ink-950);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .04em;
  padding: 6px 13px;
  border-radius: var(--r-full);
}

/* as fotos reais do espaço são em retrato — o card acompanha o formato */
.room-media { margin: 0; aspect-ratio: 3 / 4; background: var(--gray-200); overflow: hidden; }
.room-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 700ms var(--ease-out);
}
.room:hover .room-media img { transform: scale(1.06); }

.room-body { display: flex; flex-direction: column; gap: var(--sp-3); padding: var(--sp-4); flex: 1; }
.room-body h3 { font-size: 1.3rem; }
.room-body p { color: var(--text-secondary); font-size: var(--fs-sm); }

.room-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.room-tags li {
  font-size: var(--fs-xs);
  color: var(--text-muted);
  background: var(--gray-100);
  padding: 5px 11px;
  border-radius: var(--r-full);
}
.section--alt .room-tags li { background: var(--white); }

.room-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  margin-top: auto;
}
.rooms-note {
  margin-top: var(--sp-5);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

/* =========================================================
   ESTRUTURA
   ========================================================= */
.amenities { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 620px) { .amenities { grid-template-columns: 1fr 1fr; } }
@media (min-width: 980px) { .amenities { grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); } }

.amenities li {
  display: grid;
  gap: 6px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.amenities li:hover { transform: translateY(-4px); border-color: var(--ink-950); }
.amenities .ic { font-size: 1.5rem; color: var(--ink-950); margin-bottom: 4px; }
.amenities strong { font-family: var(--font-display); font-size: var(--fs-body); font-weight: 700; }
.amenities span { font-size: var(--fs-sm); color: var(--text-muted); }

/* =========================================================
   COMO FUNCIONA
   ========================================================= */
.steps { display: grid; gap: var(--sp-4); counter-reset: step; }
@media (min-width: 760px) { .steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }

.step {
  position: relative;
  padding-top: var(--sp-4);
  border-top: 2px solid var(--ink-950);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1;
  color: var(--gray-200);
  margin-bottom: var(--sp-2);
  transition: color var(--dur) var(--ease);
}
.step:hover .step-num { color: var(--ink-950); }
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { font-size: var(--fs-sm); color: var(--text-secondary); }

/* =========================================================
   UNIDADES
   ========================================================= */
/* Abas (usadas na galeria e nas unidades) */
.tabs {
  display: inline-flex;
  gap: 4px;
  padding: 5px;
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}
.tab {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 700;
  padding: 10px 20px;
  min-height: 42px;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.tab:hover { color: var(--ink-950); }
.tab.is-active { background: var(--ink-950); color: var(--white); }
.section--alt .tabs { background: var(--white); }

/* =========================================================
   GALERIA DO ESPAÇO
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-2);
}
.gallery-grid[hidden] { display: none; }
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.shot {
  position: relative;
  padding: 0;
  border: 0;
  background: var(--gray-200);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 3 / 4;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}
.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 700ms var(--ease-out), filter var(--dur) var(--ease);
}
.shot::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.35));
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.shot:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.shot:hover img { transform: scale(1.06); }
.shot:hover::after { opacity: 1; }

/* =========================================================
   LIGHTBOX
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4);
  background: rgba(1, 0, 1, .93);
  backdrop-filter: blur(4px);
  animation: lbIn 220ms var(--ease-out) both;
}
.lightbox[hidden] { display: none; }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }

.lb-stage {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  max-width: min(100%, 1100px);
  min-width: 0;
}
.lb-stage img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: 0 30px 80px rgba(0,0,0,.6);
  animation: lbPop 300ms var(--ease-out) both;
}
@keyframes lbPop { from { opacity: 0; transform: scale(.97); } to { opacity: 1; transform: none; } }
.lb-stage figcaption {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-200);
  text-align: center;
}

.lb-close, .lb-nav {
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: none;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: background-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.lb-close:hover, .lb-nav:hover { background: var(--white); color: var(--ink-950); }

.lb-nav { width: 52px; height: 52px; font-size: 2rem; line-height: 1; padding-bottom: 6px; }
.lb-close {
  position: absolute;
  top: var(--sp-4); right: var(--sp-4);
  width: 44px; height: 44px;
  font-size: 1.7rem; line-height: 1; padding-bottom: 4px;
}
@media (max-width: 640px) {
  .lightbox { padding: var(--sp-3); }
  .lb-nav { position: absolute; bottom: var(--sp-4); width: 46px; height: 46px; }
  .lb-prev { left: 22%; }
  .lb-next { right: 22%; }
  .lb-stage img { max-height: 68vh; }
}

.unit-panel {
  display: grid;
  gap: var(--sp-4);
  background: var(--white);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.unit-panel[hidden] { display: none; }
@media (min-width: 900px) { .unit-panel { grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 0; } }

.unit-info { padding: var(--sp-5); display: grid; gap: var(--sp-3); align-content: start; }
.unit-info h3 { font-size: 1.5rem; }
.unit-address, .unit-hours {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}
.unit-address .ic, .unit-hours .ic { color: var(--ink-950); }
.unit-text { font-size: var(--fs-sm); color: var(--text-muted); }
.unit-actions { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-top: var(--sp-2); }

.unit-map { min-height: 300px; background: var(--gray-100); }
.unit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-wrap { display: grid; gap: var(--sp-5); }
@media (min-width: 980px) {
  .faq-wrap { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: var(--sp-7); align-items: start; }
  .faq-wrap .section-head { position: sticky; top: calc(var(--header-h) + 32px); margin-bottom: 0; }
}
.faq-wrap .section-head .btn { margin-top: var(--sp-4); }

.faq-list { display: grid; gap: 0; border-top: 1px solid var(--border-subtle); }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -.015em;
  cursor: pointer;
  list-style: none;
  transition: color var(--dur) var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex: none;
  width: 13px; height: 13px;
  border-right: 2px solid var(--ink-950);
  border-bottom: 2px solid var(--ink-950);
  transform: rotate(45deg) translate(-3px, -3px);
  transition: transform var(--dur) var(--ease);
}
.faq-item[open] summary::after { transform: rotate(-135deg) translate(-3px, -3px); }
.faq-item summary:hover { color: var(--gray-500); }
.faq-answer { padding-bottom: var(--sp-4); color: var(--text-secondary); font-size: var(--fs-sm); max-width: 62ch; }
.faq-item[open] .faq-answer { animation: fadeDown 320ms var(--ease-out) both; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band { background: var(--ink-950); color: var(--text-on-deep); }
.cta-band-inner {
  display: grid;
  gap: var(--sp-4);
  padding-block: var(--sp-7);
  align-items: center;
}
@media (min-width: 900px) {
  .cta-band-inner { grid-template-columns: 1fr auto; gap: var(--sp-6); }
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.cta-band p { color: var(--text-on-deep-muted); font-size: var(--fs-sm); }

/* =========================================================
   CONTATO
   ========================================================= */
.contact { display: grid; gap: var(--sp-6); }
@media (min-width: 900px) {
  .contact { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: var(--sp-7); align-items: start; }
}
.contact-copy h2 { font-size: var(--fs-h2); margin-bottom: var(--sp-3); }
.contact-copy .section-sub { margin-bottom: var(--sp-5); }

.contact-list { display: grid; gap: var(--sp-3); }
.contact-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.contact-list li:last-child { border-bottom: 0; }
.contact-ic {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: var(--r-full);
  border: 1px solid var(--border-strong);
  color: var(--ink-950);
}
.contact-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-list a { font-weight: 500; border-bottom: 1px solid transparent; transition: border-color var(--dur) var(--ease); }
.contact-list a:hover { border-color: var(--ink-950); }
.contact-plain { color: var(--text-secondary); }

.contact-form {
  background: var(--gray-100);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  display: grid;
  gap: var(--sp-3);
}
.contact-form h3 { font-size: 1.35rem; margin-bottom: var(--sp-1); }

.field { display: grid; gap: 7px; }
.field label {
  font-family: var(--font-display);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.field .opt { text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--text-muted); }

.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  color: var(--text-primary);
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 92px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--gray-400); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--ink-950);
  box-shadow: 0 0 0 3px rgba(1,0,1,.08);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23010001' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 17px;
  padding-right: 42px;
}
.form-note { font-size: var(--fs-xs); color: var(--text-muted); text-align: center; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--ink-950);
  color: var(--text-on-deep-muted);
  padding-top: var(--sp-7);
  font-size: var(--fs-sm);
}
.footer-grid { display: grid; gap: var(--sp-5); padding-bottom: var(--sp-6); }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: var(--sp-6); } }

.footer-logo { width: auto; height: 54px; margin-bottom: var(--sp-3); }
.footer-text { max-width: 40ch; margin-bottom: var(--sp-4); }
.footer-social { display: flex; gap: var(--sp-2); }
.footer-social a {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid var(--border-on-deep);
  border-radius: var(--r-full);
  color: var(--text-on-deep-muted);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.footer-social a:hover { color: var(--ink-950); background: var(--white); border-color: var(--white); }

.footer-col { display: grid; gap: 10px; align-content: start; }
.footer-col h4 {
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.footer-col a { transition: color var(--dur) var(--ease); width: fit-content; }
.footer-col a:hover { color: var(--white); }
.footer-partner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-on-deep);
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--white);
}
.footer-partner:hover .ic { transform: translateX(4px); }
.footer-partner .ic { transition: transform var(--dur) var(--ease); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  justify-content: space-between;
  padding-block: var(--sp-4);
  border-top: 1px solid var(--border-on-deep);
  font-size: var(--fs-xs);
}
.footer-slogan { font-family: var(--font-display); font-weight: 600; color: var(--white); }

/* =========================================================
   FLUTUANTES
   ========================================================= */
.fab {
  position: fixed;
  right: 18px;
  z-index: 90;
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 54px; height: 54px;
  border: 1.5px solid var(--white);
  border-radius: var(--r-full);
  background: var(--ink-950);
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--sh-3);
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.fab:hover { transform: translateY(-3px) scale(1.04); background: var(--white); color: var(--ink-950); border-color: var(--ink-950); }
.fab .ic { width: 1.5rem; height: 1.5rem; }

.fab-wa { bottom: 18px; }
.fab-top {
  bottom: 84px;
  width: 44px; height: 44px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
}
.fab-top.show { opacity: 1; visibility: visible; transform: none; }
.fab-top .ic { width: 1.2rem; height: 1.2rem; }

@media (min-width: 900px) {
  .fab { right: 26px; }
  .fab-wa { bottom: 26px; }
  .fab-top { bottom: 94px; }
}

/* =========================================================
   IMPRESSÃO
   ========================================================= */
@media print {
  .site-header, .fab, .scroll-progress, .unit-map, .hero-media { display: none !important; }
  body { color: #000; background: #fff; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
