
:root {
  --paper: #f8f5f1;
  --sand: #e2d6c8;
  --taupe: #716051;
  --taupe-dark: #493c33;
  --gold: #b68a50;
  --gold-light: #d9b77b;
  --white: #ffffff;
  --ink: #28231f;
  --muted: #716b66;
  --line: rgba(73, 60, 51, 0.16);
  --shadow: 0 18px 55px rgba(42, 34, 29, 0.12);
  --radius: 24px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--white);
  color: var(--taupe-dark);
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-compact {
  padding: 70px 0;
}

.section-label {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

.section-title {
  max-width: 850px;
  margin: 0;
  color: var(--taupe-dark);
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.section-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
}

.text-center {
  text-align: center;
}

.text-center .section-intro {
  margin-inline: auto;
}

.text-center .section-label {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border 180ms ease;
}

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

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

.btn-primary:hover {
  background: #9d7441;
}

.btn-light {
  background: var(--white);
  color: var(--taupe-dark);
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.58);
  color: var(--white);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.btn-outline {
  border-color: rgba(73,60,51,0.35);
  color: var(--taupe-dark);
  background: transparent;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 96px;
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header.scrolled,
.site-header.inner-header {
  background: rgba(73,60,51,0.96);
  box-shadow: 0 8px 32px rgba(37,30,25,0.14);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 105px;
  height: 105px;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-text span {
  margin-top: 4px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links > a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 750;
}

.nav-links > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: var(--gold-light);
  transition: right 180ms ease;
}

.nav-links > a:hover::after {
  right: 0;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.hero {
  min-height: 94vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--taupe-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(35,28,23,0.88) 0%, rgba(35,28,23,0.57) 45%, rgba(35,28,23,0.10) 78%),
    linear-gradient(0deg, rgba(35,28,23,0.50) 0%, rgba(35,28,23,0.04) 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 190px 0 90px;
  color: var(--white);
}

.hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  font-size: clamp(3rem, 7.2vw, 7rem);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.hero p {
  max-width: 700px;
  margin: 25px 0 0;
  color: rgba(255,255,255,0.82);
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
}

.hero-property {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  right: max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: auto auto;
  gap: 18px 28px;
  align-items: end;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  color: var(--white);
  background: rgba(53,43,36,0.52);
  backdrop-filter: blur(14px);
}

.hero-property small {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-property strong {
  display: block;
  margin-top: 4px;
  font-size: 1.04rem;
}

.featured-property {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  min-height: 600px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.featured-media {
  position: relative;
  min-height: 520px;
}

.featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(73,60,51,0.86);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.featured-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 78px);
}

.featured-copy h2 {
  margin: 8px 0 0;
  color: var(--taupe-dark);
  font-size: clamp(2.3rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.featured-copy p {
  margin: 22px 0 0;
  color: var(--muted);
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.property-meta span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--taupe-dark);
  background: var(--paper);
  font-size: 0.82rem;
  font-weight: 750;
}

.price {
  margin-top: 28px;
  color: var(--taupe-dark);
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  font-weight: 850;
  letter-spacing: -0.04em;
}

.dark-section {
  position: relative;
  color: var(--white);
  background: var(--taupe-dark);
  overflow: hidden;
}

.dark-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -230px;
  top: -210px;
  border: 1px solid rgba(217,183,123,0.20);
  border-radius: 50%;
}

.dark-section .section-title {
  color: var(--white);
}

.dark-section .section-intro {
  color: rgba(255,255,255,0.68);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 45px;
}

.value-card {
  min-height: 180px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px;
  background: rgba(255,255,255,0.04);
}

.value-card .number {
  color: var(--gold-light);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.value-card h3 {
  margin: 35px 0 0;
  font-size: 1rem;
  line-height: 1.3;
}

.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 45px;
}

.phase-card {
  position: relative;
  min-height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--taupe-dark);
  box-shadow: 0 14px 38px rgba(42,34,29,0.12);
}

.phase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 500ms ease, opacity 500ms ease;
}

.phase-card:hover img {
  transform: scale(1.035);
  opacity: 0.7;
}

.phase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(40,32,27,0.94), rgba(40,32,27,0.02) 72%);
}

