:root {
  --dark: #08090a;
  --dark-2: #111315;
  --stone: #f3efe7;
  --stone-2: #e8e0d3;
  --paper: #fbf7ef;
  --carbon: #202124;
  --muted: #68645d;
  --text: #151515;
  --white: #fffaf2;
  --gold: #b9975b;
  --gold-2: #d0b375;
  --line: rgba(20, 20, 20, .14);
  --line-light: rgba(255, 255, 255, .18);
  --shadow: 0 28px 70px rgba(0, 0, 0, .18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--dark);
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  color: var(--text);
  background: var(--stone);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  transform: translateY(-180%);
  opacity: 0;
  pointer-events: none;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

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

.section {
  padding: clamp(76px, 8vw, 126px) 0;
}

.section-light {
  background:
    radial-gradient(circle at top left, rgba(185, 151, 91, .10), transparent 34rem),
    var(--stone);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: var(--header-h);
  padding-top: 12px;
  padding-bottom: 12px;
  color: var(--white);
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 9, 10, .84);
  backdrop-filter: blur(18px);
  border-bottom-color: var(--line-light);
}

.header-inner {
  min-height: calc(var(--header-h) - 24px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  width: 142px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

.brand img {
  width: 142px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: .86rem;
  color: rgba(255, 250, 242, .82);
}

.main-nav a {
  position: relative;
  padding: 12px 0;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 6px;
  height: 1px;
  background: var(--gold-2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .22s ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta,
.btn {
  min-height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #14110b;
  box-shadow: 0 18px 42px rgba(185, 151, 91, .28);
}

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

.btn-ghost {
  border-color: rgba(255, 255, 255, .28);
  color: var(--white);
  background: rgba(255, 255, 255, .05);
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .04);
  color: var(--white);
  position: relative;
  z-index: 3;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 1px;
  background: currentColor;
  margin: 0 auto 6px;
  transition: transform .22s ease;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--dark);
  padding-top: var(--header-h);
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, .94) 0%, rgba(8, 9, 10, .68) 34%, rgba(8, 9, 10, .16) 72%, rgba(8, 9, 10, .34) 100%),
    linear-gradient(0deg, var(--dark) 0%, rgba(8, 9, 10, .32) 30%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: clamp(70px, 8vw, 120px) 0 70px;
}

.eyebrow {
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  font-weight: 900;
  font-size: .76rem;
}

.hero-eyebrow {
  color: var(--gold-2);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.03;
  letter-spacing: -.055em;
}

h1 {
  font-size: clamp(3.2rem, 8vw, 7.2rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

.hero-claim {
  margin: 20px 0 0;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 250, 242, .78);
  font-size: clamp(1.04rem, 1.5vw, 1.24rem);
}

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

.hero-attributes {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-attributes span {
  min-height: 82px;
  padding: 16px;
  display: flex;
  align-items: center;
  color: rgba(255, 250, 242, .86);
  background: rgba(8, 9, 10, .44);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .72rem;
  font-weight: 900;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(360px, 1.06fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(360px, 1.06fr) minmax(0, .94fr);
}

.two-col.reverse .section-copy {
  order: 2;
}

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

.image-card,
.wide-image {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 20, 20, .10);
  background: #ddd4c6;
}

.image-card img {
  width: 100%;
  height: 540px;
  object-fit: cover;
}

.section-steel {
  background:
    linear-gradient(180deg, #fbf7ef 0%, #ece5d9 100%);
}

.steel-grid {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, .95fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.wide-image img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.feature-grid {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.feature-grid article {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.feature-grid h3 {
  font-size: 1.18rem;
  letter-spacing: -.03em;
}

.feature-grid p {
  margin: 8px 0 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.light h2,
.section-heading.light p {
  color: var(--white);
}

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

.model-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 20, 20, .10);
}

.model-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.model-body {
  padding: 26px;
}

.model-body span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: .72rem;
}

.model-body ul {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  color: var(--muted);
}

.model-body li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
}

.model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.model-actions button,
.model-actions a {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.model-actions a {
  background: var(--dark);
  color: var(--white);
}

.legal-note {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: .98rem;
}

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

.project-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, 300px);
  gap: 18px;
}

.project-gallery figure {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line-light);
}

.project-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-main {
  grid-row: span 2;
}

.process-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(34px, 6vw, 76px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
}

.steps article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  min-height: 82px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
}

.steps strong {
  color: var(--gold);
}

.steps span {
  font-weight: 900;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.pill-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .44);
  font-weight: 800;
  color: var(--carbon);
}

.quote-section {
  background:
    radial-gradient(circle at 20% 0%, rgba(185, 151, 91, .16), transparent 34rem),
    linear-gradient(180deg, #090a0b, #121416);
  color: var(--white);
}

.quote-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}

.quote-type {
  display: grid;
  gap: 14px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.quote-choice {
  text-align: left;
  min-height: 132px;
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .045);
  color: var(--white);
  cursor: pointer;
}

.quote-choice strong,
.quote-choice span {
  display: block;
}

.quote-choice strong {
  font-size: 1.5rem;
  letter-spacing: -.04em;
}

.quote-choice span {
  margin-top: 8px;
  color: rgba(255, 250, 242, .7);
}

.quote-choice.is-active {
  border-color: var(--gold-2);
  background: rgba(185, 151, 91, .14);
}

.quote-form {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, .065);
  backdrop-filter: blur(16px);
  padding: clamp(22px, 4vw, 38px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255, 250, 242, .88);
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  padding: 14px 15px;
  outline: none;
}

