/* ── RESET & VARS ── */
:root {
  --gold: #b89a5a;
  --gold-light: #d4b97a;
  --gold-dim: #8a7040;
  --cream: #f5f0e8;
  --dark: #0e0d0b;
  --dark-mid: #1a1814;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Jost", sans-serif;
  background: var(--dark);
  color: var(--cream);
  overflow-x: hidden;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: linear-gradient(
    to bottom,
    rgba(14, 13, 11, 0.97) 0%,
    transparent 100%
  );
  transition:
    background 0.4s,
    border-bottom 0.4s;
}
header.scrolled {
  background: rgba(14, 13, 11, 0.98);
  border-bottom: 1px solid rgba(184, 154, 90, 0.18);
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}
.logo span {
  font-style: italic;
  color: var(--cream);
}
nav {
  display: flex;
  align-items: center;
}
nav a {
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  margin-left: 30px;
  transition: color 0.3s;
  white-space: nowrap;
}
nav a:hover {
  color: var(--gold-light);
}
.btn-nav-cta {
  border: 1px solid var(--gold);
  color: var(--gold-light) !important;
  padding: 8px 18px;
  transition: all 0.3s !important;
}
.btn-nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 460px;
  align-items: center;
  gap: 60px;
  padding: 0 48px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url(IMGs/fachada.png);
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  opacity: 50%;
}
/* Dark overlay so text stays legible over the render */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(10, 9, 7, 0.82) 0%,
      rgba(10, 9, 7, 0.55) 55%,
      rgba(10, 9, 7, 0.72) 100%
    ),
    linear-gradient(to top, rgba(10, 9, 7, 0.7) 0%, transparent 60%);
}
/* Grid animation on top of photo */
.hero-grid-anim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(184, 154, 90, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 154, 90, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  animation: gridDrift 22s linear infinite;
}
@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 64px;
  }
}

/* Decorative tower — behind everything */
.hero-tower {
  position: absolute;
  bottom: 0;
  left: 44%;
  z-index: 1;
  width: 120px;
  height: 74vh;
  transform: translateX(-50%);
  background: linear-gradient(
    to top,
    rgba(184, 154, 90, 0.07) 0%,
    rgba(184, 154, 90, 0.02) 70%,
    transparent 100%
  );
  clip-path: polygon(
    36% 0%,
    64% 0%,
    70% 12%,
    76% 12%,
    79% 18%,
    83% 18%,
    86% 100%,
    14% 100%,
    17% 18%,
    21% 18%,
    24% 12%,
    30% 12%
  );
  pointer-events: none;
}
.hero-tower::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 13%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: beaconPulse 3s ease-in-out infinite;
}
@keyframes beaconPulse {
  0%,
  100% {
    opacity: 0.25;
  }
  50% {
    opacity: 0.9;
  }
}

/* Left column */
.hero-left {
  position: relative;
  z-index: 3;
  padding-top: 90px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.hero-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.9s 0.3s ease forwards;
}
.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(4rem, 6.5vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.42);
  margin-top: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s ease forwards;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 40px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(184, 154, 90, 0.18);
  opacity: 0;
  animation: fadeUp 0.9s 0.9s ease forwards;
}
.hero-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.1rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 5px;
  display: block;
}
.hero-btn-wrap {
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s ease forwards;
}