.phase-content {
  position: absolute;
  inset: auto 28px 28px;
  z-index: 2;
  color: var(--white);
}

.phase-content span {
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.phase-content h3 {
  margin: 9px 0 0;
  font-size: 1.55rem;
  line-height: 1.15;
}

.phase-content p {
  margin: 10px 0 0;
  color: rgba(255,255,255,0.68);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.split-media {
  min-height: 590px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-copy h2 {
  margin: 12px 0 0;
  color: var(--taupe-dark);
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.split-copy p {
  margin: 22px 0 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--taupe-dark);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 13px;
  height: 13px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--paper);
  background: var(--gold);
}

.quote-card {
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-card blockquote {
  margin: 0;
  color: var(--taupe-dark);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  line-height: 1.35;
  letter-spacing: -0.025em;
}

.quote-card footer {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  padding: clamp(42px, 7vw, 80px);
  border-radius: 30px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(217,183,123,0.2), transparent 30%),
    var(--taupe-dark);
}

.contact-panel h2 {
  margin: 12px 0 0;
  font-size: clamp(2.2rem, 4.7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.contact-panel p {
  color: rgba(255,255,255,0.68);
}

.contact-data {
  display: grid;
  gap: 12px;
}

.contact-data a {
  padding: 18px 20px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  background: rgba(255,255,255,0.05);
  font-weight: 750;
  word-break: break-word;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255,255,255,0.65);
  background: #2f2722;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 43px;
}

.footer-brand strong {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 0.85rem;
}

/* Página de imóvel */

.property-hero {
  position: relative;
  min-height: 93vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--taupe-dark);
}

.property-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(35,28,23,0.87), rgba(35,28,23,0.10) 72%),
    linear-gradient(90deg, rgba(35,28,23,0.52), transparent 60%);
}

.property-hero-content {
  position: relative;
  z-index: 2;
  padding: 180px 0 70px;
  color: var(--white);
}

.property-hero h1 {
  margin: 16px 0 0;
  max-width: 950px;
  font-size: clamp(3.2rem, 8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.property-hero p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-facts span {
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.84rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}

.property-price {
  margin-top: 25px;
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 850;
  letter-spacing: -0.05em;
}

.stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.stat {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--taupe-dark);
  font-size: 1.6rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(45px, 7vw, 100px);
  align-items: start;
}

.story-grid h2 {
  margin: 12px 0 0;
  color: var(--taupe-dark);
  font-size: clamp(2.6rem, 5.2vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.story-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.highlight-quote {
  margin: 36px 0 0;
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  color: var(--taupe-dark);
  background: var(--white);
  font-size: 1.25rem;
  font-weight: 750;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 330px 330px;
  gap: 14px;
  margin-top: 45px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  border-radius: 20px;
  background: var(--taupe-dark);
}

.gallery-item:first-child {
  grid-row: 1 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  content: "Ampliar";
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(47,39,34,0.72);
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.feature-box {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.feature-box span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--taupe);
  font-size: 0.82rem;
  font-weight: 850;
}

.feature-box h3 {
  margin: 22px 0 0;
  color: var(--taupe-dark);
  font-size: 1.05rem;
}

.feature-box p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 42px;
}

.plan-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.plan-card button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
}

.plan-card img {
  width: 100%;
  height: 620px;
  object-fit: contain;
  background: #f2eee9;
}

.plan-card-copy {
  padding: 22px;
}

.plan-card-copy h3 {
  margin: 0;
  color: var(--taupe-dark);
}

.plan-card-copy p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.progress-list {
  display: grid;
  gap: 22px;
  margin-top: 45px;
}

.progress-item {
  display: grid;
  grid-template-columns: 190px 1fr auto;
  gap: 20px;
  align-items: center;
}

.progress-item strong {
  color: var(--taupe-dark);
}

.progress-track {
  height: 7px;
  border-radius: 99px;
  background: rgba(113,96,81,0.13);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--taupe), var(--gold-light));
}

