:root {
  --green-950: #12251c;
  --green-850: #1d3b2d;
  --green-650: #3f6e4f;
  --green-200: #d8e7d5;
  --cream: #f7f4ed;
  --off-white: #fffdf8;
  --earth: #9b6845;
  --wood: #b98657;
  --ink: #233126;
  --muted: #637167;
  --line: rgba(29, 59, 45, 0.14);
  --shadow: 0 24px 80px rgba(18, 37, 28, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--off-white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 4vw, 56px);
  color: var(--off-white);
  background: linear-gradient(180deg, rgba(18, 37, 28, 0.88), rgba(18, 37, 28, 0.42));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.5);
  border-radius: 50%;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid var(--green-850);
  border-radius: var(--radius);
  color: var(--off-white);
  background: var(--green-850);
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(18, 37, 28, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--green-950);
  box-shadow: 0 18px 42px rgba(18, 37, 28, 0.22);
}

.button-accent {
  border-color: var(--earth);
  background: linear-gradient(180deg, #b98657 0%, #9b6845 100%);
  box-shadow: 0 16px 40px rgba(155, 104, 69, 0.35);
}

.button-accent:hover {
  background: linear-gradient(180deg, #9b6845 0%, #7d5236 100%);
  box-shadow: 0 20px 48px rgba(155, 104, 69, 0.42);
}

.cta-note {
  margin: 14px 0 0;
  max-width: 520px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.86rem;
}

.cta-band {
  display: grid;
  gap: 16px;
  justify-items: center;
  padding: clamp(40px, 6vw, 64px) clamp(18px, 4vw, 56px);
  text-align: center;
  background: var(--green-950);
  color: var(--off-white);
}

.cta-band-lead {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.05rem;
}

.value-stack {
  display: grid;
  gap: 10px;
  width: min(520px, 100%);
  margin: 0 auto 28px;
  padding: 0;
  list-style: none;
}

.value-stack li {
  position: relative;
  padding: 12px 14px 12px 36px;
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  color: rgba(255, 253, 248, 0.9);
  background: rgba(255, 253, 248, 0.06);
  font-weight: 700;
}

.value-stack li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  color: var(--wood);
  font-weight: 900;
}

.comparison-card.featured .button {
  width: 100%;
  margin-top: 20px;
}

.offer-list {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 253, 248, 0.9);
  font-weight: 700;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wood);
  transform: translateY(-50%);
}

.faq-section .section-heading {
  margin-bottom: 20px;
}

.button-secondary {
  color: var(--green-950);
  background: rgba(255, 253, 248, 0.88);
  border-color: rgba(255, 253, 248, 0.7);
}

.button-secondary:hover {
  color: var(--off-white);
}

.button-small {
  min-height: 40px;
  padding: 9px 16px;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.hero {
  position: relative;
  min-height: 94svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--off-white);
  background: var(--green-950);
}

.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-media picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center 45%;
}

@media (min-width: 700px) {
  .hero-image {
    object-position: center 50%;
  }
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(18, 37, 28, 0.78) 0%, rgba(18, 37, 28, 0.35) 42%, rgba(18, 37, 28, 0.2) 65%, rgba(18, 37, 28, 0.75) 100%),
    linear-gradient(90deg, rgba(18, 37, 28, 0.72) 0%, rgba(18, 37, 28, 0.25) 55%, transparent 100%);
}

.hero h1 {
  text-shadow: 0 2px 28px rgba(18, 37, 28, 0.35);
}

.hero-title-line {
  display: inline;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 auto;
  padding: 122px 0 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 10vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 7vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  color: var(--green-950);
  font-size: 1.08rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 253, 248, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.22rem);
}

.hero-deliverables {
  display: grid;
  gap: 9px;
  max-width: 520px;
  margin: 0 0 18px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: var(--radius);
  list-style: none;
  background: rgba(18, 37, 28, 0.42);
  backdrop-filter: blur(8px);
}

.hero-deliverables li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 253, 248, 0.92);
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.35;
}

.hero-deliverables li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wood);
  box-shadow: 0 0 0 2px rgba(185, 134, 87, 0.35);
}