.quote-form option {
  background: #141618;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--gold-2);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-list details {
  border-radius: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .06);
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.08rem;
}

.faq-list p {
  color: var(--muted);
}

.contact-band {
  background: var(--stone);
  padding: 0 0 clamp(76px, 8vw, 126px);
}

.contact-inner {
  border-radius: var(--radius-xl);
  background: var(--dark);
  color: var(--white);
  padding: clamp(30px, 6vw, 66px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  box-shadow: var(--shadow);
}

.contact-inner p {
  max-width: 680px;
  color: rgba(255, 250, 242, .72);
}

.site-footer {
  background: #050607;
  color: var(--white);
  padding: 48px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .6fr;
  gap: 34px;
}

.footer-logo {
  width: 132px;
  margin-bottom: 18px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: rgba(255, 250, 242, .7);
}

.site-footer h2 {
  font-size: 1rem;
  letter-spacing: 0;
  margin-bottom: 12px;
}

.site-footer a,
.site-footer span {
  display: block;
  margin: 8px 0;
}



.plan-modal {
  width: min(980px, calc(100% - 28px));
  border: 0;
  padding: 0;
  background: transparent;
}

.plan-modal::backdrop {
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(8px);
}

.plan-modal img {
  width: 100%;
  border-radius: 20px;
  background: #000;
}

.modal-close {
  position: absolute;
  right: -10px;
  top: -54px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 999px;
  background: var(--white);
  color: var(--dark);
  cursor: pointer;
  font-size: 1.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}

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

@media (max-width: 1080px) {
  .main-nav {
    gap: 14px;
    font-size: .78rem;
  }

  .header-cta {
    padding-inline: 16px;
  }

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

  .model-grid,
  .steel-grid,
  .two-col,
  .two-col.reverse,
  .process-grid,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .two-col.reverse .section-copy {
    order: 0;
  }

  .quote-type {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 84px;
  }

  .site-header {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .header-inner {
    min-height: calc(var(--header-h) - 16px);
  }

  .brand,
  .brand img {
    width: 126px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-content: center;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    height: 100svh;
    padding: 118px 26px 40px;
    background: rgba(8, 9, 10, .96);
    backdrop-filter: blur(18px);
    display: grid;
    align-content: start;
    gap: 18px;
    font-size: 1.22rem;
    transform: translateX(100%);
    transition: transform .24s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .nav-toggle.is-open span:first-child {
    transform: translateY(3.5px) rotate(42deg);
  }

  .nav-toggle.is-open span:last-child {
    transform: translateY(-3.5px) rotate(-42deg);
  }

  .project-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .project-gallery figure,
  .project-main {
    grid-row: auto;
  }

  .project-gallery img {
    min-height: 320px;
  }

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

  .quote-type {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
  }

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

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

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

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

  .hero-actions,
  .hero-actions .btn,
  .contact-inner .btn,
  .quote-form .btn {
    width: 100%;
  }

  .hero-attributes {
    grid-template-columns: 1fr;
  }

  .image-card img,
  .wide-image img {
    height: 360px;
  }

  .model-body {
    padding: 22px;
  }

  
}

@media print {
  .site-header,
body {
    background: var(--stone);
  }

  .hero,
  .quote-section,
  .section-projects,
  .site-footer {
    print-color-adjust: exact;
    -webkit-print-color-adjust: exact;
  }
}

.form-status {
  margin: 4px 0 0;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 250, 242, .78);
  background: rgba(255, 255, 255, .06);
  display: none;
}

.form-status.is-ok {
  display: block;
  border-color: rgba(185, 151, 91, .55);
  background: rgba(185, 151, 91, .14);
  color: #fffaf2;
}

.quote-form button[disabled] {
  opacity: .72;
  cursor: not-allowed;
  transform: none;
}



/* STEP 06G-R — Modal responsive con navegación */
.plan-modal {
  width: min(1120px, calc(100% - 28px));
  max-height: calc(100svh - 28px);
  border: 0;
  padding: 0;
  background: transparent;
  overflow: visible;
}

.plan-modal::backdrop {
  background: rgba(0, 0, 0, .74);
  backdrop-filter: blur(8px);
}

.plan-modal-shell {
  position: relative;
  max-height: calc(100svh - 28px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
}

.plan-modal-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.modal-action,
.modal-close {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: #fffaf2;
  color: #08090a;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.modal-action {
  padding: 0 18px;
}

.modal-close {
  width: 44px;
  font-size: 1.5rem;
  line-height: 1;
}

.plan-modal img {
  width: 100%;
  max-height: calc(100svh - 94px);
  object-fit: contain;
  border-radius: 22px;
  background: #f3efe7;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .36);
}

@media (max-width: 640px) {
  .plan-modal {
    width: calc(100% - 18px);
    max-height: calc(100svh - 18px);
  }

  .plan-modal-shell {
    max-height: calc(100svh - 18px);
  }

  .plan-modal-actions {
    justify-content: space-between;
    gap: 8px;
  }

  .modal-action {
    flex: 1;
    min-height: 46px;
    padding: 0 10px;
    font-size: .86rem;
  }

  .modal-close {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
  }

  .plan-modal img {
    max-height: calc(100svh - 92px);
    border-radius: 16px;
  }
}

/* VSP BACK TO TOP PREMIUM START */
.back-to-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 999;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(185, 151, 91, .46);
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .10), rgba(255, 250, 242, .025)),
    rgba(10, 11, 12, .62);
  color: #d0b375;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px) scale(.96);
  transition:
    opacity .24s ease,
    visibility .24s ease,
    transform .24s ease,
    border-color .24s ease,
    background .24s ease,
    color .24s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  border-color: rgba(208, 179, 117, .82);
  background:
    linear-gradient(180deg, rgba(208, 179, 117, .20), rgba(208, 179, 117, .06)),
    rgba(10, 11, 12, .72);
  color: #fffaf2;
  transform: translateY(-3px) scale(1.02);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(208, 179, 117, .78);
  outline-offset: 4px;
}

