/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { border: 0; background: none; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }
input, textarea { font: inherit; color: inherit; }

/* ============ TOKENS ============ */
:root {
  /* paleta */
  --c-bg: #f4efe6;          /* creme do book */
  --c-bg-2: #ebe5d8;
  --c-ink: #1f1611;         /* marrom escuro */
  --c-ink-2: #3d2817;       /* marrom médio */
  --c-brown: #4a3322;
  --c-cream: #e8e0cf;
  --c-accent: #a8a847;      /* verde-oliva/dourado */
  --c-accent-2: #c4b876;
  --c-gold: #d4c089;
  --c-muted: #7a6b5a;
  --c-line: rgba(31,22,17,.12);

  /* tipografia */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-sans: 'Manrope', system-ui, -apple-system, sans-serif;

  /* espaçamento */
  --container: 1240px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);

  /* sombras */
  --shadow-soft: 0 30px 60px -30px rgba(31,22,17,.25);
  --shadow-hard: 0 20px 50px -20px rgba(31,22,17,.4);
}

html, body {
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

/* ============ UTIL ============ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 5.5vw, 4.8rem);
  color: var(--c-ink-2);
}
.display em {
  font-style: italic;
  color: var(--c-accent);
  font-weight: 500;
}

.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1.25rem;
  position: relative;
  padding-left: 2.5rem;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 1.75rem; height: 1px;
  background: var(--c-accent);
}
.eyebrow--light { color: var(--c-gold); }
.eyebrow--light::before { background: var(--c-gold); }

.section-head { max-width: 800px; margin-bottom: 4rem; }
.section-head--center { text-align: center; margin-inline: auto; }
.section-lead {
  font-size: 1.075rem;
  color: var(--c-muted);
  margin-top: 1.25rem;
  max-width: 600px;
}
.section-head--center .section-lead { margin-inline: auto; }
.section-head--center .eyebrow { padding-left: 0; }
.section-head--center .eyebrow::before { display: none; }

/* ============ LOGO ============ */
.logo-mud {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: 2rem;
  letter-spacing: -0.04em;
  line-height: 1;
  display: block;
}
.logo-sub {
  font-family: var(--f-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-top: 2px;
  display: block;
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: all .4s ease;
  background: transparent;
}
.nav--scrolled {
  background: rgba(244,239,230,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 0.9rem 0;
  box-shadow: 0 1px 0 var(--c-line);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo--right {
  margin-left: 0.5rem;
  order: 3;
}
.nav__logo--right .logo-mud {
  font-size: 2.6rem;
  line-height: 1;
}
.nav__logo--right .logo-sub {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  margin-top: 4px;
}
.nav--scrolled .nav__logo--right .logo-mud { font-size: 2.2rem; }
.nav__menu { order: 1; }
.nav__cta { order: 2; }
.nav__logo { color: var(--c-cream); transition: color .3s; }
.nav--scrolled .nav__logo { color: var(--c-ink-2); }
.nav--scrolled .nav__logo .logo-sub { color: var(--c-accent); }

.nav__menu {
  display: flex;
  gap: 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.nav__menu a {
  color: var(--c-cream);
  position: relative;
  transition: color .3s;
}
.nav--scrolled .nav__menu a { color: var(--c-ink-2); }
.nav__menu a::after {
  content: "";
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: var(--c-accent);
  transition: width .3s ease;
}
.nav__menu a:hover::after { width: 100%; }
.nav__menu a:hover { color: var(--c-accent); }

.nav__cta {
  padding: 0.65rem 1.3rem;
  background: rgba(232,224,207,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(232,224,207,.3);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--c-cream);
  transition: all .3s;
  white-space: nowrap;
}
.nav--scrolled .nav__cta {
  color: var(--c-ink-2);
  background: var(--c-ink-2);
  color: var(--c-cream);
  border-color: var(--c-ink-2);
}
.nav__cta:hover {
  background: var(--c-accent);
  color: #fff !important;
  border-color: var(--c-accent);
  transform: translateY(-1px);
}

.nav__burger { display: none; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.05rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .3s ease;
  cursor: pointer;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-ink-2);
  color: var(--c-cream);
}
.btn--primary:hover {
  background: var(--c-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hard);
}
.btn--ghost {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
  box-shadow: 0 10px 25px -10px rgba(37,211,102,.5);
}
.btn--ghost:hover {
  background: #1ebd5a;
  border-color: #1ebd5a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -10px rgba(37,211,102,.7);
}
.btn--ghost-dark {
  background: transparent;
  color: var(--c-ink-2);
  border: 1px solid var(--c-ink-2);
  padding: 0.85rem 1.6rem;
  font-size: 0.85rem;
  border-radius: 100px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all .3s;
}
.btn--ghost-dark:hover {
  background: var(--c-ink-2);
  color: var(--c-cream);
}
.btn--large { padding: 1.25rem 2.5rem; font-size: 1rem; }
.btn--full { width: 100%; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
  color: var(--c-cream);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: heroZoom 12s ease-out forwards;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,8,4,.72) 0%, rgba(15,8,4,.45) 40%, rgba(15,8,4,.95) 100%),
    linear-gradient(90deg, rgba(15,8,4,.65) 0%, rgba(15,8,4,.15) 60%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--pad);
  width: 100%;
  animation: heroFadeUp 1s .3s ease both;
}
@keyframes heroFadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.hero__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(232,224,207,.4);
  border-radius: 100px;
  margin-bottom: 2rem;
  backdrop-filter: blur(6px);
}
.hero__title {
  font-family: var(--f-display);
  font-weight: 300;
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  max-width: 720px;
  text-shadow: 0 4px 30px rgba(0,0,0,.45), 0 2px 10px rgba(0,0,0,.3);
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
}
.hero__lead {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 540px;
  margin-bottom: 2.5rem;
  color: rgba(232,224,207,.95);
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.hero__lead strong {
  color: var(--c-gold);
  font-weight: 600;
}

.hero__price {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  background: rgba(31,22,17,.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(232,224,207,.15);
  padding: 1.4rem 2rem;
  border-radius: 16px;
  margin-bottom: 2rem;
}
.price-block { display: flex; flex-direction: column; gap: 0.15rem; }
.price-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.price-value {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.price-value small { font-size: 0.6em; opacity: .7; }
.price-foot {
  font-size: 0.75rem;
  color: rgba(232,224,207,.7);
  margin-top: 2px;
}
.price-divider {
  width: 1px;
  height: 50px;
  background: rgba(232,224,207,.2);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232,224,207,.7);
  writing-mode: vertical-rl;
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollPulse 2.5s ease-in-out infinite;
  margin-top: 0.5rem;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

/* ============ INTRO ============ */
.intro { padding: 7rem 0; }
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.intro__right p {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-bottom: 1.25rem;
  max-width: 520px;
}
.intro__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--c-line);
}
.intro__stats > div {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.intro__stats strong {
  font-family: var(--f-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--c-ink-2);
  line-height: 1;
}
.intro__stats span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
}

/* ============ FACHADA ============ */
.fachada {
  position: relative;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}
.fachada__media {
  position: absolute;
  inset: 0;
}
.fachada__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.fachada__media.in-view img { transform: scale(1); }
.fachada__media:not(.in-view) img { transform: scale(1.08); }

.fachada__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--c-ink-2);
  color: var(--c-cream);
  padding: 1.5rem var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.caption-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.caption-addr {
  font-size: 0.95rem;
  color: var(--c-gold);
  font-family: var(--f-display);
  font-style: italic;
}

/* ============ LOCALIZAÇÃO ============ */
.localizacao { padding: 7rem 0; background: var(--c-bg-2); }
.loc__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.loc__map {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.loc__map img { width: 100%; height: auto; }
.loc__list {
  display: grid;
  gap: 0.65rem;
}
.loc__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--c-bg);
  border-radius: 12px;
  border: 1px solid var(--c-line);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.loc__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--c-accent);
  opacity: 0;
  transition: opacity .3s ease;
}
.loc__list li:hover {
  border-color: var(--c-accent);
  transform: translateX(4px);
  box-shadow: 0 8px 20px -10px rgba(31,22,17,.15);
}
.loc__list li:hover::before { opacity: 1; }
.loc__list li:hover .loc__icon {
  background: var(--c-ink-2);
  color: var(--c-gold);
}

