/* ============================================================
   HOME BOUTIQUE — Living Campo Belo
   Estilo: moderno, claro, amigável (inspiração Itaú · Nubank)
   ============================================================ */

:root {
  /* Brand */
  --orange: #FF6900;
  --orange-deep: #EC7000;
  --orange-soft: #FFB073;
  --orange-tint: #FFF1E6;
  --purple: #820AD1;
  --purple-deep: #6A07AC;
  --purple-soft: #C77DFF;
  --purple-tint: #F4E9FE;
  --yellow: #FFC24B;
  --pink: #FF5C8A;
  --green: #00C16E;
  --green-deep: #00A65C;
  --blue: #2E7DF6;

  /* Neutrals */
  --white: #FFFFFF;
  --cloud: #F5F5F7;
  --cloud-2: #ECECF0;
  --ink: #1A1A1A;
  --text: #3A3A3A;
  --muted: #8A8A93;
  --line: #EAEAEF;

  /* Type */
  --sans: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;

  /* Scale */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(72px, 10vw, 120px);

  /* Radii */
  --r-sm: 14px;
  --r-md: 20px;
  --r-lg: 28px;
  --r-xl: 36px;
  --r-pill: 50px;

  /* Shadow */
  --sh-sm: 0 4px 16px rgba(26,26,26,0.06);
  --sh-md: 0 10px 30px rgba(26,26,26,0.08);
  --sh-lg: 0 20px 50px rgba(26,26,26,0.10);
  --sh-orange: 0 14px 30px -8px rgba(255,105,0,0.45);
  --sh-purple: 0 14px 30px -8px rgba(130,10,209,0.4);
  --sh-green: 0 14px 30px -8px rgba(0,193,110,0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--orange-soft); color: var(--ink); }