.back-to-top span {
  display: block;
  transform: translateY(-1px);
}

@media (max-width: 640px) {
  .back-to-top {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.08rem;
    background:
      linear-gradient(180deg, rgba(255, 250, 242, .09), rgba(255, 250, 242, .02)),
      rgba(10, 11, 12, .68);
  }
}
/* VSP BACK TO TOP PREMIUM END */

/* VSP INSTAGRAM START */
.instagram-link {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 242, .20);
  color: rgba(255, 250, 242, .86);
  background: rgba(255, 255, 255, .045);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}

.instagram-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.instagram-link:hover {
  transform: translateY(-2px);
  border-color: rgba(208, 179, 117, .72);
  color: #d0b375;
  background: rgba(208, 179, 117, .10);
}

.footer-instagram {
  width: auto;
  height: 44px;
  flex: none;
  gap: 9px;
  padding: 0 14px;
  margin-top: 14px;
  border-color: rgba(255, 250, 242, .18);
  justify-content: flex-start;
}

.footer-instagram span {
  margin: 0;
  color: rgba(255, 250, 242, .78);
  font-weight: 800;
}

@media (max-width: 860px) {
  .header-inner > .instagram-link {
    margin-left: auto;
  }
}

@media (max-width: 560px) {
  .header-inner > .instagram-link {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .header-inner > .instagram-link svg {
    width: 19px;
    height: 19px;
  }
}
/* VSP INSTAGRAM END */

/* VSP INSTAGRAM FOOTER FIX START */
.site-footer .footer-instagram {
  width: fit-content !important;
  height: auto !important;
  min-height: 0 !important;
  flex: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 10px !important;
  margin-top: 14px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: rgba(255, 250, 242, .78) !important;
}

.site-footer .footer-instagram svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  padding: 8px !important;
  box-sizing: content-box !important;
  border: 1px solid rgba(208, 179, 117, .38) !important;
  border-radius: 999px !important;
  color: #d0b375 !important;
  background: rgba(255, 250, 242, .04) !important;
}

.site-footer .footer-instagram span {
  display: inline !important;
  margin: 0 !important;
  color: rgba(255, 250, 242, .78) !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.site-footer .footer-instagram:hover {
  transform: translateY(-1px) !important;
  color: #d0b375 !important;
  background: transparent !important;
}

.site-footer .footer-instagram:hover svg {
  border-color: rgba(208, 179, 117, .72) !important;
  background: rgba(208, 179, 117, .10) !important;
}
/* VSP INSTAGRAM FOOTER FIX END */

/* VSP STEP 07A RESPONSIVE START */
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

section[id] {
  scroll-margin-top: 112px;
}

img, picture, video, canvas, svg {
  max-width: 100%;
}

.site-header {
  z-index: 1000;
}

.header-inner {
  position: relative;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 242, .18);
  background: rgba(255, 255, 255, .045);
  color: #fffaf2;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle:hover {
  border-color: rgba(208, 179, 117, .66);
  background: rgba(208, 179, 117, .10);
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 980px) {
  .header-inner {
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 3;
  }

  .header-inner > .instagram-link {
    order: 2;
    margin-left: auto;
  }

  .header-cta {
    order: 4;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(255, 250, 242, .14);
    border-radius: 24px;
    background: rgba(8, 9, 10, .94);
    box-shadow: 0 28px 80px rgba(0, 0, 0, .34);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .main-nav a {
    width: 100%;
    padding: 13px 10px;
    border-radius: 14px;
  }

  .main-nav a:hover {
    background: rgba(208, 179, 117, .10);
  }
}

@media (max-width: 720px) {
  section[id] {
    scroll-margin-top: 92px;
  }

  .header-cta {
    display: none;
  }

  .brand img {
    max-height: 52px;
  }

  .section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-title,
  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 4.3rem);
  }

  .btn,
  button,
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 30px, var(--container, 1180px));
  }

  .nav-toggle,
  .header-inner > .instagram-link {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .main-nav {
    border-radius: 20px;
  }
}
/* VSP STEP 07A RESPONSIVE END */

/* VSP STEP 07C MODAL BACK ONLY START */
.plan-modal-actions {
  justify-content: space-between !important;
}

.plan-modal-actions [data-plan-top],
.modal-top {
  display: none !important;
}

.modal-back {
  min-width: 148px;
  padding: 0 18px !important;
  letter-spacing: .01em;
}

@media (max-width: 640px) {
  .plan-modal-actions {
    justify-content: space-between !important;
  }

  .modal-back {
    flex: 0 1 auto !important;
    min-width: 144px;
  }

  .modal-close {
    margin-left: auto;
  }
}
/* VSP STEP 07C MODAL BACK ONLY END */

/* VSP STEP 07D MODAL SINGLE BACK START */
.plan-modal-actions-single {
  justify-content: flex-start !important;
}

.plan-modal-actions [data-plan-close],
.plan-modal-actions .modal-close,
.plan-modal-actions [data-plan-top],
.plan-modal-actions .modal-top {
  display: none !important;
}