.loc__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  background: var(--c-bg-2);
  color: var(--c-ink-2);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all .3s ease;
  border: 1px solid var(--c-line);
}
.loc__icon svg {
  width: 22px;
  height: 22px;
}

.loc__num {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--c-muted);
  min-width: 26px;
  opacity: 0.5;
}
.loc__list strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--c-ink-2);
}
.loc__list span:not(.loc__num) {
  font-size: 0.82rem;
  color: var(--c-muted);
}

/* ============ LAZER ============ */
.lazer { padding: 8rem 0; }
.lazer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
}
.lazer__card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: var(--c-ink);
}
.lazer__card--big {
  grid-column: span 2;
  grid-row: span 2;
}
.lazer__card--feature {
  grid-column: span 2;
}
.lazer__img {
  position: absolute;
  inset: 0;
}
.lazer__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.lazer__card:hover .lazer__img img { transform: scale(1.06); }
.lazer__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(31,22,17,.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.lazer__img img[data-lightbox] { cursor: zoom-in; }
.lazer__card { cursor: zoom-in; }
.lazer__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  color: var(--c-cream);
  z-index: 2;
}
.lazer__tag {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--c-gold);
  margin-bottom: 0.3rem;
}
.lazer__info h3 {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.lazer__info p {
  font-size: 0.875rem;
  margin-top: 0.5rem;
  color: rgba(232,224,207,.85);
  max-width: 380px;
}

/* ============ APARTAMENTO ============ */
.apartamento { padding: 8rem 0; background: var(--c-bg-2); }
.apto__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}
.apto__media {
  position: relative;
  height: 600px;
}
.apto__media > img {
  width: 80%;
  height: 75%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}
.apto__media-2 {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  height: 50%;
  border-radius: 16px;
  overflow: hidden;
  border: 8px solid var(--c-bg-2);
  box-shadow: var(--shadow-hard);
}
.apto__media-2 img { width: 100%; height: 100%; object-fit: cover; }

.apto__content p {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin: 1.5rem 0 2rem;
  max-width: 500px;
}
.apto__content p strong { color: var(--c-ink-2); font-weight: 600; }

.apto__features {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}
.apto__features li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--c-ink-2);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--c-line);
}
.apto__features span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}

.apto__planta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  background: var(--c-bg);
  border-radius: 16px;
  border: 1px solid var(--c-line);
}
.apto__planta img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}
.apto__planta-info strong {
  display: block;
  font-family: var(--f-display);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--c-ink-2);
  line-height: 1;
}
.apto__planta-info span {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 0.5rem;
  display: block;
}