/* ---------- Type utilities ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--orange-deep);
  background: var(--orange-tint);
  padding: 8px 16px;
  border-radius: var(--r-pill);
}
.eyebrow--purple { color: var(--purple); background: var(--purple-tint); }
.eyebrow--green { color: var(--green-deep); background: rgba(0,193,110,0.12); }
.eyebrow--white { color: var(--white); background: rgba(255,255,255,0.2); }
.eyebrow .e-dot { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }

.display {
  font-family: var(--sans);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.display .hl { color: var(--orange); }
.display .hl-purple { color: var(--purple); }
.lede {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  color: var(--text);
  max-width: 56ch;
  font-weight: 400;
}
.muted { color: var(--muted); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.section--cloud { background: var(--cloud); }
.section--tint { background: var(--orange-tint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 32px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border: 0;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), box-shadow .25s ease, background .25s ease;
  box-shadow: var(--sh-orange);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 20px 38px -8px rgba(255,105,0,0.55); background: var(--orange-deep); }
.btn:active { transform: translateY(-1px); }
.btn svg { transition: transform .25s ease; }
.btn:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--sh-sm);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { background: var(--white); box-shadow: var(--sh-md); border-color: var(--orange-soft); }
.btn--purple { background: var(--purple); box-shadow: var(--sh-purple); }
.btn--purple:hover { background: var(--purple-deep); box-shadow: 0 20px 38px -8px rgba(130,10,209,0.5); }
.btn--green { background: var(--green); box-shadow: var(--sh-green); }
.btn--green:hover { background: var(--green-deep); box-shadow: 0 20px 38px -8px rgba(0,193,110,0.55); }
.btn--lg { padding: 21px 40px; font-size: 18px; }
.btn--white { background: var(--white); color: var(--orange-deep); box-shadow: 0 14px 30px -8px rgba(0,0,0,0.25); }
.btn--white:hover { background: var(--white); color: var(--orange); }

/* ---------- Placeholders ---------- */
.ph {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--orange-soft), var(--yellow));
}
.ph--purple { background: linear-gradient(135deg, var(--purple-soft), var(--pink)); }
.ph--warm { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.ph--cool { background: linear-gradient(135deg, var(--blue), var(--purple-soft)); }
.ph--mint { background: linear-gradient(135deg, var(--green), #7BE3B5); }
.ph--soft { background: linear-gradient(135deg, #FFE3CC, #FFF1E6); }
.ph__blobs { position: absolute; inset: 0; opacity: 0.85; pointer-events: none; }
.ph__label {
  position: absolute;
  left: 16px; bottom: 16px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.85);
  color: var(--ink);
  padding: 6px 11px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
}
.ph__emoji {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: clamp(48px, 8vw, 96px);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
}
/* Real photos */
.ph--photo { background: var(--cloud); }
.ph__img { position: absolute; inset: 0; width: 100%; height: 100%; }
.ph--contain { background: var(--white); }
.ph--contain .ph__img { padding: 4%; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); transition-delay: var(--rd, 0ms); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Top bar ---------- */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  transition: background .4s ease, box-shadow .4s ease, padding .3s ease;
}
.topbar.is-stuck { background: rgba(255,255,255,0.85); backdrop-filter: saturate(180%) blur(16px); box-shadow: var(--sh-sm); }
.topbar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  transition: padding .3s ease;
}
.topbar.is-stuck .topbar__inner { padding-top: 14px; padding-bottom: 14px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { width: 44px; height: 44px; object-fit: contain; }
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  display: grid; place-items: center;
  font-size: 20px; font-weight: 800; color: var(--white);
  box-shadow: var(--sh-orange);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.brand__sub { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: 0.01em; }

.nav { justify-self: center; }
.nav__list { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__item {
  font-size: 15px; font-weight: 500; color: var(--text);
  padding: 9px 16px; border-radius: var(--r-pill); cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.nav__item:hover { background: var(--cloud); color: var(--ink); }
.nav__item.is-active { background: var(--orange-tint); color: var(--orange-deep); font-weight: 700; }
.topbar__cta { display: flex; align-items: center; gap: 14px; }
.btn--sm { padding: 12px 22px; font-size: 14px; }

/* ---------- HERO (fachada full-bleed) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 130px 0 64px;
  overflow: hidden;
  background: var(--cloud);
}
.hero__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(255,255,255,0.97) 0%,
      rgba(255,255,255,0.94) 34%,
      rgba(255,255,255,0.7) 52%,
      rgba(255,255,255,0.25) 72%,
      rgba(255,255,255,0.05) 100%),
    radial-gradient(ellipse 60% 50% at 80% 110%, var(--orange-tint), transparent 60%);
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero__content { max-width: 640px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange); color: var(--white);
  font-size: 13px; font-weight: 700;
  padding: 9px 18px; border-radius: var(--r-pill);
  box-shadow: var(--sh-orange);
  margin-bottom: 28px;
}
.hero__badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--white);
  animation: dotpulse 1.6s ease-in-out infinite;
}
@keyframes dotpulse { 0%,100%{ opacity:1; transform:scale(1);} 50%{ opacity:.4; transform:scale(.7);} }
.hero__title {
  font-size: clamp(40px, 6.2vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 24px;
}
.hero__title .hl { color: var(--orange); }
.hero__sub { font-size: clamp(17px, 2.1vw, 21px); line-height: 1.65; color: var(--text); max-width: 44ch; margin: 0 0 36px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stat {
  display: flex; align-items: center; gap: 13px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--sh-sm);
}
.hero__stat .emo { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; font-size: 22px; background: var(--orange-tint); flex: 0 0 auto; }
.hero__stat:nth-child(2) .emo { background: var(--purple-tint); }
.hero__stat:nth-child(3) .emo { background: rgba(0,193,110,0.14); }
.hero__stat .big { font-size: 22px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.05; }
.hero__stat .lbl { font-size: 12px; font-weight: 600; color: var(--muted); }
.hero__credit {
  position: absolute; right: 18px; bottom: 16px; z-index: 2;
  font-size: 11px; font-weight: 600; color: var(--ink);
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(4px);
  padding: 5px 12px; border-radius: var(--r-pill);
}

@media (max-width: 760px) {
  .hero { min-height: auto; padding: 116px 0 56px; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.9) 55%, rgba(255,255,255,0.82) 100%);
  }
  .hero__stat { flex: 1 1 100%; }
}

/* ---------- Section heading helper ---------- */
.sec-head { max-width: 680px; margin-bottom: 56px; }
.sec-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head .display { font-size: clamp(30px, 4.4vw, 52px); margin: 18px 0 18px; }

/* ---------- Concept intro (imagem real) ---------- */
@keyframes floaty { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(-10px);} }
.concept-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.concept-intro__media { position: relative; }
.concept-intro__img { aspect-ratio: 4/3.1; border-radius: var(--r-xl); box-shadow: var(--sh-lg); }
.concept-intro__chip {
  position: absolute; bottom: -22px; right: -14px;
  background: var(--white); border-radius: var(--r-md);
  box-shadow: var(--sh-md); padding: 14px 20px;
  display: flex; align-items: center; gap: 14px;
  animation: floaty 5s ease-in-out infinite;
}
.concept-intro__chip .emo { width: 44px; height: 44px; border-radius: 14px; background: var(--orange-tint); display: grid; place-items: center; font-size: 22px; }
.concept-intro__chip .big { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; line-height: 1.05; }
.concept-intro__chip .lbl { font-size: 12px; font-weight: 600; color: var(--muted); }
.concept-intro__body .display { font-size: clamp(28px, 3.8vw, 48px); margin: 16px 0 18px; }
@media (max-width: 820px) {
  .concept-intro { grid-template-columns: 1fr; }
  .concept-intro__chip { right: 14px; }
}

/* ---------- Concept cards ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px 30px;
  box-shadow: var(--sh-sm);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.feat-card__ic {
  width: 60px; height: 60px; border-radius: 18px;
  display: grid; place-items: center; font-size: 28px;
  margin-bottom: 22px;
}
.ic-orange { background: var(--orange-tint); }
.ic-purple { background: var(--purple-tint); }
.ic-green { background: rgba(0,193,110,0.13); }
.ic-yellow { background: #FFF3D6; }
.ic-pink { background: #FFE6EE; }
.ic-blue { background: #E3EEFF; }
.feat-card h3 { font-size: 21px; font-weight: 700; color: var(--ink); margin: 0 0 10px; letter-spacing: -0.02em; }
.feat-card p { margin: 0; font-size: 15.5px; line-height: 1.65; color: var(--text); }

@media (max-width: 880px) { .concept-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .concept-grid { grid-template-columns: 1fr; } }

/* ---------- Lazer (colorful gradient cards) ---------- */
.lazer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.lazer-card {
  border-radius: var(--r-lg);
  padding: 28px 26px;
  min-height: 230px;
  display: flex; flex-direction: column; justify-content: space-between;
  color: var(--white);
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
  box-shadow: var(--sh-sm);
}
.lazer-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.lazer-card__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform .5s cubic-bezier(.2,.7,.2,1); }
.lazer-card:hover .lazer-card__img { transform: scale(1.06); }
.lazer-card__tint { position: absolute; inset: 0; z-index: 1; opacity: 0.62; mix-blend-mode: multiply; }
.lazer-card__shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.45) 100%); }
.lazer-card__emoji, .lazer-card__txt { position: relative; z-index: 2; }
.lazer-card__emoji { font-size: 38px; line-height: 1; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.35)); }
.lazer-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.02em; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.lazer-card p { margin: 0; font-size: 14px; line-height: 1.55; opacity: 0.96; font-weight: 500; text-shadow: 0 1px 8px rgba(0,0,0,0.35); }
.lz-1 { background: linear-gradient(140deg, #FF8A3D, var(--orange)); }
.lz-2 { background: linear-gradient(140deg, var(--purple-soft), var(--purple)); }
.lz-3 { background: linear-gradient(140deg, #19D389, var(--green-deep)); }
.lz-4 { background: linear-gradient(140deg, #FFD36B, #FF9E2C); color: var(--ink); }
.lz-4 p { opacity: 0.78; }
.lz-5 { background: linear-gradient(140deg, #FF7FA5, var(--pink)); }
.lz-6 { background: linear-gradient(140deg, #5AA0FF, var(--blue)); }
.lz-7 { background: linear-gradient(140deg, #B57BFF, #7A3FF2); }
.lz-8 { background: linear-gradient(140deg, #FFB04D, #FF7A00); }
.lazer-card__big { grid-column: span 2; }

@media (max-width: 940px) { .lazer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .lazer-grid { grid-template-columns: 1fr; } }

/* ---------- Tipologias (tabs) ---------- */
.typo-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.typo-tab {
  border: 1.5px solid var(--line);
  background: var(--white);
  border-radius: var(--r-pill);
  padding: 14px 26px;
  font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer;
  transition: all .25s ease;
}
.typo-tab:hover { border-color: var(--orange-soft); color: var(--ink); }
.typo-tab.is-active { background: var(--orange); border-color: var(--orange); color: var(--white); box-shadow: var(--sh-orange); }

.typo-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 40px);
  box-shadow: var(--sh-md);
}
.typo-plant {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--r-lg);
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--line);
}
.typo-plant__ph { position: absolute; inset: 0; border-radius: 0; }
.typo-plant__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,26,26,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}
.typo-plant__rooms { position: absolute; inset: 8%; }
.typo-room {
  position: absolute;
  border: 2px solid rgba(26,26,26,0.18);
  border-radius: 10px;
  background: rgba(255,255,255,0.7);
  display: flex; align-items: flex-end;
  padding: 8px 10px;
  font-size: 10px; font-weight: 600; color: var(--text);
}
.typo-room--gold { background: var(--orange-tint); border-color: var(--orange-soft); color: var(--orange-deep); }
.typo-plant__tag {
  position: absolute; top: 14px; right: 14px;
  font-family: var(--mono); font-size: 11px;
  background: var(--white); color: var(--ink);
  padding: 6px 12px; border-radius: var(--r-pill);
  box-shadow: var(--sh-sm);
}
.typo-info__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: 800; color: var(--ink); margin: 0 0 8px; letter-spacing: -0.03em; }
.typo-info__sub { font-size: 17px; color: var(--text); margin: 0 0 28px; }
.typo-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 26px; }
.typo-spec { background: var(--cloud); border-radius: var(--r-md); padding: 18px 20px; }
.typo-spec .l { font-size: 13px; font-weight: 600; color: var(--muted); display: block; margin-bottom: 4px; }
.typo-spec .v { font-size: 26px; font-weight: 800; color: var(--ink); letter-spacing: -0.03em; }
.typo-spec .v small { font-size: 14px; font-weight: 600; color: var(--muted); }
.typo-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.typo-list li { display: grid; grid-template-columns: 26px 1fr; gap: 10px; align-items: start; font-size: 15px; line-height: 1.55; color: var(--text); }
.typo-list li .ck { width: 24px; height: 24px; border-radius: 50%; background: var(--orange-tint); color: var(--orange-deep); display: grid; place-items: center; font-size: 13px; flex: 0 0 auto; margin-top: 2px; }

@media (max-width: 860px) { .typo-panel { grid-template-columns: 1fr; } }

/* ---------- Localização ---------- */
.loc-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(28px, 4vw, 56px); align-items: stretch; }
.loc-info { align-self: center; max-width: 520px; }
.loc-address {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 18px 22px;
  box-shadow: var(--sh-sm); margin: 26px 0 30px;
}
.loc-address .pin { width: 46px; height: 46px; border-radius: 14px; background: var(--orange-tint); color: var(--orange-deep); display: grid; place-items: center; font-size: 22px; flex: 0 0 auto; }
.loc-address .t { font-size: 12px; font-weight: 600; color: var(--muted); }
.loc-address .a { font-size: 17px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.loc-cats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.loc-cat { display: flex; align-items: center; gap: 13px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); padding: 16px 18px; transition: transform .25s ease, box-shadow .25s ease; }
.loc-cat:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.loc-cat .ce { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; font-size: 20px; flex: 0 0 auto; }
.loc-cat .cl { font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.loc-cat .cc { font-size: 12.5px; color: var(--muted); font-weight: 500; }

.loc-map { position: relative; min-height: 460px; border-radius: var(--r-xl); overflow: hidden; background: linear-gradient(160deg, #FFF6EE, #F4E9FE); border: 1px solid var(--line); box-shadow: var(--sh-md); }
.loc-map__roads { position: absolute; inset: 0; }
.loc-pin { position: absolute; transform: translate(-50%, -50%); cursor: pointer; }
.loc-pin .dot { width: 12px; height: 12px; border-radius: 50%; background: var(--ink); border: 2px solid var(--white); box-shadow: var(--sh-sm); }
.loc-pin__lbl {
  position: absolute; left: 18px; top: 50%; transform: translateY(-50%);
  font-size: 11px; font-weight: 700; color: var(--ink);
  background: var(--white); padding: 5px 11px; border-radius: var(--r-pill);
  white-space: nowrap; box-shadow: var(--sh-sm);
}
.loc-pin--main .dot { width: 22px; height: 22px; background: var(--orange); animation: pinpulse 2s ease-in-out infinite; }
.loc-pin--main .loc-pin__lbl { background: var(--orange); color: var(--white); }
@keyframes pinpulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(255,105,0,0.45);} 50%{ box-shadow: 0 0 0 14px rgba(255,105,0,0);} }

@media (max-width: 860px) { .loc-grid { grid-template-columns: 1fr; } .loc-cats { grid-template-columns: 1fr 1fr; } }

/* ---------- Galeria ---------- */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gal-item { position: relative; aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; cursor: pointer; box-shadow: var(--sh-sm); transition: transform .3s ease, box-shadow .3s ease; }
.gal-item:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.gal-item .ph { position: absolute; inset: 0; border-radius: 0; }
.gal-item__cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 18px 16px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.4)); color: var(--white); font-weight: 700; font-size: 15px; }
.gal-item__exp { position: absolute; top: 14px; right: 14px; width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.9); color: var(--ink); display: grid; place-items: center; opacity: 0; transform: scale(.8); transition: opacity .3s ease, transform .3s ease; }
.gal-item:hover .gal-item__exp { opacity: 1; transform: scale(1); }

@media (max-width: 820px) { .gal-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .gal-grid { grid-template-columns: 1fr; } }

.lightbox { position: fixed; inset: 0; background: rgba(26,26,26,0.82); backdrop-filter: blur(8px); z-index: 200; display: grid; grid-template-rows: auto 1fr auto; padding: 24px; animation: lb .3s ease; }
@keyframes lb { from{opacity:0} to{opacity:1} }
.lightbox__top { display: flex; justify-content: space-between; align-items: center; color: var(--white); }
.lightbox__count { font-family: var(--mono); font-size: 13px; }
.lightbox__close { width: 44px; height: 44px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.15); color: var(--white); display: grid; place-items: center; }
.lightbox__close:hover { background: var(--white); color: var(--ink); }
.lightbox__stage { position: relative; display: grid; place-items: center; }
.lightbox__img { width: min(1000px, 100%); aspect-ratio: 4/3; border-radius: var(--r-lg); overflow: hidden; }
.lightbox__img .ph { position: absolute; inset: 0; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 56px; height: 56px; border-radius: 50%; border: 0; background: rgba(255,255,255,0.15); color: var(--white); display: grid; place-items: center; cursor: pointer; }
.lightbox__nav:hover { background: var(--white); color: var(--ink); }
.lightbox__nav--prev { left: 8px; } .lightbox__nav--next { right: 8px; }
.lightbox__cap { color: var(--white); text-align: center; padding-top: 16px; font-weight: 600; font-size: 16px; }

/* ---------- Investir ---------- */
.invest-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.invest-card { border-radius: var(--r-lg); padding: 34px 28px; color: var(--white); position: relative; overflow: hidden; min-height: 240px; display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; box-shadow: var(--sh-sm); }
.invest-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.invest-card .big { font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px; }
.invest-card h3 { font-size: 20px; font-weight: 700; margin: 0 0 10px; letter-spacing: -0.02em; }
.invest-card p { margin: 0; font-size: 14.5px; line-height: 1.55; opacity: 0.92; font-weight: 500; }
.iv-1 { background: linear-gradient(150deg, #FF8A3D, var(--orange-deep)); }
.iv-2 { background: linear-gradient(150deg, var(--purple-soft), var(--purple)); }
.iv-3 { background: linear-gradient(150deg, #19D389, var(--green-deep)); }
.iv-4 { background: linear-gradient(150deg, #5AA0FF, var(--blue)); }

@media (max-width: 940px) { .invest-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .invest-grid { grid-template-columns: 1fr; } }

/* ---------- Ebook + Form ---------- */
.ebook { background: var(--cloud); }
.ebook-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.ebook-mock { position: relative; display: grid; place-items: center; min-height: 420px; }
.ebook-cover {
  width: 280px; aspect-ratio: 3/4.2;
  border-radius: 8px 18px 18px 8px;
  background: linear-gradient(150deg, var(--orange), var(--orange-deep));
  box-shadow: 0 30px 60px -20px rgba(255,105,0,0.55), -8px 0 0 rgba(0,0,0,0.08);
  padding: 36px 30px;
  color: var(--white);
  display: flex; flex-direction: column;
  transform: rotate(-5deg);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
  position: relative;
  overflow: hidden;
}
.ebook-mock:hover .ebook-cover { transform: rotate(-2deg) translateY(-6px); }
.ebook-cover::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 8px; background: rgba(0,0,0,0.12); }
.ebook-cover__tag { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; opacity: 0.85; margin-bottom: auto; }
.ebook-cover__title { font-size: 30px; font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; margin-bottom: 10px; }
.ebook-cover__sub { font-size: 14px; opacity: 0.9; font-weight: 500; }
.ebook-cover__brand { margin-top: 22px; font-size: 13px; font-weight: 700; opacity: 0.92; }
.ebook-badge2 {
  position: absolute; top: 8%; right: 6%;
  background: var(--white); color: var(--orange-deep);
  border-radius: var(--r-md); padding: 14px 18px; box-shadow: var(--sh-md);
  font-weight: 800; text-align: center; animation: floaty 4.5s ease-in-out infinite;
}
.ebook-badge2 .n { font-size: 24px; line-height: 1; }
.ebook-badge2 .l { font-size: 11px; color: var(--muted); font-weight: 600; }

.form-card { background: var(--white); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 48px); box-shadow: var(--sh-md); border: 1px solid var(--line); }
.form-card__title { font-size: 28px; font-weight: 800; color: var(--ink); margin: 0 0 6px; letter-spacing: -0.03em; }
.form-card__sub { font-size: 16px; color: var(--text); margin: 0 0 30px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 14px; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select {
  width: 100%; padding: 16px 20px; border: 1.5px solid var(--line);
  border-radius: var(--r-md); background: var(--white);
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  outline: none; transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px var(--orange-tint); }
.field input::placeholder { color: var(--muted); }
.field--error input, .field--error select { border-color: var(--pink); }
.field__err { font-size: 13px; color: var(--pink); margin-top: 6px; font-weight: 500; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-row { display: flex; align-items: flex-start; gap: 12px; margin: 22px 0; font-size: 14px; color: var(--text); line-height: 1.5; }
.checkbox-row input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--orange); flex: 0 0 auto; }
.form-success { text-align: center; padding: 20px 0; }
.form-success__check { width: 72px; height: 72px; border-radius: 50%; background: rgba(0,193,110,0.13); color: var(--green-deep); display: grid; place-items: center; margin: 0 auto 22px; font-size: 34px; }
.form-success__title { font-size: 28px; font-weight: 800; color: var(--ink); margin: 0 0 12px; letter-spacing: -0.03em; }
.form-success__body { color: var(--text); max-width: 38ch; margin: 0 auto; }

@media (max-width: 860px) { .ebook-grid { grid-template-columns: 1fr; } .field--row { grid-template-columns: 1fr; } }

/* ---------- Corretor (GIANT) ---------- */
.broker { background: linear-gradient(150deg, var(--orange), var(--orange-deep) 55%, #D65F00); position: relative; overflow: hidden; padding: clamp(64px, 9vw, 120px) 0; }
.broker::before { content: ""; position: absolute; top: -20%; right: -10%; width: 60%; height: 140%; background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 60%); pointer-events: none; }
.broker__inner { position: relative; max-width: 1140px; margin: 0 auto; padding: 0 var(--gutter); display: grid; grid-template-columns: 320px 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.broker__photo { position: relative; }
.broker__avatar {
  aspect-ratio: 1; border-radius: var(--r-xl);
  background: linear-gradient(150deg, #FFE3CC, #FFF1E6);
  box-shadow: var(--sh-lg);
  display: grid; place-items: center;
  font-size: 120px; font-weight: 800; color: var(--orange);
  position: relative; overflow: hidden;
}
.broker__avatar .em { font-size: 130px; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.12)); }
.broker__badge { position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); background: var(--white); color: var(--green-deep); border-radius: var(--r-pill); padding: 10px 22px; font-weight: 700; font-size: 14px; box-shadow: var(--sh-md); display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.broker__badge .gd { width: 9px; height: 9px; border-radius: 50%; background: var(--green); animation: dotpulse 1.6s infinite; }
.broker__body { color: var(--white); }
.broker__eyebrow { display: inline-flex; align-items: center; gap: 9px; background: rgba(255,255,255,0.2); color: var(--white); font-size: 13px; font-weight: 700; padding: 9px 18px; border-radius: var(--r-pill); margin-bottom: 22px; }
.broker__name { font-size: clamp(40px, 6vw, 72px); font-weight: 800; line-height: 1; letter-spacing: -0.04em; margin: 0 0 10px; }
.broker__role { font-size: clamp(18px, 2.4vw, 24px); font-weight: 600; opacity: 0.95; margin-bottom: 22px; }
.broker__quote { font-size: clamp(17px, 2vw, 21px); line-height: 1.6; opacity: 0.96; max-width: 52ch; margin: 0 0 32px; font-weight: 500; }
.broker__phone { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.broker__phone .pl { font-size: 13px; font-weight: 600; opacity: 0.85; }
.broker__phone .pn { font-size: clamp(28px, 4vw, 44px); font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.broker__phone .pic { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,0.2); display: grid; place-items: center; font-size: 26px; flex: 0 0 auto; }
.broker__wa {
  display: inline-flex; align-items: center; gap: 16px;
  background: var(--green); color: var(--white);
  padding: 22px 38px; border-radius: var(--r-pill);
  font-size: clamp(18px, 2.2vw, 22px); font-weight: 800; letter-spacing: -0.02em;
  box-shadow: 0 0 0 0 rgba(0,193,110,0.6), var(--sh-lg);
  animation: wapulse 2.2s ease-in-out infinite;
  transition: transform .25s ease, background .25s ease;
}
.broker__wa:hover { transform: translateY(-3px) scale(1.02); background: var(--green-deep); }
.broker__wa .waic { width: 40px; height: 40px; }
@keyframes wapulse { 0%,100%{ box-shadow: 0 0 0 0 rgba(0,193,110,0.55), var(--sh-lg);} 50%{ box-shadow: 0 0 0 18px rgba(0,193,110,0), var(--sh-lg);} }

@media (max-width: 820px) { .broker__inner { grid-template-columns: 1fr; text-align: center; } .broker__photo { max-width: 240px; margin: 0 auto; } .broker__eyebrow, .broker__phone { justify-content: center; } .broker__quote { margin-left: auto; margin-right: auto; } }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md); margin-bottom: 14px; overflow: hidden; transition: box-shadow .25s ease; }
.faq-item.is-open { box-shadow: var(--sh-md); }
.faq-q { width: 100%; border: 0; background: transparent; text-align: left; padding: 24px 26px; display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; cursor: pointer; font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.faq-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--orange-tint); color: var(--orange-deep); display: grid; place-items: center; font-size: 20px; transition: transform .35s ease, background .25s ease; flex: 0 0 auto; }
.faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--orange); color: var(--white); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s cubic-bezier(.2,.7,.2,1); }
.faq-a__in { padding: 0 26px 26px; font-size: 16px; line-height: 1.7; color: var(--text); }

/* ---------- WhatsApp float ---------- */
.wa-float { position: fixed; right: 26px; bottom: 26px; z-index: 90; width: 64px; height: 64px; border-radius: 50%; background: var(--green); color: var(--white); display: grid; place-items: center; box-shadow: var(--sh-green), 0 0 0 0 rgba(0,193,110,0.6); animation: wapulse2 2.2s ease-in-out infinite; transition: transform .3s ease, background .3s ease; }
.wa-float:hover { transform: scale(1.08); background: var(--green-deep); }
.wa-float .waic { width: 34px; height: 34px; }
@keyframes wapulse2 { 0%,100%{ box-shadow: var(--sh-green), 0 0 0 0 rgba(0,193,110,0.5);} 50%{ box-shadow: var(--sh-green), 0 0 0 16px rgba(0,193,110,0);} }
.wa-float__tip { position: absolute; right: 78px; top: 50%; transform: translateY(-50%); background: var(--ink); color: var(--white); font-size: 13px; font-weight: 600; padding: 9px 16px; border-radius: var(--r-pill); white-space: nowrap; box-shadow: var(--sh-md); opacity: 0; pointer-events: none; transition: opacity .25s ease, transform .25s ease; }
.wa-float__tip::after { content: ""; position: absolute; right: -5px; top: 50%; transform: translateY(-50%) rotate(45deg); width: 10px; height: 10px; background: var(--ink); }
.wa-float:hover .wa-float__tip { opacity: 1; }
@media (max-width: 560px) { .wa-float { right: 18px; bottom: 18px; } .wa-float__tip { display: none; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.7); padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 56px; }
.footer .brand__name { color: var(--white); }
.footer .brand__sub { color: rgba(255,255,255,0.55); }
.footer p { font-size: 14.5px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 320px; }
.footer__col h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin: 0 0 18px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer__col a { font-size: 15.5px; color: var(--white); font-weight: 500; transition: color .2s ease; }
.footer__col a:hover { color: var(--orange-soft); }
.footer__legal { font-size: 12.5px; line-height: 1.65; color: rgba(255,255,255,0.45); max-width: 760px; margin-bottom: 22px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 13px; color: rgba(255,255,255,0.5); }
.footer__social { display: flex; gap: 24px; }
.footer__social a { display: inline-flex; align-items: center; gap: 8px; }

@media (max-width: 860px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }

/* ---------- Nav mobile hide ---------- */
@media (max-width: 980px) { .nav, .topbar__phone { display: none; } .topbar__inner { grid-template-columns: auto 1fr; } }