.plan-modal-actions-single .modal-back {
  min-height: 44px;
  padding: 0 18px !important;
  border-radius: 999px;
  border: 1px solid rgba(208, 179, 117, .46);
  background: rgba(10, 11, 12, .72);
  color: #d0b375;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.plan-modal-actions-single .modal-back:hover {
  border-color: rgba(208, 179, 117, .82);
  background: rgba(208, 179, 117, .12);
  color: #fffaf2;
}

@media (max-width: 640px) {
  .plan-modal-actions-single {
    justify-content: flex-start !important;
  }

  .plan-modal-actions-single .modal-back {
    width: auto !important;
    min-width: 148px;
    flex: 0 0 auto !important;
  }
}
/* VSP STEP 07D MODAL SINGLE BACK END */

/* VSP STEP 08A STEEL START */
.steel-definitive {
  background:
    radial-gradient(circle at 18% 10%, rgba(208, 179, 117, .10), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, #f1eadf 100%);
}

.steel-definitive-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.steel-definitive-copy .section-lead {
  max-width: 780px;
}

.steel-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.steel-pillars article {
  padding: 22px;
  border: 1px solid rgba(26, 31, 36, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 18px 50px rgba(38, 31, 20, .06);
}

.steel-pillars article span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #14110b;
  color: #d0b375;
  font-size: .78rem;
  font-weight: 900;
}

.steel-pillars article h3 {
  margin: 0 0 9px;
  color: #14110b;
  font-size: 1.02rem;
}

.steel-pillars article p {
  margin: 0;
  color: rgba(20, 17, 11, .72);
  line-height: 1.65;
}

.steel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.steel-definitive-media {
  position: relative;
}

.steel-definitive-media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(28, 24, 18, .18);
}

.steel-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 242, .20);
  border-radius: 22px;
  background: rgba(10, 11, 12, .72);
  color: #fffaf2;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .20);
}

.steel-note strong {
  display: block;
  margin-bottom: 5px;
  color: #d0b375;
}

.steel-note span {
  display: block;
  color: rgba(255, 250, 242, .78);
  line-height: 1.45;
}

@media (max-width: 980px) {
  .steel-definitive-grid {
    grid-template-columns: 1fr;
  }

  .steel-definitive-media {
    order: -1;
  }

  .steel-definitive-media img {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .steel-pillars {
    grid-template-columns: 1fr;
  }

  .steel-pillars article {
    padding: 20px;
    border-radius: 22px;
  }

  .steel-actions {
    flex-direction: column;
  }

  .steel-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .steel-definitive-media img {
    min-height: 340px;
    border-radius: 26px;
  }

  .steel-note {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 18px;
  }
}
/* VSP STEP 08A STEEL END */

/* VSP STEP 08B STEEL SECONDARY BUTTON START */
.steel-definitive .steel-actions .btn-ghost {
  color: #14110b !important;
  border: 1px solid rgba(20, 17, 11, .22) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .36)) !important;
  box-shadow: 0 12px 30px rgba(38, 31, 20, .08) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.steel-definitive .steel-actions .btn-ghost:hover {
  color: #14110b !important;
  border-color: rgba(208, 179, 117, .78) !important;
  background:
    linear-gradient(180deg, rgba(208, 179, 117, .28), rgba(208, 179, 117, .12)) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(38, 31, 20, .12) !important;
}

.steel-definitive .steel-actions .btn-ghost:focus-visible {
  outline: 2px solid rgba(208, 179, 117, .82);
  outline-offset: 4px;
}

@media (max-width: 640px) {
  .steel-definitive .steel-actions .btn-ghost {
    background: rgba(255, 255, 255, .68) !important;
  }
}
/* VSP STEP 08B STEEL SECONDARY BUTTON END */

/* VSP STEP 09A PREFAB START */
.prefab-definitive {
  background:
    radial-gradient(circle at 82% 8%, rgba(208, 179, 117, .13), transparent 32%),
    linear-gradient(180deg, #f1eadf 0%, #fbf7ef 46%, #f3ecdf 100%);
}

.prefab-heading {
  max-width: 860px;
}

.prefab-models {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 44px;
}

.prefab-card {
  overflow: hidden;
  border: 1px solid rgba(26, 31, 36, .10);
  border-radius: 32px;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 24px 70px rgba(38, 31, 20, .08);
  display: flex;
  flex-direction: column;
}

.prefab-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ddd3c3;
}

.prefab-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.prefab-card:hover .prefab-card-media img {
  transform: scale(1.045);
}

.prefab-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prefab-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.model-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #14110b;
  color: #d0b375;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.model-size {
  color: rgba(20, 17, 11, .62);
  font-size: .86rem;
  font-weight: 900;
}

.prefab-card h3 {
  margin: 0 0 10px;
  color: #14110b;
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.prefab-card p {
  margin: 0;
  color: rgba(20, 17, 11, .72);
  line-height: 1.65;
}

.prefab-features {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.prefab-features li {
  position: relative;
  padding-left: 22px;
  color: rgba(20, 17, 11, .76);
  line-height: 1.45;
}

.prefab-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d0b375;
  box-shadow: 0 0 0 4px rgba(208, 179, 117, .16);
}

.prefab-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: auto;
  padding-top: 24px;
}

.prefab-definitive .prefab-plan-btn {
  color: #14110b !important;
  border: 1px solid rgba(20, 17, 11, .20) !important;
  background: rgba(255, 255, 255, .62) !important;
  box-shadow: 0 12px 30px rgba(38, 31, 20, .07) !important;
}