.progress-item span {
  min-width: 46px;
  text-align: right;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.disclaimer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.78rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: rgba(28,23,20,0.94);
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 94vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,0.08);
  font-size: 1.4rem;
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 20px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: #286c4b;
  box-shadow: 0 16px 32px rgba(0,0,0,0.18);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 680ms ease, transform 680ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 1040px) {
  .nav-links {
    gap: 18px;
  }

  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-property,
  .split,
  .split.reverse,
  .story-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .featured-copy {
    padding: 45px;
  }

  .split.reverse .split-media {
    order: 1;
  }

  .split.reverse .split-copy {
    order: 2;
  }

  .split-media {
    min-height: 500px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat:nth-child(3) {
    border-right: 0;
  }

  .stat:nth-child(-n+3) {
    border-bottom: 1px solid var(--line);
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 800px) {
  .site-header {
    height: 86px;
  }

  .brand-mark {
    width: 105px;
    height: 105px;
  }

  .brand-text span {
    display: none;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    inset: 86px 0 0;
    z-index: 99;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 30px;
    color: var(--white);
    background: rgba(47,39,34,0.985);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links > a {
    font-size: 1.2rem;
  }

  .hero {
    min-height: 860px;
  }

  .hero::before {
    background:
      linear-gradient(0deg, rgba(35,28,23,0.90), rgba(35,28,23,0.16) 78%),
      linear-gradient(90deg, rgba(35,28,23,0.38), transparent);
  }

  .hero-content {
    padding-bottom: 185px;
  }

  .hero-property {
    left: 20px;
    right: 20px;
    bottom: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .section {
    padding: 72px 0;
  }

  .phase-grid,
  .plans-grid {
    grid-template-columns: 1fr;
  }

  .phase-card {
    min-height: 420px;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .value-card:last-child {
    grid-column: 1 / -1;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 420px 270px 270px;
  }

  .gallery-item:first-child {
    grid-row: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .plan-card img {
    height: 520px;
  }

  .progress-item {
    grid-template-columns: 1fr auto;
  }

  .progress-track {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero h1 {
    font-size: clamp(2.7rem, 15vw, 4.2rem);
  }

  .hero-content {
    padding-top: 135px;
  }

  .hero-property {
    gap: 13px;
    padding: 18px;
  }

  .hero-property strong {
    font-size: 0.88rem;
  }

  .btn-group,
  .btn-group .btn {
    width: 100%;
  }

  .featured-copy,
  .quote-card {
    padding: 32px 24px;
  }

  .featured-media {
    min-height: 390px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card:last-child {
    grid-column: auto;
  }

  .contact-panel {
    padding: 34px 24px;
  }

  .property-hero h1 {
    font-size: clamp(3rem, 16vw, 5.2rem);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat,
  .stat:nth-child(3) {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stat:nth-child(even) {
    border-right: 0;
  }

  .stat:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .story-copy p {
    font-size: 1rem;
  }

  .gallery-grid {
    grid-template-rows: 330px 230px 230px;
  }

  .plan-card img {
    height: 430px;
  }

  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    justify-content: center;
    padding: 0;
  }
}
#provincia .value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
}

#provincia .value-card .number {
  font-size: 1.15rem;
  line-height: 1;
}

#provincia .value-card h3 {
  margin: 22px 0 0;
  max-width: 160px;
}
#portfolio .text-center {
  text-align: left;
}

#portfolio .text-center .section-intro {
  margin-left: 0;
  margin-right: 0;
}

#portfolio .text-center .section-label {
  justify-content: flex-start;
}

#portfolio .btn-group {
  justify-content: flex-start !important;
}
.whatsapp-float svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.dark-section .values-grid .value-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 20px;
}

.dark-section .values-grid .value-card .number {
  font-size: 1.15rem;
  line-height: 1;
}

.dark-section .values-grid .value-card h3 {
  margin: 22px 0 0;
  max-width: 170px;
}
.feature-grid .feature-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.feature-grid .feature-box h3 {
  text-align: center;
}

.feature-grid .feature-box p {
  text-align: center;
}
#plantas .text-center {
  text-align: left;
}

#plantas .text-center .section-intro {
  margin-left: 0;
  margin-right: 0;
}

#plantas .text-center .section-label {
  justify-content: flex-start;
}
.site-footer .footer-brand img {
  width: 68px;
  height: auto;
}