/* ============ QUARTOS ============ */
.quartos { padding: 0 0 6rem; }
.quartos__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.quartos figure {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.quartos figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.quartos figure:hover img { transform: scale(1.04); }
.quartos figcaption {
  position: absolute;
  left: 1.25rem; bottom: 1.25rem;
  background: rgba(31,22,17,.85);
  backdrop-filter: blur(6px);
  color: var(--c-cream);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ CONDIÇÕES ============ */
.condicoes {
  padding: 7rem 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(168,168,71,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212,192,137,.12) 0%, transparent 50%),
    var(--c-ink);
  color: var(--c-cream);
  text-align: center;
}
.cond__inner { max-width: 1000px; margin: 0 auto; }
.condicoes .display { color: var(--c-cream); }
.condicoes .display em { color: var(--c-gold); }

.cond__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 3.5rem 0;
}
.cond__card {
  padding: 2rem 1.5rem;
  background: rgba(232,224,207,.05);
  border: 1px solid rgba(232,224,207,.15);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
  transition: all .3s ease;
}
.cond__card:hover {
  border-color: var(--c-gold);
  transform: translateY(-4px);
}
.cond__card--accent {
  background: var(--c-gold);
  color: var(--c-ink-2);
  border-color: var(--c-gold);
}
.cond__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
}
.cond__value {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.cond__note {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 0.3rem;
}

/* ============ FICHA TÉCNICA ============ */
/* ============ FICHA TÉCNICA ============ */
.ficha {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse at top right, rgba(168,168,71,.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(212,192,137,.08) 0%, transparent 50%),
    var(--c-bg);
}

.ficha__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
.ficha__card {
  padding: 2.5rem 2rem;
  background: var(--c-bg-2);
  border: 1px solid var(--c-line);
  border-radius: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
}
.ficha__card::before {
  content: "";
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60px; height: 3px;
  background: var(--c-accent);
  opacity: 0;
  transition: opacity .4s ease, width .4s ease;
}
.ficha__card:hover {
  transform: translateY(-6px);
  border-color: var(--c-accent);
  box-shadow: var(--shadow-soft);
}
.ficha__card:hover::before { opacity: 1; width: 80px; }

.ficha__card--accent {
  background: var(--c-ink-2);
  border-color: var(--c-ink-2);
  color: var(--c-cream);
}
.ficha__card--accent::before { background: var(--c-gold); }

.ficha__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px; height: 70px;
  background: var(--c-bg);
  color: var(--c-ink-2);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--c-line);
  margin-bottom: 0.75rem;
  transition: all .4s ease;
}
.ficha__icon svg {
  width: 30px;
  height: 30px;
}
.ficha__card:hover .ficha__icon {
  background: var(--c-ink-2);
  color: var(--c-gold);
  transform: scale(1.05);
}
.ficha__card--accent .ficha__icon {
  background: rgba(212,192,137,.15);
  color: var(--c-gold);
  box-shadow: inset 0 0 0 1px rgba(212,192,137,.3);
}
.ficha__card--accent:hover .ficha__icon {
  background: var(--c-gold);
  color: var(--c-ink-2);
}

.ficha__card strong {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 500;
  color: var(--c-ink-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.ficha__card--accent strong { color: var(--c-gold); }

.ficha__card span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-top: 0.4rem;
}
.ficha__card--accent span { color: rgba(232,224,207,.7); }

.ficha__address {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 1.75rem 2rem;
  background: var(--c-ink-2);
  border-radius: 20px;
  color: var(--c-cream);
}
.ficha__addr-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.4rem;
}
.ficha__address strong {
  font-family: var(--f-display);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 500;
  color: var(--c-cream);
}
.ficha__address .btn--ghost-dark {
  color: var(--c-cream);
  border-color: rgba(232,224,207,.4);
}
.ficha__address .btn--ghost-dark:hover {
  background: var(--c-gold);
  color: var(--c-ink-2);
  border-color: var(--c-gold);
}

/* ============ TRADIÇÃO ============ */
.tradicao { padding: 7rem 0; background: var(--c-bg-2); }
.const__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.tradicao p {
  font-size: 1.05rem;
  color: var(--c-muted);
  margin-top: 1.5rem;
  max-width: 480px;
}
.const__numbers {
  display: grid;
  gap: 2rem;
}
.const__numbers > div {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-line);
}
.const__numbers > div:last-child { border-bottom: 0; }
.const__numbers strong {
  font-family: var(--f-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: var(--c-ink-2);
  line-height: 0.9;
  min-width: 200px;
}
.const__numbers span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-muted);
}

/* ============ CONTATO ============ */
.contato {
  padding: 7rem 0;
  background: var(--c-ink-2);
  color: var(--c-cream);
}
.contato__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contato .display { color: var(--c-cream); }
.contato .display em { color: var(--c-gold); }
.contato__left p {
  color: rgba(232,224,207,.7);
  font-size: 1.05rem;
  margin: 1.5rem 0 2.5rem;
}

.contato__direct {
  display: grid;
  gap: 1rem;
}
.contato__wpp {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 1.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 16px;
  transition: all .3s ease;
}
.contato__wpp:hover { background: #1ebd5a; transform: translateY(-2px); }
.contato__wpp svg { flex-shrink: 0; }
.contato__wpp span {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}
.contato__wpp strong {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  margin-top: 2px;
}
.contato__email {
  padding: 1rem 1.5rem;
  background: rgba(232,224,207,.06);
  border: 1px solid rgba(232,224,207,.15);
  border-radius: 16px;
  color: rgba(232,224,207,.85);
  font-size: 0.95rem;
  transition: all .3s ease;
}
.contato__email:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}

