/* ============================================================
   Section styles — Wanderson Cruz landing
   ============================================================ */

.gold-ital {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-400);
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section { padding-block: clamp(78px, 11vh, 148px); }

/* ============================================================
   HEADER
   ============================================================ */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .5s var(--ease-out), backdrop-filter .5s, border-color .5s, padding .4s;
  border-bottom: 1px solid transparent;
  padding-block: 8px;
}
.hdr.solid {
  background: rgba(12, 16, 32, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  border-bottom-color: rgba(255,255,255,0.06);
}
.hdr-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-block: 12px; position: relative; max-width: none; padding-inline: clamp(28px, 4vw, 80px); }

.brand { display: inline-flex; align-items: center; gap: 13px; flex: none; height: 56px; overflow: visible; }

/* ---- Cruz logo (real artwork) ---- */
.cruz-logo-img { display: block; width: auto; object-fit: contain; }

.hdr-nav {
  display: flex; gap: 34px;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.hdr-nav a { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.82); transition: color .3s; position: relative; white-space: nowrap; }
.hdr-nav a::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px; background: var(--gold-400); transition: width .35s var(--ease-out); }
.hdr-nav a:hover { color: #fff; }
.hdr-nav a:hover::after { width: 100%; }
.hdr-cta { padding: 13px 22px; font-size: 14.5px; flex: none; }

/* burger */
.hdr-burger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; border-radius: 12px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); }
.hdr-burger span { width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .35s var(--ease-out), opacity .25s; }
.hdr-burger.x span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.x span:nth-child(2) { opacity: 0; }
.hdr-burger.x span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hdr-mobile {
  display: none; flex-direction: column; gap: 4px;
  padding: 0 var(--pad-x); max-height: 0; overflow: hidden;
  background: rgba(12,16,32,0.96); backdrop-filter: blur(16px);
  transition: max-height .5s var(--ease-out), padding .4s;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hdr-mobile.show { max-height: 460px; padding: 10px var(--pad-x) 22px; }
.hdr-mobile a:not(.btn) { font-size: 16px; color: rgba(255,255,255,0.88); padding: 13px 4px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.hdr-mobile .btn { margin-top: 14px; }

/* ============================================================
   HERO — full-bleed cinematográfica
   ============================================================ */
.hero {
  position: relative;
  min-height: 76svh;
  display: flex; align-items: center;
  padding-top: clamp(90px, 11vh, 124px);
  padding-bottom: clamp(52px, 7vh, 76px);
  background: linear-gradient(120deg, var(--navy-900), var(--navy-850));
  overflow: hidden;
  isolation: isolate;
}

/* layers */
.hero-skyline { position: absolute; inset: 0; z-index: 0; }
.hero-skyline image-slot { width: 100%; height: 100%; display: block; }

.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(96deg, var(--navy-900) 0%, rgba(17,22,42,0.96) 26%, rgba(17,22,42,0.62) 48%, rgba(17,22,42,0.18) 66%, transparent 80%),
    linear-gradient(180deg, rgba(12,16,32,0.55) 0%, transparent 22%, transparent 60%, rgba(12,16,32,0.5) 100%);
}

.hero-person {
  position: absolute; z-index: 2; right: 0; bottom: 0; top: auto;
  width: 90%; max-width: 1240px; height: 100%;
  pointer-events: none;
  opacity: 0; transform: translateX(28px) scale(1.02);
  transition: opacity 1.4s var(--ease-out) .15s, transform 1.6s var(--ease-out) .15s;
}
.hero.ready .hero-person { opacity: 1; transform: translateX(8%); }
.hero-person image-slot { width: 100%; height: 100%; display: block; }

.hero-vignette {
  position: absolute; inset: 0; z-index: 3; pointer-events: none;
  box-shadow: inset 0 -120px 120px -60px rgba(8,11,22,0.7), inset 0 60px 80px -40px rgba(8,11,22,0.55);
}

/* content */
.hero-content { position: relative; z-index: 4; width: 100%; max-width: none; padding-inline: clamp(28px, 4vw, 80px); margin-top: clamp(40px, 7vh, 96px); }
.hero-left { max-width: 840px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 17px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(6px);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: #fff;
  opacity: 0; transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.hb-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold-400); box-shadow: 0 0 12px var(--gold-400); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.2vw, 58px);
  line-height: 0.98; font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 28px; color: #fff;
  max-width: 14ch; text-wrap: wrap;
  text-shadow: 0 4px 40px rgba(8,11,22,0.5);
  opacity: 0; transform: translateY(26px);
  transition: opacity 1s var(--ease-out) .1s, transform 1s var(--ease-out) .1s;
}
.hero-title .nowrap { white-space: nowrap; }
.hero-gold { white-space: nowrap; font-family: var(--font-display); font-style: italic; font-weight: 700; letter-spacing: -0.03em; color: var(--gold-400); }
.br-d { display: inline; }
@media (max-width: 880px) { .br-d { display: none; } }

.hero-sub {
  margin-top: 26px; max-width: 500px;
  font-size: clamp(14px, 1.3vw, 16px); line-height: 1.6;
  color: var(--gray-soft);
  opacity: 0; transform: translateY(22px);
  transition: opacity 1s var(--ease-out) .22s, transform 1s var(--ease-out) .22s;
}

.hero-creci {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 40px;
  font-size: 14px; color: rgba(255,255,255,0.78); letter-spacing: 0.02em;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease-out) .32s, transform 1s var(--ease-out) .32s;
}
.hero-creci strong { color: var(--gold-300); font-weight: 700; letter-spacing: 0.06em; }
.creci-ico { color: var(--gold-400); flex: none; }
.creci-logo { height: 26px; width: auto; flex: none; object-fit: contain; }

.hero-cta {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px;
  opacity: 0; transform: translateY(20px);
  transition: opacity 1s var(--ease-out) .42s, transform 1s var(--ease-out) .42s;
}

.btn-outline {
  background: rgba(255,255,255,0.02); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-3px); }