.prefab-definitive .prefab-plan-btn:hover {
  border-color: rgba(208, 179, 117, .78) !important;
  background: rgba(208, 179, 117, .14) !important;
}

.prefab-advice {
  margin-top: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(20, 17, 11, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .58);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 50px rgba(38, 31, 20, .06);
}

.prefab-advice strong {
  flex: 0 0 auto;
  color: #14110b;
}

.prefab-advice span {
  color: rgba(20, 17, 11, .70);
  line-height: 1.55;
}

@media (max-width: 1100px) {
  .prefab-models {
    grid-template-columns: 1fr;
  }

  .prefab-card {
    display: grid;
    grid-template-columns: minmax(260px, .82fr) minmax(0, 1fr);
  }

  .prefab-card-media {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

@media (max-width: 760px) {
  .prefab-card {
    display: flex;
  }

  .prefab-card-media {
    aspect-ratio: 4 / 3;
    min-height: auto;
  }

  .prefab-advice {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .prefab-models {
    gap: 18px;
  }

  .prefab-card {
    border-radius: 26px;
  }

  .prefab-card-body {
    padding: 20px;
  }

  .prefab-card-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .prefab-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
/* VSP STEP 09A PREFAB END */

/* VSP STEP 09A PREFAB FORM NOTICE START */
.prefab-form-notice {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(208, 179, 117, .34);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(208, 179, 117, .14), rgba(208, 179, 117, .055)),
    rgba(10, 11, 12, .50);
  color: rgba(255, 250, 242, .86);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.prefab-form-notice strong {
  color: #d0b375;
}
/* VSP STEP 09A PREFAB FORM NOTICE END */

/* VSP STEP 09B PREFAB FORM STATE START */
#cotizador .vsp-type-active {
  border-color: rgba(208, 179, 117, .88) !important;
  background:
    linear-gradient(180deg, rgba(208, 179, 117, .18), rgba(208, 179, 117, .06)),
    rgba(255, 255, 255, .035) !important;
  box-shadow: 0 18px 44px rgba(208, 179, 117, .10) !important;
}

#cotizador .vsp-type-inactive {
  border-color: rgba(255, 250, 242, .12) !important;
  background: rgba(255, 255, 255, .025) !important;
  box-shadow: none !important;
}

#cotizador[data-vsp-project-type="prefabricada"] .prefab-form-notice {
  display: block;
}

.prefab-form-notice {
  margin-bottom: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(208, 179, 117, .36);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(208, 179, 117, .14), rgba(208, 179, 117, .055)),
    rgba(10, 11, 12, .50);
  color: rgba(255, 250, 242, .86);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .16);
}

.prefab-form-notice strong {
  color: #d0b375;
}
/* VSP STEP 09B PREFAB FORM STATE END */

/* VSP STEP 10A PROJECTS START */
.projects-definitive {
  background:
    radial-gradient(circle at 16% 18%, rgba(208, 179, 117, .11), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, #eee6d9 100%);
}

.projects-heading {
  max-width: 860px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  margin-top: 44px;
}

.project-card {
  overflow: hidden;
  border: 1px solid rgba(20, 17, 11, .10);
  border-radius: 32px;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 24px 70px rgba(38, 31, 20, .08);
  display: flex;
  flex-direction: column;
}

.project-card-featured {
  grid-row: span 2;
}

.project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #d8cbbb;
}

.project-card-featured .project-media {
  aspect-ratio: 16 / 12;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.project-card:hover .project-media img {
  transform: scale(1.04);
}

.project-content {
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.project-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #14110b;
  color: #d0b375;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.project-content h3 {
  margin: 0 0 12px;
  color: #14110b;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.project-content p {
  margin: 0;
  color: rgba(20, 17, 11, .72);
  line-height: 1.65;
}

.project-points {
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.project-points li {
  position: relative;
  padding-left: 22px;
  color: rgba(20, 17, 11, .76);
  line-height: 1.45;
}

.project-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d0b375;
  box-shadow: 0 0 0 4px rgba(208, 179, 117, .16);
}

.projects-definitive .project-link {
  margin-top: auto;
  color: #14110b !important;
  border: 1px solid rgba(20, 17, 11, .20) !important;
  background: rgba(255, 255, 255, .62) !important;
  box-shadow: 0 12px 30px rgba(38, 31, 20, .07) !important;
}

.projects-definitive .project-link:hover {
  border-color: rgba(208, 179, 117, .78) !important;
  background: rgba(208, 179, 117, .14) !important;
}

.projects-note {
  margin-top: 26px;
  padding: 20px 24px;
  border: 1px solid rgba(20, 17, 11, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .58);
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 18px 50px rgba(38, 31, 20, .06);
}

.projects-note strong {
  flex: 0 0 auto;
  color: #14110b;
}

.projects-note span {
  color: rgba(20, 17, 11, .70);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .project-card-featured {
    grid-row: auto;
  }

  .project-card-featured .project-media,
  .project-media {
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .project-card {
    border-radius: 26px;
  }

  .project-content {
    padding: 22px;
  }

  .projects-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .projects-definitive .btn {
    width: 100%;
    justify-content: center;
  }
}
/* VSP STEP 10A PROJECTS END */

/* VSP STEP 11A PROCESS START */
.process-definitive {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(208, 179, 117, .12), transparent 34%),
    linear-gradient(180deg, #111214 0%, #08090a 100%);
  color: #fffaf2;
}

.process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.process-copy h2,
.process-copy .section-lead {
  color: #fffaf2;
}

.process-copy .section-lead {
  color: rgba(255, 250, 242, .76);
  max-width: 760px;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.process-step {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, .12);
  border-radius: 24px;
  background: rgba(255, 255, 255, .045);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .16);
}

.process-step > span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d0b375, #b9975b);
  color: #11100c;
  font-weight: 950;
  font-size: .82rem;
}