.hero-model {
  margin: 0 0 22px;
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-price {
  width: min(480px, 100%);
  margin: 0 0 26px;
  padding: 0;
  border: none;
  background: transparent;
}

.hero-price-label,
.hero-price-detail,
.hero-price-note {
  margin: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.9rem;
}

.hero-price-installment {
  margin: 4px 0;
}

.hero-price-installment strong {
  display: block;
  color: #fff8df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3.35rem);
  font-weight: 700;
  line-height: 1;
}

.hero-price-detail {
  margin-top: 6px;
}

.hero-price-note {
  margin-top: 10px;
  font-size: 0.84rem;
}

.price-card {
  width: min(430px, 100%);
  margin: 0 0 26px;
  padding: 18px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.13);
  backdrop-filter: blur(12px);
}

.price-card p,
.price-card span,
.price-card small {
  display: block;
  margin: 0;
  color: rgba(255, 253, 248, 0.82);
}

.price-card strong {
  display: block;
  margin: 2px 0;
  color: #fff8df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 8vw, 3.35rem);
  line-height: 1;
}

.price-card small {
  margin-top: 12px;
  font-size: 0.88rem;
}

.price-card .total-price {
  margin-top: 8px;
  font-size: 0.92rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(29, 59, 45, 0.16);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.75);
  font-size: 0.88rem;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 4vw, 56px);
}

.section-heading {
  width: min(820px, 100%);
  margin: 0 auto 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.03rem;
}

.question-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding: 0;
  color: var(--green-950);
  font-weight: 750;
  list-style: none;
}

.question-list li {
  padding: 12px 14px;
  border-left: 4px solid var(--wood);
  border-radius: var(--radius);
  background: var(--cream);
}

.intro-section {
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(185, 134, 87, 0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(63, 110, 79, 0.1), transparent 50%),
    linear-gradient(180deg, var(--off-white) 0%, var(--cream) 100%);
}

.intro-shell {
  display: grid;
  gap: clamp(32px, 5vw, 56px);
  width: min(900px, 100%);
  margin: 0 auto;
}

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

.intro-hero h2 {
  margin-bottom: 16px;
}

.intro-lead {
  margin: 0 auto 24px;
  max-width: 600px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

.intro-stats li {
  display: grid;
  gap: 2px;
  padding: 16px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  box-shadow: 0 12px 32px rgba(18, 37, 28, 0.06);
}

.intro-stats strong {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1;
}

.intro-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.intro-journey-title {
  margin: 0 0 18px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  line-height: 1.1;
  text-align: center;
}

.journey-track {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: var(--off-white);
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(18, 37, 28, 0.08);
}

.journey-step {
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.journey-step:last-child {
  border-bottom: none;
}

.journey-num {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  color: var(--off-white);
  background: var(--green-850);
  font-size: 0.9rem;
  font-weight: 900;
}

.journey-step h4 {
  margin: 0 0 4px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  line-height: 1.15;
}

.journey-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.intro-turn {
  padding: clamp(22px, 4vw, 28px) clamp(20px, 4vw, 28px);
  border: 1px solid var(--line);
  border-left: 4px solid var(--wood);
  border-radius: calc(var(--radius) + 2px);
  text-align: center;
  background: var(--off-white);
  box-shadow: 0 12px 32px rgba(18, 37, 28, 0.06);
}

.intro-turn-label {
  display: block;
  margin: 0 0 10px;
  color: var(--wood);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-turn h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  line-height: 1.12;
}

.intro-turn p {
  margin: 0 auto;
  max-width: 520px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.intro-turn-link {
  color: var(--green-850);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.intro-support {
  padding: clamp(24px, 4vw, 32px) clamp(20px, 4vw, 28px);
  border: 1px solid rgba(155, 104, 69, 0.35);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(145deg, var(--off-white) 0%, rgba(247, 244, 237, 0.95) 100%);
  box-shadow: 0 16px 40px rgba(18, 37, 28, 0.08);
}

.intro-support-label {
  display: block;
  margin: 0 0 10px;
  color: var(--earth);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.intro-support h3 {
  margin: 0 0 12px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 4.5vw, 1.9rem);
  line-height: 1.12;
}

.intro-support-lead {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.intro-support-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.intro-support-points li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--green-950);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.45;
}

.intro-support-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wood);
  transform: translateY(-50%);
}

.package-shell {
  width: min(900px, 100%);
  margin: 0 auto;
}

.package-head {
  margin-bottom: 22px;
  text-align: center;
}

.package-head h2 {
  margin-bottom: 12px;
}

.package-lead {
  margin: 0 auto;
  max-width: 520px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 1.02rem;
  line-height: 1.55;
}

.package-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.package-pills li {
  padding: 8px 14px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.92);
  background: rgba(255, 253, 248, 0.08);
  font-size: 0.82rem;
  font-weight: 800;
}