.hero.ready .hero-badge,
.hero.ready .hero-title,
.hero.ready .hero-sub,
.hero.ready .hero-creci,
.hero.ready .hero-cta { opacity: 1; transform: none; }

/* floating social proof */
.hero-proof-card {
  position: absolute; z-index: 5; right: clamp(20px, 4vw, 56px); bottom: clamp(26px, 5vh, 54px);
  display: flex; align-items: center; gap: 15px;
  background: #fff; border-radius: 18px; padding: 16px 22px 16px 18px;
  box-shadow: 0 30px 70px -20px rgba(5,8,18,0.6);
  max-width: 320px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s var(--ease-out) .6s, transform 1s var(--ease-out) .6s;
  animation: floaty 7s var(--ease-in-out) infinite 1.6s;
}
.hero.ready .hero-proof-card { opacity: 1; transform: none; }
.hpc-avatars { display: flex; flex: none; }
.hpc-av { width: 38px; height: 38px; border-radius: 50%; border: 2.5px solid #fff; margin-left: -12px; object-fit: cover; background: var(--navy-700); display: block; }
.hpc-av:first-child { margin-left: 0; }
.hpc-avatars::after { content: "+"; align-self: center; margin-left: 6px; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--navy-700); }
.hero-proof-card p { font-size: 13.5px; line-height: 1.4; color: var(--navy-800); }
.hero-proof-card strong { color: var(--navy-800); font-weight: 700; }

/* ============================================================
   BARRA DE BENEFÍCIOS — clara
   ============================================================ */
