:root {
  --black: #000;
  --brown: #372318;
  --taupe: #554c4a;
  --white: #fff;
  --soft: #f6f1ea;
  --gold: #c7a870;
  --line: rgba(55, 35, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--brown);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
select {
  font: inherit;
}

.topbar {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent);
}

.brand {
  width: 260px;
}

nav {
  display: flex;
  gap: 28px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-button {
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 11px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding: 132px clamp(20px, 6vw, 92px) 58px;
  overflow: hidden;
  color: var(--white);
}

.hero video,
.shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero video {
  object-fit: cover;
}

.shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(55, 35, 24, 0.45), rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.overline {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.overline.dark {
  color: var(--brown);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.8rem);
  line-height: 1.02;
}

h3 {
  font-size: 1.35rem;
}

.hero-content p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.6vw, 1.24rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  padding: 13px 22px;
  cursor: pointer;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: var(--gold);
  color: var(--black);
}

.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.hero-specs {
  position: absolute;
  z-index: 2;
  right: clamp(20px, 6vw, 92px);
  bottom: 54px;
  width: min(330px, calc(100% - 40px));
  padding: 22px;
  border-left: 2px solid var(--gold);
  background: rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(12px);
}

.hero-specs span,
.hero-specs strong {
  display: block;
}

.hero-specs strong {
  margin: 7px 0;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 400;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 6vw, 92px);
}

.section-title {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: end;
  margin-bottom: 42px;
}

.section-title.compact {
  display: block;
  max-width: 860px;
}

.product {
  background: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-grid span {
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.product-grid p,
.location-copy p,
.section-title p,
.faq p,
.contact-copy p {
  color: rgba(55, 35, 24, 0.72);
}

.location {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.location-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

dl {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

dt {
  color: var(--taupe);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.types {
  background: var(--white);
}

.type-table {
  overflow: hidden;
  border: 1px solid var(--line);
}

.table-row {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.8fr 1.4fr;
  gap: 18px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}

.table-row:last-child {
  border-bottom: 0;
}

.table-row.head {
  background: var(--brown);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.payment {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  background: var(--brown);
  color: var(--white);
}

.payment p {
  color: rgba(255, 255, 255, 0.78);
}

.payment-art {
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.payment-art img {
  width: 100%;
  max-height: 680px;
  object-fit: contain;
  background: #17100d;
}

.assets-section {
  background: var(--white);
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.asset-grid button {
  position: relative;
  height: 410px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--black);
  cursor: zoom-in;
}

.asset-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.86;
  transition: transform 400ms ease;
}

.asset-grid button:hover img {
  transform: scale(1.04);
}

.asset-grid span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: var(--white);
  text-align: left;
  font-size: 1.3rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.journey ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.journey li {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
}

.journey strong,
.journey span {
  display: block;
}

.journey strong {
  margin-bottom: 24px;
  color: var(--brown);
  font-size: 1.4rem;
}

.faq {
  background: var(--white);
}

details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}

details:last-child {
  border-bottom: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-size: 1.25rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 90px);
  background:
    linear-gradient(rgba(0, 0, 0, 0.62), rgba(55, 35, 24, 0.88)),
    url("assets/vista-aerea-terreno-avenida-das-americas.jpeg") center / cover;
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

form,
.contact-cta {
  display: grid;
  gap: 15px;
  padding: clamp(22px, 4vw, 38px);
  background: rgba(255, 255, 255, 0.94);
  color: var(--brown);
}

.contact-cta {
  align-content: center;
  min-height: 330px;
  text-align: center;
}

.contact-cta p {
  margin: 0;
  color: var(--brown);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.08;
}

.contact-cta span {
  color: rgba(55, 35, 24, 0.66);
}

.btn-large {
  width: 100%;
  min-height: 68px;
  font-size: 0.9rem;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select {
  min-height: 50px;
  border: 1px solid rgba(55, 35, 24, 0.22);
  padding: 12px 14px;
  outline: 0;
}

input:focus,
select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199, 168, 112, 0.22);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 6vw, 92px);
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
}

footer a {
  color: var(--gold);
}

.whatsapp-float {
  position: fixed;
  z-index: 40;
  right: 22px;
  bottom: 22px;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, #1fa855, #0f6f3a);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  filter: saturate(1.08);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.34);
}

.whatsapp-float svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: 88vh;
  width: auto;
  max-width: 94vw;
}

.close {
  position: fixed;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-size: 3rem;
  cursor: pointer;
}

@media (max-width: 1000px) {
  nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-specs {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 40px;
  }

  .section-title,
  .location,
  .payment,
  .contact {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .asset-grid,
  .journey ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .table-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 14px 16px;
  }

  .brand {
    width: 178px;
  }

  .top-button {
    padding: 9px 10px;
    font-size: 0.66rem;
  }

  .hero {
    min-height: 760px;
    padding: 112px 18px 36px;
  }

  .actions,
  .btn {
    width: 100%;
  }

  .product-grid,
  .asset-grid,
  .journey ol,
  .table-row {
    grid-template-columns: 1fr;
  }

  .asset-grid button {
    height: 320px;
  }

  dl div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  footer {
    flex-direction: column;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-float svg {
    width: 32px;
    height: 32px;
  }
}
