/* ============================================================
   IDN HUB LISBOA — Design System v2
   Intelligence · Development · Networking
   ============================================================ */

:root {
  --bg-0: #0a0a0a;
  --bg-1: #111111;
  --bg-2: #181818;
  --bg-3: #1f1f1f;
  --white: #f6f6f6;
  --w80: rgba(246,246,246,.80);
  --w65: rgba(246,246,246,.65);
  --w45: rgba(246,246,246,.45);
  --w25: rgba(246,246,246,.25);
  --w12: rgba(246,246,246,.12);
  --w06: rgba(246,246,246,.06);

  /* Liquid glass */
  --glass-bg: rgba(255,255,255,.04);
  --glass-bg-2: rgba(255,255,255,.06);
  --glass-bd: rgba(255,255,255,.10);
  --glass-bd-2: rgba(255,255,255,.18);
  --glass-blur: blur(28px) saturate(1.8);
  --glass-shadow: inset 0 1px 0 rgba(255,255,255,.14), inset 0 -1px 0 rgba(255,255,255,.03), 0 12px 48px rgba(0,0,0,.4);

  --sans: 'Space Grotesk', 'Helvetica Neue', sans-serif;
  --mono: 'JetBrains Mono', 'DM Mono', monospace;
  --r: 16px;
  --rl: 24px;
  --rxl: 32px;
  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg-0);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1.4;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button, input, select, textarea { font-family: inherit; color: inherit; }

/* ─── BACKGROUND TEXTURE ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.025), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.018), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ─── UTILITIES ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.mono { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--w45); font-weight: 400; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--w25); }

.h2 { font-size: clamp(32px, 4.5vw, 56px); font-weight: 700; line-height: 1.05; letter-spacing: -.035em; text-wrap: pretty; }
.h2 em { font-style: normal; color: var(--w45); }
.lede { font-size: clamp(16px, 1.6vw, 18px); color: var(--w65); line-height: 1.7; max-width: 540px; }

/* ─── LIQUID GLASS ─── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd);
  box-shadow: var(--glass-shadow);
}
.glass-strong {
  background: var(--glass-bg-2);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd-2);
  box-shadow: var(--glass-shadow);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 100px;
  font-family: var(--sans); font-size: 14px; font-weight: 600; letter-spacing: .01em;
  cursor: pointer; border: none; white-space: nowrap;
  transition: all .25s var(--ease); text-align: center;
}
.btn-primary { background: var(--white); color: var(--bg-0); }
.btn-primary:hover { background: rgba(255,255,255,.88); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(255,255,255,.15); }
.btn-ghost {
  background: var(--glass-bg); color: var(--white);
  border: 1px solid var(--glass-bd-2);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
}
.btn-ghost:hover { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.30); transform: translateY(-2px); }
.btn-sm { padding: 11px 20px; font-size: 13px; }
.btn-arrow svg { transition: transform .25s var(--ease); }
.btn-arrow:hover svg { transform: translateX(4px); }

/* ─── TOP BAR ─── */
.topbar {
  height: 36px;
  padding: 0 clamp(20px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--bg-1);
  border-bottom: 1px solid var(--w06);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--w65);
}
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 20px; }
.topbar a { transition: color .2s; display: flex; align-items: center; gap: 6px; }
.topbar a:hover { color: var(--white); }
.topbar svg { opacity: .65; }
.topbar-sep { width: 1px; height: 14px; background: var(--w12); }