/* Right column: form */
.hero-right {
  position: relative;
  z-index: 3;
  padding-top: 100px;
  padding-bottom: 60px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s ease forwards;
}
.hero-form-card {
  background: rgba(14, 12, 9, 0.93);
  border: 1px solid rgba(184, 154, 90, 0.22);
  padding: 46px 40px;
  backdrop-filter: blur(18px);
  position: relative;
}
.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* Scroll hint */
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 48px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(245, 240, 232, 0.22);
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.9s 1.3s ease forwards;
}
.scroll-line {
  width: 38px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── SHARED ── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-label {
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 13px;
  display: block;
}
.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.1rem, 4.2vw, 3.3rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}
.section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.gold-divider {
  width: 54px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

/* Section CTA buttons */
.btn-section {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(184, 154, 90, 0.4);
  color: var(--gold-light);
  padding: 11px 26px;
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: 34px;
}
.btn-section:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.cta-center {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}
.cta-center .btn-section {
  margin-top: 0;
}

/* Ghost button (hero) */
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(184, 154, 90, 0.5);
  color: var(--gold-light);
  padding: 13px 30px;
  font-size: 0.67rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s;
}
.btn-ghost:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* ── FORMS ── */
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.57rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 7px;
}
.form-group input,
.form-group select {
  width: 100%;
  background: rgba(245, 240, 232, 0.04);
  border: 1px solid rgba(184, 154, 90, 0.2);
  padding: 11px 15px;
  color: var(--cream);
  font-family: "Jost", sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  outline: none;
  appearance: none;
  transition:
    border-color 0.3s,
    background 0.3s;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(184, 154, 90, 0.06);
}
.form-group input::placeholder {
  color: rgba(245, 240, 232, 0.2);
}
.form-group select option {
  background: #1a1814;
  color: var(--cream);
}
.sel-wrap {
  position: relative;
}
.sel-wrap::after {
  content: "›";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  color: var(--gold);
  pointer-events: none;
  font-size: 1rem;
}
.btn-submit {
  width: 100%;
  background: var(--gold);
  border: none;
  padding: 15px;
  font-family: "Jost", sans-serif;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: var(--dark);
  cursor: pointer;
  transition:
    background 0.3s,
    transform 0.2s;
  margin-top: 6px;
}
.btn-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.form-disc {
  font-size: 0.57rem;
  color: rgba(245, 240, 232, 0.2);
  text-align: center;
  margin-top: 12px;
  line-height: 1.6;
}
.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 5px;
}
.form-sub {
  font-size: 0.66rem;
  letter-spacing: 0.07em;
  color: rgba(245, 240, 232, 0.32);
  margin-bottom: 26px;
}
.success-msg {
  display: none;
  text-align: center;
  padding: 30px 14px;
}
.success-msg.show {
  display: block;
}
.success-msg .si {
  font-size: 2rem;
  margin-bottom: 14px;
}
.success-msg h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 10px;
}
.success-msg p {
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.44);
  line-height: 1.7;
}

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(7, 6, 5, 0.9);
  backdrop-filter: blur(7px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: var(--dark-mid);
  border: 1px solid rgba(184, 154, 90, 0.2);
  padding: 48px 44px;
  max-width: 460px;
  width: 100%;
  position: relative;
  animation: fadeUp 0.35s ease both;
}
.modal-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  color: rgba(245, 240, 232, 0.3);
  font-size: 1.3rem;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.modal-close:hover {
  color: var(--gold-light);
}

/* ── INTRO ── */
#intro {
  padding: 110px 0;
  background: var(--dark);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-visual {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.intro-vis-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #151310 0%, #1d1b15 100%);
}
.vp-tower {
  width: 52px;
  height: 175px;
  background: linear-gradient(
    to top,
    rgba(184, 154, 90, 0.32) 0%,
    rgba(184, 154, 90, 0.08) 100%
  );
  clip-path: polygon(28%0%, 72%0%, 80%100%, 20%100%);
}
.vp-label {
  font-size: 0.5rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(184, 154, 90, 0.32);
}
.intro-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}
.intro-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.85rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.intro-badge span {
  font-size: 0.48rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(14, 13, 11, 0.6);
  text-align: center;
  line-height: 1.3;
}
.intro-text p {
  font-size: 0.87rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.62);
  margin-bottom: 16px;
  font-weight: 300;
}
.intro-text p strong {
  color: var(--gold-light);
  font-weight: 400;
}