.package-card {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 253, 248, 0.16);
  border-radius: calc(var(--radius) + 2px);
  background: rgba(255, 253, 248, 0.06);
  overflow: hidden;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .package-card {
    grid-template-columns: 1fr 1fr;
  }

  .package-bonus {
    grid-column: 1 / -1;
  }
}

.package-group {
  padding: 24px 22px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.1);
}

@media (min-width: 768px) {
  .package-group:first-child {
    border-right: 1px solid rgba(255, 253, 248, 0.1);
    border-bottom: none;
  }
}

.package-group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--off-white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.package-group-num {
  display: grid;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  color: var(--green-950);
  background: var(--wood);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
}

.package-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.package-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.92rem;
  line-height: 1.4;
}

.package-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wood);
  transform: translateY(-50%);
}

.package-bonus {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
  text-align: center;
  background: rgba(185, 134, 87, 0.18);
  border-top: 1px solid rgba(255, 253, 248, 0.12);
}

.package-bonus strong {
  color: #fff8df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.package-bonus span {
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.88rem;
}

.incluso-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.section-dark .package-head .eyebrow {
  color: var(--wood);
}

.card-grid,
.inclusion-grid,
.comparison-grid {
  display: grid;
  gap: 16px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.info-card,
.inclusion-card,
.comparison-card,
.highlight-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 16px 45px rgba(18, 37, 28, 0.08);
}

.info-card {
  padding: 24px;
}

.info-card p,
.comparison-card li,
.check-list li {
  color: var(--muted);
}

.card-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 900;
}

.project-section {
  padding-block: clamp(84px, 11vw, 144px);
  background:
    radial-gradient(ellipse 75% 55% at 0% 15%, rgba(185, 134, 87, 0.16), transparent 58%),
    radial-gradient(ellipse 65% 50% at 100% 85%, rgba(63, 110, 79, 0.14), transparent 52%),
    linear-gradient(180deg, var(--off-white) 0%, var(--cream) 45%, var(--off-white) 100%);
}

.project-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.project-body {
  display: grid;
  gap: clamp(24px, 4vw, 32px);
  align-items: start;
}

.project-intro {
  margin: 0;
  text-align: center;
}

.project-intro h2 {
  margin-bottom: 14px;
  max-width: 14ch;
  margin-inline: auto;
  font-size: clamp(2.1rem, 6.5vw, 3.65rem);
  line-height: 1.04;
}

.project-size {
  display: block;
  color: var(--earth);
  font-size: clamp(2.55rem, 8vw, 4.35rem);
  line-height: 0.95;
}

.project-lead {
  margin: 0 auto 18px;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.project-carousel {
  margin: 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--cream);
  box-shadow: var(--shadow);
}

.project-carousel-viewport {
  position: relative;
  background: var(--green-950);
}

.project-carousel-track {
  position: relative;
  aspect-ratio: 941 / 1280;
  min-height: 280px;
}

.project-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 280ms ease, visibility 280ms ease;
}

.project-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.project-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.project-slide--visual img {
  object-fit: cover;
  object-position: center 42%;
}

.project-slide--planta {
  background: var(--cream);
}

.project-slide--planta img {
  object-fit: contain;
  object-position: center;
  padding: 14px;
  background: var(--cream);
}

.project-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 50%;
  color: var(--off-white);
  background: rgba(18, 37, 28, 0.72);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
  transition: background 180ms ease, transform 180ms ease;
}

.project-carousel-arrow:hover {
  background: rgba(18, 37, 28, 0.9);
}

.project-carousel-arrow--prev {
  left: 12px;
}

.project-carousel-arrow--next {
  right: 12px;
}

.project-carousel-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-top: 1px solid var(--line);
  background: var(--line);
}