.process-step h3 {
  margin: 0 0 8px;
  color: #fffaf2;
  font-size: 1.04rem;
}

.process-step p {
  margin: 0;
  color: rgba(255, 250, 242, .70);
  line-height: 1.6;
}

.process-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.process-definitive .process-secondary-btn {
  color: #fffaf2 !important;
  border: 1px solid rgba(255, 250, 242, .18) !important;
  background: rgba(255, 255, 255, .045) !important;
}

.process-definitive .process-secondary-btn:hover {
  color: #d0b375 !important;
  border-color: rgba(208, 179, 117, .72) !important;
  background: rgba(208, 179, 117, .10) !important;
}

.process-panel {
  position: relative;
  min-height: 650px;
}

.process-panel-media {
  position: absolute;
  inset: 0 0 120px 54px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .36);
}

.process-panel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.process-panel-card {
  position: absolute;
  left: 0;
  right: 38px;
  bottom: 72px;
  padding: 24px;
  border: 1px solid rgba(208, 179, 117, .28);
  border-radius: 28px;
  background: rgba(8, 9, 10, .76);
  color: #fffaf2;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.process-panel-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #d0b375;
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.process-panel-card h3 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.process-panel-card p {
  margin: 0;
  color: rgba(255, 250, 242, .74);
  line-height: 1.6;
}

.process-panel-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 8px solid #08090a;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .34);
}

.process-panel-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 1040px) {
  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-panel {
    min-height: 560px;
    order: -1;
  }

  .process-panel-media {
    inset: 0 0 108px 0;
  }

  .process-panel-card {
    right: 90px;
    bottom: 54px;
  }
}

@media (max-width: 680px) {
  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .process-actions {
    flex-direction: column;
  }

  .process-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .process-panel {
    min-height: auto;
    display: grid;
    gap: 16px;
  }

  .process-panel-media,
  .process-panel-card,
  .process-panel-detail {
    position: static;
    inset: auto;
    width: 100%;
  }

  .process-panel-media {
    aspect-ratio: 4 / 3;
    border-radius: 26px;
  }

  .process-panel-card {
    border-radius: 24px;
  }

  .process-panel-detail {
    display: none;
  }
}
/* VSP STEP 11A PROCESS END */

/* VSP STEP 11B PROCESS WALL FIX START */
.process-panel {
  isolation: isolate;
}

.process-panel-media {
  z-index: 1;
}

.process-panel-card {
  z-index: 3 !important;
  right: clamp(132px, 17vw, 210px) !important;
  bottom: 74px !important;
  background: rgba(8, 9, 10, .86) !important;
}

.process-panel-card p {
  max-width: 100%;
}

.process-panel-detail {
  z-index: 2 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: min(34%, 220px) !important;
  pointer-events: none;
}

@media (max-width: 1040px) {
  .process-panel-card {
    right: clamp(110px, 18vw, 178px) !important;
    bottom: 58px !important;
  }

  .process-panel-detail {
    width: min(32%, 190px) !important;
  }
}

@media (max-width: 760px) {
  .process-panel-card {
    right: 92px !important;
  }

  .process-panel-detail {
    width: 132px !important;
  }
}

@media (max-width: 680px) {
  .process-panel-card {
    right: auto !important;
    bottom: auto !important;
  }

  .process-panel-detail {
    display: block !important;
    position: static !important;
    width: 100% !important;
    aspect-ratio: 16 / 9;
    border: 0 !important;
    border-radius: 22px !important;
  }
}
/* VSP STEP 11B PROCESS WALL FIX END */

/* VSP STEP 11C PROCESS HELMET LOGO FIX START */
@media (min-width: 681px) {
  .process-panel {
    min-height: 690px;
    isolation: isolate;
  }

  .process-panel-media {
    z-index: 1 !important;
  }

  .process-panel-card {
    left: auto !important;
    right: 0 !important;
    bottom: 82px !important;
    width: min(56%, 410px) !important;
    max-width: 410px !important;
    z-index: 3 !important;
    padding: 22px 24px !important;
    background: rgba(8, 9, 10, .88) !important;
  }

  .process-panel-card h3 {
    font-size: clamp(1.5rem, 2.55vw, 2.1rem);
    line-height: 1.04;
  }

  .process-panel-detail {
    left: 34px !important;
    right: auto !important;
    bottom: 0 !important;
    width: min(30%, 178px) !important;
    z-index: 2 !important;
    pointer-events: none;
  }
}

@media (min-width: 681px) and (max-width: 1040px) {
  .process-panel {
    min-height: 620px;
  }

  .process-panel-card {
    right: 0 !important;
    bottom: 64px !important;
    width: min(54%, 360px) !important;
    max-width: 360px !important;
  }

  .process-panel-detail {
    left: 24px !important;
    width: min(28%, 160px) !important;
  }
}

@media (min-width: 681px) and (max-width: 760px) {
  .process-panel-card {
    width: min(54%, 320px) !important;
    padding: 18px !important;
  }

  .process-panel-card h3 {
    font-size: 1.45rem;
  }

  .process-panel-card p {
    font-size: .94rem;
  }
}