/* ── FEATURES ── */
#features {
  padding: 100px 0;
  background: var(--dark-mid);
}
.feat-header {
  text-align: center;
  margin-bottom: 60px;
}
.feat-header .gold-divider {
  margin: 24px auto;
}
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feat-card {
  background: var(--dark);
  padding: 42px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
}
.feat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feat-card:hover::before {
  transform: scaleX(1);
}
.feat-card:hover {
  background: #111009;
}
.feat-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--gold);
}
.feat-icon svg {
  width: 100%;
  height: 100%;
}
.feat-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 11px;
}
.feat-card p {
  font-size: 0.78rem;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.46);
  font-weight: 300;
}
.feat-num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: rgba(184, 154, 90, 0.055);
  line-height: 1;
}

/* ── TIPOLOGIAS ── */
#tipologias {
  padding: 110px 0;
  background: var(--dark);
}
.tip-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: start;
}
.tipo-list {
  margin-top: 38px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tipo-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 19px 24px;
  background: var(--dark-mid);
  border: none;
  border-left: 2px solid transparent;
  width: 100%;
  text-align: left;
  font-family: "Jost", sans-serif;
  cursor: pointer;
  transition: all 0.3s;
}
.tipo-btn:hover,
.tipo-btn.active {
  background: #1b1915;
  border-left-color: var(--gold);
}
.tbL h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  font-weight: 400;
  color: var(--cream);
}
.tbL span {
  font-size: 0.6rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.36);
}
.tbR {
  text-align: right;
}
.tbR strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.tbR small {
  font-size: 0.54rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.26);
}

/* Plant panel */
.tipo-panel {
  position: sticky;
  top: 108px;
}
.tp-header {
  background: var(--dark-mid);
  padding: 26px 30px 20px;
  border-bottom: 1px solid rgba(184, 154, 90, 0.11);
}
.tp-header h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--cream);
}
.tp-header p {
  font-size: 0.68rem;
  color: rgba(245, 240, 232, 0.36);
  letter-spacing: 0.07em;
  margin-top: 4px;
}
.plant-wrap {
  background: #121008;
  border: 1px solid rgba(184, 154, 90, 0.1);
  border-top: none;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.plant-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
}
.plant-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.plant-ph svg {
  width: 62px;
  height: 62px;
  opacity: 0.17;
}
.plant-ph-box {
  width: 150px;
  height: 108px;
  border: 1px dashed rgba(184, 154, 90, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.plant-ph-box span {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 154, 90, 0.22);
}
.plant-ph p {
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(184, 154, 90, 0.3);
  text-align: center;
  line-height: 2;
}
.tp-footer {
  background: var(--dark-mid);
  padding: 16px 30px;
  display: flex;
  gap: 28px;
  border: 1px solid rgba(184, 154, 90, 0.08);
  border-top: none;
}
.tpf-stat strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--gold-light);
  display: block;
  line-height: 1;
}
.tpf-stat small {
  font-size: 0.53rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.28);
}

/* ── LAZER ── */
#lazer {
  padding: 110px 0;
  background: var(--dark-mid);
}
.lazer-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}
.lazer-intro .gold-divider {
  margin: 24px auto;
}
.lazer-intro p {
  font-size: 0.86rem;
  line-height: 1.85;
  color: rgba(245, 240, 232, 0.5);
  font-weight: 300;
}
.lazer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.lazer-item {
  background: var(--dark);
  padding: 32px 20px;
  text-align: center;
  transition: background 0.3s;
}
.lazer-item:hover {
  background: #0b0a08;
}
.li-icon {
  font-size: 1.45rem;
  margin-bottom: 11px;
  opacity: 0.85;
}
.lazer-item h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 0.98rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 6px;
}
.lazer-item p {
  font-size: 0.68rem;
  color: rgba(245, 240, 232, 0.33);
  line-height: 1.5;
}
.lazer-banner {
  margin-top: 2px;
  background: var(--dark);
  padding: 42px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(184, 154, 90, 0.09);
}
.lb-text h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
}
.lb-text p {
  font-size: 0.76rem;
  color: rgba(245, 240, 232, 0.4);
  margin-top: 7px;
}
.badge-andar {
  background: linear-gradient(135deg, var(--gold-dim), var(--gold));
  padding: 16px 26px;
  text-align: center;
  min-width: 140px;
  flex-shrink: 0;
}
.badge-andar strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  font-weight: 300;
  color: var(--dark);
  display: block;
}
.badge-andar span {
  font-size: 0.56rem;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(14, 13, 11, 0.58);
}