.contato__form {
  background: var(--c-bg);
  color: var(--c-ink);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-hard);
}
.contato__form h3 {
  font-family: var(--f-display);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--c-ink-2);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.contato__form label {
  display: block;
  margin-bottom: 1.1rem;
}
.contato__form label span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-muted);
  margin-bottom: 0.5rem;
}
.contato__form input,
.contato__form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--c-bg-2);
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all .3s ease;
}
.contato__form input:focus,
.contato__form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: #fff;
}
.contato__form textarea { resize: vertical; min-height: 80px; font-family: inherit; }

.check {
  display: flex !important;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-bottom: 1.5rem !important;
}
.check input { width: auto !important; margin-top: 3px; flex-shrink: 0; }
.check span { margin-bottom: 0 !important; letter-spacing: 0 !important; text-transform: none !important; font-weight: 400 !important; color: var(--c-muted) !important; font-size: 0.85rem !important; line-height: 1.5; }
.check a { color: var(--c-accent); text-decoration: underline; }

.form-foot {
  font-size: 0.78rem;
  color: var(--c-muted);
  text-align: center;
  margin-top: 1rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--c-ink);
  color: rgba(232,224,207,.7);
  padding: 4rem 0 1.5rem;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232,224,207,.1);
  margin-bottom: 2rem;
}
.footer__brand .logo-mud { color: var(--c-cream); font-size: 2.5rem; }
.logo-mud--xl {
  font-size: clamp(4rem, 6vw, 5.5rem) !important;
  line-height: 0.9 !important;
  letter-spacing: -0.05em;
  color: var(--c-cream);
  display: block;
}
.logo-sub--xl {
  font-size: 0.9rem !important;
  letter-spacing: 0.4em !important;
  color: var(--c-gold) !important;
  margin-top: 8px !important;
  display: block;
}
.footer__brand-tag {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(232,224,207,.6);
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(232,224,207,.15);
  max-width: 220px;
  line-height: 1.4;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__cols h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}
.footer__cols a {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  color: rgba(232,224,207,.75);
  transition: color .2s;
}
.footer__cols a:hover { color: var(--c-gold); }

.footer__legal { font-size: 0.78rem; line-height: 1.6; }
.footer__legal p { margin-bottom: 1rem; color: rgba(232,224,207,.5); }
.footer__copy { color: rgba(232,224,207,.4) !important; font-size: 0.78rem; }

/* ============ WHATSAPP FLOAT ============ */
.wpp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  width: 60px; height: 60px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37,211,102,.4);
  transition: all .3s ease;
  animation: wppPulse 2.5s ease-in-out infinite;
}
.wpp-float:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}
@keyframes wppPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(37,211,102,.4), 0 0 0 0 rgba(37,211,102,.6); }
  50% { box-shadow: 0 12px 30px rgba(37,211,102,.4), 0 0 0 18px rgba(37,211,102,0); }
}

/* ============ PULSE DOT + TRUST + BANNER OFERTA ============ */
.pulse-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  animation: pulseDot 2s ease-in-out infinite;
}
.pulse-dot--red { background: #ff5252; }
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 currentColor; opacity: 1; }
  50% { box-shadow: 0 0 0 8px transparent; opacity: 0.6; }
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(232,224,207,.18);
  max-width: 600px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(232,224,207,.85);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
}
.trust-item--highlight {
  background: rgba(212,192,137,.18);
  border: 1px solid rgba(212,192,137,.4);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  color: var(--c-gold);
  animation: highlightGlow 2.5s ease-in-out infinite;
}
.trust-item--highlight strong {
  color: var(--c-gold);
  font-weight: 700;
}
.trust-item--highlight svg { color: var(--c-gold); }
@keyframes highlightGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,192,137,.4); }
  50% { box-shadow: 0 0 0 8px rgba(212,192,137,0); }
}

/* Banner oferta */
.oferta-bar {
  background: linear-gradient(135deg, var(--c-ink) 0%, var(--c-ink-2) 100%);
  color: var(--c-cream);
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}
.oferta-bar::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,192,137,.1), transparent);
  animation: shine 6s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { transform: translateX(-50%); }
  50% { transform: translateX(50%); }
}
.oferta-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.oferta-bar__pulse {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  flex-shrink: 0;
}
.oferta-bar p {
  flex: 1;
  min-width: 280px;
  font-size: 0.95rem;
  color: rgba(232,224,207,.85);
  margin: 0;
}
.oferta-bar p strong {
  color: var(--c-gold);
  font-weight: 700;
}
.oferta-bar__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  background: var(--c-gold);
  color: var(--c-ink-2);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: all .3s ease;
  box-shadow: 0 8px 20px -8px rgba(212,192,137,.5);
}
.oferta-bar__cta:hover {
  background: var(--c-cream);
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -8px rgba(232,224,207,.5);
}