.trust { padding-block: clamp(34px, 5vh, 52px); background: linear-gradient(180deg, #f4f1ea, #ece7dc); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.trust-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding: 8px 22px; border-right: 1px solid rgba(31,39,66,0.10); }
.trust-card:last-child { border-right: none; }
.trust-ico { flex: none; color: var(--gold-600); }
.trust-card h4 { font-size: 20px; font-weight: 600; line-height: 1.4; color: var(--navy-800); max-width: 260px; }

/* ============================================================
   EMOTIONAL
   ============================================================ */
.emotional { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); overflow: hidden; }
.emo-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.1fr 0.92fr; gap: clamp(40px, 6vw, 90px); align-items: center; }
.emo-title { font-size: clamp(32px, 4.6vw, 58px); line-height: 1.04; margin-top: 22px; }
.emo-text { margin-top: 22px; font-size: clamp(16px, 1.6vw, 18.5px); line-height: 1.66; color: var(--text-on-dark-dim); max-width: 540px; }
.emo-stats { display: flex; flex-wrap: nowrap; gap: clamp(18px, 2vw, 32px); margin-top: 48px; }
.emo-stats > div { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.emo-stats strong { font-family: var(--font-display); font-weight: 700; font-size: clamp(38px, 4.4vw, 60px); color: #fff; line-height: 0.95; white-space: nowrap; }
.emo-stats > div > span { font-size: clamp(13px, 1.2vw, 15.5px); color: #fff; margin-top: 12px; line-height: 1.3; }

.emo-visual { position: relative; }
.emo-photo { aspect-ratio: 4 / 4.4; box-shadow: var(--shadow-lg); border-radius: var(--r-xl); object-fit: cover; width: 100%; border: 1px solid var(--glass-border); }
.emo-mock { position: absolute; right: -26px; bottom: -28px; width: 270px; padding: 15px; box-shadow: var(--shadow-lg); }

/* ---- Phone mockup (WhatsApp) ---- */
.emo-phone {
  position: absolute; right: -36px; bottom: -242px; z-index: 3;
  width: 242px; aspect-ratio: 232 / 470;
  background: linear-gradient(155deg, #1a1f30, #0c0f1a);
  border-radius: 36px; padding: 11px;
  box-shadow: 0 40px 80px -24px rgba(4,6,14,0.8), inset 0 0 0 1.5px rgba(255,255,255,0.08);
  clip-path: inset(0 0 47% 0 round 36px 36px 0 0);
}
.phone-notch { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 92px; height: 19px; background: #0c0f1a; border-radius: 0 0 13px 13px; z-index: 4; }
.phone-screen { width: 100%; height: 100%; border-radius: 25px; overflow: hidden; background: #e9e4dc; display: flex; flex-direction: column; }

.wa-bar { display: flex; align-items: center; gap: 8px; padding: 20px 12px 9px; background: #1f6e5b; color: #fff; }
.wa-bar-back { font-size: 19px; line-height: 1; opacity: 0.9; margin-right: -2px; }
.wa-bar-av { width: 28px; height: 28px; flex: none; border-radius: 50%; overflow: hidden; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 10px; color: #1a1407; background: linear-gradient(150deg, var(--gold-300), var(--gold-600)); }
.wa-bar-av img { width: 100%; height: 100%; object-fit: cover; }
.wa-bar-txt { flex: 1; line-height: 1.2; min-width: 0; }
.wa-bar-txt strong { display: block; font-size: 12.5px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wa-bar-txt em { font-style: normal; font-size: 10px; color: rgba(255,255,255,0.82); display: inline-flex; align-items: center; gap: 4px; }
.wa-bar-txt .dot-on { background: #8af0b8; box-shadow: none; animation: none; }
.wa-bar-ico { color: #fff; flex: none; opacity: 0.9; }

.wa-chat {
  flex: 1; padding: 11px 11px 14px; display: flex; flex-direction: column; gap: 7px;
  background:
    linear-gradient(rgba(233,228,220,0.92), rgba(233,228,220,0.92)),
    repeating-linear-gradient(135deg, #d8d0c4 0 1px, transparent 1px 9px);
}
.wa-bubble {
  position: relative; align-self: flex-start; max-width: 88%; width: fit-content;
  background: #fff; color: #1f2530;
  font-size: 11.6px; line-height: 1.34;
  padding: 8px 34px 8px 11px; border-radius: 9px; border-top-left-radius: 2px;
  box-shadow: 0 1px 1px rgba(8,11,22,0.12);
}
.wa-bubble .wa-strong { font-weight: 700; }
.wa-bubble time { position: absolute; right: 9px; bottom: 6px; font-size: 8px; color: #9aa0a6; }

/* WhatsApp chat mock */
.fc-chat-head { display: flex; align-items: center; gap: 10px; padding-bottom: 12px; margin-bottom: 13px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.fc-avatar { width: 36px; height: 36px; flex: none; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: #1a1407; background: linear-gradient(150deg, var(--gold-300), var(--gold-600)); }
.fc-chat-head > div { flex: 1; line-height: 1.2; }
.fc-chat-head strong { font-size: 13.5px; font-weight: 600; display: block; color: var(--text-on-dark); }
.fc-chat-head em { font-style: normal; font-size: 11px; color: var(--text-on-dark-dim); display: inline-flex; align-items: center; gap: 5px; }
.dot-on { width: 6px; height: 6px; border-radius: 50%; background: #25c866; display: inline-block; box-shadow: 0 0 0 0 rgba(37,200,102,0.6); animation: pulse-ring 2.4s infinite; }
.bubble { font-size: 12.8px; line-height: 1.42; padding: 9px 12px; border-radius: 13px; margin-bottom: 7px; max-width: 88%; width: fit-content; }
.bubble.in { background: rgba(255,255,255,0.07); border-top-left-radius: 4px; color: var(--text-on-dark); }
.bubble.out { background: rgba(37,200,102,0.16); border: 1px solid rgba(37,200,102,0.2); border-top-right-radius: 4px; margin-left: auto; color: #dfeede; }
.bubble-title { font-weight: 700; font-size: 13.5px; }

@media (max-width: 880px) { .emo-phone { right: 50%; transform: translateX(50%); bottom: -250px; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { background: var(--navy-950); }
.how-track { position: relative; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; margin-top: 64px; }
.how-line { position: absolute; top: 33px; left: 8.95%; right: 8.95%; height: 1px; background: rgba(255,255,255,0.10); }
.how-line i { position: absolute; inset: 0; background: linear-gradient(90deg, var(--gold-600), var(--gold-300)); transform-origin: left; animation: growline 2s var(--ease-out) forwards; }
@keyframes growline { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.how-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.how-node { position: relative; width: 66px; height: 66px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-850)); border: 1px solid var(--glass-border-gold); color: var(--gold-400); box-shadow: var(--shadow-md); }
.how-n { position: absolute; top: -10px; right: -10px; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: #1a1407; background: linear-gradient(150deg, var(--gold-300), var(--gold-600)); width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; }
.how-step h4 { font-size: 18.5px; font-weight: 600; margin-bottom: 10px; line-height: 1.2; max-width: 230px; }
.how-step p { font-size: 14.5px; color: var(--text-on-dark-dim); line-height: 1.6; max-width: 250px; }

/* ============================================================
   ANÁLISE DE CRÉDITO
   ============================================================ */
.analise { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); overflow: hidden; }
.analise-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 5vw, 80px); align-items: center; }
.analise-copy { max-width: 500px; }
.analise-reassure { margin-top: 36px; display: flex; flex-direction: column; gap: 18px; }
.reassure-item { display: flex; gap: 14px; align-items: flex-start; }
.reassure-check { flex: none; margin-top: 2px; color: var(--gold-400); padding: 5px; box-sizing: content-box; border-radius: 50%; background: rgba(232,194,143,0.12); border: 1px solid var(--glass-border-gold); }
.reassure-item strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.reassure-item span { font-size: 14px; color: var(--text-on-dark-dim); line-height: 1.5; }

/* card */
.analise-card-wrap { perspective: 1400px; }
.analise-card {
  position: relative; padding: 26px; overflow: hidden;
  background: linear-gradient(170deg, rgba(42,52,84,0.55), rgba(22,29,54,0.7));
  border: 1px solid var(--glass-border-gold);
  box-shadow: var(--shadow-lg);
  min-height: 466px; display: flex; flex-direction: column;
}
.ac-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ac-top-l { display: flex; align-items: center; gap: 12px; }
.ac-avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: #1a1407; background: linear-gradient(150deg, var(--gold-300), var(--gold-600)); }
.ac-top-txt strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 16px; }
.ac-top-txt em { font-style: normal; font-size: 12.5px; color: var(--text-on-dark-dim); }
.ac-back { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; color: var(--text-on-dark-dim); background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); transition: all .3s; }
.ac-back:hover { color: var(--text-on-dark); background: rgba(255,255,255,0.1); }

.ac-progress { height: 5px; border-radius: 99px; background: rgba(255,255,255,0.08); overflow: hidden; margin-bottom: 26px; }
.ac-progress i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300)); transition: width .55s var(--ease-out); }

.ac-body { position: relative; flex: 1; display: flex; flex-direction: column; }
.ac-step, .ac-result { display: flex; flex-direction: column; }
.from-right { animation: slideR .5s var(--ease-out); }
.from-left { animation: slideL .5s var(--ease-out); }
@keyframes slideR { from { opacity: 0; transform: translateX(28px); } to { opacity: 1; transform: none; } }
@keyframes slideL { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: none; } }

.ac-q-ico { color: var(--gold-400); margin-bottom: 14px; }
.ac-q { font-size: clamp(19px, 2.3vw, 23px); font-weight: 600; line-height: 1.22; }
.ac-hint { font-size: 14px; color: var(--text-on-dark-dim); margin-top: 10px; line-height: 1.5; }

.ac-options { display: flex; flex-direction: column; gap: 11px; margin-top: 22px; }
.ac-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  text-align: left; padding: 16px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.045); border: 1px solid var(--glass-border);
  color: var(--text-on-dark); font-size: 15.5px; font-weight: 500; font-family: var(--font-body);
  transition: all .35s var(--ease-out);
}
.ac-opt .ac-opt-arrow { color: var(--text-on-dark-faint); opacity: 0; transform: translateX(-6px); transition: all .35s var(--ease-out); flex: none; }
.ac-opt:hover { background: rgba(232,194,143,0.10); border-color: var(--glass-border-gold); transform: translateX(4px); }
.ac-opt:hover .ac-opt-arrow { opacity: 1; transform: none; color: var(--gold-400); }
.ac-opt.sel { background: rgba(232,194,143,0.16); border-color: var(--gold-500); }

.ac-input-block { margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.ac-input { display: flex; align-items: center; gap: 10px; padding: 4px 16px; border-radius: 14px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); transition: border-color .3s; }
.ac-input:focus-within { border-color: var(--gold-500); }
.ac-input-ico { font-size: 18px; }
.ac-input input { flex: 1; background: none; border: none; outline: none; color: var(--text-on-dark); font-family: var(--font-body); font-size: 17px; padding: 16px 0; letter-spacing: 0.02em; }
.ac-input input::placeholder { color: var(--text-on-dark-faint); }
.ac-followup { margin-top: 6px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 12px; animation: slideR .45s var(--ease-out); }
.ac-followup label { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--gold-300); }
.ac-followup .ac-input-ico { font-size: 15px; font-weight: 700; color: var(--gold-300); }
.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none; }

/* result */
.ac-result { position: relative; align-items: center; text-align: center; }
.ac-result-glow { position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 220px; height: 220px; background: radial-gradient(circle, var(--gold-glow), transparent 65%); filter: blur(20px); pointer-events: none; }
.ac-result-ico { color: var(--gold-400); position: relative; margin-bottom: 16px; animation: floaty 4s var(--ease-in-out) infinite; }
.ac-result-title { font-size: clamp(20px, 2.4vw, 25px); font-weight: 600; line-height: 1.2; position: relative; }
.ac-result-sub { font-size: 14.5px; color: var(--text-on-dark-dim); margin-top: 13px; line-height: 1.58; max-width: 380px; position: relative; }
.ac-summary { width: 100%; margin: 22px 0; display: flex; flex-direction: column; gap: 1px; border-radius: 14px; overflow: hidden; border: 1px solid var(--glass-border); }
.ac-sum-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 12px 16px; background: rgba(255,255,255,0.035); font-size: 13.5px; }
.ac-sum-row span { color: var(--text-on-dark-dim); }
.ac-sum-row strong { font-weight: 600; color: var(--text-on-dark); text-align: right; }
.ac-restart { margin-top: 14px; font-size: 13px; color: var(--text-on-dark-faint); text-decoration: underline; text-underline-offset: 3px; transition: color .3s; }
.ac-restart:hover { color: var(--text-on-dark-dim); }

.ac-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.07); display: flex; align-items: center; gap: 9px; font-size: 12px; color: var(--text-on-dark-faint); }
.ac-foot > span { color: var(--gold-400); flex: none; }

/* ============================================================
   REGIÕES
   ============================================================ */
.regioes { background: var(--navy-950); }
.reg-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 230px; gap: 20px; margin-top: 56px; }
.reg-card { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--glass-border); cursor: pointer; }
.reg-tall { grid-row: span 2; }
.reg-card-link { position: absolute; inset: 0; display: block; }
.reg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.reg-card:hover .reg-img { transform: scale(1.07); }
.reg-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,15,40,0.15) 0%, rgba(8,15,40,0.80) 100%); transition: background .5s; }
.reg-card:hover .reg-shade { background: linear-gradient(180deg, rgba(8,15,40,0.30) 0%, rgba(8,15,40,0.90) 100%); }
.reg-body { position: absolute; inset: auto 0 0 0; padding: 24px; z-index: 2; }
.reg-val { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; color: var(--gold-300); padding: 5px 11px; border-radius: 99px; background: rgba(232,194,143,0.14); border: 1px solid var(--glass-border-gold); margin-bottom: 12px; }
.reg-body h4 { font-size: 23px; font-weight: 700; margin-bottom: 8px; }
.reg-body p { font-size: 14px; color: var(--text-on-dark-dim); line-height: 1.5; max-width: 320px; }
.reg-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13.5px; font-weight: 600; color: var(--gold-400); max-height: 0; opacity: 0; overflow: hidden; transition: all .45s var(--ease-out); }
.reg-card:hover .reg-link { max-height: 30px; opacity: 1; }
.reg-link span { transition: transform .3s; }
.reg-link:hover span { transform: translateX(4px); }