.project-carousel-tab {
  min-height: 46px;
  padding: 10px 12px;
  border: none;
  color: var(--muted);
  background: var(--off-white);
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.project-carousel-tab.is-active {
  color: var(--green-950);
  background: var(--cream);
  box-shadow: inset 0 -3px 0 var(--wood);
}

.project-carousel-caption {
  margin: 0;
  padding: 12px 16px 14px;
  color: var(--muted);
  background: var(--cream);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.project-specs {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--off-white);
  box-shadow: 0 20px 56px rgba(18, 37, 28, 0.1);
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.project-metrics li {
  display: grid;
  gap: 4px;
  padding: 20px 14px;
  text-align: center;
  background: var(--cream);
}

.project-metrics strong {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.75rem, 5vw, 2.15rem);
  line-height: 1;
}

.project-metrics span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.25;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--green-850);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}


.section-dark {
  color: var(--off-white);
  background: var(--green-950);
}

.section-dark h2,
.section-dark h3 {
  color: var(--off-white);
}

.section-dark .section-heading p,
.section-dark .check-list li,
.section-dark .inclusion-card p {
  color: rgba(255, 253, 248, 0.74);
}

.inclusion-card {
  padding: 26px;
  background: rgba(255, 253, 248, 0.08);
  border-color: rgba(255, 253, 248, 0.14);
}

.check-list,
.comparison-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.comparison-card li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before,
.comparison-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wood);
  transform: translateY(-50%);
}

.project-specs .check-list.project-features {
  margin: 0;
  padding: 24px;
  border-top: 1px solid var(--line);
  background: var(--off-white);
}

.project-specs .check-list.project-features li {
  padding-left: 1.35rem;
}

.proof-section {
  background:
    radial-gradient(ellipse 70% 50% at 100% 0%, rgba(63, 110, 79, 0.1), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--off-white) 100%);
}

.proof-shell {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.proof-body {
  display: grid;
  gap: clamp(28px, 4vw, 40px);
  align-items: center;
}

.proof-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 5.5vw, 3rem);
  line-height: 1.06;
}

.proof-lead {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.proof-note {
  margin: 0 0 18px;
  padding: 14px 16px;
  border-left: 4px solid var(--wood);
  border-radius: var(--radius);
  color: var(--green-950);
  background: rgba(255, 253, 248, 0.85);
  font-size: 0.95rem;
  line-height: 1.55;
}

.proof-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-points li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.proof-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--wood);
}

.proof-carousel {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: var(--off-white);
  box-shadow: var(--shadow);
}

.proof-carousel-viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--green-950);
  line-height: 0;
}

.proof-carousel-track {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  min-height: 300px;
}

.proof-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.proof-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.proof-slide img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}

.proof-slide--video {
  background: var(--green-950);
}

.proof-video-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.proof-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
}

.proof-carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 50%;
  color: var(--off-white);
  background: rgba(18, 37, 28, 0.75);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  backdrop-filter: blur(8px);
}

.proof-carousel-arrow--prev {
  left: 12px;
}

.proof-carousel-arrow--next {
  right: 12px;
}

.proof-carousel-footer {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.proof-carousel-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
}

.proof-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(29, 59, 45, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.proof-dot.is-active {
  background: var(--wood);
  transform: scale(1.15);
}

.proof-carousel-dots .proof-dot {
  position: relative;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
}

.proof-carousel-dots .proof-dot::before {
  content: "";
  position: absolute;
  inset: -14px;
}

.proof-carousel-caption {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.about-section {
  background: var(--cream);
}

.highlight-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: 28px;
  border-left: 5px solid var(--earth);
}

.highlight-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--earth);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.highlight-card strong {
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.05;
}

.dark-card {
  margin-top: 28px;
  border-color: rgba(255, 253, 248, 0.14);
  background: rgba(255, 253, 248, 0.08);
}

.dark-card strong {
  color: var(--off-white);
  font-size: clamp(1.35rem, 4vw, 2.15rem);
}

.comparison-section {
  background: #fbfaf5;
}

.comparison-card {
  padding: 28px;
}

.comparison-card.featured {
  border-color: rgba(63, 110, 79, 0.36);
  background: var(--green-850);
}

.comparison-card.featured h3,
.comparison-card.featured li {
  color: var(--off-white);
}