/* ============ DOC BANNER (Documentação Gratuita) ============ */
.doc-banner {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2.5rem 0 3rem;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, var(--c-gold) 0%, #e8d4a0 100%);
  color: var(--c-ink);
  border-radius: 20px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(212,192,137,.6);
  animation: docFloat 4s ease-in-out infinite;
}
@keyframes docFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.doc-banner::before {
  content: "GRÁTIS";
  position: absolute;
  top: 14px; right: -38px;
  background: var(--c-ink-2);
  color: var(--c-gold);
  padding: 4px 40px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  transform: rotate(35deg);
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.doc-banner__icon {
  flex-shrink: 0;
  width: 80px; height: 80px;
  background: var(--c-ink-2);
  color: var(--c-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px -8px rgba(31,22,17,.4);
}
.doc-banner__icon svg { width: 38px; height: 38px; }

.doc-banner__content {
  flex: 1;
  text-align: left;
}
.doc-banner__tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  background: rgba(31,22,17,.1);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}
.doc-banner h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 500;
  color: var(--c-ink-2);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.doc-banner h3 em {
  font-style: italic;
  color: var(--c-ink);
  font-weight: 600;
}
.doc-banner p {
  font-size: 0.95rem;
  color: rgba(31,22,17,.8);
  max-width: 480px;
  line-height: 1.55;
  margin: 0;
}

.doc-banner__price {
  flex-shrink: 0;
  text-align: center;
  padding: 0 1rem 0 1.5rem;
  border-left: 1px dashed rgba(31,22,17,.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}
.doc-banner__price-strike {
  font-size: 0.9rem;
  color: rgba(31,22,17,.55);
  text-decoration: line-through;
  font-weight: 500;
}
.doc-banner__price strong {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--c-ink-2);
  line-height: 1;
  letter-spacing: -0.02em;
}
.doc-banner__price-note {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-ink-2);
  margin-top: 0.3rem;
}

/* Benefit Highlight no formulário */
.benefit-highlight {
  background: linear-gradient(90deg, rgba(212,192,137,.15) 0%, rgba(212,192,137,.04) 60%, transparent 100%);
  padding: 0.7rem 0.95rem;
  border-radius: 8px;
  border-left: 3px solid var(--c-gold);
  transition: all .3s ease;
}
.benefit-highlight:hover {
  background: linear-gradient(90deg, rgba(212,192,137,.25) 0%, rgba(212,192,137,.08) 60%, transparent 100%);
  transform: translateX(4px);
}
.benefit-highlight strong {
  color: var(--c-gold) !important;
  font-weight: 600;
}
.benefit-highlight svg {
  background: var(--c-gold) !important;
  color: var(--c-ink-2) !important;
}


.contato__intro {
  color: rgba(232,224,207,.85);
  font-size: 1.05rem;
  margin: 1.5rem 0 2rem;
  line-height: 1.65;
}
.contato__intro strong {
  color: var(--c-gold);
  font-weight: 600;
}

.contato__benefits {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(232,224,207,.12);
}
.contato__benefits li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  color: rgba(232,224,207,.9);
}
.contato__benefits svg {
  width: 18px;
  height: 18px;
  color: var(--c-gold);
  flex-shrink: 0;
  padding: 4px;
  background: rgba(212,192,137,.15);
  border-radius: 50%;
  box-sizing: content-box;
}

.contato__form-wrap {
  position: relative;
}

.form-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.9rem;
  background: rgba(212,192,137,.15);
  color: var(--c-ink-2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  border: 1px solid rgba(168,168,71,.25);
}
.form-badge svg { color: var(--c-accent); }

.form-sub {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
}

.btn--cta {
  background: linear-gradient(135deg, var(--c-ink-2) 0%, var(--c-brown) 100%);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 1.15rem 2rem;
  box-shadow: 0 12px 30px -10px rgba(31,22,17,.5);
  position: relative;
  overflow: hidden;
}
.btn--cta::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.15), transparent);
  transition: left .6s ease;
}
.btn--cta:hover {
  background: var(--c-accent);
  transform: translateY(-3px);
  box-shadow: 0 18px 35px -10px rgba(168,168,71,.5);
}
.btn--cta:hover::before { left: 100%; }

.form-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  color: var(--c-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.form-or::before,
.form-or::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--c-line);
}

.contato__form .form-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 1rem;
}
.contato__form .form-foot svg {
  color: var(--c-accent);
}

/* Sucesso */
.form-success {
  display: none;
  background: var(--c-bg);
  color: var(--c-ink);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-hard);
  text-align: center;
  animation: successPop .6s cubic-bezier(.34,1.56,.64,1);
}
.form-success.show { display: block; }
@keyframes successPop {
  from { opacity: 0; transform: scale(.9) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.form-success__icon {
  width: 80px; height: 80px;
  margin: 0 auto 1.5rem;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: iconBounce .8s cubic-bezier(.34,1.56,.64,1) .2s both;
}
.form-success__icon svg { width: 38px; height: 38px; }
@keyframes iconBounce {
  from { transform: scale(0) rotate(-180deg); }
  to { transform: scale(1) rotate(0); }
}
.form-success h3 {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--c-ink-2);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.form-success p {
  color: var(--c-muted);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.form-success__sub {
  font-size: 0.9rem !important;
  font-style: italic;
}
.form-success .btn {
  margin-top: 0.75rem;
}


/* ============ PLANTAS ============ */
.plantas {
  padding: 7rem 0;
  background:
    radial-gradient(ellipse at top right, rgba(168,168,71,.06) 0%, transparent 50%),
    var(--c-bg);
}
.plantas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.planta-card {
  background: var(--c-bg-2);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: all .4s ease;
  display: flex;
  flex-direction: column;
}
.planta-card:hover {
  transform: translateY(-6px);
  border-color: var(--c-accent);
  box-shadow: 0 30px 60px -25px rgba(31,22,17,.25);
}
.planta-card--featured {
  border-color: var(--c-gold);
  background: linear-gradient(180deg, var(--c-bg-2) 0%, rgba(212,192,137,.08) 100%);
  position: relative;
}
.planta-card--featured::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent));
  border-radius: 20px 20px 0 0;
}