@media (max-width: 680px) {
  .process-panel-card,
  .process-panel-detail {
    position: static !important;
    width: 100% !important;
    max-width: none !important;
  }
}
/* VSP STEP 11C PROCESS HELMET LOGO FIX END */

/* VSP STEP 12A NOSOTROS CONTACTO FOOTER START */
.about-definitive {
  background:
    radial-gradient(circle at 18% 20%, rgba(208, 179, 117, .12), transparent 30%),
    linear-gradient(180deg, #fbf7ef 0%, #f1eadf 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
}

.about-media {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(38, 31, 20, .16);
}

.about-media img {
  width: 100%;
  min-height: 540px;
  object-fit: cover;
  display: block;
}

.about-media-badge {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 250, 242, .22);
  border-radius: 22px;
  background: rgba(8, 9, 10, .76);
  color: #fffaf2;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-media-badge span {
  display: block;
  margin-bottom: 4px;
  color: #d0b375;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .12em;
}

.about-media-badge strong {
  display: block;
  font-size: 1.15rem;
}

.about-copy > p:not(.eyebrow):not(.section-lead) {
  color: rgba(20, 17, 11, .72);
  line-height: 1.7;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.about-values article {
  padding: 20px;
  border: 1px solid rgba(20, 17, 11, .10);
  border-radius: 24px;
  background: rgba(255, 255, 255, .60);
  box-shadow: 0 18px 50px rgba(38, 31, 20, .06);
}

.about-values article span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 999px;
  background: #14110b;
  color: #d0b375;
  font-size: .74rem;
  font-weight: 950;
}

.about-values article h3 {
  margin: 0 0 8px;
  color: #14110b;
}

.about-values article p {
  margin: 0;
  color: rgba(20, 17, 11, .70);
  line-height: 1.55;
}

.contact-definitive {
  background:
    radial-gradient(circle at 78% 18%, rgba(208, 179, 117, .14), transparent 32%),
    linear-gradient(135deg, #151617 0%, #08090a 100%);
}

.contact-definitive-inner {
  align-items: center;
}

.contact-copy p {
  max-width: 760px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.contact-definitive .contact-secondary-btn {
  color: #fffaf2 !important;
  border: 1px solid rgba(255, 250, 242, .20) !important;
  background: rgba(255, 255, 255, .045) !important;
}

.contact-definitive .contact-secondary-btn:hover {
  color: #d0b375 !important;
  border-color: rgba(208, 179, 117, .72) !important;
  background: rgba(208, 179, 117, .10) !important;
}

.footer-definitive {
  background: #050607;
}

.footer-definitive-grid {
  align-items: flex-start;
  gap: clamp(32px, 5vw, 82px);
}

.footer-brand-block p {
  max-width: 440px;
}

.footer-contact-block,
.footer-nav-block {
  display: grid;
  gap: 10px;
}

.footer-contact-block span {
  display: block;
  color: rgba(255, 250, 242, .72);
  line-height: 1.55;
}

.footer-nav-block a {
  color: rgba(255, 250, 242, .74);
}

.footer-nav-block a:hover {
  color: #d0b375;
}

.footer-definitive .footer-instagram {
  width: fit-content !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin-top: 8px !important;
  border: 0 !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.footer-definitive .footer-instagram svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  padding: 8px !important;
  box-sizing: content-box !important;
  border: 1px solid rgba(208, 179, 117, .42) !important;
  border-radius: 999px !important;
  color: #d0b375 !important;
  background: rgba(255, 250, 242, .04) !important;
}

.footer-definitive .footer-instagram span {
  margin: 0 !important;
  color: rgba(255, 250, 242, .78) !important;
  font-weight: 800 !important;
}

@media (max-width: 980px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    order: -1;
  }

  .about-media img {
    min-height: 420px;
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-media img {
    min-height: 340px;
  }

  .contact-actions,
  .contact-actions .btn {
    width: 100%;
  }

  .contact-actions .btn {
    justify-content: center;
  }
}
/* VSP STEP 12A NOSOTROS CONTACTO FOOTER END */

/* VSP STEP 13A QUOTE START */
.quote-definitive {
  background:
    radial-gradient(circle at 18% 12%, rgba(208, 179, 117, .16), transparent 32%),
    radial-gradient(circle at 82% 72%, rgba(255, 250, 242, .06), transparent 30%),
    linear-gradient(180deg, #111214 0%, #070809 100%);
  color: #fffaf2;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
}

.quote-copy h2,
.quote-copy .section-lead {
  color: #fffaf2;
}

.quote-copy .section-lead {
  color: rgba(255, 250, 242, .76);
}

.quote-type-selector {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.quote-type-card {
  width: 100%;
  text-align: left;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 250, 242, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .045);
  color: #fffaf2;
  cursor: pointer;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.quote-type-card span {
  grid-row: span 2;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 250, 242, .08);
  color: #d0b375;
  font-weight: 950;
  font-size: .78rem;
}

.quote-type-card strong {
  display: block;
  color: #fffaf2;
  font-size: 1.04rem;
}

.quote-type-card small {
  display: block;
  color: rgba(255, 250, 242, .68);
  line-height: 1.45;
}

.quote-type-card:hover,
.quote-type-card.vsp-type-active,
.quote-type-card.is-active {
  border-color: rgba(208, 179, 117, .76);
  background:
    linear-gradient(180deg, rgba(208, 179, 117, .14), rgba(208, 179, 117, .04)),
    rgba(255, 255, 255, .045);
  transform: translateY(-2px);
}

.quote-context {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(208, 179, 117, .24);
  border-radius: 22px;
  background: rgba(8, 9, 10, .48);
}

.quote-context strong {
  display: block;
  margin-bottom: 6px;
  color: #d0b375;
}

.quote-context span {
  display: block;
  color: rgba(255, 250, 242, .72);
  line-height: 1.55;
}

.quote-definitive .quote-form {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 250, 242, .14);
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, .075), rgba(255, 250, 242, .035)),
    rgba(255, 255, 255, .035);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .30);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.quote-form-section {
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 250, 242, .10);
}