/* ─── NAVBAR ─── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  height: 76px;
  padding: 0 clamp(20px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,10,10,.78);
  backdrop-filter: blur(28px) saturate(1.8);
  -webkit-backdrop-filter: blur(28px) saturate(1.8);
  border-bottom: 1px solid var(--w06);
  transition: background .3s var(--ease);
}
.navbar.scrolled { background: rgba(10,10,10,.94); }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 30px; }
.nav-logo-text {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: .2em; color: var(--w45);
  border-left: 1px solid var(--w12);
  padding-left: 12px; line-height: 1.3;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > a {
  font-size: 13.5px; font-weight: 500; color: var(--w65);
  letter-spacing: .01em; transition: color .2s;
  position: relative; padding: 4px 0;
}
.nav-links > a:hover { color: var(--white); }
.nav-links > a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav-links > a:hover::after { transform: scaleX(1); }
.nav-right { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 1px; transition: all .3s; }

/* Mobile nav */
.mob-nav {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(10,10,10,.98);
  backdrop-filter: blur(32px); -webkit-backdrop-filter: blur(32px);
  display: flex; flex-direction: column; padding: 100px 32px 40px;
  transform: translateY(-100%); transition: transform .45s var(--ease-out);
  pointer-events: none;
}
.mob-nav.open { transform: translateY(0); pointer-events: all; }
.mob-nav a {
  font-size: 28px; font-weight: 600; color: var(--w80);
  padding: 14px 0; border-bottom: 1px solid var(--w06);
  letter-spacing: -.01em;
}
.mob-nav a:active { color: var(--white); }
.mob-close {
  position: absolute; top: 20px; right: 20px;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  width: 44px; height: 44px; border-radius: 50%;
  color: var(--white); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.mob-cta { margin-top: 32px; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  padding: clamp(80px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  z-index: 0;
  background: var(--bg-0);
  overflow: hidden;
}
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.4s var(--ease-out), transform 7s ease-out;
  transform: scale(1.06);
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
.hero-dots {
  position: absolute; left: clamp(20px, 5vw, 56px); bottom: 32px;
  z-index: 3;
  display: flex; gap: 8px;
  align-items: center;
}
.hero-dot {
  width: 28px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.2); border: none; padding: 0;
  cursor: pointer; transition: background .3s, width .3s;
  position: relative; overflow: hidden;
}
.hero-dot.active { width: 56px; background: rgba(255,255,255,.25); }
.hero-dot.active::after {
  content: ''; position: absolute; inset: 0;
  background: var(--white);
  transform: translateX(-100%);
  animation: dotFill 6s linear forwards;
}
@keyframes dotFill { to { transform: translateX(0); } }
.hero-counter {
  position: absolute; right: clamp(20px, 5vw, 56px); bottom: 32px;
  z-index: 3;
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  color: var(--w65); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.hero-counter b { color: var(--white); font-weight: 600; }
.hero-counter-line { width: 32px; height: 1px; background: var(--w25); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(10,10,10,.88) 0%, rgba(10,10,10,.6) 45%, rgba(10,10,10,.35) 100%),
    linear-gradient(to bottom, rgba(10,10,10,.35) 0%, rgba(10,10,10,.25) 50%, rgba(10,10,10,.85) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px;
  margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
}
.hero-tagline {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 10px 18px; border-radius: 100px;
  margin-bottom: 32px;
}
.hero-tagline-dot { width: 6px; height: 6px; border-radius: 50%; background: #46e08b; box-shadow: 0 0 10px #46e08b; animation: pulse 2.2s ease infinite; }
.hero-tagline span { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--w80); }
.hero h1 {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 700; line-height: .96; letter-spacing: -.04em;
  margin-bottom: 24px; max-width: 880px;
}
.hero h1 em { font-style: normal; background: linear-gradient(135deg, #f6f6f6 0%, rgba(255,255,255,.4) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub {
  font-size: clamp(15px, 1.7vw, 19px);
  color: var(--w80); line-height: 1.6;
  max-width: 540px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; max-width: 760px;
  padding: 20px 24px; border-radius: var(--rl);
}
.hero-metric-n {
  font-size: clamp(22px, 2.6vw, 32px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1; margin-bottom: 6px;
}
.hero-metric-l { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--w45); line-height: 1.4; }

@keyframes pulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }

/* ─── TRUST STRIP ─── */
.trust-strip {
  padding: 18px clamp(20px, 5vw, 56px);
  background: var(--bg-1);
  border-bottom: 1px solid var(--w06);
}
.trust-items {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 4vw, 48px); flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; color: var(--w65);
  white-space: nowrap;
}
.trust-item svg { color: var(--white); opacity: .85; }

/* ─── SECTION HEADER ─── */
.sec { padding: clamp(80px, 12vw, 140px) 0; }
.sec-hdr { margin-bottom: 56px; max-width: 720px; }
.sec-hdr-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 56px; flex-wrap: wrap;
}
.sec-hdr-row > div:first-child { max-width: 640px; }
.sec-hdr .lede { margin-top: 20px; }