/* ============================================================
   OBJEÇÕES
   ============================================================ */
.objecoes { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); overflow: hidden; }
.obj-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.obj-card { position: relative; padding: 30px 26px 28px; border-radius: var(--r-lg); background: rgba(255,255,255,0.035); border: 1px solid var(--glass-border); transition: all .45s var(--ease-out); overflow: hidden; }
.obj-card:hover { background: rgba(255,255,255,0.06); border-color: var(--glass-border-gold); transform: translateY(-5px); }
.obj-quote { position: absolute; top: 2px; right: 18px; font-family: var(--font-display); font-size: 80px; font-weight: 800; color: rgba(232,194,143,0.14); line-height: 1; }
.obj-card h4 { font-size: 20px; font-weight: 600; margin-bottom: 12px; position: relative; }
.obj-card h4::before { content: ""; display: block; width: 30px; height: 2px; background: var(--gold-500); margin-bottom: 16px; border-radius: 2px; }
.obj-card p { font-size: 14.5px; color: var(--text-on-dark-dim); line-height: 1.6; }
.obj-close { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; justify-content: center; padding: 32px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(232,194,143,0.12), rgba(31,39,66,0.4)); border: 1px solid var(--glass-border-gold); }
.obj-close p { font-size: 18px; line-height: 1.45; color: var(--text-on-dark); }
.obj-close p strong { color: var(--gold-300); }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.depo { background: var(--navy-950); }
.depo-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 20px; margin-top: 56px; }
.depo-video { grid-row: span 2; display: flex; flex-direction: column; }
.depo-video-ph { flex: 1; min-height: 280px; border-radius: var(--r-lg); position: relative; overflow: hidden; background: #000; }
.depo-video-ph iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.depo-play { position: absolute; inset: 0; margin: auto; width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(232,194,143,0.92); box-shadow: var(--shadow-gold); transition: transform .4s var(--ease-out); }
.depo-play:hover { transform: scale(1.08); }
.depo-play::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 1px solid rgba(232,194,143,0.5); animation: pulse-ring 2.4s infinite; }
.play-tri { width: 0; height: 0; border-style: solid; border-width: 11px 0 11px 18px; border-color: transparent transparent transparent #1a1407; margin-left: 4px; }
.depo-video-cap { padding: 18px 4px 0; }
.depo-video-cap strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.depo-video-cap span { font-size: 13.5px; color: var(--text-on-dark-dim); }

.depo-card { padding: 26px; display: flex; flex-direction: column; }
.depo-q { font-size: 15.5px; line-height: 1.6; color: var(--text-on-dark); margin: 16px 0 20px; flex: 1; }
.depo-who { display: flex; align-items: center; gap: 12px; }
.depo-av { width: 44px; height: 44px; flex: none; }
.depo-who strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 14.5px; color: var(--gold-400); }
.depo-who span { font-size: 12.5px; color: var(--text-on-dark-dim); }