.comparison-card.featured li::before {
  background: var(--green-200);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.trust-row span {
  color: var(--green-950);
  border-color: rgba(29, 59, 45, 0.16);
  background: rgba(255, 253, 248, 0.75);
}

.faq-list {
  display: grid;
  gap: 10px;
  width: min(900px, 100%);
  margin: 0 auto;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--off-white);
  box-shadow: 0 10px 28px rgba(18, 37, 28, 0.06);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--green-950);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  scroll-margin-top: 72px;
  padding: clamp(72px, 10vw, 120px) clamp(20px, 4vw, 56px) clamp(64px, 8vw, 100px);
  color: var(--off-white);
  background:
    linear-gradient(0deg, rgba(18, 37, 28, 0.94) 0%, rgba(18, 37, 28, 0.88) 100%),
    url("assets/projeto-casa-terrea-madeira-hero-desktop.png") center / cover;
}

.final-content {
  width: min(520px, 100%);
  margin: 0 auto;
  text-align: center;
}

.final-content .eyebrow {
  margin-bottom: 12px;
}

.final-content h2 {
  margin-bottom: 14px;
  color: var(--off-white);
  font-size: clamp(1.85rem, 6vw, 3rem);
  line-height: 1.08;
}

.final-lead {
  margin: 0 auto 28px;
  max-width: 36ch;
  color: rgba(255, 253, 248, 0.86);
  font-size: clamp(0.98rem, 2.2vw, 1.1rem);
  line-height: 1.55;
}

.final-offer {
  margin: 0 auto 28px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 253, 248, 0.2);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 253, 248, 0.08);
  text-align: center;
}

.final-price {
  margin-bottom: 18px;
}

.final-price-label {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.final-price-value {
  display: block;
  margin: 0;
  color: #fff8df;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 11vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.final-price-alt {
  display: block;
  margin-top: 8px;
  color: rgba(255, 253, 248, 0.78);
  font-size: 0.95rem;
}

.final-includes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.final-includes li {
  padding: 7px 12px;
  border: 1px solid rgba(255, 253, 248, 0.22);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.9);
  font-size: 0.82rem;
  font-weight: 650;
}

.final-content .button-large {
  width: 100%;
  min-height: 54px;
  margin-bottom: 16px;
  padding: 15px 24px;
  font-size: 1.02rem;
}

.final-trust {
  margin: 0;
  color: rgba(255, 253, 248, 0.65);
  font-size: 0.8rem;
  line-height: 1.55;
}

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

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