/* ─── SOLUÇÕES ─── */
.solucoes { background: var(--bg-0); }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.sol-card {
  position: relative; overflow: hidden;
  border-radius: var(--rl);
  background: var(--bg-2);
  border: 1px solid var(--w06);
  transition: transform .4s var(--ease-out), border-color .3s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.sol-card:hover { transform: translateY(-6px); border-color: var(--w12); }
.sol-card.large { grid-column: span 8; min-height: 480px; }
.sol-card.small { grid-column: span 4; min-height: 320px; }
.sol-card.med { grid-column: span 4; min-height: 380px; }
.sol-card.half { grid-column: span 6; min-height: 400px; }
.sol-card.wide { grid-column: span 12; min-height: 360px; }

.sol-vis {
  position: relative; flex: 1; min-height: 200px; overflow: hidden;
}
.sol-vis img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .55s var(--ease-out);
}
.sol-card:hover .sol-vis img { transform: scale(1.06); }
.sol-vis::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,.95) 0%, rgba(10,10,10,.4) 40%, transparent 70%);
}
.sol-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px; z-index: 2;
}
.sol-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 11px; border-radius: 100px;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.18);
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--w80);
  margin-bottom: 14px;
}
.sol-name { font-size: clamp(22px, 2.4vw, 30px); font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
.sol-card.large .sol-name { font-size: clamp(28px, 3vw, 38px); }
.sol-desc { font-size: 14px; color: var(--w65); line-height: 1.55; max-width: 420px; margin-bottom: 18px; }
.sol-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
}
.sol-price { font-family: var(--mono); font-size: 12px; color: var(--w65); letter-spacing: .04em; }
.sol-price b { color: var(--white); font-weight: 600; font-size: 13px; }
.sol-arrow {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s var(--ease);
}
.sol-card:hover .sol-arrow { background: var(--white); color: var(--bg-0); border-color: var(--white); }
.sol-card:hover .sol-arrow svg { stroke: var(--bg-0); }

/* ─── ABOUT / IDN HUB ─── */
.about { background: var(--bg-1); position: relative; overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.about-left h2 { margin-bottom: 28px; }
.about-left p { font-size: 16px; color: var(--w80); line-height: 1.75; margin-bottom: 18px; }
.about-quote {
  margin-top: 36px; padding: 24px 28px;
  border-left: 2px solid var(--white);
  background: var(--glass-bg);
  border-radius: 0 var(--r) var(--r) 0;
}
.about-quote-text { font-size: 17px; line-height: 1.55; font-weight: 500; margin-bottom: 12px; font-style: italic; color: var(--white); }
.about-quote-by { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; color: var(--w45); text-transform: uppercase; }
.about-right { position: relative; }
.about-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 280px 200px;
  gap: 12px;
}
.about-photo { border-radius: var(--rl); overflow: hidden; position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-photo:nth-child(1) { grid-row: span 2; }
.about-photo:nth-child(2) { }
.about-photo:nth-child(3) { }
.about-badge {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  z-index: 2;
  padding: 14px 20px; border-radius: var(--r);
  display: flex; align-items: center; gap: 14px;
}
.about-badge-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--white); color: var(--bg-0);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px;
}
.about-badge-text { flex: 1; }
.about-badge-text strong { display: block; font-size: 13px; }
.about-badge-text span { font-family: var(--mono); font-size: 10px; letter-spacing: .1em; color: var(--w45); text-transform: uppercase; }

/* ─── ESPAÇOS DETALHE ─── */
.espacos { background: var(--bg-0); }
.esp-tabs {
  display: flex; gap: 4px; padding: 4px;
  border: 1px solid var(--glass-bd);
  border-radius: 100px;
  background: var(--glass-bg);
  margin-bottom: 40px; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}
.esp-tab {
  padding: 12px 24px; border-radius: 100px;
  background: none; border: none;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--w45); cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
}
.esp-tab.active { background: var(--white); color: var(--bg-0); font-weight: 600; }
.esp-tab:hover:not(.active) { color: var(--w80); }

.esp-content { display: none; }
.esp-content.active { display: grid; }