.planta-card__media {
  position: relative;
  background: var(--c-cream);
  aspect-ratio: 4/3;
  overflow: hidden;
  cursor: zoom-in;
}
.planta-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .5s ease;
}
.planta-card:hover .planta-card__media img { transform: scale(1.05); }

.planta-card__zoom {
  position: absolute;
  bottom: 12px; right: 12px;
  width: 44px; height: 44px;
  background: rgba(31,22,17,.85);
  backdrop-filter: blur(8px);
  color: var(--c-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transform: scale(.8);
  transition: all .3s ease;
}
.planta-card__zoom svg { width: 22px; height: 22px; }
.planta-card__media:hover .planta-card__zoom,
.planta-card:hover .planta-card__zoom { opacity: 1; transform: scale(1); }

.planta-card__badge {
  position: absolute;
  top: 14px; left: 14px;
  padding: 0.45rem 0.9rem;
  background: var(--c-gold);
  color: var(--c-ink-2);
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  box-shadow: 0 6px 14px -4px rgba(212,192,137,.6);
}

.planta-card__info {
  padding: 1.75rem;
  text-align: left;
}
.planta-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 0.65rem;
}
.planta-card__info strong {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--c-ink-2);
  line-height: 0.95;
  letter-spacing: -0.02em;
  display: block;
}
.planta-card__info strong small {
  font-size: 0.45em;
  margin-left: 0.1em;
  font-weight: 400;
  color: var(--c-muted);
}
.planta-card__sub {
  display: block;
  font-size: 0.82rem;
  color: var(--c-muted);
  margin-top: 0.6rem;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-line);
}
.planta-card__features {
  display: grid;
  gap: 0.5rem;
}
.planta-card__features li {
  font-size: 0.88rem;
  color: var(--c-ink);
  padding-left: 1.25rem;
  position: relative;
}
.planta-card__features li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  background: var(--c-accent);
  border-radius: 50%;
}

.plantas__andar {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: center;
  background: var(--c-ink-2);
  color: var(--c-cream);
  padding: 3rem;
  border-radius: 24px;
  margin-top: 2rem;
}
.plantas__andar-text h3 {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--c-cream);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.plantas__andar-text h3 em {
  font-style: italic;
  color: var(--c-gold);
}
.plantas__andar-text p {
  color: rgba(232,224,207,.7);
  line-height: 1.65;
}
.plantas__andar-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--c-bg-2);
  cursor: zoom-in;
}
.plantas__andar-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.plantas__andar-img:hover img { transform: scale(1.03); }
.plantas__andar-img:hover .planta-card__zoom { opacity: 1; transform: scale(1); }

/* ============ ROOFTOP SECTION ============ */
.rooftop-section {
  padding: 7rem 0;
  background: var(--c-bg-2);
}
.rooftop__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.rooftop__map {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--c-cream);
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}
.rooftop__map img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.rooftop__map:hover img { transform: scale(1.03); }
.rooftop__map:hover .planta-card__zoom { opacity: 1; transform: scale(1); }

.rooftop__legend {
  display: grid;
  gap: 0.85rem;
}
.rooftop__legend li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--c-bg);
  border-radius: 12px;
  border: 1px solid var(--c-line);
  transition: all .3s ease;
}
.rooftop__legend li:hover {
  border-color: var(--c-accent);
  transform: translateX(4px);
  box-shadow: 0 6px 14px -8px rgba(31,22,17,.2);
}
.rooftop__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  background: var(--c-accent);
  color: #fff;
  border-radius: 50%;
  font-family: var(--f-display);
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.rooftop__legend strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-ink-2);
  margin-bottom: 2px;
}
.rooftop__legend span:not(.rooftop__num) {
  font-size: 0.82rem;
  color: var(--c-muted);
}