.quote-form-kicker {
  display: block;
  margin-bottom: 16px;
  color: #d0b375;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 242, .78);
  font-weight: 800;
  font-size: .92rem;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 242, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .075);
  color: #fffaf2;
  min-height: 48px;
  padding: 0 14px;
  outline: none;
}

.quote-form textarea {
  min-height: 128px;
  padding-top: 14px;
  resize: vertical;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255, 250, 242, .42);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: rgba(208, 179, 117, .78);
  box-shadow: 0 0 0 4px rgba(208, 179, 117, .10);
}

.quote-form input[readonly] {
  color: #d0b375;
  background: rgba(208, 179, 117, .075);
}

.full-field {
  margin-bottom: 18px;
}

.quote-prefab-only {
  display: none;
}

#cotizador[data-vsp-project-type="prefabricada"] .quote-prefab-only {
  display: block;
}

.quote-submit {
  width: 100%;
  justify-content: center;
}

.form-status {
  min-height: 24px;
  margin: 0 0 16px;
  color: rgba(255, 250, 242, .78);
  line-height: 1.5;
}

.form-status.is-success {
  color: #d0b375;
}

.quote-form button[disabled] {
  opacity: .72;
  cursor: wait;
}

@media (max-width: 1040px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .quote-type-card {
    grid-template-columns: 1fr;
  }

  .quote-type-card span {
    grid-row: auto;
  }
}
/* VSP STEP 13A QUOTE END */

/* VSP STEP 13B QUOTE LAYOUT FIX START */
#cotizador.quote-definitive .quote-grid {
  align-items: start;
}

#cotizador.quote-definitive .quote-copy {
  grid-column: auto;
}

#cotizador.quote-definitive .quote-form {
  grid-column: auto;
}

#cotizador .quote-copy .prefab-form-notice {
  margin-top: 18px;
  margin-bottom: 0;
}

#cotizador .quote-grid > .prefab-form-notice {
  display: none !important;
}

#cotizador[data-vsp-project-type="prefabricada"] .quote-context {
  border-color: rgba(208, 179, 117, .36);
}

@media (min-width: 1041px) {
  #cotizador.quote-definitive .quote-copy {
    grid-column: 1;
  }

  #cotizador.quote-definitive .quote-form {
    grid-column: 2;
  }
}

@media (max-width: 1040px) {
  #cotizador.quote-definitive .quote-copy,
  #cotizador.quote-definitive .quote-form {
    grid-column: 1;
  }
}
/* VSP STEP 13B QUOTE LAYOUT FIX END */

/* VSP STEP 14A LEAD STATUS START */
.quote-form .form-status.is-success {
  padding: 14px 16px;
  border: 1px solid rgba(208, 179, 117, .36);
  border-radius: 16px;
  background: rgba(208, 179, 117, .10);
  color: #d0b375;
  font-weight: 800;
}
/* VSP STEP 14A LEAD STATUS END */

/* VSP STEP 14C-R7 NATIVE ADDRESS LOCALHOST START */
.quote-form input,
.quote-form select,
.quote-form textarea,
.quote-form label {
  pointer-events: auto;
}

.quote-form input:not([readonly]) {
  cursor: text;
}

.quote-form select {
  cursor: pointer;
  appearance: auto;
  -webkit-appearance: menulist;
}

.quote-form input:-webkit-autofill,
.quote-form input:-webkit-autofill:hover,
.quote-form input:-webkit-autofill:focus,
.quote-form textarea:-webkit-autofill,
.quote-form select:-webkit-autofill {
  -webkit-text-fill-color: #fffaf2 !important;
  caret-color: #fffaf2 !important;
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, .075) inset !important;
  transition: background-color 9999s ease-out 0s;
}

.lead-receipt {
  margin: 0 0 18px;
  padding: 18px;
  border: 1px solid rgba(208, 179, 117, .36);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(208, 179, 117, .14), rgba(208, 179, 117, .055)), rgba(255, 255, 255, .045);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .20);
}

.lead-receipt-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255, 250, 242, .12);
}

.lead-receipt-head span {
  color: rgba(255, 250, 242, .76);
  font-weight: 900;
}

.lead-receipt-head strong {
  color: #d0b375;
  font-size: 1rem;
}

.lead-receipt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.lead-receipt-grid div {
  padding: 12px;
  border: 1px solid rgba(255, 250, 242, .10);
  border-radius: 14px;
  background: rgba(0, 0, 0, .16);
}

.lead-receipt-grid small {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 250, 242, .54);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.lead-receipt-grid b {
  color: #fffaf2;
}

.lead-receipt p {
  margin: 14px 0 0;
  color: rgba(255, 250, 242, .68);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .lead-receipt-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .lead-receipt-grid {
    grid-template-columns: 1fr;
  }
}
/* VSP STEP 14C-R7 NATIVE ADDRESS LOCALHOST END */