.esp-layout {
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: stretch;
}
.esp-gallery { border-radius: var(--rxl); overflow: hidden; position: relative; min-height: 480px; }
.esp-gallery-main {
  position: relative; width: 100%; height: 480px;
  background: var(--bg-2);
}
.esp-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
  opacity: 0; transition: opacity .5s var(--ease);
}
.esp-gallery-main img.active { opacity: 1; }
.esp-gallery-thumbs {
  display: flex; gap: 8px; margin-top: 12px;
}
.esp-thumb {
  flex: 1; height: 72px; border-radius: 12px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: border-color .2s, transform .2s;
  background: var(--bg-2);
}
.esp-thumb.active { border-color: var(--white); }
.esp-thumb:hover { transform: translateY(-2px); }
.esp-thumb img { width: 100%; height: 100%; object-fit: cover; }

.esp-details {}
.esp-details h3 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 700; letter-spacing: -.03em; margin-bottom: 16px; line-height: 1.1; }
.esp-details > p { font-size: 16px; color: var(--w65); line-height: 1.65; margin-bottom: 28px; }
.esp-specs {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--w12);
  border: 1px solid var(--w12);
  border-radius: var(--rl); overflow: hidden;
  margin-bottom: 28px;
}
.esp-spec { padding: 18px 20px; background: var(--bg-1); }
.esp-spec-l { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--w45); text-transform: uppercase; margin-bottom: 6px; }
.esp-spec-v { font-size: 16px; font-weight: 600; }
.esp-feat-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.esp-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--w80); }
.esp-feat svg { color: var(--white); opacity: .65; flex-shrink: 0; }
.esp-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

/* ─── PLANOS ─── */
.planos { background: var(--bg-1); }
.planos-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; margin-bottom: 40px; flex-wrap: wrap;
}
.period-tabs {
  display: flex; gap: 3px; padding: 4px;
  border-radius: 100px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-bd);
}
.period-btn {
  padding: 11px 22px; border-radius: 100px;
  background: none; border: none;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  color: var(--w45); cursor: pointer;
  transition: all .2s var(--ease);
  white-space: nowrap;
}
.period-btn.active { background: var(--white); color: var(--bg-0); font-weight: 600; }
.period-btn:hover:not(.active) { color: var(--w80); }
.contract-wrap { display: flex; align-items: center; gap: 14px; }
.tog-opt { font-size: 13px; font-weight: 500; color: var(--w45); cursor: pointer; user-select: none; transition: color .2s; }
.tog-opt.on { color: var(--white); }
.tog-track {
  position: relative; width: 52px; height: 28px; border-radius: 100px;
  background: rgba(255,255,255,.14);
  border: 1px solid var(--glass-bd);
  cursor: pointer; transition: background .25s;
}
.tog-track.on { background: var(--white); }
.tog-knob {
  position: absolute; top: 3px; left: 3px; width: 20px; height: 20px;
  border-radius: 50%; background: rgba(255,255,255,.5);
  transition: transform .25s var(--ease), background .25s;
}
.tog-track.on .tog-knob { transform: translateX(22px); background: var(--bg-0); }
.c-badge {
  padding: 5px 12px; border-radius: 100px;
  background: rgba(255,255,255,.10);
  border: 1px solid var(--glass-bd);
  font-family: var(--mono); font-size: 10px;
  color: var(--w80); letter-spacing: .08em;
}

.planos-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.plano-card {
  position: relative; padding: 32px 28px;
  border-radius: var(--rl);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease);
  min-height: 540px;
}
.plano-card:hover { transform: translateY(-6px); }
.plano-card.hi {
  background: var(--white);
  color: var(--bg-0);
  border: 1px solid transparent;
}
.plano-card.hi .mono,
.plano-card.hi .pl-period,
.plano-card.hi .pl-cap,
.plano-card.hi .pl-feat-text { color: rgba(10,10,10,.55); }
.plano-card.hi .pl-divider { background: rgba(10,10,10,.1); }
.plano-card.hi .pl-feat-dot { background: rgba(10,10,10,.18); }
.plano-card.hi .pl-cta { background: var(--bg-0); color: var(--white); border-color: var(--bg-0); }
.plano-card.hi .pl-cta:hover { background: rgba(10,10,10,.85); }
.plano-card.hi .pl-savings { background: rgba(10,10,10,.06); color: rgba(10,10,10,.65); border-color: rgba(10,10,10,.1); }
.plano-card.hi .pl-best { display: inline-flex; }