/* ============ LIGHTBOX ============ */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 7, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem 5rem;
  opacity: 0;
  transition: opacity .3s ease;
}
.lightbox.show {
  display: flex;
  opacity: 1;
  animation: lightboxFade .3s ease;
}
@keyframes lightboxFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox__content {
  position: relative;
  max-width: 95vw;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lightbox__content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  animation: imgPop .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes imgPop {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}

.lightbox__caption {
  margin-top: 1rem;
  color: var(--c-cream);
  font-size: 0.95rem;
  text-align: center;
  max-width: 600px;
  font-family: var(--f-display);
  font-style: italic;
}
.lightbox__counter {
  margin-top: 0.5rem;
  color: var(--c-gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
}

.lightbox__close {
  position: fixed;
  top: 1rem; right: 1rem;
  width: 48px; height: 48px;
  background: rgba(232,224,207,.12);
  border: 1px solid rgba(232,224,207,.25);
  color: var(--c-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 1001;
}
.lightbox__close:hover {
  background: var(--c-gold);
  color: var(--c-ink-2);
  border-color: var(--c-gold);
  transform: rotate(90deg);
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  background: rgba(232,224,207,.1);
  border: 1px solid rgba(232,224,207,.2);
  color: var(--c-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  z-index: 1001;
}
.lightbox__nav:hover {
  background: var(--c-gold);
  color: var(--c-ink-2);
  border-color: var(--c-gold);
}
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

/* Cursor zoom em todas imgs com lightbox */
/* Hero tags duplas */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}
.hero__tag--gold {
  background: rgba(212,192,137,.25) !important;
  border-color: var(--c-gold) !important;
  color: var(--c-gold) !important;
  font-weight: 700 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  animation: highlightGlow 2.5s ease-in-out infinite;
}

/* Preço mais vivo */
.price-value { color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,.4); font-weight: 600; }
.price-foot { color: var(--c-gold); font-weight: 600; }

/* Quartos 4 colunas */
.quartos__grid--4 {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0.85rem !important;
}
.quartos__grid--4 figure { aspect-ratio: 3/4 !important; }

/* Mapa e rooftop full width */
.loc__grid--full, .rooftop__layout--full { grid-template-columns: 1fr !important; }
.loc__grid--full .loc__map,
.rooftop__layout--full .rooftop__map {
  max-height: 600px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
}
.loc__grid--full .loc__map img,
.rooftop__layout--full .rooftop__map img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease;
}
.loc__grid--full .loc__map:hover img,
.rooftop__layout--full .rooftop__map:hover img { transform: scale(1.03); }
.loc__grid--full .loc__map:hover .planta-card__zoom,
.rooftop__layout--full .rooftop__map:hover .planta-card__zoom { opacity: 1; transform: scale(1); }

/* Quartos header */
.quartos { padding: 4rem 0 6rem; }
.quartos .section-head { margin-bottom: 2.5rem; }

img[data-lightbox] { cursor: zoom-in; }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVO ============ */
@media (max-width: 1024px) {
  .intro__grid, .loc__grid, .apto__grid, .const__grid, .contato__grid { grid-template-columns: 1fr; gap: 3rem; }
  .ficha__cards { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .lazer__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .lazer__card--big { grid-column: span 2; grid-row: span 1; }
  .lazer__card--feature { grid-column: span 2; }
  .apto__media { height: 500px; }
  .apto__media > img { width: 75%; }
  .const__numbers strong { min-width: 130px; font-size: clamp(2.5rem, 5vw, 4rem); }
  .plantas__grid { grid-template-columns: 1fr 1fr; }
  .plantas__grid .planta-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
  .plantas__andar { grid-template-columns: 1fr; gap: 2rem; }
  .rooftop__layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  /* === Nav === */
  .nav { padding: 1rem 0; }
  .nav__inner { padding-inline: 1rem; gap: 0.5rem; }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--c-bg);
    padding: 1rem 0;
    box-shadow: 0 10px 30px -10px rgba(31,22,17,.2);
    order: 4;
  }
  .nav__menu.open { display: flex; }
  .nav__menu a {
    color: var(--c-ink-2) !important;
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--c-line);
  }
  .nav__cta { display: none; }
  .nav__logo--right .logo-mud { font-size: 1.8rem; }
  .nav__logo--right .logo-sub { font-size: 0.55rem; letter-spacing: 0.25em; }
  .nav--scrolled .nav__logo--right .logo-mud { font-size: 1.6rem; }
  .nav__burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px;
    order: 1;
  }
  .nav__burger span {
    display: block;
    width: 100%; height: 2px;
    background: var(--c-cream);
    transition: background .3s;
  }
  .nav--scrolled .nav__burger span { background: var(--c-ink-2); }

  /* === Hero === */
  .hero { padding: 6rem 0 3rem; min-height: auto; }
  .hero__tag { font-size: 0.65rem; padding: 0.4rem 1rem; margin-bottom: 1.25rem; }
  .hero__title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .hero__lead { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero__price { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 1.25rem; width: 100%; }
  .price-divider { display: none; }
  .price-value { font-size: 1.6rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; padding: 1rem 1.5rem; font-size: 0.9rem; }
  .hero__scroll { display: none; }
  .hero__trust { gap: 0.75rem 1.25rem; padding-top: 1.5rem; margin-top: 1.5rem; }
  .trust-item { font-size: 0.78rem; }
  .trust-item--highlight { padding: 0.4rem 0.8rem; }

  /* === Oferta === */
  .oferta-bar { padding: 1.25rem 0; }
  .oferta-bar__inner { gap: 1rem; text-align: center; flex-direction: column; }
  .oferta-bar__pulse { justify-content: center; }
  .oferta-bar__cta { width: 100%; justify-content: center; }
  .oferta-bar p { font-size: 0.88rem; }

  /* === Padding global das seções === */
  .intro, .localizacao, .lazer, .apartamento, .plantas, .rooftop-section, .condicoes, .ficha, .tradicao, .contato { padding: 4rem 0; }

  /* === Display === */
  .display { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .section-head { margin-bottom: 2.5rem; }
  .eyebrow { padding-left: 0; font-size: 0.65rem; }
  .eyebrow::before { display: none; }

  /* === Intro === */
  .intro__stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  /* === Localização === */
  .loc__list li { padding: 0.85rem 1rem; gap: 0.85rem; }
  .loc__icon { width: 38px; height: 38px; }
  .loc__icon svg { width: 18px; height: 18px; }
  .loc__list strong { font-size: 0.9rem; }
  .loc__list span:not(.loc__num):not(.loc__icon) { font-size: 0.78rem; }

  /* === Lazer === */
  .lazer__grid { grid-template-columns: 1fr; grid-auto-rows: 220px; gap: 0.75rem; }
  .lazer__card--big, .lazer__card--feature { grid-column: span 1; }
  .lazer__info h3 { font-size: 1.25rem; }

  /* === Apartamento === */
  .apto__media { height: auto; }
  .apto__media > img { position: static; width: 100%; height: 240px; border-radius: 12px; }
  .apto__media-2 { position: static; width: 75%; margin: -30px 0 0 auto; height: 170px; border-width: 5px; }
  .apto__features li { font-size: 0.88rem; }

  /* === Plantas === */
  .plantas__grid { grid-template-columns: 1fr !important; gap: 1.25rem; margin-bottom: 2.5rem; }
  .plantas__grid .planta-card:last-child { grid-column: auto; max-width: none; }
  .planta-card__info { padding: 1.25rem; }
  .planta-card__info strong { font-size: 2rem; }
  .planta-card__features li { font-size: 0.82rem; }
  .plantas__andar { padding: 2rem 1.25rem; gap: 1.5rem; border-radius: 16px; }
  .plantas__andar-text h3 { font-size: 1.3rem; }
  .planta-card__zoom { width: 36px; height: 36px; opacity: 1; transform: scale(1); }
  .planta-card__zoom svg { width: 18px; height: 18px; }

  /* === Rooftop === */
  .rooftop__legend li { padding: 0.9rem 1rem; gap: 0.85rem; }
  .rooftop__num { width: 32px; height: 32px; font-size: 0.85rem; }
  .rooftop__legend strong { font-size: 0.92rem; }

  /* === Condições e Doc Banner === */
  .cond__cards { grid-template-columns: 1fr; gap: 0.85rem; }
  .cond__card { padding: 1.5rem 1.25rem; }
  .doc-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    margin: 2rem 0;
  }
  .doc-banner__icon { width: 64px; height: 64px; }
  .doc-banner__icon svg { width: 30px; height: 30px; }
  .doc-banner__content { text-align: center; }
  .doc-banner h3 { font-size: 1.5rem; }
  .doc-banner p { font-size: 0.88rem; }
  .doc-banner__price {
    border-left: none;
    border-top: 1px dashed rgba(31,22,17,.3);
    padding: 1.25rem 0 0;
    width: 100%;
  }
  .doc-banner::before { font-size: 0.55rem; top: 8px; right: -44px; padding: 3px 40px; }

  /* === Quartos === */
  .quartos__grid { grid-template-columns: 1fr; }
  .quartos__grid--4 { grid-template-columns: 1fr 1fr !important; }
  .quartos__grid--4 figure { aspect-ratio: 4/3 !important; }

  /* === Ficha === */
  .ficha__cards { grid-template-columns: 1fr 1fr !important; gap: 0.75rem; }
  .ficha__card { padding: 1.5rem 1rem; }
  .ficha__icon { width: 50px; height: 50px; margin-bottom: 0.5rem; }
  .ficha__icon svg { width: 22px; height: 22px; }
  .ficha__card strong { font-size: 1.35rem; }
  .ficha__card span { font-size: 0.7rem; }
  .ficha__address { padding: 1.25rem; flex-direction: column; align-items: flex-start; text-align: left; gap: 1rem; }
  .ficha__address strong { font-size: 1rem; }

  /* === Tradição === */
  .const__numbers > div { flex-direction: column; gap: 0.5rem; align-items: flex-start; padding-bottom: 1rem; }
  .const__numbers strong { min-width: auto; font-size: 2.5rem; }

  /* === Contato === */
  .contato__form { padding: 1.5rem 1.25rem; border-radius: 16px; }
  .contato__form h3 { font-size: 1.4rem; }
  .contato__form input, .contato__form textarea { padding: 0.85rem; font-size: 16px; /* evita zoom no iOS */ }
  .contato__benefits li { font-size: 0.88rem; padding: 0.55rem 0.75rem; }
  .contato__intro { font-size: 0.95rem; }
  .form-success { padding: 2rem 1.25rem; }
  .form-success__icon { width: 64px; height: 64px; }
  .form-success__icon svg { width: 30px; height: 30px; }
  .form-success h3 { font-size: 1.5rem; }

  /* === Footer === */
  .footer__cols { grid-template-columns: 1fr; gap: 1.5rem; }
  .logo-mud--xl { font-size: 3.5rem !important; }

  /* === WhatsApp Float === */
  .wpp-float { width: 54px; height: 54px; bottom: 1rem; right: 1rem; }
  .wpp-float svg { width: 24px; height: 24px; }

  /* === Fachada === */
  .fachada { height: 50vh; min-height: 320px; }
  .fachada__caption { padding: 1rem var(--pad); flex-direction: column; align-items: flex-start; gap: 0.4rem; }
  .caption-addr { font-size: 0.8rem; }

  /* === Lightbox mobile === */
  .lightbox { padding: 3rem 0.5rem 4rem; }
  .lightbox__close { top: 0.5rem; right: 0.5rem; width: 40px; height: 40px; }
  .lightbox__nav { width: 44px; height: 44px; bottom: 1rem; top: auto; transform: none; }
  .lightbox__nav--prev { left: 1rem; }
  .lightbox__nav--next { right: 1rem; }
  .lightbox__content img { max-height: 70vh; }
  .lightbox__caption { font-size: 0.82rem; padding: 0 1rem; }
}

@media (max-width: 480px) {
  :root { --pad: 1rem; }
  .container { padding-inline: 1rem; }
  .hero__title { font-size: clamp(2.2rem, 12vw, 3.2rem); }
  .display { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .ficha__cards { grid-template-columns: 1fr !important; }
  .intro__stats { grid-template-columns: 1fr 1fr; }
  .intro__stats strong { font-size: 1.85rem; }
  .price-block { width: 100%; }
  .lazer__info { padding: 1rem 1.25rem; }
  .lazer__info h3 { font-size: 1.1rem; }
}