@media (min-width: 700px) {
  .hero-content {
    width: min(1180px, calc(100% - 80px));
  }

  .hero-actions {
    flex-direction: row;
    align-items: center;
  }

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

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

@media (max-width: 699px) {
  .site-header {
    padding: 10px 16px;
    padding-top: max(10px, env(safe-area-inset-top));
    background: linear-gradient(180deg, rgba(18, 37, 28, 0.88), rgba(18, 37, 28, 0.35));
    color: var(--off-white);
  }

  .brand {
    min-width: 0;
    font-size: 0.9rem;
  }

  .brand > span:not(.brand-mark) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header .button-small {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 0.88rem;
  }

  .hero {
    display: grid;
    align-items: end;
    min-height: 100svh;
    min-height: 100dvh;
    background: var(--green-950);
  }

  .hero-media {
    position: absolute;
    inset: 0;
  }

  .hero-media .hero-image {
    object-position: center 40%;
  }

  .hero-media .hero-overlay {
    background:
      linear-gradient(0deg, rgba(18, 37, 28, 0.92) 0%, rgba(18, 37, 28, 0.55) 38%, rgba(18, 37, 28, 0.15) 62%, rgba(18, 37, 28, 0.25) 100%);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0 22px 28px;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
    color: var(--off-white);
    background: transparent;
  }

  .hero-headline {
    margin: 0 0 14px;
    padding-top: min(40dvh, 320px);
  }

  .hero .eyebrow {
    margin-bottom: 10px;
    color: var(--wood);
    font-size: 0.68rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
  }

  .hero-title-line {
    display: block;
  }

  .hero h1 {
    margin-bottom: 0;
    max-width: none;
    color: var(--off-white);
    font-size: clamp(1.72rem, 7.4vw, 2.05rem);
    line-height: 1.14;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 20px rgba(18, 37, 28, 0.45);
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.5rem);
  }

  .hero-copy {
    margin: 0 0 10px;
    max-width: none;
    color: rgba(255, 253, 248, 0.82);
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-deliverables {
    gap: 8px;
    margin: 0 0 16px;
    padding: 14px 16px;
  }

  .hero-deliverables li {
    font-size: 0.84rem;
  }

  .hero-model {
    margin: 0 0 20px;
    font-size: 0.8rem;
  }

  .hero-actions {
    gap: 0;
    margin-top: 0;
    padding-top: 0;
  }

  .hero-actions .button,
  .incluso-cta .button,
  .final-content .hero-actions .button {
    width: 100%;
    min-height: 48px;
    padding: 13px 20px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
  }

  .section {
    padding: 52px 18px;
  }

  .intro-shell {
    gap: 28px;
  }

  .intro-hero h2 br {
    display: none;
  }

  .intro-stats {
    gap: 8px;
  }

  .intro-stats li {
    padding: 14px 10px;
  }

  .journey-step {
    padding: 18px 16px;
  }

  .intro-turn {
    padding: 20px 18px;
    text-align: left;
  }

  .intro-turn p {
    margin: 0;
    max-width: none;
  }

  .intro-journey-title {
    text-align: left;
    font-size: clamp(1.2rem, 5vw, 1.45rem);
  }

  .intro-support {
    text-align: left;
  }

  .intro-support h3 {
    font-size: clamp(1.3rem, 5.5vw, 1.55rem);
  }

  .project-metrics strong {
    font-size: 1.65rem;
  }

  .project-body {
    gap: 22px;
  }

  .project-intro h2 {
    max-width: none;
    font-size: clamp(1.75rem, 8vw, 2.15rem);
  }

  .project-size {
    font-size: clamp(2.1rem, 9vw, 2.55rem);
  }

  .project-lead {
    font-size: 0.98rem;
  }

  .project-carousel-track {
    max-height: min(68svh, 520px);
  }

  .project-carousel-tab {
    min-height: 48px;
    font-size: 0.8rem;
  }

  .project-carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .project-metrics li {
    padding: 16px 8px;
  }

  .project-metrics span {
    font-size: 0.72rem;
  }

  .proof-body {
    gap: 24px;
  }

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

  .proof-copy h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .proof-lead,
  .proof-note {
    font-size: 0.95rem;
    text-align: left;
  }

  .proof-points {
    text-align: left;
  }

  .proof-carousel {
    width: 100%;
  }

  .proof-carousel-track {
    min-height: 0;
    max-height: min(72svh, 540px);
  }

  .proof-carousel-arrow {
    width: 44px;
    height: 44px;
  }

  .proof-carousel-dots .proof-dot {
    width: 11px;
    height: 11px;
  }

  .project-specs .check-list.project-features {
    padding: 20px 18px 22px;
    grid-template-columns: 1fr;
  }

  .final-cta {
    padding: 52px max(20px, env(safe-area-inset-right)) max(40px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
  }

  .final-content h2 {
    font-size: clamp(1.65rem, 7.5vw, 2rem);
  }

  .final-lead {
    margin-bottom: 24px;
    font-size: 0.95rem;
  }

  .final-offer {
    margin-bottom: 24px;
    padding: 22px 18px;
  }

  .final-price-value {
    font-size: clamp(2.35rem, 10vw, 2.75rem);
  }

  .final-content .button-large {
    min-height: 52px;
    font-size: 1rem;
  }

  .cta-note {
    font-size: 0.8rem;
  }

  .package-head {
    text-align: left;
  }

  .package-pills {
    justify-content: flex-start;
  }

  .package-group {
    padding: 20px 18px;
  }

  .package-bonus {
    padding: 18px;
  }
}

@media (min-width: 720px) {
  .project-specs .check-list.project-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
    row-gap: 12px;
  }
}

@media (min-width: 980px) {
  .project-body {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    grid-template-rows: auto auto;
    gap: 24px 44px;
    align-items: start;
  }

  .project-carousel {
    grid-column: 1;
    grid-row: 1 / -1;
    position: sticky;
    top: 92px;
    align-self: start;
  }

  .project-carousel-track {
    aspect-ratio: 941 / 1320;
    min-height: 360px;
  }

  .project-intro {
    grid-column: 2;
    grid-row: 1;
    text-align: left;
  }

  .project-intro h2 {
    margin-inline: 0;
    max-width: 11ch;
    font-size: clamp(2.35rem, 3.2vw, 3.75rem);
  }

  .project-lead {
    margin-inline: 0;
    max-width: 42ch;
  }

  .project-specs {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
  }

  .proof-body {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: center;
  }

  .proof-copy {
    order: 1;
  }

  .proof-carousel {
    order: 2;
  }

  .proof-carousel-track {
    min-height: 440px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