.pl-best {
  display: none; align-items: center; gap: 6px;
  padding: 5px 12px; border-radius: 100px;
  background: var(--bg-0); color: var(--white);
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  position: absolute; top: 24px; right: 24px;
}
.pl-name { font-size: 19px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 4px; margin-top: 10px; }
.pl-cap { font-family: var(--mono); font-size: 11px; color: var(--w45); margin-bottom: 28px; line-height: 1.5; }
.pl-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.pl-cur { font-size: 22px; font-weight: 600; opacity: .55; line-height: 1; }
.pl-val { font-size: clamp(40px, 5vw, 56px); font-weight: 700; letter-spacing: -.05em; line-height: 1; }
.pl-period { font-family: var(--mono); font-size: 12px; color: var(--w45); letter-spacing: .05em; margin-bottom: 16px; }
.pl-savings {
  display: none; padding: 8px 12px; border-radius: 8px;
  background: rgba(255,255,255,.06); border: 1px solid var(--glass-bd);
  font-size: 11px; color: var(--w80); font-family: var(--mono);
  letter-spacing: .04em; margin-bottom: 18px;
}
.pl-savings.show { display: block; }
.pl-divider { height: 1px; background: var(--w12); margin-bottom: 20px; }
.pl-feat-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; flex: 1; }
.pl-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.pl-feat-dot {
  width: 16px; height: 16px; min-width: 16px;
  border-radius: 50%; background: rgba(255,255,255,.10);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pl-feat-dot::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.55); }
.plano-card.hi .pl-feat-dot::after { background: rgba(10,10,10,.55); }
.pl-feat-text { color: var(--w80); line-height: 1.5; }
.pl-cta { width: 100%; }
.planos-note { text-align: center; margin-top: 28px; font-family: var(--mono); font-size: 11px; color: var(--w45); letter-spacing: .06em; line-height: 1.6; }

/* ─── INSTALAÇÕES ─── */
.instalacoes { background: var(--bg-0); }
.inst-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.inst-card {
  padding: 28px 24px;
  border-radius: var(--rl);
  transition: transform .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.inst-card:hover { transform: translateY(-4px); border-color: var(--glass-bd-2); }
.inst-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid var(--glass-bd);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--white);
}
.inst-icon svg { opacity: .85; }
.inst-name { font-size: 15px; font-weight: 600; margin-bottom: 6px; letter-spacing: -.01em; }
.inst-desc { font-size: 12px; color: var(--w45); line-height: 1.55; font-family: var(--mono); letter-spacing: .03em; }

/* ─── LOCALIZAÇÃO ─── */
.localizacao { background: var(--bg-1); }
.loc-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(32px, 5vw, 56px); align-items: stretch; }
.loc-info {}
.loc-name { font-size: 22px; font-weight: 700; letter-spacing: -.02em; margin-bottom: 6px; }
.loc-addr {
  font-size: 16px; color: var(--w80); line-height: 1.7;
  margin-bottom: 24px;
}
.loc-block {
  padding: 20px 22px; border-radius: var(--r);
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 16px;
  transition: background .2s, border-color .2s;
}
.loc-block:hover { background: rgba(255,255,255,.08); border-color: var(--glass-bd-2); }
.loc-block-icon {
  width: 40px; height: 40px; min-width: 40px;
  border-radius: 10px;
  background: rgba(255,255,255,.08); border: 1px solid var(--glass-bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.loc-block-text { flex: 1; }
.loc-block-l { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; color: var(--w45); text-transform: uppercase; margin-bottom: 3px; }
.loc-block-v { font-size: 14px; font-weight: 500; }
.loc-block-arrow { color: var(--w25); }
.loc-block:hover .loc-block-arrow { color: var(--white); }

.loc-mapwrap {
  border-radius: var(--rxl);
  overflow: hidden;
  position: relative;
  min-height: 520px;
  border: 1px solid var(--glass-bd);
}
.loc-mapwrap iframe {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
  filter: invert(.92) hue-rotate(180deg) saturate(.4) brightness(.95);
}
.loc-map-overlay {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  padding: 14px 18px; border-radius: var(--r);
  display: flex; align-items: center; gap: 12px;
  z-index: 2;
}
.loc-map-pin {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white); color: var(--bg-0);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.loc-map-text { font-size: 13px; line-height: 1.4; }
.loc-map-text strong { display: block; }
.loc-map-text span { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--w45); text-transform: uppercase; }

/* ─── DEPOIMENTOS ─── */
.depoimentos { background: var(--bg-0); }
.dep-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.dep-card {
  padding: 32px 28px; border-radius: var(--rl);
  display: flex; flex-direction: column;
  min-height: 280px;
}
.dep-stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--white); }
.dep-quote {
  font-size: 16px; line-height: 1.65;
  color: var(--w80); flex: 1;
  margin-bottom: 22px;
  font-weight: 500;
}
.dep-author { display: flex; align-items: center; gap: 12px; padding-top: 18px; border-top: 1px solid var(--w12); }
.dep-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.dep-author-info {}
.dep-author-name { font-size: 13px; font-weight: 600; }
.dep-author-role { font-family: var(--mono); font-size: 10px; letter-spacing: .08em; color: var(--w45); text-transform: uppercase; margin-top: 2px; }