/* ── LOCALIZAÇÃO ── */
#localizacao {
  padding: 110px 0;
  background: var(--dark);
}
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.loc-map-wrap {
  position: sticky;
  top: 108px;
  background: var(--dark-mid);
  border: 1px solid rgba(184, 154, 90, 0.13);
  overflow: hidden;
}
.loc-map-bar {
  padding: 13px 18px;
  background: rgba(184, 154, 90, 0.07);
  border-bottom: 1px solid rgba(184, 154, 90, 0.11);
  display: flex;
  align-items: center;
  gap: 8px;
}
.loc-map-bar::before {
  content: "◈";
  color: var(--gold);
  font-size: 0.72rem;
}
.loc-map-bar span {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: grayscale(1) invert(1) contrast(0.82) brightness(0.72)
    hue-rotate(175deg);
}
.map-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(184, 154, 90, 0.05);
  mix-blend-mode: color;
}
.loc-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 34px;
}
.loc-pt {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  background: var(--dark-mid);
  border-left: 2px solid rgba(184, 154, 90, 0.18);
  transition: border-color 0.3s;
}
.loc-pt:hover {
  border-left-color: var(--gold);
}
.loc-pt-icon {
  font-size: 1rem;
  flex-shrink: 0;
}
.loc-pt-text h5 {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--cream);
}
.loc-pt-text span {
  font-size: 0.64rem;
  color: rgba(245, 240, 232, 0.34);
}

/* ── CREDIBILIDADE ── */
#credibilidade {
  padding: 76px 0;
  background: var(--dark-mid);
  border-top: 1px solid rgba(184, 154, 90, 0.09);
}
.cred-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.cred-item strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.7rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
}
.cred-item p {
  font-size: 0.65rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.36);
  margin-top: 7px;
  line-height: 1.7;
}

/* ── CONTATO FINAL ── */
#contato {
  padding: 110px 0;
  background: linear-gradient(to bottom, var(--dark) 0%, #090806 100%);
  position: relative;
}
#contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 55% 55% at 58% 50%,
    rgba(184, 154, 90, 0.04) 0%,
    transparent 65%
  );
  pointer-events: none;
}
.contato-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 88px;
  align-items: start;
}
.contato-info p {
  font-size: 0.85rem;
  line-height: 1.9;
  color: rgba(245, 240, 232, 0.54);
  font-weight: 300;
  margin-bottom: 16px;
}
.cq {
  padding: 24px 26px;
  background: rgba(184, 154, 90, 0.06);
  border-left: 2px solid var(--gold);
  margin: 26px 0;
}
.cq p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  font-style: italic;
  color: var(--cream);
  line-height: 1.55;
  margin-bottom: 0;
}
.cq cite {
  display: block;
  margin-top: 9px;
  font-size: 0.6rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}
.form-card-final {
  background: var(--dark-mid);
  padding: 46px 42px;
  border: 1px solid rgba(184, 154, 90, 0.12);
  position: relative;
}
.form-card-final::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
}

/* ── FOOTER ── */
footer {
  background: #060504;
  padding: 50px 0 34px;
  border-top: 1px solid rgba(184, 154, 90, 0.07);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--gold);
}
.footer-logo span {
  font-style: italic;
  color: rgba(245, 240, 232, 0.4);
}
.footer-info {
  font-size: 0.61rem;
  letter-spacing: 0.07em;
  color: rgba(245, 240, 232, 0.26);
  line-height: 1.8;
  text-align: center;
}
.footer-right {
  font-size: 0.57rem;
  color: rgba(245, 240, 232, 0.16);
  letter-spacing: 0.05em;
  text-align: right;
}

