/* ==========================================================================
   Top House Planejados — landing page
   ========================================================================== */

:root {
  --ink: #0a0a0a;
  --ink-2: #141312;
  --ink-3: #1e1c19;
  --gold: #cfa134;
  --gold-lt: #ebcb7c;
  --gold-dk: #b0821f;
  --cream: #f7f4ef;
  --cream-2: #ece5da;
  --paper: #fffdfa;
  --text: #23201c;
  --text-soft: #5c554c;
  --on-dark: #e9e5de;
  --on-dark-soft: #a49c90;
  --line: rgba(207, 161, 52, 0.28);
  --line-soft: rgba(35, 32, 28, 0.12);

  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shell: 1200px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 4px;
  --shadow: 0 18px 50px rgba(10, 10, 10, 0.16);
  --shadow-lg: 0 30px 80px rgba(10, 10, 10, 0.28);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--paper);
  overflow-x: hidden;
}

img,
video { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 .6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.3rem, 6vw, 4.15rem); }
h2 { font-size: clamp(1.95rem, 4.3vw, 3.05rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }

p { margin: 0 0 1.1em; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section { padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section--dark { background: var(--ink); color: var(--on-dark); }
.section--cream { background: var(--cream); }

.eyebrow {
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-dk);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
  flex: none;
}
.section--dark .eyebrow { color: var(--gold-lt); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.section-head p { color: var(--text-soft); font-size: 1.03rem; }
.section--dark .section-head p { color: var(--on-dark-soft); }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .section-head { margin-inline: auto; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: 1rem 1.9rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease,
              border-color .25s ease, box-shadow .25s ease;
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--gold-lt); outline-offset: 3px; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold) 55%, var(--gold-dk));
  color: #17130a;
  box-shadow: 0 12px 30px rgba(207, 161, 52, .26);
}
.btn--gold:hover { box-shadow: 0 18px 40px rgba(207, 161, 52, .38); }

.btn--wa { background: #25d366; color: #07301a; box-shadow: 0 12px 30px rgba(37, 211, 102, .26); }
.btn--wa:hover { background: #1fbe5b; box-shadow: 0 18px 40px rgba(37, 211, 102, .36); }

.btn--ghost { border-color: rgba(233, 229, 222, .38); color: var(--on-dark); background: rgba(255, 255, 255, .04); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-lt); }

.btn--outline { border-color: var(--line-soft); color: var(--text); background: #fff; }
.btn--outline:hover { border-color: var(--gold); color: var(--gold-dk); }

.btn--sm { padding: .72rem 1.25rem; font-size: .74rem; }
.btn--block { width: 100%; }

.btn svg { width: 1.15em; height: 1.15em; flex: none; }

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  background: rgba(10, 10, 10, .92);
  border-bottom: 1px solid rgba(207, 161, 52, .16);
  transition: background .3s ease, padding .3s ease;
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 74px;
  padding-block: .55rem;
}
.header__logo { display: flex; align-items: center; gap: .7rem; margin-right: auto; }
.header__logo svg { height: 40px; width: auto; }
.header__logo-text { display: flex; flex-direction: column; line-height: 1; }
.header__logo-text b {
  font-family: var(--serif);
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: .11em;
  color: #f0ece5;
}
.header__logo-text span {
  font-size: .53rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .3rem;
  white-space: nowrap;
}

.nav { display: flex; gap: 1.6rem; }
.nav a {
  font-size: .76rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--on-dark-soft);
  position: relative;
  padding-block: .35rem;
  transition: color .22s ease;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .28s ease;
}
.nav a:hover { color: var(--gold-lt); }
.nav a:hover::after { width: 100%; }

.header__cta { display: flex; gap: .6rem; align-items: center; flex: none; }
.header__cta .btn { white-space: nowrap; }
.header__phone {
  font-size: .8rem;
  color: var(--on-dark);
  letter-spacing: .05em;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  white-space: nowrap;
}
.header__phone svg { width: 15px; height: 15px; color: var(--gold); }
.header__phone:hover { color: var(--gold-lt); }

.burger {
  display: none;
  width: 42px; height: 42px;
  background: none;
  border: 1px solid rgba(233, 229, 222, .28);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0;
  position: relative;
}
.burger span {
  position: absolute;
  left: 11px;
  width: 18px; height: 1.5px;
  background: var(--on-dark);
  transition: transform .3s ease, opacity .25s ease;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 20px; }