/* ─── FAQ ─── */
.faq { background: var(--bg-1); }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 880px; }
.faq-item {}
.faq-q {
  width: 100%; padding: 22px 26px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-bd);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  color: var(--white); text-align: left;
  transition: all .25s var(--ease);
}
.faq-q:hover { background: rgba(255,255,255,.07); }
.faq-item.open .faq-q {
  border-radius: var(--r) var(--r) 0 0;
  border-bottom-color: transparent;
}
.faq-icon {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%; border: 1px solid var(--glass-bd);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s var(--ease);
  color: var(--white);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--white); color: var(--bg-0); border-color: var(--white); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a-inner {
  padding: 8px 26px 26px;
  background: rgba(255,255,255,.025);
  border: 1px solid var(--glass-bd);
  border-top: none;
  border-radius: 0 0 var(--r) var(--r);
  font-size: 14.5px; color: var(--w65); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ─── AGENDAR VISITA ─── */
.visita { background: var(--bg-0); position: relative; overflow: hidden; }
.visita-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: .06;
}
.visita-bg img { width: 100%; height: 100%; object-fit: cover; }
.visita-inner {
  position: relative; z-index: 1;
  padding: clamp(48px, 7vw, 80px);
  border-radius: var(--rxl);
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 72px); align-items: start;
}
.visita-text h2 { margin-bottom: 18px; }
.visita-text > p { font-size: 16px; color: var(--w65); line-height: 1.7; margin-bottom: 32px; }
.visita-perks { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.visita-perk { display: flex; align-items: flex-start; gap: 14px; }
.visita-perk-icon {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%; background: rgba(255,255,255,.10);
  border: 1px solid var(--glass-bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.visita-perk-text { font-size: 14.5px; color: var(--w80); line-height: 1.6; padding-top: 3px; }
.visita-perk-text strong { color: var(--white); display: block; margin-bottom: 2px; font-weight: 600; }

.visita-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-row.full { grid-template-columns: 1fr; }
.form-fld { display: flex; flex-direction: column; gap: 6px; }
.form-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: .14em; color: var(--w45); text-transform: uppercase; }
.form-inp, .form-sel, .form-txta {
  padding: 14px 16px; border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--glass-bd);
  color: var(--white); font-family: var(--sans); font-size: 14px;
  outline: none; transition: border-color .2s, background .2s;
  -webkit-appearance: none; appearance: none; width: 100%;
}
.form-inp:focus, .form-sel:focus, .form-txta:focus {
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.08);
}
.form-inp::placeholder { color: var(--w25); }
.form-sel {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(246,246,246,.45)' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-sel option { background: #1a1a1a; color: var(--white); }
.form-txta { resize: vertical; min-height: 90px; }
.form-submit { width: 100%; margin-top: 4px; }
.form-notice { font-family: var(--mono); font-size: 10px; color: var(--w25); letter-spacing: .06em; text-align: center; margin-top: 10px; }
.form-success {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 48px 20px; gap: 18px; min-height: 360px;
}
.form-wrap.submitted .visita-form { display: none; }
.form-wrap.submitted .form-success { display: flex; }
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  border: 1.5px solid rgba(70,224,139,.5);
  background: rgba(70,224,139,.1);
  display: flex; align-items: center; justify-content: center;
  color: #46e08b;
}
.success-title { font-size: 22px; font-weight: 700; letter-spacing: -.02em; }
.success-sub { font-size: 14px; color: var(--w65); line-height: 1.65; max-width: 320px; }