/* 4º bloco — galeria de conquistas */
.depo-more { display: flex; }
.depo-more-inner {
  display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
  width: 100%; padding: 28px 26px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(232,194,143,0.14), rgba(31,39,66,0.42));
  border: 1px solid var(--glass-border-gold);
  transition: transform .45s var(--ease-out), background .45s var(--ease-out);
}
.depo-more-inner:hover { transform: translateY(-5px); background: linear-gradient(160deg, rgba(232,194,143,0.22), rgba(31,39,66,0.5)); }
.depo-more-ico { color: var(--gold-400); margin-bottom: 6px; }
.depo-more-inner strong { font-family: var(--font-display); font-weight: 600; font-size: 20px; color: #fff; line-height: 1.2; }
.depo-more-sub { font-size: 14px; color: var(--text-on-dark-dim); line-height: 1.5; }
.depo-more-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; font-size: 14px; font-weight: 600; color: var(--gold-300); }
.depo-more-link span { transition: transform .3s; }
.depo-more-inner:hover .depo-more-link span { transform: translateX(4px); }

/* miniaturas das fotos da galeria */
.depo-more-thumbs { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.depo-more-thumbs img { width: 56px; height: 56px; border-radius: 12px; object-fit: cover; border: 1.5px solid rgba(255,255,255,0.14); transition: transform .4s var(--ease-out); }
.depo-more-inner:hover .depo-more-thumbs img:nth-child(1) { transform: translateY(-3px) rotate(-3deg); }
.depo-more-inner:hover .depo-more-thumbs img:nth-child(3) { transform: translateY(-3px) rotate(3deg); }
.depo-more-count { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 12px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--gold-300); background: rgba(232,194,143,0.14); border: 1.5px solid var(--glass-border-gold); }

/* ============================================================
   SOBRE
   ============================================================ */