.burger span:nth-child(3) { top: 25px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: min(100svh, 940px);
  display: flex;
  align-items: center;
  padding: clamp(8rem, 16vh, 11rem) 0 clamp(3.5rem, 8vh, 6rem);
  color: var(--on-dark);
  background: var(--ink);
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media video,
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(100deg, rgba(6, 6, 6, .94) 0%, rgba(8, 8, 8, .82) 42%, rgba(10, 10, 10, .42) 72%, rgba(10, 10, 10, .55) 100%),
    linear-gradient(to top, rgba(6, 6, 6, .9) 0%, rgba(6, 6, 6, 0) 48%);
}

.hero__inner { max-width: 43rem; }
.hero h1 { color: #fdfbf7; margin-bottom: .5em; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-lt);
  background: linear-gradient(120deg, var(--gold-lt), var(--gold) 60%, var(--gold-dk));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__lead {
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  color: #d8d2c8;
  max-width: 40rem;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }

.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  padding: .8rem 1.25rem;
  border: 1px solid rgba(233, 229, 222, .18);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(3px);
}
.hero__rating-score { font-family: var(--serif); font-size: 1.9rem; color: var(--gold-lt); line-height: 1; }
.hero__rating-meta { font-size: .78rem; color: #cfc8bd; line-height: 1.45; }
.hero__rating-meta strong { display: block; color: #f2eee7; font-weight: 600; }
.stars { display: inline-flex; gap: 2px; color: var(--gold); }
.stars svg { width: 14px; height: 14px; }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: 1.75rem;
  transform: translateX(-50%);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(233, 229, 222, .55);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollpulse 2.4s ease-in-out infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: .35; transform: scaleY(.6); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* ---------- marquee ---------- */

.marquee {
  background: linear-gradient(100deg, var(--gold-dk), var(--gold) 45%, var(--gold-lt));
  color: #16120a;
  overflow: hidden;
  padding: .9rem 0;
  border-block: 1px solid rgba(0, 0, 0, .12);
}
.marquee__track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee ul {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
  margin: 0;
  padding: 0 1.5rem;
}
.marquee li {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.marquee li::before { content: "◆"; font-size: .55rem; opacity: .6; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- gallery ---------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(.85rem, 1.6vw, 1.35rem);
}
.amb {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink-2);
  aspect-ratio: 4 / 3;
  display: block;
  box-shadow: var(--shadow);
}
.amb--wide,
.amb--tall { grid-column: span 3; aspect-ratio: 16 / 11; }

.amb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s cubic-bezier(.2, .7, .3, 1), filter .6s ease;
}
.amb:hover img { transform: scale(1.06); }
.amb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 6, 6, .93) 0%, rgba(6, 6, 6, .55) 34%, rgba(6, 6, 6, .12) 62%, rgba(6, 6, 6, 0) 80%);
  transition: opacity .4s ease;
}
.amb__body {
  position: absolute;
  inset: auto 0 0;
  padding: clamp(1.1rem, 2.4vw, 1.75rem);
  z-index: 2;
  color: #fff;
}
.amb__body h3 { margin: 0 0 .3rem; color: #fff; font-size: clamp(1.15rem, 1.9vw, 1.5rem); }
.amb__body p { margin: 0; font-size: .84rem; color: rgba(255, 255, 255, .82); line-height: 1.5; }
.amb__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .8rem;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-lt);
}
.amb__link svg { width: 13px; height: 13px; transition: transform .3s ease; }
.amb:hover .amb__link svg { transform: translateX(4px); }

/* ---------- differentials ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 265px), 1fr));
  gap: clamp(1.1rem, 2.4vw, 2rem);
}
.feature {
  padding: clamp(1.6rem, 3vw, 2.15rem);
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(207, 161, 52, .18);
  border-radius: var(--radius);
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.feature:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(207, 161, 52, .06); }
.feature__icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-lt);
  margin-bottom: 1.15rem;
}
.feature__icon svg { width: 21px; height: 21px; }
.feature h3 { color: #f3efe8; margin-bottom: .45rem; font-size: 1.16rem; }
.feature p { margin: 0; font-size: .92rem; color: var(--on-dark-soft); }

/* ---------- process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 218px), 1fr));
  gap: clamp(1.2rem, 2.6vw, 2rem);
  counter-reset: step;
}
.step { position: relative; padding-top: 2.75rem; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0; left: 0;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  opacity: .5;
  line-height: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { font-size: .92rem; color: var(--text-soft); margin: 0; }

/* ---------- reviews ---------- */