/* ── FLOATING CTA ── */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 190;
  background: var(--gold);
  color: var(--dark);
  padding: 13px 24px;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.4s;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.55);
}
.float-cta.show {
  transform: translateY(0);
  opacity: 1;
}
.float-cta:hover {
  background: var(--gold-light);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.72s ease,
    transform 0.72s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.rd1 {
  transition-delay: 0.11s;
}
.rd2 {
  transition-delay: 0.22s;
}
.rd3 {
  transition-delay: 0.33s;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #hero {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
  .hero-left {
    padding-top: 110px;
    padding-bottom: 24px;
  }
  .hero-right {
    padding-top: 0;
    padding-bottom: 60px;
  }
  .hero-tower {
    display: none;
  }
  nav {
    display: none;
  }
  header {
    padding: 16px 22px;
  }
  .intro-grid,
  .tip-layout,
  .loc-grid,
  .contato-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .feat-grid,
  .lazer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cred-grid {
    grid-template-columns: 1fr 1fr;
  }
  .lazer-banner {
    flex-direction: column;
    text-align: center;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-right {
    text-align: center;
  }
  .tipo-panel,
  .loc-map-wrap {
    position: static;
  }
  .container {
    padding: 0 18px;
  }
  .intro-badge {
    bottom: -8px;
    right: -8px;
  }
}
@media (max-width: 580px) {
  .feat-grid,
  .lazer-grid,
  .cred-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 20px 32px;
  }
  .hero-form-card {
    padding: 26px 20px;
  }
  .form-card-final {
    padding: 30px 22px;
  }
  .modal-box {
    padding: 32px 22px;
  }
}

/* ── HEADER BRAND ── */
.header-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-sep {
  width: 1px;
  height: 28px;
  background: rgba(184, 154, 90, 0.3);
}
.tozi-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tozi-by {
  font-size: 0.48rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.3);
  line-height: 1;
  margin-bottom: 3px;
}
.tozi-name {
  font-family: "Jost", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  line-height: 1;
}

/* ── FOOTER TOZI ── */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo-sep {
  width: 1px;
  height: 24px;
  background: rgba(184, 154, 90, 0.2);
}
.footer-tozi {
  display: flex;
  flex-direction: column;
}
.footer-tozi-by {
  font-size: 0.44rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.22);
  line-height: 1;
  margin-bottom: 3px;
}
.footer-tozi-name {
  font-family: "Jost", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(12, 11, 9, 0.97);
  border-top: 1px solid rgba(184, 154, 90, 0.2);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  backdrop-filter: blur(12px);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-text {
  flex: 1;
  min-width: 260px;
}
.cookie-text p {
  font-size: 0.72rem;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.55);
}
.cookie-text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 154, 90, 0.3);
  transition: color 0.2s;
}
.cookie-text a:hover {
  color: var(--gold-light);
}
.cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 10px 24px;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-cookie-accept:hover {
  background: var(--gold-light);
}
.btn-cookie-decline {
  background: transparent;
  color: rgba(245, 240, 232, 0.4);
  border: 1px solid rgba(245, 240, 232, 0.15);
  padding: 10px 20px;
  font-family: "Jost", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-cookie-decline:hover {
  border-color: rgba(245, 240, 232, 0.35);
  color: rgba(245, 240, 232, 0.65);
}

/* ── PLANT GALLERY NAV ── */
.plant-wrap {
  position: relative;
  background: #fff;
}
.plant-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 13, 11, 0.7);
  border: 1px solid rgba(184, 154, 90, 0.4);
  color: var(--gold-light);
  font-size: 1.8rem;
  line-height: 1;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 5;
  padding: 0;
}
.plant-nav:hover {
  background: rgba(184, 154, 90, 0.85);
  color: var(--dark);
}
.plant-prev {
  left: 10px;
}
.plant-next {
  right: 10px;
}
.plant-counter {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(14, 13, 11, 0.75);
  color: var(--gold-light);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  padding: 4px 12px;
  border: 1px solid rgba(184, 154, 90, 0.25);
}