.sobre { background: linear-gradient(180deg, var(--navy-900), var(--navy-950)); overflow: hidden; }
.sobre-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.sobre-visual { position: relative; }
.sobre-photo { aspect-ratio: 4 / 4.6; box-shadow: var(--shadow-lg); border-radius: var(--r-xl); object-fit: cover; width: 100%; border: 1px solid var(--glass-border); }
.sobre-creci { position: absolute; right: -22px; bottom: 30px; display: flex; align-items: center; gap: 12px; padding: 14px 18px; box-shadow: var(--shadow-lg); background: rgba(255,255,255,0.92); border: 1px solid rgba(255,255,255,0.6); }
.sobre-creci strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--navy-900); }
.sobre-creci span { font-size: 12px; color: var(--navy-700); }
.sobre-text { margin-top: 22px; font-size: clamp(16px, 1.6vw, 18px); line-height: 1.66; color: var(--text-on-dark-dim); max-width: 560px; }
.sobre-values { margin-top: 32px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.sobre-val { display: flex; gap: 11px; align-items: flex-start; }
.sobre-val strong { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15.5px; margin-bottom: 4px; }
.sobre-val span { font-size: 13px; color: var(--text-on-dark-dim); line-height: 1.5; }

@media (max-width: 880px) { .sobre-creci { right: 0; } }

/* ============================================================
   CTA FINAL
   ============================================================ */
.final { position: relative; overflow: hidden; text-align: center; padding-block: clamp(100px, 16vh, 180px); background: var(--navy-950); }
.final-bg { position: absolute; inset: 0; border-radius: 0; }
.final-shade { position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 30%, rgba(31,39,66,0.4), rgba(10,13,24,0.94)); }
.final-inner { position: relative; z-index: 3; max-width: 800px; }
.final-title { font-size: clamp(34px, 5.6vw, 68px); line-height: 1.04; margin-top: 24px; font-weight: 700; letter-spacing: -0.03em; }
.final-sub { margin: 24px auto 0; max-width: 540px; font-size: clamp(16px, 1.7vw, 19px); line-height: 1.6; color: var(--text-on-dark-dim); }
.final-cta { margin-top: 40px; display: flex; justify-content: center; }
.final-mini { margin-top: 30px; display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
.final-mini span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--text-on-dark-dim); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-950); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 70px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 50px; padding-bottom: 50px; }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: var(--text-on-dark-dim); max-width: 420px; }
.footer-social { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.footer-social-label { font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-on-dark-faint); }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.12); color: var(--text-on-dark-dim); transition: color .3s, border-color .3s; }
.footer-social a:hover { color: var(--gold-400); border-color: var(--gold-400); }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.footer-links h5 { font-family: var(--font-display); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-400); margin-bottom: 16px; }
.footer-links a, .footer-links span { display: block; font-size: 14px; color: var(--text-on-dark-dim); margin-bottom: 11px; transition: color .3s; }
.footer-links a:hover { color: var(--text-on-dark); }
.footer-base { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-block: 24px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 12.5px; color: var(--text-on-dark-faint); }

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.wa-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 70;
  width: 62px; height: 62px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(155deg, #2bd36b, #1faf52);
  box-shadow: 0 14px 40px -8px rgba(37,200,100,0.6);
  opacity: 0; transform: translateY(24px) scale(0.8); pointer-events: none;
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.wa-float.show { opacity: 1; transform: none; pointer-events: auto; }
.wa-float:hover { transform: scale(1.07); }
.wa-ring { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(37,200,100,0.5); animation: pulse-ring 2.6s infinite; }
.wa-ico { position: relative; }
.wa-tip {
  position: absolute; right: 74px; top: 50%; transform: translateY(-50%) translateX(8px);
  white-space: nowrap; background: #fff; color: #11162a; font-size: 13.5px; font-weight: 600;
  padding: 10px 15px; border-radius: 12px; box-shadow: var(--shadow-md);
  opacity: 0; pointer-events: none; transition: all .4s var(--ease-out);
}
.wa-tip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: #fff; }
.wa-tip.show, .wa-float:hover .wa-tip { opacity: 1; transform: translateY(-50%); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hdr-nav { display: none; }
  .hdr-burger { display: flex; }
  .hdr-mobile { display: flex; }
  .hdr-cta { display: none; }
  .hdr .cruz-logo-img { height: 56px !important; margin-block: 0 !important; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 26px; }
  .trust-card:nth-child(2) { border-right: none; }
  .trust-card:nth-child(1), .trust-card:nth-child(2) { border-bottom: 1px solid rgba(31,39,66,0.10); padding-bottom: 26px; }
  .hero-person { width: 48%; max-width: 420px; right: 0%; height: 92%; }
  .hero-title { max-width: 14ch; }
}

@media (max-width: 880px) {
  .hero {
    min-height: 100svh; flex-direction: column; align-items: stretch;
    padding-top: 100px; padding-bottom: 32px;
  }
  .hero-overlay {
    background: linear-gradient(180deg, rgba(8,11,22,0.72) 0%, rgba(8,11,22,0.62) 50%, rgba(8,11,22,0.82) 100%);
  }
  .hero-content { order: -1; margin-top: 20px; }
  .hero-left { max-width: 100%; }
  .hero-title { max-width: 100%; font-size: clamp(34px, 8.5vw, 52px); }
  .hero-sub { max-width: 100%; }
  .hero-person { display: none; }
  .hero.ready .hero-person { transform: none; }
  .hero-proof-card {
    position: relative; right: auto; bottom: auto;
    margin-top: 28px;
    animation: none; width: fit-content; max-width: 260px;
    padding: 10px 14px 10px 12px; gap: 10px; border-radius: 14px;
  }
  .hpc-av { width: 28px; height: 28px; margin-left: -9px; border-width: 2px; }
  .hero-proof-card p { font-size: 12px; }
  .hero-vignette { display: none; }

  .emo-grid, .analise-grid, .sobre-grid { grid-template-columns: 1fr; }
  .emo-visual { max-width: 420px; }
  .emo-phone { display: none; }
  .sobre-grid { display: flex; flex-direction: column; }
  .sobre-visual { max-width: 420px; }
  .sobre-values { grid-template-columns: 1fr 1fr; }
  .how-track { grid-template-columns: repeat(2, 1fr); gap: 40px 26px; }
  .how-line { display: none; }
  .how-step:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 340px; margin-inline: auto; }
  .reg-grid { grid-template-columns: repeat(2, 1fr); }
  .reg-tall { grid-row: span 1; }
  .obj-grid { grid-template-columns: repeat(2, 1fr); }
  .depo-grid { grid-template-columns: 1fr 1fr; }
  .depo-video { grid-column: span 2; grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 560px) {
  :root { --pad-x: 20px; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .hero-badge { font-size: 10.5px; letter-spacing: 0.08em; }
  .trust-grid { grid-template-columns: 1fr; gap: 0; }
  .trust-card { border-right: none !important; border-bottom: 1px solid rgba(31,39,66,0.10) !important; padding: 22px 18px; }
  .trust-card:last-child { border-bottom: none !important; }
  .how-track { grid-template-columns: 1fr; }
  .how-step:last-child:nth-child(odd) { grid-column: auto; max-width: none; margin-inline: 0; }
  .reg-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .obj-grid { grid-template-columns: 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .depo-video { grid-column: span 1; }
  .emo-stats { gap: 14px; }
  .emo-stats strong { font-size: clamp(30px, 8vw, 44px); }
  .sobre-values { grid-template-columns: 1fr; gap: 16px; }
  .analise-card { padding: 20px; min-height: auto; }
  .final-cta { flex-direction: column; align-items: stretch; }
  .final-cta .btn { width: 100%; }
  .final-mini { gap: 14px 20px; }
  .footer-base { flex-direction: column; align-items: flex-start; gap: 8px; }
  .wa-float { right: 16px; bottom: 16px; }
}

/* ============================================================
   REGIAO VIEW
   ============================================================ */
.rg-head { padding: clamp(34px,6vh,60px) var(--pad-x) clamp(20px,3vh,30px); max-width: var(--maxw); margin: 0 auto; }
.rg-head h1 { font-size: clamp(30px,4.4vw,52px); line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; margin-top: 18px; }
.rg-head p  { margin-top: 14px; max-width: 620px; font-size: clamp(15px,1.5vw,17.5px); line-height: 1.6; color: var(--text-on-dark-dim); }
.rg-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--text-on-dark-dim); transition: color .3s; }
.rg-back:hover { color: #fff; }
.rg-zonas { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.rg-zona { font-size: 13.5px; font-weight: 600; padding: 9px 16px; border-radius: 999px; color: var(--text-on-dark-dim); background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); transition: all .3s; }
.rg-zona:hover { color: #fff; border-color: var(--glass-border-gold); }
.rg-zona.active { color: #1a1407; background: linear-gradient(180deg,var(--gold-400),var(--gold-600)); border-color: transparent; }

.rg-split { max-width: var(--maxw); margin: 0 auto; padding: clamp(20px,3vh,30px) var(--pad-x) clamp(70px,12vh,120px); display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(24px,3vw,48px); align-items: start; }
@media (max-width: 980px) { .rg-split { grid-template-columns: 1fr; } }
.rg-map { position: sticky; top: 96px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--glass-border); box-shadow: var(--shadow-lg); height: clamp(420px,70vh,760px); background: var(--navy-850); }
.rg-map .leaflet-container { width: 100%; height: 100%; background: #1a1a2e; }
.rg-map .leaflet-popup-content-wrapper { border-radius: 10px; box-shadow: 0 4px 20px rgba(0,0,0,.25); }
.rg-map .leaflet-popup-tip { background: #fff; }
@media (max-width: 980px) { .rg-map { position: relative; top: 0; height: 340px; } }
.rg-list { display: flex; flex-direction: column; gap: 24px; }
.rg-count { font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; }

.emp { position: relative; display: grid; grid-template-columns: 300px 1fr; border-radius: var(--r-lg); overflow: hidden; background: #fff; border: 1px solid rgba(255,255,255,0.5); box-shadow: var(--shadow-md); transition: transform .45s var(--ease-out), box-shadow .45s; opacity: 0; transform: translateY(26px); }
.emp.in { opacity: 1; transform: none; }
.emp:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.emp-cardlink { position: absolute; inset: 0; z-index: 1; }
.emp-photo { position: relative; min-height: 240px; }
.emp-photo image-slot { width: 100%; height: 100%; display: block; }
.emp-status { position: absolute; top: 14px; left: 14px; z-index: 3; font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 11px; border-radius: 999px; color: #1a1407; background: linear-gradient(180deg,var(--gold-300),var(--gold-500)); }
.emp-mcmv { position: absolute; top: 14px; right: 14px; z-index: 3; font-size: 10px; font-weight: 800; letter-spacing: 0.08em; padding: 5px 9px; border-radius: 999px; color: #fff; background: rgba(15,23,42,0.75); backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,0.15); }
.emp-body { padding: 26px 28px; display: flex; flex-direction: column; }
.emp-body h3 { font-family: var(--font-display); font-size: 23px; font-weight: 700; letter-spacing: -0.01em; color: var(--navy-900); }
.emp-loc { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--navy-700); margin-top: 6px; }
.emp-desc { font-size: 14.5px; line-height: 1.55; color: #4a5163; margin-top: 13px; }
.emp-specs { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.emp-spec { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--navy-800); padding: 8px 12px; border-radius: 10px; background: #f1eee7; border: 1px solid #e2ddd2; }
.emp-foot { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: auto; padding-top: 20px; flex-wrap: wrap; }
.emp-price { line-height: 1.1; }
.emp-price em { font-style: normal; display: block; font-size: 11.5px; color: #838b9c; letter-spacing: 0.04em; }
.emp-price strong { font-family: var(--font-display); font-size: 23px; font-weight: 700; color: var(--navy-900); }
.emp-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; padding: 12px 19px; border-radius: 999px; background: var(--navy-900); color: #fff; transition: transform .35s var(--ease-out), background .35s; }
.emp-btn:hover { transform: translateY(-2px); background: var(--navy-700); }
@media (max-width: 560px) { .emp { grid-template-columns: 1fr; } .emp-photo { min-height: 220px; } }

/* ============================================================
   IMOVEL VIEW
   ============================================================ */
.im-wrap { max-width: 1240px; margin: 0 auto; padding: clamp(24px,4vh,40px) var(--pad-x) clamp(70px,12vh,120px); }
.im-back { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 500; color: var(--text-on-dark-dim); transition: color .3s; }
.im-back:hover { color: #fff; }

.im-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; margin-top: 22px; height: clamp(320px,52vh,520px); }
.im-main { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--glass-border); }
.im-side { display: grid; grid-template-rows: 1fr 1fr; gap: 12px; }
.im-side .im-cell { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--glass-border); }
.im-gallery image-slot { width: 100%; height: 100%; display: block; }
.im-badge { position: absolute; top: 16px; left: 16px; z-index: 3; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; color: #1a1407; background: linear-gradient(180deg,var(--gold-300),var(--gold-500)); }
.im-more { position: absolute; right: 16px; bottom: 16px; z-index: 3; font-size: 12.5px; font-weight: 600; color: #fff; padding: 8px 14px; border-radius: 999px; background: rgba(8,11,22,0.6); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(6px); cursor: pointer; transition: background 0.18s; }
.im-more:hover { background: rgba(8,11,22,0.85); }

/* ---- Lightbox ---- */
.lb-overlay { position: fixed; inset: 0; z-index: 9000; background: rgba(0,0,0,0.92); display: flex; align-items: center; justify-content: center; }
.lb-box { position: relative; display: flex; flex-direction: column; align-items: center; width: 100%; max-width: 1100px; max-height: 100vh; padding: 56px 64px 16px; box-sizing: border-box; }
.lb-close { position: absolute; top: 14px; right: 18px; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; opacity: 0.7; line-height: 1; }
.lb-close:hover { opacity: 1; }
.lb-img-wrap { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; width: 100%; min-height: 0; }
.lb-img { max-width: 100%; max-height: 65vh; object-fit: contain; border-radius: 8px; display: block; }
.lb-caption { position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%); font-size: 13px; color: rgba(255,255,255,0.55); white-space: nowrap; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: #fff; font-size: 36px; width: 48px; height: 72px; border-radius: 6px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; z-index: 2; }
.lb-nav:hover { background: rgba(255,255,255,0.22); }
.lb-prev { left: 10px; }
.lb-next { right: 10px; }
.lb-counter { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 36px; margin-bottom: 10px; }
.lb-thumbs { display: flex; gap: 6px; overflow-x: auto; max-width: 100%; padding-bottom: 4px; scrollbar-width: thin; }
.lb-thumbs::-webkit-scrollbar { height: 4px; }
.lb-thumbs::-webkit-scrollbar-track { background: transparent; }
.lb-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 2px; }
.lb-thumb { width: 64px; height: 44px; object-fit: cover; border-radius: 4px; cursor: pointer; opacity: 0.5; border: 2px solid transparent; flex-shrink: 0; transition: opacity 0.15s, border-color 0.15s; }
.lb-thumb:hover { opacity: 0.8; }
.lb-thumb.active { opacity: 1; border-color: var(--gold-500); }
@media (max-width: 600px) { .lb-box { padding: 48px 8px 12px; } .lb-nav { width: 36px; height: 56px; font-size: 28px; } .lb-thumb { width: 48px; height: 34px; } }
@media (max-width: 760px) { .im-gallery { grid-template-columns: 1fr; height: auto; } .im-main { height: 280px; } .im-side { grid-template-rows: none; grid-template-columns: 1fr 1fr; height: 150px; } }

.im-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(28px,4vw,56px); margin-top: clamp(32px,5vh,52px); align-items: start; }
@media (max-width: 920px) { .im-grid { grid-template-columns: 1fr; } }

.im-loc { display: inline-flex; align-items: center; gap: 7px; font-size: 15px; color: var(--text-on-dark-dim); margin-top: 10px; }

.im-specs { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.im-spec { display: flex; flex-direction: column; gap: 3px; padding: 16px 20px; border-radius: var(--r-md); background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); min-width: 110px; }
.im-spec span { font-size: 12px; color: var(--text-on-dark-faint); letter-spacing: 0.04em; text-transform: uppercase; }
.im-spec strong { font-family: var(--font-display); font-size: 19px; font-weight: 700; color: #fff; display: inline-flex; align-items: center; gap: 8px; }

.im-section { margin-top: 42px; }
.im-section h2 { font-family: var(--font-display); font-size: 22px; font-weight: 700; letter-spacing: -0.01em; display: flex; align-items: center; gap: 12px; }
.im-section h2::before { content: ""; width: 22px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.im-section p { margin-top: 16px; font-size: 16px; line-height: 1.7; color: var(--text-on-dark-dim); }
.im-section p + p { margin-top: 12px; }

.im-lazer { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 20px; }
@media (max-width: 560px) { .im-lazer { grid-template-columns: repeat(2,1fr); } }
.im-lz { display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; color: var(--text-on-dark); padding: 13px 16px; border-radius: var(--r-md); background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border); }

.im-plantas { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; margin-top: 20px; }
@media (max-width: 560px) { .im-plantas { grid-template-columns: 1fr; } }
.im-planta { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--glass-border); background: rgba(255,255,255,0.03); }
.im-ph-box { position: relative; height: 260px; background: #fff; }
.im-ph-box image-slot { width: 100%; height: 100%; display: block; }
.im-cap { padding: 15px 18px; font-size: 14.5px; font-weight: 600; color: #fff; display: flex; align-items: center; justify-content: space-between; }
.im-cap-zoom { font-size: 13px; opacity: 0.5; }
.im-planta-click { cursor: zoom-in; transition: opacity 0.15s; }
.im-planta-click:hover { opacity: 0.85; }
.im-planta-click:hover .im-cap-zoom { opacity: 1; }

.im-aside { position: sticky; top: 92px; }
.im-card { border-radius: var(--r-lg); padding: 26px; background: #fff; box-shadow: var(--shadow-lg); }
.im-card .price em { font-style: normal; font-size: 12.5px; color: #838b9c; letter-spacing: 0.04em; }
.im-card .price strong { display: block; font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--navy-900); margin-top: 3px; letter-spacing: -0.02em; }
.im-card .note { font-size: 13px; color: #5a6173; line-height: 1.5; margin-top: 10px; }
.im-card .sim { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; margin-top: 10px; padding: 14px; border-radius: 999px; font-weight: 600; font-size: 14.5px; color: var(--navy-900); background: #f1eee7; border: 1px solid #e2ddd2; transition: background .3s; }
.im-card .sim:hover { background: #e8e3d8; }
.im-trust { display: flex; align-items: center; gap: 10px; margin-top: 18px; padding-top: 18px; border-top: 1px solid #ece8df; }
.im-trust img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; flex: none; }
.im-trust div { line-height: 1.3; }
.im-trust strong { display: block; font-family: var(--font-display); font-size: 14px; color: var(--navy-900); }
.im-trust span { font-size: 12px; color: #5a6173; }

/* ============================================================
   EXIT INTENT MODAL
   ============================================================ */
.exit-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8, 12, 26, 0.80);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 40px);
  animation: exit-fade 0.28s var(--ease-out);
  overscroll-behavior: contain;
}
@keyframes exit-fade { from { opacity: 0; } to { opacity: 1; } }

.exit-modal {
  position: relative;
  width: 100%; max-width: 500px;
  background: var(--navy-850);
  border: 1px solid var(--glass-border-gold);
  border-radius: var(--r-xl);
  padding: 36px 32px 28px;
  box-shadow: var(--shadow-lg), 0 0 60px -10px rgba(232, 194, 143, 0.18);
  animation: exit-up 0.32s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--navy-700) transparent;
}
@keyframes exit-up {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

.exit-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--text-on-dark-dim);
  font-size: 13px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s, color .2s;
}
.exit-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.exit-header { text-align: center; margin-bottom: 24px; }

.exit-ico {
  margin: 0 auto 14px;
  color: var(--gold-400);
  display: flex; align-items: center; justify-content: center;
}

.exit-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.8vw, 24px);
  font-weight: 700; line-height: 1.3;
  color: var(--text-on-dark);
  margin-bottom: 8px;
}

.exit-sub {
  font-size: 14px;
  color: var(--text-on-dark-dim);
}

@media (max-width: 540px) {
  .exit-modal { padding: 28px 20px 22px; }
}