.reviews-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.gscore {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.gscore__num { font-family: var(--serif); font-size: 2.6rem; line-height: 1; color: var(--text); }
.gscore__meta { font-size: .82rem; color: var(--text-soft); }
.gscore__meta strong { display: block; color: var(--text); font-size: .88rem; }

.reviews-viewport { overflow: hidden; margin-inline: calc(var(--pad) * -1); padding-inline: var(--pad); }
.reviews-track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.5rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1.25rem;
  scrollbar-width: none;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review {
  flex: 0 0 min(100%, 372px);
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: .9rem;
  box-shadow: 0 10px 30px rgba(10, 10, 10, .07);
}
.review__stars { color: var(--gold); display: flex; gap: 2px; }
.review__stars svg { width: 15px; height: 15px; }
.review p {
  margin: 0;
  font-size: .95rem;
  color: var(--text-soft);
  line-height: 1.7;
  flex: 1;
}
.review__author { display: flex; align-items: center; gap: .75rem; padding-top: .35rem; border-top: 1px solid var(--line-soft); }
.review__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: #17130a;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold-dk));
  flex: none;
  margin-top: .75rem;
}
.review__name { margin-top: .75rem; }
.review__name b { display: block; font-size: .9rem; color: var(--text); font-weight: 600; }
.review__name span { font-size: .76rem; color: #8a8377; }

.reviews-nav { display: flex; gap: .6rem; align-items: center; justify-content: center; margin-top: 1.5rem; }
.rnav {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.rnav:hover { border-color: var(--gold); color: var(--gold-dk); }
.rnav svg { width: 17px; height: 17px; }
.rdots { display: flex; gap: .45rem; margin-inline: .6rem; }
.rdot {
  width: 7px; height: 7px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(35, 32, 28, .2);
  cursor: pointer;
  transition: background .25s ease, width .25s ease;
}
.rdot[aria-current="true"] { background: var(--gold); width: 22px; border-radius: 4px; }

.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: 1rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.highlight {
  padding: 1.25rem 1.4rem;
  border-left: 2px solid var(--gold);
  background: rgba(207, 161, 52, .07);
  font-size: .93rem;
  font-style: italic;
  color: var(--text-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* ---------- quote form ---------- */

.quote {
  display: grid;
  grid-template-columns: 1fr minmax(min(100%, 400px), 460px);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.quote__list { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .9rem; }
.quote__list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .95rem; color: var(--on-dark-soft); }
.quote__list svg { width: 19px; height: 19px; color: var(--gold); flex: none; margin-top: .18rem; }

.form {
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(207, 161, 52, .24);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3.5vw, 2.35rem);
}
.form h3 { color: #f3efe8; margin-bottom: .3rem; }
.form__note { font-size: .84rem; color: var(--on-dark-soft); margin-bottom: 1.5rem; }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-lt);
  margin-bottom: .45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: rgba(0, 0, 0, .35);
  border: 1px solid rgba(233, 229, 222, .2);
  border-radius: var(--radius);
  color: var(--on-dark);
  font-family: var(--sans);
  font-size: .93rem;
  transition: border-color .25s ease, background .25s ease;
}
.field textarea { resize: vertical; min-height: 88px; }
.field select option { background: var(--ink-2); color: var(--on-dark); }
.field input::placeholder,
.field textarea::placeholder { color: rgba(164, 156, 144, .7); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(0, 0, 0, .5);
}
.field--error input,
.field--error select { border-color: #e2685c; }
.field__err { display: none; font-size: .74rem; color: #f0968c; margin-top: .35rem; letter-spacing: .02em; text-transform: none; }
.field--error .field__err { display: block; }

.form__legal { font-size: .72rem; color: rgba(164, 156, 144, .85); margin: 1rem 0 0; line-height: 1.55; }
.form__legal a { color: var(--gold-lt); text-decoration: underline; text-underline-offset: 2px; }

.form__success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.form__success svg { width: 52px; height: 52px; color: #25d366; margin: 0 auto 1rem; }
.form__success h3 { color: #f3efe8; }
.form__success p { color: var(--on-dark-soft); font-size: .93rem; }
.form.is-sent .form__body { display: none; }
.form.is-sent .form__success { display: block; }

/* ---------- location ---------- */

.location {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(1.5rem, 3.5vw, 3rem);
  align-items: stretch;
}
.location__card {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow);
}
.info-row { display: flex; gap: .95rem; padding-block: 1rem; border-bottom: 1px solid var(--line-soft); }
.info-row:last-of-type { border-bottom: 0; }
.info-row svg { width: 20px; height: 20px; color: var(--gold-dk); flex: none; margin-top: .2rem; }
.info-row b { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: #8a8377; font-weight: 600; margin-bottom: .2rem; }
.info-row span, .info-row a { font-size: .96rem; color: var(--text); line-height: 1.55; }
.info-row a:hover { color: var(--gold-dk); }

.map-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.5rem; }
.map-actions .btn { flex: 1 1 170px; }

.btn--maps { background: #1a73e8; color: #fff; box-shadow: 0 12px 30px rgba(26, 115, 232, .24); }
.btn--maps:hover { background: #1663cc; }
.btn--waze { background: #33ccff; color: #04303d; box-shadow: 0 12px 30px rgba(51, 204, 255, .24); }
.btn--waze:hover { background: #1cb8ec; }

.map-frame {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--cream-2);
  min-height: 340px;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ---------- faq ---------- */

.faq { max-width: 55rem; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line-soft);
  padding: 1.25rem 0;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(1.02rem, 1.7vw, 1.2rem);
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold-dk);
  transition: transform .3s ease;
  flex: none;
  line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: .9rem 0 0; font-size: .95rem; color: var(--text-soft); max-width: 62ch; }

/* ---------- final cta ---------- */

.finalcta {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0;
  background: var(--ink);
  color: var(--on-dark);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../img/alto-padrao.jpg") center 35% / cover no-repeat;
  opacity: .22;
}
.finalcta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(10, 10, 10, .55), rgba(10, 10, 10, .95));
}
.finalcta h2 { color: #fdfbf7; }
.finalcta p { color: #cfc8bd; max-width: 52ch; margin-inline: auto; }
.finalcta .hero__actions { justify-content: center; margin-top: 2rem; margin-bottom: 0; }

/* ---------- footer ---------- */

.footer { background: #060606; color: var(--on-dark-soft); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; font-size: .9rem; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(233, 229, 222, .1);
}
.footer__brand svg { height: 60px; width: auto; margin-bottom: 1.1rem; }
.footer__brand p { max-width: 34ch; font-size: .88rem; line-height: 1.7; }
.footer h4 {
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.15rem;
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem; }
.footer a:hover { color: var(--gold-lt); }
.footer__social { display: flex; gap: .7rem; margin-top: 1.35rem; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(233, 229, 222, .2);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: border-color .25s ease, color .25s ease;
}
.footer__social a:hover { border-color: var(--gold); color: var(--gold-lt); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: .78rem;
  color: #6f685e;
}

/* ---------- floating whatsapp ---------- */

.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.75rem);
  bottom: clamp(1rem, 3vw, 1.75rem);
  z-index: 70;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 34px rgba(37, 211, 102, .42);
  transition: transform .28s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 29px; height: 29px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: waping 2.6s ease-out infinite;
}
@keyframes waping {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2, .7, .3, 1); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- responsive ---------- */

@media (max-width: 1180px) {
  .header__phone { display: none; }
  .nav { gap: 1.15rem; }
}
/* entre o menu completo e o burger o espaço é apertado: a assinatura sai */
@media (max-width: 1180px) and (min-width: 861px) {
  .header__logo-text span { display: none; }
}

@media (max-width: 1024px) {
  .quote { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .burger { display: block; }
  .header__phone { display: none; }
  .nav {
    position: fixed;
    inset: 74px 0 auto;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 10, .985);
    border-bottom: 1px solid var(--line);
    padding: .5rem var(--pad) 1.5rem;
    transform: translateY(-125%);
    transition: transform .35s cubic-bezier(.2, .7, .3, 1);
    max-height: calc(100svh - 74px);
    overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav a { padding: .95rem 0; border-bottom: 1px solid rgba(233, 229, 222, .08); font-size: .84rem; }
  .nav a::after { display: none; }

  .gallery { grid-template-columns: repeat(2, 1fr); }
  .amb, .amb--wide, .amb--tall { grid-column: span 2; aspect-ratio: 16 / 11; }
}

/* abaixo disso o CTA dourado empurraria o burger para fora da tela;
   a conversão fica com o botão flutuante do WhatsApp e os CTAs das seções */
@media (max-width: 700px) {
  .header__cta .btn--gold { display: none; }
}

@media (max-width: 560px) {
  .header__logo-text b { font-size: 1rem; }
  .hero { min-height: auto; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__scroll { display: none; }
  .gallery { grid-template-columns: 1fr; }
  .amb, .amb--wide, .amb--tall { grid-column: span 1; aspect-ratio: 4 / 3; }
  .footer__grid { grid-template-columns: 1fr; }
  .map-actions .btn { flex: 1 1 100%; }
  .review { flex-basis: min(100%, 300px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