/* ─── FOOTER ─── */
.footer {
  padding: 72px clamp(20px, 5vw, 56px) 36px;
  background: var(--bg-1);
  border-top: 1px solid var(--w06);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: 56px;
  max-width: 1280px; margin-left: auto; margin-right: auto;
}
.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-brand p {
  font-family: var(--mono); font-size: 11px;
  color: var(--w45); line-height: 1.75;
  letter-spacing: .04em; max-width: 280px;
}
.footer-social { display: flex; gap: 8px; margin-top: 22px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-bd);
  display: flex; align-items: center; justify-content: center;
  color: var(--w65); transition: all .2s;
}
.footer-social a:hover { color: var(--white); background: rgba(255,255,255,.10); border-color: var(--glass-bd-2); }
.footer-col-t { font-family: var(--mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--w25); margin-bottom: 20px; }
.footer-col-l { display: flex; flex-direction: column; gap: 14px; }
.footer-col-l a { font-size: 14px; color: var(--w45); transition: color .2s; }
.footer-col-l a:hover { color: var(--white); }
.footer-btm {
  max-width: 1280px; margin: 0 auto;
  padding-top: 28px; border-top: 1px solid var(--w06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-family: var(--mono); font-size: 10px; color: var(--w25); letter-spacing: .08em; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-family: var(--mono); font-size: 10px; color: var(--w45); letter-spacing: .08em; transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ─── REVEAL ON SCROLL ─── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease-out), transform .65s var(--ease-out); }
.reveal.in { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .06s; }
.rd2 { transition-delay: .12s; }
.rd3 { transition-delay: .18s; }
.rd4 { transition-delay: .24s; }
.rd5 { transition-delay: .3s; }
.rd6 { transition-delay: .36s; }

/* ─── LIGHTBOX ─── */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
  padding: 32px;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain; border-radius: var(--r);
  box-shadow: 0 32px 80px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 24px; right: 24px;
  background: var(--glass-bg-2); border: 1px solid var(--glass-bd-2);
  color: var(--white); cursor: pointer;
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.18); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .sol-card.large { grid-column: span 12; min-height: 380px; }
  .sol-card.small, .sol-card.med, .sol-card.half { grid-column: span 6; }
  .planos-grid { grid-template-columns: repeat(2, 1fr); }
  .inst-grid { grid-template-columns: repeat(3, 1fr); }
  .esp-layout { grid-template-columns: 1fr; }
  .esp-gallery-main { height: 360px; }
  .about-grid { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .loc-mapwrap { min-height: 360px; }
  .visita-inner { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .hero-metrics { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-left .topbar-sep { display: none; }
  .topbar-left { gap: 12px; font-size: 10px; }
  .nav-links, .nav-right .btn-ghost { display: none; }
  .hamburger { display: flex; }
  .sol-card.small, .sol-card.med, .sol-card.half { grid-column: span 12; min-height: 320px; }
  .planos-grid { grid-template-columns: 1fr; }
  .inst-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-btm { flex-direction: column; align-items: flex-start; }
  .planos-controls { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
  .esp-tabs { padding: 3px; }
  .esp-tab { padding: 10px 18px; font-size: 12.5px; }
  .esp-thumb { height: 56px; }
  .esp-specs { grid-template-columns: 1fr; }
  .topbar { height: auto; padding: 8px clamp(20px, 5vw, 56px); flex-wrap: wrap; gap: 6px; }
  .topbar-right { gap: 12px; }
}
@media (max-width: 480px) {
  .hero { padding-top: 80px; }
  .hero h1 { font-size: 38px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr 1fr; gap: 14px; padding: 16px 18px; }
  .inst-grid { grid-template-columns: 1fr; }
  .about-stack { grid-template-rows: 220px 160px; }
  .nav-logo-text { display: none; }
}
