:root {
  --navy: #061f46;
  --navy-2: #0a2a5c;
  --gold: #b48245;
  --gold-2: #c3975b;
  --text: #10264d;
  --muted: #52647f;
  --line: rgba(6, 31, 70, 0.12);
  --soft: #f7f4ef;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(180, 130, 69, 0.06), transparent 30%),
    radial-gradient(circle at top right, rgba(6, 31, 70, 0.035), transparent 32%),
    #fffefa;
  color: var(--text);
  font-family: "Manrope", system-ui, sans-serif;
}

body :where(a) {
  text-decoration: none;
}

#home,
#home-vision,
#nosotros,
#nosotros-enfoque,
#trayectoria,
#proyectos,
#contacto {
  scroll-margin-top: 96px;
}

.home-main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* HEADER */

.site-header {
  width: 100%;
  max-width: none;
  height: 78px;
  min-height: 78px;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 254, 250, 0.985);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(6, 31, 70, 0.045);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  list-style: none;
}

.site-header ul:last-child {
  justify-content: flex-end;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}

.brand-main {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.045em;
  color: var(--navy);
}

.brand-sub {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: #243856;
  margin-top: 5px;
}

.main-nav {
  gap: 34px;
}

.main-nav a {
  position: relative;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transform: translateX(-50%);
  transition: 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 34px;
}

.login-button {
  width: 145px;
  min-width: 145px;
  height: 48px;
  padding: 0 22px !important;
  border: 0 !important;
  border-radius: 8px;
  background: var(--navy) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(6, 31, 70, 0.16);
}

.login-button svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  stroke-width: 1.8;
}

/* HERO */

.home-shell {
  width: 100%;
  padding: 26px 0 0;
}

.hero-section {
  position: relative;
  width: 100vw;
  display: grid;
  grid-template-columns: 190px minmax(780px, 1fr) 190px;
  gap: 22px;
  align-items: center;
  margin: 0;
  padding: 0 0 26px;
  perspective: 1700px;
  overflow: visible;
}

.hero-card {
  position: relative;
  z-index: 2;
  height: 455px;
  min-height: 455px;
  border-radius: 18px;
  overflow: hidden;
  background: #eee8df;
  box-shadow:
    0 30px 78px rgba(15, 32, 56, 0.13),
    0 10px 28px rgba(180, 130, 69, 0.05);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center center;
  filter: saturate(0.9) contrast(1.03) brightness(0.97);
  transition: background-image 0.4s ease;
}

.hero-fade {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(
      90deg,
      rgba(255, 250, 242, 0.98) 0%,
      rgba(255, 250, 242, 0.94) 22%,
      rgba(255, 250, 242, 0.78) 38%,
      rgba(255, 250, 242, 0.44) 54%,
      rgba(255, 250, 242, 0.14) 68%,
      transparent 82%
    );
}

.hero-content {
  position: relative;
  z-index: 5;
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 92px;
}

.hero-content::before {
  content: "";
  position: absolute;
  left: 36px;
  top: 50%;
  width: 455px;
  height: 320px;
  transform: translateY(-50%);
  z-index: -1;
  pointer-events: none;
  border-radius: 34px;
  background:
    radial-gradient(
      ellipse at 32% 50%,
      rgba(255, 250, 242, 0.88) 0%,
      rgba(255, 250, 242, 0.66) 42%,
      rgba(255, 250, 242, 0.28) 70%,
      transparent 100%
    );
}

.hero-icon,
.value-icon,
.stat-icon,
.mini-icon,
.pillar-icon-clean {
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--navy);
}

.hero-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  background: rgba(255, 250, 242, 0.72);
  border: 1px solid rgba(180, 130, 69, 0.22);
}

.hero-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.55;
}

.hero-kicker {
  margin: 0 0 12px;
  color: rgba(6, 31, 70, 0.62);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0 0 18px;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 54px;
  line-height: 0.98;
  font-weight: 520;
  letter-spacing: -0.035em;
}

.hero-text {
  margin: 0;
  max-width: 395px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
}

.side-value {
  position: relative;
  z-index: 2;
  height: 390px;
  min-height: 390px;
  padding: 48px 28px 38px;
  text-align: center;
  background:
    linear-gradient(
      180deg,
      rgba(255, 250, 242, 0.72),
      rgba(255, 250, 242, 0.5)
    ),
    var(--side-image) center/cover no-repeat;
  border: 1px solid rgba(6, 31, 70, 0.06);
  box-shadow:
    0 22px 58px rgba(6, 31, 70, 0.07),
    0 12px 38px rgba(180, 130, 69, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.side-left {
  border-radius: 0 18px 18px 0;
  transform: perspective(1300px) rotateY(8deg) translateX(-8px) scale(0.985);
  transform-origin: right center;
}

.side-right {
  border-radius: 18px 0 0 18px;
  transform: perspective(1300px) rotateY(-8deg) translateX(8px) scale(0.985);
  transform-origin: left center;
}

.side-value > * {
  position: relative;
  z-index: 4;
}

.value-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(180, 130, 69, 0.18);
}

.value-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.55;
}

.side-value h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.05;
  font-weight: 500;
}

.side-value span {
  width: 34px;
  height: 1px;
  margin: 18px 0 20px;
  background: rgba(180, 130, 69, 0.82);
}

.side-value p {
  margin: 0;
  max-width: 138px;
  color: rgba(64, 83, 111, 0.88);
  font-size: 11.5px;
  line-height: 1.68;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 2px;
  transform: translateX(-50%);
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.hero-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  min-height: 5px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(6, 31, 70, 0.14);
  cursor: pointer;
}

.hero-dot.active {
  width: 6px;
  height: 6px;
  background: var(--navy);
}

/* PURPOSE */

.purpose-card {
  margin: 6px auto 22px;
  width: calc(100% - 68px);
  min-height: 164px;
  padding: 26px 34px;
  border: 1px solid rgba(6, 31, 70, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 18px 46px rgba(6, 31, 70, 0.055),
    0 8px 20px rgba(180, 130, 69, 0.035);
  display: grid;
  grid-template-columns: 1.45fr repeat(4, 1fr);
  align-items: center;
  gap: 0;
}

.purpose-intro {
  padding-right: 38px;
}

.eyebrow,
.purpose-intro span {
  display: block;
  margin-bottom: 12px;
  color: rgba(180, 130, 69, 0.92);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.purpose-intro h2 {
  margin: 0 0 18px;
  max-width: 430px;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.08;
  font-weight: 500;
}

.section-link {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.section-link svg {
  width: 22px;
  height: 22px;
}

.stat-item {
  min-height: 92px;
  padding: 0 18px;
  border-left: 1px solid rgba(6, 31, 70, 0.085);
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 14px;
  align-items: center;
}

.stat-icon {
  width: 54px;
  height: 54px;
  background: #f6f3ee;
  border: 1px solid rgba(6, 31, 70, 0.075);
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.65;
}

.stat-item strong {
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: 25px;
  line-height: 1;
  font-weight: 500;
}

.stat-item p {
  grid-column: 2;
  margin: -4px 0 0;
  max-width: 120px;
  color: rgba(64, 83, 111, 0.86);
  font-size: 12px;
  line-height: 1.42;
}

/* TITLES */

.investment-section-clean,
.about-section-clean,
.approach-section,
.about-final-pillars-section,
.trajectory-wide-section,
.projects-section {
  background: #fffefa;
}

.investment-section-clean {
  width: 100%;
  padding: 28px 72px 68px;
}

.investment-head-clean,
.about-head-clean,
.trajectory-head,
.projects-head {
  max-width: 920px;
  margin: 0 auto 42px;
  text-align: center;
}

.investment-head-clean {
  margin-bottom: 34px;
}

.investment-head-clean span,
.about-head-clean span,
.trajectory-head span,
.projects-head span {
  display: block;
  margin-bottom: 14px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.investment-head-clean h2,
.about-head-clean h2,
.trajectory-head h2,
.projects-head h2 {
  margin: 0 auto;
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: -0.045em;
  color: var(--navy);
}

.investment-head-clean div,
.about-head-clean div,
.trajectory-head div,
.projects-head div {
  width: 58px;
  height: 2px;
  margin: 24px auto 0;
  background: var(--gold);
}

.investment-purpose-text,
.about-head-clean p,
.trajectory-head p,
.projects-head p {
  margin: 20px auto 0;
  max-width: 760px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(16, 38, 77, 0.78);
}

/* INVESTMENT CARDS */

.investment-cards-clean {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.investment-card-clean {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 70, 0.10);
  box-shadow:
    0 14px 32px rgba(6, 31, 70, 0.06),
    0 4px 12px rgba(6, 31, 70, 0.035);
}

.investment-card-image-clean {
  position: relative;
  width: 100%;
  height: 200px;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.03) brightness(0.97);
}

.investment-card-image-clean::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 31, 70, 0.32), rgba(6, 31, 70, 0.02));
}

.investment-card-icon-clean {
  position: absolute;
  left: 36px;
  top: 28px;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #d8ad6a;
  border: 1px solid rgba(216, 173, 106, 0.75);
}

.investment-card-icon-clean svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.6;
}

.investment-card-body-clean {
  flex: 1;
  padding: 28px 32px 32px;
  display: flex;
  flex-direction: column;
}

.investment-card-body-clean h3 {
  margin: 0 0 16px;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 500;
  color: var(--navy);
}

.investment-card-body-clean p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.62;
  color: rgba(16, 38, 77, 0.88);
}

.investment-card-points {
  margin: 0 0 28px;
  padding: 0;
  list-style: none !important;
  display: grid;
  gap: 9px;
}

.investment-card-points li {
  position: relative;
  padding-left: 18px;
  list-style: none !important;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(16, 38, 77, 0.74);
}

.investment-card-points li::marker {
  content: "" !important;
}

.investment-card-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
}

.investment-card-body-clean a {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--gold);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--navy);
}

.investment-card-body-clean a span {
  color: var(--gold);
  font-size: 18px;
}

/* ABOUT */

.about-section-clean {
  width: 100%;
  padding: 46px 72px 30px;
}

.about-grid-clean {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.about-card-clean {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 410px;
  padding: 0 !important;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 70, 0.10);
  box-shadow:
    0 14px 34px rgba(6, 31, 70, 0.06),
    0 4px 12px rgba(6, 31, 70, 0.035);
}

.about-card-clean::before {
  content: "";
  display: block;
  width: 100%;
  height: 210px;
  min-height: 210px;
  background: var(--about-image) center/cover no-repeat;
  filter: saturate(0.92) contrast(1.03) brightness(0.97);
}

.about-card-icon {
  position: absolute;
  top: 28px;
  left: 34px;
  z-index: 4;
  width: 68px;
  height: 68px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #d8ad6a;
  border: 1px solid rgba(216, 173, 106, 0.75);
}

.about-card-icon svg {
  width: 31px;
  height: 31px;
  stroke-width: 1.55;
}

.about-card-content {
  padding: 30px 34px 34px;
  background: #ffffff;
}

.about-card-content h3 {
  margin: 0 0 14px;
  max-width: 430px;
  font-family: "Playfair Display", serif;
  font-size: 29px;
  line-height: 1.06;
  font-weight: 500;
  color: var(--navy);
}

.about-card-content p {
  margin: 0;
  max-width: 470px;
  font-size: 14.5px;
  line-height: 1.62;
  color: rgba(16, 38, 77, 0.84);
}

/* ENFOQUE */

.approach-section {
  padding: 18px 76px 34px;
}

.approach-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 70px;
  align-items: stretch;
}

.approach-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.approach-copy h2 {
  margin: 0 0 24px;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.03;
  font-weight: 500;
}

.gold-line {
  width: 58px;
  height: 2px;
  background: var(--gold);
}

.approach-copy .gold-line {
  margin: 0 0 28px;
}

.approach-copy p {
  max-width: 650px;
  color: #253a60;
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 16px;
}

.approach-detail-list {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.approach-detail-list div {
  padding: 14px 18px;
  border-left: 2px solid rgba(180, 130, 69, 0.75);
  background: rgba(255, 255, 255, 0.56);
  border-radius: 0 10px 10px 0;
}

.approach-detail-list strong {
  display: block;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
}

.approach-detail-list span {
  display: block;
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(16, 38, 77, 0.78);
}

.approach-image {
  height: auto;
  min-height: 640px;
  align-self: stretch;
  border-radius: 14px;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(255, 250, 242, 0.04), rgba(255, 250, 242, 0.04)),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1800&q=90") center/cover no-repeat;
  box-shadow:
    0 22px 58px rgba(6, 31, 70, 0.09),
    0 10px 26px rgba(180, 130, 69, 0.06);
}

.approach-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.approach-mini {
  text-align: center;
}

.mini-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(6, 31, 70, 0.12);
}

.mini-icon svg {
  width: 28px;
  height: 28px;
}

.approach-mini span {
  display: block;
  color: #253a60;
  font-size: 13px;
  font-weight: 600;
}

/* PILARES FINALES DE NOSOTROS */

.about-final-pillars-section {
  width: 100%;
  padding: 0 72px 54px;
  background: #fffefa;
}

.about-final-pillars {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(6, 31, 70, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow:
    0 18px 46px rgba(6, 31, 70, 0.055),
    0 8px 22px rgba(180, 130, 69, 0.035);
}

.about-final-pillar {
  margin: 0 !important;
  padding: 0 28px !important;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  border-right: 1px solid rgba(6, 31, 70, 0.12);
  background: transparent !important;
  box-shadow: none !important;
}

.about-final-pillar:last-child {
  border-right: 0;
}

.about-final-pillar .pillar-icon-clean {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(6, 31, 70, 0.26);
  color: var(--navy);
}

.about-final-pillar .pillar-icon-clean svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.55;
}

.about-final-pillar h4 {
  margin: 0 0 6px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  line-height: 1.08;
  font-weight: 500;
  color: var(--navy);
}

.about-final-pillar p {
  margin: 0;
  max-width: 220px;
  font-size: 12.5px;
  line-height: 1.42;
  color: rgba(16, 38, 77, 0.74);
}

/* TRAYECTORIA */

.trajectory-wide-section {
  width: 100%;
  padding: 34px 72px 56px;
}

.trajectory-head {
  margin-bottom: 28px;
}

.trajectory-wide-list {
  width: min(1220px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.trajectory-full-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(6, 31, 70, 0.10);
  background-image:
    linear-gradient(
      90deg,
      rgba(6, 31, 70, 0.52) 0%,
      rgba(6, 31, 70, 0.34) 32%,
      rgba(6, 31, 70, 0.12) 62%,
      rgba(6, 31, 70, 0.02) 100%
    ),
    var(--project-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    0 22px 54px rgba(6, 31, 70, 0.10),
    0 8px 22px rgba(180, 130, 69, 0.06);
  display: flex;
  align-items: center;
  cursor: zoom-in;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.trajectory-full-card.is-right {
  justify-content: flex-end;
  background-image:
    linear-gradient(
      270deg,
      rgba(6, 31, 70, 0.52) 0%,
      rgba(6, 31, 70, 0.34) 32%,
      rgba(6, 31, 70, 0.12) 62%,
      rgba(6, 31, 70, 0.02) 100%
    ),
    var(--project-image);
}

.trajectory-full-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 24px 58px rgba(6, 31, 70, 0.12),
    0 10px 24px rgba(180, 130, 69, 0.07);
}

.trajectory-full-content {
  width: min(360px, 100%);
  padding: 26px 30px 30px;
  border-radius: 14px;
  background: rgba(255, 250, 242, 0.92);
  box-shadow: 0 16px 38px rgba(6, 31, 70, 0.14);
}

.trajectory-full-content span {
  display: block;
  margin-bottom: 14px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(180, 130, 69, 0.96);
}

.trajectory-full-content h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.02;
  font-weight: 500;
  color: var(--navy);
}

/* LIGHTBOX */

.pyr-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(6, 20, 43, 0.78);
  backdrop-filter: blur(16px);
}

.pyr-lightbox.is-open {
  display: flex;
}

.pyr-lightbox-panel {
  position: relative;
  width: auto;
  max-width: 94vw;
  max-height: 92vh;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.pyr-lightbox-image {
  display: block;
  width: auto;
  height: auto;
  max-width: 94vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 14px;
  background: transparent;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    0 14px 34px rgba(6, 31, 70, 0.22);
}

.pyr-lightbox-caption {
  display: none;
}

.pyr-lightbox-close {
  position: fixed;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(6, 31, 70, 0.88);
  color: #ffffff;
  font-size: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.pyr-lightbox-close::before,
.pyr-lightbox-close::after {
  content: "";
  position: absolute;
  width: 17px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

.pyr-lightbox-close::before {
  transform: rotate(45deg);
}

.pyr-lightbox-close::after {
  transform: rotate(-45deg);
}

body.lightbox-open {
  overflow: hidden;
}

/* PROYECTOS */

.projects-section {
  width: 100%;
  padding: 70px 72px 82px;
}

.projects-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.project-card {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 70, 0.10);
  box-shadow:
    0 18px 44px rgba(6, 31, 70, 0.07),
    0 6px 18px rgba(180, 130, 69, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 24px 58px rgba(6, 31, 70, 0.10),
    0 10px 26px rgba(180, 130, 69, 0.06);
}

.project-image {
  width: 100%;
  height: 390px;
  background-image: var(--project-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.project-content {
  padding: 30px 34px 34px;
}

.project-status {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(31, 160, 91, 0.12);
  color: #16814a;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-content h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: 1;
  font-weight: 500;
  color: var(--navy);
}

.project-content p {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(16, 38, 77, 0.62);
}

.project-meta {
  padding-top: 18px;
  border-top: 1px solid rgba(6, 31, 70, 0.10);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.project-meta span {
  font-size: 13px;
  color: rgba(16, 38, 77, 0.68);
}

.project-meta strong {
  font-size: 14px;
  font-weight: 800;
  color: #0068ff;
}

/* FOOTER */

.footer.container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  background: linear-gradient(135deg, #061f46, #082d5a);
  border-top: 2px solid var(--gold);
  color: #ffffff;
  padding: 38px 76px 24px !important;
}

.footer-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 0.9fr 1.1fr;
  gap: 70px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.footer-logo .brand-main {
  color: #ffffff;
  font-size: 42px;
}

.footer-logo .brand-sub {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  margin-top: 5px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.footer h4 {
  margin: 0 0 18px;
  color: #d7a75f;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 34px;
}

.footer-legal,
.footer-contact {
  display: grid;
  gap: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #ffffff;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer small {
  max-width: 1320px;
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  display: block;
}

/* RESPONSIVE */

@media (min-width: 1451px) {
  .site-header {
    height: 86px;
    min-height: 86px;
    padding: 0 74px;
  }

  .brand-main {
    font-size: 56px;
  }

  .brand-sub {
    font-size: 20px;
    margin-top: 8px;
  }

  .main-nav {
    gap: 48px;
  }

  .main-nav a {
    font-size: 15px;
  }

  .login-button {
    width: 165px;
    min-width: 165px;
    height: 56px;
    font-size: 15px;
  }

  .hero-section {
    grid-template-columns: 235px minmax(860px, 1fr) 235px;
    gap: 24px;
  }

  .hero-card {
    height: 560px;
    min-height: 560px;
    border-radius: 23px;
  }

  .side-value {
    height: 495px;
    min-height: 495px;
  }

  .hero-content {
    padding-left: 112px;
  }

  .hero-content h1 {
    font-size: 72px;
  }

  .hero-text {
    max-width: 500px;
    font-size: 18px;
  }
}

@media (max-width: 1240px) {
  .site-header {
    padding: 0 28px;
  }

  .main-nav {
    gap: 22px;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 18px 20px 26px;
  }

  .side-value {
    display: none;
  }

  .hero-content {
    width: 68%;
    padding-left: 60px;
  }

  .purpose-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .purpose-intro {
    grid-column: 1 / -1;
  }

  .stat-item {
    border-left: 0;
  }

  .investment-cards-clean,
  .about-grid-clean,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .about-final-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 0;
  }

  .about-final-pillar:nth-child(2) {
    border-right: 0;
  }

  .about-final-pillar:nth-child(1),
  .about-final-pillar:nth-child(2) {
    padding-bottom: 24px !important;
    border-bottom: 1px solid rgba(6, 31, 70, 0.10);
  }

  .about-final-pillar:nth-child(3),
  .about-final-pillar:nth-child(4) {
    padding-top: 24px !important;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }

  .approach-image {
    min-height: 420px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: auto;
    grid-template-columns: 1fr auto;
    padding: 16px;
  }

  .brand-main {
    font-size: 36px;
  }

  .brand-sub {
    font-size: 14px;
  }

  .login-button {
    min-width: auto;
    width: 46px;
    height: 42px;
    padding: 0 !important;
    font-size: 0;
  }

  .main-nav {
    grid-column: 1 / -1;
    order: 3;
    margin-top: 14px;
    gap: 18px;
    overflow: auto;
  }

  .hero-card {
    height: 520px;
    min-height: 520px;
    border-radius: 18px;
  }

  .hero-content {
    width: 88%;
    padding: 32px 26px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .purpose-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .purpose-card {
    width: calc(100% - 32px);
    padding: 24px;
  }

  .stat-item {
    border: 0;
    padding: 0;
  }

  .investment-section-clean,
  .about-section-clean,
  .approach-section,
  .about-final-pillars-section,
  .trajectory-wide-section,
  .projects-section,
  .footer.container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .investment-head-clean h2,
  .about-head-clean h2,
  .approach-copy h2,
  .trajectory-head h2,
  .projects-head h2 {
    font-size: 38px;
  }

  .about-card-clean::before {
    height: 180px;
    min-height: 180px;
  }

  .about-final-pillars {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .about-final-pillar {
    padding: 18px 0 !important;
    grid-template-columns: 54px 1fr;
    border-right: 0;
    border-bottom: 1px solid rgba(6, 31, 70, 0.10);
  }

  .about-final-pillar:first-child {
    padding-top: 0 !important;
  }

  .about-final-pillar:last-child {
    padding-bottom: 0 !important;
    border-bottom: 0;
  }

  .trajectory-full-card,
  .trajectory-full-card.is-right {
    min-height: 280px;
    padding: 22px;
  }

  .trajectory-full-content {
    padding: 22px 24px 26px;
  }

  .trajectory-full-content h3 {
    font-size: 32px;
  }

  .project-image {
    height: 280px;
  }

  .project-content h3 {
    font-size: 34px;
  }

  .project-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .pyr-lightbox {
    padding: 16px;
  }

  .pyr-lightbox-image {
    max-width: 96vw;
    max-height: 88vh;
    border-radius: 12px;
  }

  .pyr-lightbox-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }
}
/* =====================================================
   HOME / VISIÓN - CARDS APILADAS CON IMAGEN PROTAGONISTA
===================================================== */

.investment-section-clean {
  padding-top: 72px !important;
  padding-bottom: 82px !important;
}

.investment-head-clean {
  margin-bottom: 46px !important;
}

.investment-cards-clean {
  width: min(1180px, 100%) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 30px !important;
}

.investment-card-clean {
  min-height: 430px !important;
  display: grid !important;
  grid-template-columns: 58% 42% !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6, 31, 70, 0.10) !important;
  box-shadow:
    0 20px 52px rgba(6, 31, 70, 0.08),
    0 8px 22px rgba(180, 130, 69, 0.045) !important;
}

.investment-card-clean:nth-child(even) {
  grid-template-columns: 42% 58% !important;
}

.investment-card-clean:nth-child(even) .investment-card-image-clean {
  order: 2;
}

.investment-card-clean:nth-child(even) .investment-card-body-clean {
  order: 1;
}

.investment-card-image-clean {
  width: 100% !important;
  height: 100% !important;
  min-height: 430px !important;
  background-size: cover !important;
  background-position: center !important;
  filter: saturate(0.95) contrast(1.04) brightness(0.98) !important;
}

.investment-card-image-clean::after {
  background:
    linear-gradient(
      180deg,
      rgba(6, 31, 70, 0.12),
      rgba(6, 31, 70, 0.34)
    ) !important;
}

.investment-card-icon-clean {
  width: 78px !important;
  height: 78px !important;
  left: 34px !important;
  top: 34px !important;
  background: var(--navy) !important;
  color: #d8ad6a !important;
  border: 1px solid rgba(216, 173, 106, 0.78) !important;
  box-shadow: 0 16px 34px rgba(6, 31, 70, 0.20) !important;
}

.investment-card-icon-clean svg {
  width: 35px !important;
  height: 35px !important;
}

.investment-card-body-clean {
  padding: 58px 52px 52px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.investment-card-body-clean h3 {
  margin-bottom: 18px !important;
  font-size: clamp(34px, 3vw, 46px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.04em !important;
}

.investment-card-body-clean p {
  max-width: 450px !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
}

.investment-card-points {
  margin-top: 8px !important;
  margin-bottom: 34px !important;
  gap: 12px !important;
}

.investment-card-points li {
  font-size: 13.5px !important;
  line-height: 1.5 !important;
}

.investment-card-body-clean a {
  margin-top: 8px !important;
}

/* Tablet */
@media (max-width: 1100px) {
  .investment-card-clean,
  .investment-card-clean:nth-child(even) {
    grid-template-columns: 1fr !important;
  }

  .investment-card-clean:nth-child(even) .investment-card-image-clean,
  .investment-card-clean:nth-child(even) .investment-card-body-clean {
    order: initial;
  }

  .investment-card-image-clean {
    min-height: 340px !important;
  }

  .investment-card-body-clean {
    padding: 42px 38px 44px !important;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .investment-section-clean {
    padding-top: 54px !important;
    padding-bottom: 64px !important;
  }

  .investment-cards-clean {
    gap: 24px !important;
  }

  .investment-card-clean {
    min-height: auto !important;
    border-radius: 16px !important;
  }

  .investment-card-image-clean {
    min-height: 260px !important;
  }

  .investment-card-icon-clean {
    width: 64px !important;
    height: 64px !important;
    left: 24px !important;
    top: 24px !important;
  }

  .investment-card-icon-clean svg {
    width: 30px !important;
    height: 30px !important;
  }

  .investment-card-body-clean {
    padding: 34px 28px 36px !important;
  }

  .investment-card-body-clean h3 {
    font-size: 32px !important;
  }

  .investment-card-body-clean p {
    font-size: 14px !important;
  }
}
/* =====================================================
   HOME / VISIÓN - MÁS TEXTO Y SIN "CONOCER MÁS"
===================================================== */

.investment-card-body-clean a {
  display: none !important;
}

.investment-card-kicker {
  display: block;
  margin-bottom: 14px;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.investment-card-body-clean {
  justify-content: center !important;
}

.investment-card-body-clean p + p {
  margin-top: -4px !important;
}

.investment-card-points {
  margin-top: 12px !important;
  margin-bottom: 0 !important;
}

.investment-card-clean {
  min-height: 500px !important;
}

.investment-card-image-clean {
  min-height: 500px !important;
}

@media (max-width: 1100px) {
  .investment-card-clean {
    min-height: auto !important;
  }

  .investment-card-image-clean {
    min-height: 340px !important;
  }
}

@media (max-width: 760px) {
  .investment-card-image-clean {
    min-height: 260px !important;
  }

  .investment-card-body-clean {
    padding: 34px 28px 38px !important;
  }
}
/* =====================================================
   AJUSTE GENERAL - EFECTO VISUAL TIPO 90% SIN USAR ZOOM
   Pegar al final de home.css
===================================================== */

/* Hace que toda la web respire mejor sin verse tan grande */
body {
  font-size: 15px;
}

/* Header más compacto */
.site-header {
  height: 72px !important;
  min-height: 72px !important;
  padding: 0 58px !important;
}

.brand-main {
  font-size: 38px !important;
}

.brand-sub {
  font-size: 13px !important;
  margin-top: 4px !important;
}

.main-nav {
  gap: 30px !important;
}

.main-nav a {
  font-size: 11.5px !important;
}

.login-button {
  width: 138px !important;
  min-width: 138px !important;
  height: 44px !important;
  font-size: 11.5px !important;
  border-radius: 7px !important;
}

/* Mejor posición al hacer clic en el menú */
#home,
#home-vision,
#nosotros,
#nosotros-enfoque,
#proyectos,
#contacto {
  scroll-margin-top: 86px !important;
}

/* Reduce espacios verticales grandes */
.home-shell {
  padding-top: 18px !important;
}

.investment-section-clean {
  padding-top: 58px !important;
  padding-bottom: 70px !important;
}

.about-section-clean {
  padding-top: 54px !important;
  padding-bottom: 34px !important;
}

.approach-section {
  padding-top: 20px !important;
  padding-bottom: 38px !important;
}

.about-final-pillars-section {
  padding-bottom: 48px !important;
}

.projects-section {
  padding-top: 58px !important;
  padding-bottom: 72px !important;
}

/* Títulos principales un poco más elegantes y menos gigantes */
.investment-head-clean,
.about-head-clean,
.trajectory-head,
.projects-head {
  margin-bottom: 38px !important;
}

.investment-head-clean h2,
.about-head-clean h2,
.trajectory-head h2,
.projects-head h2 {
  font-size: clamp(40px, 3.55vw, 56px) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.045em !important;
}

.investment-purpose-text,
.about-head-clean p,
.trajectory-head p,
.projects-head p {
  max-width: 760px !important;
  font-size: 14.5px !important;
  line-height: 1.65 !important;
}

/* Cards de visión más equilibradas */
.investment-cards-clean {
  width: min(1060px, calc(100% - 52px)) !important;
  gap: 26px !important;
}

.investment-card-clean {
  min-height: 445px !important;
  grid-template-columns: 56% 44% !important;
  border-radius: 16px !important;
}

.investment-card-clean:nth-child(even) {
  grid-template-columns: 44% 56% !important;
}

.investment-card-image-clean {
  min-height: 445px !important;
}

.investment-card-body-clean {
  padding: 42px 46px 44px !important;
}

.investment-card-kicker {
  margin-bottom: 12px !important;
  font-size: 10.5px !important;
  letter-spacing: 0.18em !important;
}

.investment-card-body-clean h3 {
  font-size: clamp(32px, 2.55vw, 42px) !important;
  line-height: 1.02 !important;
  margin-bottom: 16px !important;
}

.investment-card-body-clean p {
  font-size: 14px !important;
  line-height: 1.68 !important;
  margin-bottom: 13px !important;
}

.investment-card-points {
  margin-top: 10px !important;
  gap: 9px !important;
}

.investment-card-points li {
  font-size: 12.8px !important;
  line-height: 1.5 !important;
}

/* Íconos de las fotos más proporcionados */
.investment-card-icon-clean {
  width: 68px !important;
  height: 68px !important;
  left: 30px !important;
  top: 30px !important;
}

.investment-card-icon-clean svg {
  width: 31px !important;
  height: 31px !important;
}

/* Propósito / stats más compacto */
.purpose-card {
  width: calc(100% - 86px) !important;
  min-height: 148px !important;
  padding: 22px 32px !important;
}

.purpose-intro h2 {
  font-size: 22px !important;
}

.stat-item {
  min-height: 82px !important;
}

.stat-icon {
  width: 50px !important;
  height: 50px !important;
}

.stat-item strong {
  font-size: 23px !important;
}

.stat-item p {
  font-size: 11.5px !important;
}

/* Nosotros cards */
.about-grid-clean {
  width: min(1060px, calc(100% - 52px)) !important;
  gap: 24px !important;
}

.about-card-clean {
  min-height: 380px !important;
}

.about-card-clean::before {
  height: 195px !important;
  min-height: 195px !important;
}

.about-card-content {
  padding: 26px 30px 30px !important;
}

.about-card-content h3 {
  font-size: 27px !important;
}

.about-card-content p {
  font-size: 14px !important;
}

/* Nuestro enfoque más compacto */
.approach-grid {
  max-width: 1160px !important;
  gap: 56px !important;
}

.approach-copy h2 {
  font-size: clamp(40px, 3.5vw, 56px) !important;
}

.approach-copy p {
  font-size: 14.5px !important;
  line-height: 1.68 !important;
}

.approach-detail-list {
  margin-top: 18px !important;
  gap: 10px !important;
}

.approach-detail-list div {
  padding: 12px 16px !important;
}

.approach-detail-list strong {
  font-size: 18px !important;
}

.approach-detail-list span {
  font-size: 12.8px !important;
}

.approach-image {
  min-height: 560px !important;
}

/* Pilares finales */
.about-final-pillars {
  width: min(1060px, calc(100% - 52px)) !important;
  padding: 24px 28px !important;
}

.about-final-pillar {
  padding: 0 24px !important;
  grid-template-columns: 52px 1fr !important;
}

.about-final-pillar .pillar-icon-clean {
  width: 50px !important;
  height: 50px !important;
}

.about-final-pillar h4 {
  font-size: 17px !important;
}

.about-final-pillar p {
  font-size: 12px !important;
}

/* Trayectoria y proyectos */
.trajectory-wide-list,
.projects-grid {
  width: min(1060px, calc(100% - 52px)) !important;
}

.trajectory-full-card {
  min-height: 300px !important;
}

.trajectory-full-content {
  width: min(330px, 100%) !important;
  padding: 24px 28px 28px !important;
}

.trajectory-full-content h3 {
  font-size: clamp(32px, 2.7vw, 44px) !important;
}

.project-image {
  height: 340px !important;
}

.project-content {
  padding: 28px 30px 32px !important;
}

.project-content h3 {
  font-size: 38px !important;
}

/* Responsive */
@media (max-width: 1240px) {
  .site-header {
    padding: 0 28px !important;
  }

  .investment-cards-clean,
  .about-grid-clean,
  .trajectory-wide-list,
  .projects-grid,
  .about-final-pillars {
    width: min(100% - 40px, 100%) !important;
  }

  .investment-card-clean,
  .investment-card-clean:nth-child(even) {
    grid-template-columns: 1fr !important;
  }

  .investment-card-clean:nth-child(even) .investment-card-image-clean,
  .investment-card-clean:nth-child(even) .investment-card-body-clean {
    order: initial !important;
  }

  .investment-card-image-clean {
    min-height: 330px !important;
  }

  .investment-card-body-clean {
    padding: 36px 36px 38px !important;
  }

  .approach-image {
    min-height: 420px !important;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 14px;
  }

  .site-header {
    height: auto !important;
    min-height: auto !important;
    padding: 14px 16px !important;
  }

  .brand-main {
    font-size: 34px !important;
  }

  .brand-sub {
    font-size: 12.5px !important;
  }

  .investment-section-clean,
  .about-section-clean,
  .approach-section,
  .about-final-pillars-section,
  .trajectory-wide-section,
  .projects-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .investment-head-clean h2,
  .about-head-clean h2,
  .trajectory-head h2,
  .projects-head h2,
  .approach-copy h2 {
    font-size: 36px !important;
  }

  .investment-cards-clean,
  .about-grid-clean,
  .trajectory-wide-list,
  .projects-grid,
  .about-final-pillars {
    width: 100% !important;
  }

  .investment-card-image-clean {
    min-height: 250px !important;
  }

  .investment-card-body-clean {
    padding: 30px 26px 34px !important;
  }

  .investment-card-body-clean h3 {
    font-size: 31px !important;
  }

  .purpose-card {
    width: calc(100% - 32px) !important;
  }
}

/* =====================================================
   INDEX - TODOS LOS ÍCONOS ESTILO SUAVE
   Círculo claro + borde dorado fino + ícono azul
===================================================== */

.icon-soft-gold,
.investment-card-icon-clean,
.about-card-icon,
.value-icon,
.value-icon-clean,
.values-icon,
.values-icon-clean,
.value-card-icon,
.value-card-icon-clean,
.value-slide-icon,
.value-slide-icon-clean,
.pillar-icon-clean,
.stat-icon,
.approach-icon,
.approach-mini-icon,
.service-icon,
.feature-icon,
.project-icon {
  width: 74px !important;
  height: 74px !important;
  min-width: 74px !important;
  min-height: 74px !important;
  border-radius: 50% !important;

  background: rgba(255, 253, 248, 0.58) !important;
  border: 1px solid rgba(193, 138, 53, 0.36) !important;

  color: #061f46 !important;

  box-shadow:
    0 10px 26px rgba(6, 31, 70, 0.045),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42) !important;

  backdrop-filter: blur(3px) !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  opacity: 1 !important;
  filter: none !important;
}

/* SVG interno */
.icon-soft-gold svg,
.investment-card-icon-clean svg,
.about-card-icon svg,
.value-icon svg,
.value-icon-clean svg,
.values-icon svg,
.values-icon-clean svg,
.value-card-icon svg,
.value-card-icon-clean svg,
.value-slide-icon svg,
.value-slide-icon-clean svg,
.pillar-icon-clean svg,
.stat-icon svg,
.approach-icon svg,
.approach-mini-icon svg,
.service-icon svg,
.feature-icon svg,
.project-icon svg {
  width: 30px !important;
  height: 30px !important;
  color: #061f46 !important;
  stroke: #061f46 !important;
  fill: none !important;
  stroke-width: 1.75 !important;
}

/* Fuerza color azul en todos los trazos internos */
.icon-soft-gold svg *,
.investment-card-icon-clean svg *,
.about-card-icon svg *,
.value-icon svg *,
.value-icon-clean svg *,
.values-icon svg *,
.values-icon-clean svg *,
.value-card-icon svg *,
.value-card-icon-clean svg *,
.value-slide-icon svg *,
.value-slide-icon-clean svg *,
.pillar-icon-clean svg *,
.stat-icon svg *,
.approach-icon svg *,
.approach-mini-icon svg *,
.service-icon svg *,
.feature-icon svg *,
.project-icon svg * {
  stroke: #061f46 !important;
}

/* Si algún SVG usa relleno */
.icon-soft-gold svg [fill]:not([fill="none"]),
.investment-card-icon-clean svg [fill]:not([fill="none"]),
.about-card-icon svg [fill]:not([fill="none"]),
.value-icon svg [fill]:not([fill="none"]),
.value-icon-clean svg [fill]:not([fill="none"]),
.values-icon svg [fill]:not([fill="none"]),
.values-icon-clean svg [fill]:not([fill="none"]),
.value-card-icon svg [fill]:not([fill="none"]),
.value-card-icon-clean svg [fill]:not([fill="none"]),
.value-slide-icon svg [fill]:not([fill="none"]),
.value-slide-icon-clean svg [fill]:not([fill="none"]),
.pillar-icon-clean svg [fill]:not([fill="none"]),
.stat-icon svg [fill]:not([fill="none"]),
.approach-icon svg [fill]:not([fill="none"]),
.approach-mini-icon svg [fill]:not([fill="none"]),
.service-icon svg [fill]:not([fill="none"]),
.feature-icon svg [fill]:not([fill="none"]),
.project-icon svg [fill]:not([fill="none"]) {
  fill: #061f46 !important;
}

/* Íconos pequeños */
.stat-icon,
.pillar-icon-clean,
.approach-mini-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  min-height: 56px !important;
}

.stat-icon svg,
.pillar-icon-clean svg,
.approach-mini-icon svg {
  width: 25px !important;
  height: 25px !important;
}

/* Posición de íconos sobre fotos */
.investment-card-icon-clean,
.about-card-icon,
.value-icon,
.value-icon-clean,
.values-icon,
.values-icon-clean,
.value-card-icon,
.value-card-icon-clean,
.value-slide-icon,
.value-slide-icon-clean {
  
  z-index: 4 !important;
}

/* Cards Nosotros / Enfoque */
.about-card-icon {
  top: 28px !important;
  left: 30px !important;
}

/* Cards inversión */
.investment-card-icon-clean {
  top: 30px !important;
  left: 32px !important;
}

/* Evita que el botón login se afecte */
.site-header .login-button svg {
  width: 18px !important;
  height: 18px !important;
  color: #ffffff !important;
  stroke: currentColor !important;
  fill: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Responsive */
@media (max-width: 760px) {
  .icon-soft-gold,
  .investment-card-icon-clean,
  .about-card-icon,
  .value-icon,
  .value-icon-clean,
  .values-icon,
  .values-icon-clean,
  .value-card-icon,
  .value-card-icon-clean,
  .value-slide-icon,
  .value-slide-icon-clean,
  .service-icon,
  .feature-icon,
  .project-icon {
    width: 62px !important;
    height: 62px !important;
    min-width: 62px !important;
    min-height: 62px !important;
  }

  .icon-soft-gold svg,
  .investment-card-icon-clean svg,
  .about-card-icon svg,
  .value-icon svg,
  .value-icon-clean svg,
  .values-icon svg,
  .values-icon-clean svg,
  .value-card-icon svg,
  .value-card-icon-clean svg,
  .value-slide-icon svg,
  .value-slide-icon-clean svg,
  .service-icon svg,
  .feature-icon svg,
  .project-icon svg {
    width: 27px !important;
    height: 27px !important;
  }

  .stat-icon,
  .pillar-icon-clean,
  .approach-mini-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
    min-height: 50px !important;
  }

  .stat-icon svg,
  .pillar-icon-clean svg,
  .approach-mini-icon svg {
    width: 23px !important;
    height: 23px !important;
  }
}

.site-header .brand-logo-final {
  width: 190px !important;
  height: 54px !important;
  overflow: visible !important;
}

.site-header .brand-logo-final img {
  width: 190px !important;
  height: auto !important;
  max-height: none !important;
  object-fit: contain !important;
}
/* SOBRE PYR - IMÁGENES MÁS LUMINOSAS */
.investment-card-image-clean,
.about-card-clean::before {
  filter: brightness(1.16) contrast(1.03) saturate(1.08) !important;
}

/* Si hay overlay oscuro encima de las fotos, lo suavizamos */
.investment-card-image-clean::after,
.about-card-clean::after {
  background: linear-gradient(
    180deg,
    rgba(6, 31, 70, 0.04),
    rgba(6, 31, 70, 0.10)
  ) !important;
}

/* Si la foto está en cards horizontales grandes */
.investment-card-clean::before,
.about-card-clean::before {
  opacity: 1 !important;
}
/* SOBRE PYR - OPACAR SOLO LAS 4 IMÁGENES */
.about-card-clean::before {
  filter: brightness(0.82) contrast(1.02) saturate(0.96) !important;
}

/* Overlay suave para que no se vean tan iluminadas */
.about-card-clean::after {
  background: rgba(6, 31, 70, 0.12) !important;
}
/* =====================================================
   SOBRE PYR - NUEVA DISTRIBUCIÓN 4 CARDS
   Imágenes más protagonistas + texto más cómodo
===================================================== */

.about-grid-clean {
  width: min(1180px, calc(100% - 64px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
}

/* Todas las cards */
.about-card-clean {
  min-height: auto !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  background: #ffffff !important;
  box-shadow:
    0 18px 42px rgba(6, 31, 70, 0.08),
    0 4px 14px rgba(6, 31, 70, 0.04) !important;
}

/* Imágenes arriba más visibles */
.about-card-clean::before {
  height: 285px !important;
  min-height: 285px !important;
  background-size: cover !important;
  background-position: center !important;
  filter: brightness(0.86) contrast(1.02) saturate(0.96) !important;
}

/* Overlay suave */
.about-card-clean::after {
  background: rgba(6, 31, 70, 0.10) !important;
}

/* Contenido */
.about-card-content {
  padding: 34px 36px 38px !important;
}

.about-card-content h3 {
  font-size: 32px !important;
  line-height: 1.02 !important;
  margin-bottom: 16px !important;
}

.about-card-content p {
  font-size: 14.6px !important;
  line-height: 1.72 !important;
  max-width: 520px !important;
}

/* Segunda fila horizontal para dar variedad */
.about-card-clean:nth-child(3),
.about-card-clean:nth-child(4) {
  display: grid !important;
  grid-template-columns: 48% 52% !important;
  min-height: 330px !important;
}

.about-card-clean:nth-child(3)::before,
.about-card-clean:nth-child(4)::before {
  height: 100% !important;
  min-height: 330px !important;
}

.about-card-clean:nth-child(3) .about-card-content,
.about-card-clean:nth-child(4) .about-card-content {
  padding: 42px 38px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

/* Iconos */
.about-card-icon {
  top: 28px !important;
  left: 30px !important;
}

/* Responsive */
@media (max-width: 980px) {
  .about-grid-clean {
    width: calc(100% - 36px) !important;
    grid-template-columns: 1fr !important;
  }

  .about-card-clean:nth-child(3),
  .about-card-clean:nth-child(4) {
    display: block !important;
  }

  .about-card-clean::before,
  .about-card-clean:nth-child(3)::before,
  .about-card-clean:nth-child(4)::before {
    height: 250px !important;
    min-height: 250px !important;
  }

  .about-card-content,
  .about-card-clean:nth-child(3) .about-card-content,
  .about-card-clean:nth-child(4) .about-card-content {
    padding: 30px 28px 34px !important;
  }
}
.projects-luxury-section {
  padding: 92px 72px 96px;
  background: #fffefa;
}

.luxury-section-label {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.luxury-section-label > span {
  width: 2px;
  height: 36px;
  margin-top: 5px;
  background: var(--gold);
}

.luxury-section-label h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--navy);
}

.luxury-section-label p {
  margin: 6px 0 0;
  color: rgba(16, 38, 77, .68);
}

.active-projects-luxury {
  width: min(1180px, 100%);
  margin: 0 auto 74px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}

.active-project-card {
  position: relative;
  min-height: 380px;
  padding: 34px 34px 30px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--project-image) center/cover no-repeat;
  box-shadow: 0 24px 54px rgba(6, 31, 70, .15);
  color: #fff;
}

.active-project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 16, 34, .90), rgba(5, 16, 34, .55) 48%, rgba(5, 16, 34, .18)),
    linear-gradient(0deg, rgba(5, 16, 34, .42), rgba(5, 16, 34, .12));
}

.active-project-content {
  position: relative;
  z-index: 2;
}

.project-badge {
  display: inline-flex;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(6, 31, 70, .86);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.project-badge.gold {
  background: var(--gold);
}

.active-project-card h3 {
  margin: 38px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 44px;
  font-weight: 500;
  color: #fff;
}

.active-project-card p {
  margin: 0 0 26px;
  color: rgba(255,255,255,.86);
  font-size: 14px;
}

.project-progress {
  margin-bottom: 28px;
}

.project-progress small {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.8);
}

.project-progress strong {
  position: absolute;
  right: 34px;
  top: 155px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
}

.project-progress div {
  height: 4px;
  background: rgba(255,255,255,.22);
  border-radius: 999px;
  overflow: hidden;
}

.project-progress div span {
  display: block;
  height: 100%;
  background: var(--gold);
}

.project-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}

.project-metrics div {
  padding: 18px 12px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.project-metrics div:last-child {
  border-right: 0;
}

.project-metrics small {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.62);
}

.project-metrics strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 21px;
  font-weight: 500;
  color: #fff;
}

.project-metrics span {
  font-size: 11px;
  color: rgba(255,255,255,.72);
}

.project-link {
  display: inline-flex;
  gap: 14px;
  margin-top: 22px;
  color: #fff;
  font-weight: 600;
}

.project-link b {
  color: var(--gold);
}

.project-lock,
.project-available {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.34);
  backdrop-filter: blur(8px);
}

.project-lock svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.project-available::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #81d27b;
  box-shadow: 0 0 0 6px rgba(129, 210, 123, .18);
}

.closed-label {
  margin-top: 16px;
}

.closed-projects-editorial {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.closed-project-card {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(6, 31, 70, .09);
  box-shadow: 0 12px 30px rgba(6, 31, 70, .055);
}

.closed-image {
  background: var(--closed-image) center/cover no-repeat;
  filter: brightness(.88) saturate(.92);
}

.closed-content {
  padding: 30px 32px;
}

.closed-content small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.closed-content h3 {
  margin: 12px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 29px;
  font-weight: 500;
  color: var(--navy);
}

.closed-content p {
  margin: 0 0 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(16, 38, 77, .68);
}

.closed-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(180, 130, 69, .35);
}

.closed-data span {
  font-size: 10px;
  color: rgba(16, 38, 77, .56);
}

.closed-data strong {
  display: block;
  margin-top: 6px;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
}

.closed-content b {
  display: inline-flex;
  margin-top: 22px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .active-projects-luxury,
  .closed-projects-editorial {
    grid-template-columns: 1fr;
  }

  .project-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .closed-project-card {
    grid-template-columns: 1fr;
  }

  .closed-image {
    min-height: 220px;
  }
}
.project-image-click,
.closed-image {
  cursor: zoom-in;
}

.project-image-click {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
}

.closed-image {
  border: 0;
  padding: 0;
  min-height: 240px;
  background: var(--closed-image) center/cover no-repeat;
  filter: brightness(.88) saturate(.92);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: rgba(6, 31, 70, 0.82);
  backdrop-filter: blur(10px);
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.image-lightbox button {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.project-image-click,
.closed-image {
  cursor: zoom-in;
}

.project-image-click {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  background: transparent;
}

.closed-image {
  border: 0;
  padding: 0;
  min-height: 240px;
  background: var(--closed-image) center/cover no-repeat;
  filter: brightness(.88) saturate(.92);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 36px;
  background: rgba(6, 31, 70, 0.82);
  backdrop-filter: blur(10px);
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 86vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38);
}

.image-lightbox button {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
.projects-legal-note {
  width: min(980px, calc(100% - 48px));
  margin: 42px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(6, 31, 70, 0.12);
  color: rgba(16, 38, 77, 0.56);
  font-size: 11.5px;
  line-height: 1.65;
  text-align: center;
}

.project-badge {
  letter-spacing: 0.11em !important;
}

.project-metrics strong,
.closed-data strong {
  font-size: 16px !important;
  line-height: 1.2 !important;
}

.closed-data {
  grid-template-columns: repeat(3, 1fr) !important;
}
.project-status-lock,
.project-status-open {
  gap: 7px !important;
}

.project-status-lock {
  background: rgba(6, 31, 70, 0.09) !important;
  color: #8a5c25 !important;
}

.project-status-open {
  background: rgba(180, 130, 69, 0.14) !important;
  color: #061f46 !important;
}
/* PROYECTOS - MEJOR ESPACIADO GENERAL */
#proyectos {
  padding-top: 72px !important;
  padding-bottom: 86px !important;
}

#proyectos .trajectory-head {
  margin-bottom: 46px !important;
}

#proyectos .projects-grid {
  margin-bottom: 64px !important;
  gap: 32px !important;
}

#proyectos .project-card {
  border-radius: 18px !important;
}

#proyectos .project-image {
  height: 360px !important;
}

#proyectos .project-content {
  padding: 28px 34px 32px !important;
}

#proyectos .project-content h3 {
  margin-top: 14px !important;
  margin-bottom: 10px !important;
}

#proyectos .project-content p {
  margin-bottom: 0 !important;
}

#proyectos .trajectory-wide-list {
  margin-top: 28px !important;
  gap: 24px !important;
}

#proyectos .trajectory-full-card {
  min-height: 300px !important;
}

#proyectos .trajectory-full-content {
  padding: 24px 28px 28px !important;
}
.closed-projects-toggle-wrap {
  width: min(1180px, 100%);
  margin: 0 auto 42px;
  display: flex;
  justify-content: center;
}

.closed-projects-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(180, 130, 69, 0.45);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 14px 30px rgba(6, 31, 70, 0.055);
}

.closed-projects-toggle span {
  color: var(--gold);
  font-size: 16px;
}
.closed-projects-hidden {
  display: none !important;
}

.closed-projects-hidden.is-open {
  display: grid !important;
}

.closed-projects-toggle {
  cursor: pointer;
}
/* QUITAR BORDE AZUL EN PROYECTOS CONCLUIDOS */
.trajectory-full-card,
.trajectory-full-card:focus,
.trajectory-full-card:focus-visible,
.trajectory-full-card:active {
  outline: none !important;
  border-color: rgba(6, 31, 70, 0.08) !important;
  box-shadow:
    0 18px 42px rgba(6, 31, 70, 0.08),
    0 6px 18px rgba(180, 130, 69, 0.05) !important;
}

/* REDUCIR ESPACIO BLANCO ANTES DE PROYECTOS */
.about-final-pillars-section {
  padding-bottom: 24px !important;
}

.trajectory-wide-section {
  padding-top: 46px !important;
}

#proyectos .trajectory-head {
  margin-bottom: 34px !important;
}

/* Si aún queda mucho espacio, baja este valor */
#proyectos {
  margin-top: -60px !important;
}
/* ARIA I - EFECTO BLOQUEADO / CERRADO */
.project-card:first-child .project-image {
  position: relative;
  filter: grayscale(0.08) brightness(0.72) saturate(0.82) !important;
}

.project-card:first-child .project-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 31, 70, 0.10), rgba(6, 31, 70, 0.38)),
    rgba(6, 31, 70, 0.22);
  z-index: 1;
}

.project-card:first-child .project-image::after {
  content: "🔒";
  position: absolute;
  top: 26px;
  right: 26px;
  z-index: 2;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(6, 31, 70, 0.72);
  color: #ffffff;
  font-size: 22px;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22),
    0 18px 38px rgba(6, 31, 70, 0.34);
  backdrop-filter: blur(8px);
}

/* Mantener ARIA II más luminosa */
.project-card:nth-child(2) .project-image {
  filter: brightness(0.96) saturate(0.95) !important;
}
/* PROYECTOS ACTIVOS */
.project-status-lock {
  background: rgba(6, 31, 70, 0.09) !important;
  color: #061f46 !important;
}

.project-status-open {
  background: rgba(180, 130, 69, 0.14) !important;
  color: #8a5c25 !important;
}

.project-card .project-meta {
  display: none !important;
}

/* BOTÓN CONCLUIDOS */
.closed-projects-toggle-wrap {
  width: min(1180px, 100%);
  margin: 0 auto 42px;
  display: flex;
  justify-content: center;
}

.closed-projects-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid rgba(180, 130, 69, 0.45);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(6, 31, 70, 0.055);
}

.closed-projects-toggle span {
  color: var(--gold);
  font-size: 16px;
}

/* OCULTAR / MOSTRAR CONCLUIDOS */
#proyectos-cerrados {
  display: none !important;
}

#proyectos-cerrados.is-open {
  display: grid !important;
}

/* SELLO CONCLUIDO */
.closed-seal {
  display: inline-flex !important;
  width: fit-content !important;
  margin: 0 0 14px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: rgba(180, 130, 69, 0.12) !important;
  border: 1px solid rgba(180, 130, 69, 0.32) !important;
  color: #8a5c25 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

.trajectory-full-content > span:not(.closed-seal) {
  margin-bottom: 12px !important;
}
@media (max-width: 768px) {
  .site-header {
    height: auto;
    min-height: auto;
    padding: 16px 20px;
    grid-template-columns: 1fr;
    gap: 16px;
    text-align: center;
  }

  .site-header ul {
    justify-content: center;
    flex-wrap: wrap;
  }

  .main-nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .brand-logo-final img {
    max-width: 180px;
    height: auto;
  }

  .login-button {
    width: auto;
    min-width: auto;
    height: 42px;
    padding: 0 18px !important;
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 14px 16px 24px;
  }

  .side-value {
    display: none;
  }

  .hero-card {
    height: 520px;
    min-height: 520px;
    border-radius: 16px;
  }

  .hero-content {
    width: 100%;
    padding: 40px 28px;
    justify-content: flex-end;
  }

  .hero-content::before {
    display: none;
  }

  .hero-content h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-text {
    max-width: 100%;
    font-size: 14px;
  }

  .hero-fade {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 242, 0.18) 0%,
        rgba(255, 250, 242, 0.75) 55%,
        rgba(255, 250, 242, 0.96) 100%
      );
  }
}
@media (max-width: 768px) {
  .investment-section-clean,
  .about-section-clean,
  .approach-section,
  .about-final-pillars-section,
  .trajectory-wide-section,
  .projects-section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .investment-cards-clean,
  .about-grid-clean,
  .projects-grid,
  .approach-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .investment-head-clean h2,
  .about-head-clean h2,
  .trajectory-head h2,
  .projects-head h2,
  .approach-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .investment-card-clean,
  .about-card-clean,
  .project-card {
    min-height: auto;
  }

  .project-image {
    height: 260px;
  }

  .approach-image {
    min-height: 360px;
  }

  .about-final-pillars {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .about-final-pillar {
    border-right: 0;
    border-bottom: 1px solid rgba(6, 31, 70, 0.12);
    padding: 18px 0 !important;
  }

  .about-final-pillar:last-child {
    border-bottom: 0;
  }

  .footer.container {
    padding: 34px 22px 22px !important;
  }
}
@media (max-width: 480px) {
  .main-nav a {
    font-size: 11px;
  }

  .hero-card {
    height: 500px;
    min-height: 500px;
  }

  .hero-icon {
    width: 58px;
    height: 58px;
  }

  .hero-content {
    padding: 32px 22px;
  }

  .investment-card-body-clean,
  .about-card-content,
  .project-content {
    padding: 24px 22px;
  }

  .project-content h3 {
    font-size: 34px;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-header {
    height: auto;
    min-height: auto;
    padding: 18px 18px 16px;
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
  }

  .site-header > ul {
    width: 100%;
    justify-content: center !important;
  }

  .site-header ul:last-child {
    justify-content: center !important;
  }

  .brand-logo-final {
    justify-content: center;
  }

  .brand-logo-final img {
    width: min(210px, 72vw);
    max-height: 72px;
    object-fit: contain;
  }

  .login-button {
    width: auto;
    min-width: 0;
    height: 38px;
    padding: 0 16px !important;
    font-size: 10px;
    border-radius: 7px;
  }

  .login-button svg {
    width: 14px;
    height: 14px;
  }

  .main-nav {
    width: 100%;
    justify-content: center;
    gap: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(6, 31, 70, 0.08);
    flex-wrap: wrap;
  }

  .main-nav a {
    font-size: 10px;
    padding: 8px 0;
  }

  .home-shell {
    padding-top: 14px;
  }

  .hero-section {
    width: 100%;
    grid-template-columns: 1fr;
    padding: 0 16px 44px;
    gap: 0;
  }

  .side-value {
    display: none;
  }

  .hero-card {
    height: clamp(430px, 68svh, 560px);
    min-height: 0;
    border-radius: 14px;
  }

  .hero-bg {
    background-position: center top;
  }

  .hero-fade {
    background:
      linear-gradient(
        180deg,
        rgba(255, 250, 242, 0.08) 0%,
        rgba(255, 250, 242, 0.42) 42%,
        rgba(255, 250, 242, 0.88) 74%,
        rgba(255, 250, 242, 0.98) 100%
      );
  }

  .hero-content {
    width: 100%;
    padding: 32px 22px 28px;
    justify-content: flex-end;
  }

  .hero-content::before {
    display: none;
  }

  .hero-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }

  .hero-icon svg {
    width: 22px;
    height: 22px;
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: 0.2em;
  }

  .hero-content h1 {
    font-size: clamp(36px, 12vw, 48px);
    line-height: 0.98;
    margin-bottom: 12px;
  }

  .hero-text {
    max-width: 100%;
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-dots {
    bottom: 18px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding: 16px 14px 14px;
  }

  .brand-logo-final img {
    width: min(190px, 76vw);
  }

  .main-nav {
    gap: 16px;
  }

  .hero-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-card {
    height: 430px;
  }

  .hero-content {
    padding: 28px 20px 26px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .site-header {
    height: auto;
    min-height: 0;
    padding: 14px 16px 12px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo login"
      "nav nav";
    gap: 12px 14px;
    align-items: center;
    background: rgba(255, 254, 250, 0.98);
    border-bottom: 1px solid rgba(6, 31, 70, 0.08);
  }

  .site-header > ul {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
  }

  .site-header > ul:first-child {
    grid-area: logo;
    justify-content: flex-start;
  }

  .site-header > ul:nth-child(2) {
    grid-area: nav;
    justify-content: center;
  }

  .site-header > ul:last-child {
    grid-area: login;
    justify-content: flex-end !important;
  }

  .brand-logo-final {
    display: flex;
    align-items: center;
  }

  .brand-logo-final img {
    width: 145px;
    max-width: 48vw;
    height: auto;
    display: block;
  }

  .login-button {
    width: auto;
    min-width: 0;
    height: 34px;
    padding: 0 12px !important;
    font-size: 9px;
    border-radius: 7px;
    box-shadow: 0 8px 18px rgba(6, 31, 70, 0.16);
  }

  .login-button svg {
    width: 13px;
    height: 13px;
    min-width: 13px;
  }

  .main-nav {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 22px;
    padding-top: 10px;
    border-top: 1px solid rgba(6, 31, 70, 0.07);
    flex-wrap: nowrap;
  }

  .main-nav li {
    margin: 0;
  }

  .main-nav a {
    font-size: 10px;
    padding: 8px 0;
    white-space: nowrap;
  }

  .main-nav a::after {
    bottom: 0;
    height: 1.5px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding: 12px 14px 10px;
    gap: 10px 12px;
  }

  .brand-logo-final img {
    width: 132px;
  }

  .login-button {
    height: 32px;
    padding: 0 10px !important;
    font-size: 8.5px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 9.5px;
  }
}
/* Ajuste de tamaño del logo PYR Inversiones */
.brand-logo-final img {
  width: 250px !important;
  max-width: 250px !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

/* Pantallas medianas */
@media (max-width: 1024px) {
  .brand-logo-final img {
    width: 220px !important;
    max-width: 220px !important;
  }
}

/* Celular */
@media (max-width: 768px) {
  .brand-logo-final img {
    width: 170px !important;
    max-width: 48vw !important;
  }
}

/* Celular pequeño */
@media (max-width: 390px) {
  .brand-logo-final img {
    width: 155px !important;
    max-width: 48vw !important;
  }
}
/* =====================================================
   PORTAFOLIO INSTITUCIONAL - PYR INVERSIONES
===================================================== */

.portfolio-section {
  padding-top: 64px;
  padding-bottom: 72px;
  background:
    radial-gradient(circle at top left, rgba(180, 130, 69, 0.045), transparent 28%),
    #fffefa;
}

.portfolio-head {
  width: min(1180px, 100%);
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
  gap: 76px;
  align-items: center;
}

.portfolio-head-main span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.portfolio-head-main span::after {
  content: "";
  width: 54px;
  height: 1px;
  background: var(--gold);
}

.portfolio-head-main h2 {
  margin: 0;
  max-width: 820px;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.portfolio-head-main p {
  margin: 24px 0 0;
  max-width: 720px;
  color: rgba(16, 38, 77, 0.76);
  font-size: 16px;
  line-height: 1.7;
}

.portfolio-head-side {
  position: relative;
  padding-left: 42px;
  border-left: 1px solid rgba(180, 130, 69, 0.68);
}

.portfolio-side-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(180, 130, 69, 0.10);
  border: 1px solid rgba(180, 130, 69, 0.28);
}

.portfolio-side-icon svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.5;
}

.portfolio-head-side p {
  margin: 0;
  max-width: 300px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 600;
}

.portfolio-projects-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.portfolio-project-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  min-height: 380px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(6, 31, 70, 0.10);
  box-shadow:
    0 20px 52px rgba(6, 31, 70, 0.075),
    0 8px 20px rgba(180, 130, 69, 0.045);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-project-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 68px rgba(6, 31, 70, 0.12),
    0 12px 26px rgba(180, 130, 69, 0.06);
}

.portfolio-project-image {
  position: relative;
  min-height: 380px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portfolio-project-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(6, 31, 70, 0.02) 0%,
      rgba(6, 31, 70, 0.12) 58%,
      rgba(6, 31, 70, 0.30) 100%
    );
}

.portfolio-status {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 10px 15px;
  border-radius: 8px;
  background: rgba(6, 31, 70, 0.92);
  color: #d7a75f;
  font-size: 11px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(6, 31, 70, 0.18);
}

.portfolio-project-info {
  padding: 34px 34px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(180, 130, 69, 0.045), transparent 34%),
    #ffffff;
}

.portfolio-project-info h3 {
  margin: 0 0 14px;
  font-family: "Playfair Display", serif;
  color: var(--navy);
  font-size: clamp(42px, 4vw, 56px);
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.055em;
}

.portfolio-location {
  margin: 0 0 13px;
  color: rgba(16, 38, 77, 0.72);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.portfolio-location::before {
  content: "⌖";
  margin-right: 8px;
  color: var(--gold);
  font-size: 15px;
}

.portfolio-type {
  margin: 0 0 28px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgba(16, 38, 77, 0.76);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.portfolio-type::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.portfolio-data {
  display: grid;
  gap: 0;
  margin-bottom: 26px;
  border-top: 1px solid rgba(6, 31, 70, 0.10);
  border-bottom: 1px solid rgba(6, 31, 70, 0.10);
}

.portfolio-data div {
  min-height: 46px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(6, 31, 70, 0.075);
}

.portfolio-data div:last-child {
  border-bottom: 0;
}

.portfolio-data span {
  color: rgba(16, 38, 77, 0.62);
  font-size: 12.5px;
  font-weight: 600;
}

.portfolio-data strong {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
}

.portfolio-progress {
  margin-top: auto;
}

.portfolio-progress-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.portfolio-progress-head span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.portfolio-progress-head strong {
  font-family: "Playfair Display", serif;
  color: var(--gold);
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.045em;
}

.portfolio-progress-bar {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(6, 31, 70, 0.08);
}

.portfolio-progress-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
}

.portfolio-disclaimer {
  width: min(1180px, 100%);
  margin: 28px auto 0;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(6, 31, 70, 0.10);
  box-shadow:
    0 14px 36px rgba(6, 31, 70, 0.045),
    0 6px 16px rgba(180, 130, 69, 0.03);
}

.portfolio-disclaimer-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--gold);
  background: rgba(180, 130, 69, 0.10);
  border: 1px solid rgba(180, 130, 69, 0.24);
}

.portfolio-disclaimer-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 1.55;
}

.portfolio-disclaimer p {
  margin: 0;
  color: rgba(16, 38, 77, 0.70);
  font-size: 13px;
  line-height: 1.55;
}

/* Responsive */
@media (max-width: 1100px) {
  .portfolio-head {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .portfolio-head-side {
    padding: 24px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(180, 130, 69, 0.32);
  }

  .portfolio-projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .portfolio-section {
    padding: 44px 18px 54px;
  }

  .portfolio-head-main h2 {
    font-size: clamp(38px, 11vw, 50px);
  }

  .portfolio-head-main p,
  .portfolio-head-side p {
    font-size: 14px;
  }

  .portfolio-project-card {
    grid-template-columns: 1fr;
  }

  .portfolio-project-image {
    min-height: 290px;
  }

  .portfolio-project-info {
    padding: 28px 24px 30px;
  }

  .portfolio-project-info h3 {
    font-size: 42px;
  }

  .portfolio-disclaimer {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
/* =====================================================
   AJUSTE FINAL PORTAFOLIO - MÁS PREMIUM
===================================================== */

.portfolio-section {
  padding-top: 48px !important;
  padding-bottom: 68px !important;
}

.portfolio-head {
  margin-bottom: 34px !important;
}

.portfolio-head-main h2 {
  font-size: clamp(46px, 5vw, 64px) !important;
  line-height: 0.98 !important;
}

.portfolio-head-main p {
  max-width: 700px !important;
  margin-top: 18px !important;
}

/* Esto corrige el padding que PicoCSS le mete al article */
.portfolio-project-card {
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  min-height: 420px !important;
  display: grid !important;
  grid-template-columns: 0.95fr 1.05fr !important;
  border-radius: 18px !important;
  background: #ffffff !important;
}

.portfolio-project-image {
  min-height: 420px !important;
  height: 100% !important;
  border-radius: 0 !important;
  background-size: cover !important;
  background-position: center !important;
}

.portfolio-project-info {
  padding: 40px 36px 34px !important;
  justify-content: center !important;
}

.portfolio-project-info h3 {
  margin-bottom: 16px !important;
  font-size: clamp(44px, 4vw, 58px) !important;
}

.portfolio-location {
  margin-bottom: 14px !important;
  font-size: 14px !important;
}

.portfolio-type {
  margin-bottom: 26px !important;
  color: rgba(16, 38, 77, 0.74) !important;
}

.portfolio-data {
  margin-bottom: 26px !important;
}

.portfolio-data div {
  min-height: 48px !important;
}

.portfolio-progress-head span {
  max-width: 130px;
  line-height: 1.25;
}

.portfolio-progress-head strong {
  color: var(--gold) !important;
  font-size: 36px !important;
}

.portfolio-progress-bar {
  height: 12px !important;
  background: rgba(6, 31, 70, 0.08) !important;
}

.portfolio-status {
  top: 24px !important;
  left: 24px !important;
  border-radius: 9px !important;
}

/* Más presencia visual para el bloque legal */
.portfolio-disclaimer {
  margin-top: 32px !important;
}
/* =====================================================
   FIX FINAL PORTAFOLIO - COMO LO DEFINIMOS
===================================================== */

/* Sección más limpia */
.portfolio-section {
  padding-top: 42px !important;
  padding-bottom: 76px !important;
  background: #fffefa !important;
}

/* Encabezado más ancho, no tan hacia la izquierda */
.portfolio-head {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 0 auto 34px !important;
  display: block !important;
}

/* Ocultar bloque lateral de gestión institucional */
.portfolio-head-side {
  display: none !important;
}

.portfolio-head-main {
  max-width: 1040px !important;
}

.portfolio-head-main span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 14px !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
}

.portfolio-head-main span::after {
  content: "" !important;
  width: 54px !important;
  height: 1px !important;
  background: var(--gold) !important;
}

.portfolio-head-main h2 {
  margin: 0 !important;
  max-width: 980px !important;
  font-family: "Playfair Display", serif !important;
  color: var(--navy) !important;
  font-size: clamp(52px, 5vw, 74px) !important;
  line-height: 0.95 !important;
  font-weight: 500 !important;
  letter-spacing: -0.055em !important;
}

.portfolio-head-main p {
  margin: 18px 0 0 !important;
  max-width: 920px !important;
  color: rgba(16, 38, 77, 0.76) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

/* Dos proyectos en línea horizontal */
.asset-portfolio-list {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 30px !important;
}

/* Card vertical: imagen arriba, info abajo */
.asset-card {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6, 31, 70, 0.10) !important;
  box-shadow:
    0 20px 50px rgba(6, 31, 70, 0.075),
    0 8px 18px rgba(180, 130, 69, 0.04) !important;
}

/* Imagen arriba */
.asset-media {
  position: relative !important;
  width: 100% !important;
  min-height: 360px !important;
  height: 360px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.asset-media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(
      180deg,
      rgba(6, 31, 70, 0.02) 0%,
      rgba(6, 31, 70, 0.10) 58%,
      rgba(6, 31, 70, 0.28) 100%
    ) !important;
}

.asset-status {
  position: absolute !important;
  top: 22px !important;
  left: 22px !important;
  z-index: 2 !important;
  padding: 10px 15px !important;
  border-radius: 9px !important;
  background: rgba(6, 31, 70, 0.94) !important;
  color: #d7a75f !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Información debajo */
.asset-body {
  padding: 32px 32px 30px !important;
  display: flex !important;
  flex-direction: column !important;
  background:
    radial-gradient(circle at top right, rgba(180, 130, 69, 0.045), transparent 36%),
    #ffffff !important;
}

.asset-kicker {
  display: block !important;
  margin-bottom: 12px !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  writing-mode: horizontal-tb !important;
}

.asset-title-row {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 10px !important;
}

.asset-title-row h3 {
  margin: 0 !important;
  font-family: "Playfair Display", serif !important;
  color: var(--navy) !important;
  font-size: clamp(44px, 4vw, 58px) !important;
  line-height: 0.95 !important;
  font-weight: 500 !important;
  letter-spacing: -0.055em !important;
}

.asset-title-row span {
  color: rgba(16, 38, 77, 0.42) !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.asset-location {
  margin: 0 0 24px !important;
  color: rgba(16, 38, 77, 0.72) !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.asset-location::before {
  content: "⌖" !important;
  margin-right: 8px !important;
  color: var(--gold) !important;
}

/* Datos debajo, bien ordenados */
.asset-info-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-bottom: 24px !important;
}

.asset-info-grid div {
  min-height: 84px !important;
  padding: 15px 14px !important;
  border-radius: 14px !important;
  background: #fbfaf7 !important;
  border: 1px solid rgba(6, 31, 70, 0.08) !important;
}

.asset-info-grid span {
  display: block !important;
  margin-bottom: 10px !important;
  color: rgba(16, 38, 77, 0.55) !important;
  font-size: 10.5px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  writing-mode: horizontal-tb !important;
}

.asset-info-grid strong {
  display: block !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}

/* Consolidación */
.asset-consolidation {
  padding-top: 20px !important;
  border-top: 1px solid rgba(6, 31, 70, 0.10) !important;
}

.asset-consolidation-head {
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.asset-consolidation-head span {
  color: var(--navy) !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.asset-consolidation-head strong {
  font-family: "Playfair Display", serif !important;
  color: var(--gold) !important;
  font-size: 36px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  letter-spacing: -0.045em !important;
}

.asset-progress {
  height: 12px !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: rgba(6, 31, 70, 0.08) !important;
}

.asset-progress span {
  display: block !important;
  height: 100% !important;
  border-radius: inherit !important;
  background: linear-gradient(90deg, var(--gold), var(--gold-2)) !important;
}

/* Franja institucional debajo */
.asset-legal-band {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 30px auto 0 !important;
  padding: 24px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 24px !important;
  align-items: center !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6, 31, 70, 0.10) !important;
  border-bottom: 4px solid var(--navy) !important;
  box-shadow:
    0 16px 42px rgba(6, 31, 70, 0.055),
    0 8px 18px rgba(180, 130, 69, 0.035) !important;
}

.asset-legal-item {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
}

.asset-legal-button {
  height: 46px !important;
  padding: 0 22px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(6, 31, 70, 0.28) !important;
  background: var(--navy) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

/* Botón proyectos concluidos más integrado */
.closed-projects-toggle-wrap {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 42px auto 0 !important;
}

.closed-projects-toggle {
  width: 100% !important;
  justify-content: flex-start !important;
  padding-left: 24px !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .asset-portfolio-list {
    grid-template-columns: 1fr !important;
  }

  .asset-media {
    height: 360px !important;
    min-height: 360px !important;
  }

  .asset-legal-band {
    grid-template-columns: 1fr !important;
  }

  .asset-legal-button {
    width: 100% !important;
  }
}

@media (max-width: 720px) {
  .portfolio-head,
  .asset-portfolio-list,
  .asset-legal-band,
  .closed-projects-toggle-wrap {
    width: calc(100% - 32px) !important;
  }

  .portfolio-head-main h2 {
    font-size: clamp(36px, 10vw, 48px) !important;
  }

  .portfolio-head-main p {
    font-size: 14px !important;
  }

  .asset-media {
    height: 280px !important;
    min-height: 280px !important;
  }

  .asset-body {
    padding: 24px 20px !important;
  }

  .asset-title-row {
    display: block !important;
  }

  .asset-title-row span {
    display: block !important;
    margin-top: 8px !important;
  }

  .asset-info-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =====================================================
   PORTAFOLIO FINAL - IMAGEN ARRIBA, INFO ABAJO
===================================================== */

.portfolio-section {
  padding-top: 52px !important;
  padding-bottom: 78px !important;
  background: #fffefa !important;
  border-top: 1px solid rgba(6, 31, 70, 0.05) !important;
}

.portfolio-head {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 0 auto 34px !important;
  display: block !important;
}

.portfolio-head-side,
.portfolio-projects-grid,
.portfolio-project-card,
.portfolio-disclaimer,
.portfolio-access-band {
  display: none !important;
}

.portfolio-head-main {
  max-width: 1040px !important;
}

.portfolio-head-main span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-bottom: 14px !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
}

.portfolio-head-main span::after {
  content: "" !important;
  width: 54px !important;
  height: 1px !important;
  background: var(--gold) !important;
}

.portfolio-head-main h2 {
  margin: 0 !important;
  max-width: 980px !important;
  font-family: "Playfair Display", serif !important;
  color: var(--navy) !important;
  font-size: clamp(52px, 5vw, 74px) !important;
  line-height: 0.95 !important;
  font-weight: 500 !important;
  letter-spacing: -0.055em !important;
}

.portfolio-head-main p {
  margin: 18px 0 0 !important;
  max-width: 920px !important;
  color: rgba(16, 38, 77, 0.76) !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

/* Dos cards horizontales */
.asset-portfolio-list {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 30px !important;
}

/* Card vertical */
.asset-card {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: auto 1fr !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6, 31, 70, 0.10) !important;
  box-shadow:
    0 20px 50px rgba(6, 31, 70, 0.075),
    0 8px 18px rgba(180, 130, 69, 0.04) !important;
}

/* Imagen arriba */
.asset-media {
  position: relative !important;
  width: 100% !important;
  height: 380px !important;
  min-height: 380px !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.asset-media::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    linear-gradient(
      180deg,
      rgba(6, 31, 70, 0.02) 0%,
      rgba(6, 31, 70, 0.10) 58%,
      rgba(6, 31, 70, 0.28) 100%
    ) !important;
}

.asset-status {
  position: absolute !important;
  top: 22px !important;
  left: 22px !important;
  z-index: 2 !important;
  padding: 10px 15px !important;
  border-radius: 9px !important;
  background: rgba(6, 31, 70, 0.94) !important;
  color: #d7a75f !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
}

/* Información debajo */
.asset-body {
  padding: 32px 32px 30px !important;
  display: flex !important;
  flex-direction: column !important;
  background:
    radial-gradient(circle at top right, rgba(180, 130, 69, 0.045), transparent 36%),
    #ffffff !important;
}

.asset-kicker {
  display: block !important;
  margin-bottom: 12px !important;
  color: var(--gold) !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
}

.asset-title-row {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 10px !important;
}

.asset-title-row h3 {
  margin: 0 !important;
  font-family: "Playfair Display", serif !important;
  color: var(--navy) !important;
  font-size: clamp(44px, 4vw, 58px) !important;
  line-height: 0.95 !important;
  font-weight: 500 !important;
  letter-spacing: -0.055em !important;
}

.asset-title-row span {
  color: rgba(16, 38, 77, 0.42) !important;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}

.asset-location {
  margin: 0 0 24px !important;
  color: rgba(16, 38, 77, 0.72) !important;
  font-size: 14px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
}

.asset-location::before {
  content: "⌖" !important;
  margin-right: 8px !important;
  color: var(--gold) !important;
}

/* Datos ordenados */
.asset-info-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  margin-bottom: 24px !important;
}

.asset-info-grid div {
  min-height: 84px !important;
  padding: 15px 14px !important;
  border-radius: 14px !important;
  background: #fbfaf7 !important;
  border: 1px solid rgba(6, 31, 70, 0.08) !important;
}

.asset-info-grid span {
  display: block !important;
  margin-bottom: 10px !important;
  color: rgba(16, 38, 77, 0.55) !important;
  font-size: 10.5px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
}

.asset-info-grid strong {
  display: block !important;
  color: var(--navy) !important;
  font-size: 14px !important;
  line-height: 1.15 !important;
  font-weight: 800 !important;
}

/* Consolidación */
.asset-consolidation {
  padding-top: 20px !important;
  border-top: 1px solid rgba(6, 31, 70, 0.10) !important;
}

.asset-consolidation-head {
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.asset-consolidation-head span {
  color: var(--navy) !important;
  font-size: 13px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
}

.asset-consolidation-head strong {
  font-family: "Playfair Display", serif !important;
  color: var(--gold) !important;
  font-size: 36px !important;
  line-height: 1 !important;
  font-weight: 500 !important;
  letter-spacing: -0.045em !important;
}

.asset-progress {
  height: 12px !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: rgba(6, 31, 70, 0.08) !important;
}

.asset-progress span {
  display: block !important;
  height: 100% !important;
  border-radius: inherit !important;
  background: linear-gradient(90deg, var(--gold), var(--gold-2)) !important;
}

/* Franja institucional */
.asset-legal-band {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 30px auto 0 !important;
  padding: 24px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 24px !important;
  align-items: center !important;
  border-radius: 18px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6, 31, 70, 0.10) !important;
  border-bottom: 4px solid var(--navy) !important;
  box-shadow:
    0 16px 42px rgba(6, 31, 70, 0.055),
    0 8px 18px rgba(180, 130, 69, 0.035) !important;
}

.asset-legal-item {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 16px !important;
  align-items: center !important;
}

.asset-legal-button {
  height: 46px !important;
  padding: 0 22px !important;
  border-radius: 8px !important;
  background: var(--navy) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  font-size: 10.5px !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-decoration: none !important;
}

/* Botón proyectos concluidos */
.closed-projects-toggle-wrap {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 42px auto 0 !important;
}

.closed-projects-toggle {
  width: 100% !important;
  justify-content: flex-start !important;
  padding-left: 24px !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .asset-portfolio-list {
    grid-template-columns: 1fr !important;
  }

  .asset-media {
    height: 360px !important;
    min-height: 360px !important;
  }

  .asset-legal-band {
    grid-template-columns: 1fr !important;
  }

  .asset-legal-button {
    width: 100% !important;
  }
}

@media (max-width: 720px) {
  .portfolio-head,
  .asset-portfolio-list,
  .asset-legal-band,
  .closed-projects-toggle-wrap {
    width: calc(100% - 32px) !important;
  }

  .portfolio-head-main h2 {
    font-size: clamp(36px, 10vw, 48px) !important;
  }

  .portfolio-head-main p {
    font-size: 14px !important;
  }

  .asset-media {
    height: 280px !important;
    min-height: 280px !important;
  }

  .asset-body {
    padding: 24px 20px !important;
  }

  .asset-title-row {
    display: block !important;
  }

  .asset-title-row span {
    display: block !important;
    margin-top: 8px !important;
  }

  .asset-info-grid {
    grid-template-columns: 1fr !important;
  }
}
/* =====================================================
   AJUSTE ESPACIADO - NUESTRO ENFOQUE
===================================================== */

.approach-section {
  padding-top: 96px !important;
  padding-bottom: 76px !important;
}

/* Asegura separación entre las cards anteriores y Nuestro enfoque */
.about-section-clean {
  padding-bottom: 70px !important;
}

.approach-grid {
  align-items: center !important;
}

/* Que la imagen no quede tan pegada arriba */
.approach-image {
  min-height: 600px !important;
  margin-top: 10px !important;
}

/* Mejor aire interno en el texto */
.approach-copy {
  padding-top: 12px !important;
}

.approach-copy .eyebrow {
  margin-bottom: 18px !important;
}

.approach-copy h2 {
  margin-bottom: 26px !important;
}

.approach-copy .gold-line {
  margin-bottom: 34px !important;
}

/* Responsive */
@media (max-width: 900px) {
  .approach-section {
    padding-top: 70px !important;
    padding-bottom: 60px !important;
  }

  .about-section-clean {
    padding-bottom: 50px !important;
  }

  .approach-image {
    min-height: 360px !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 520px) {
  .approach-section {
    padding-top: 58px !important;
  }
}
/* =====================================================
   AJUSTE TÍTULO PORTAFOLIO
===================================================== */

.portfolio-head-main h2 {
  font-size: clamp(38px, 4vw, 58px) !important;
  line-height: 1.02 !important;
  max-width: 820px !important;
  letter-spacing: -0.045em !important;
}

.portfolio-head-main p {
  max-width: 820px !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}
/* =====================================================
   AJUSTE ICONOS + DISTANCIA ENTRE BLOQUES
===================================================== */

/* --- ICONOS DE "NUESTRO ENFOQUE" ---
   que se vean como los de abajo:
   círculo claro + borde dorado suave + icono azul marino
*/
.approach-icons {
  margin-top: 26px !important;
  margin-bottom: 10px !important;
  gap: 20px !important;
}

.approach-mini {
  text-align: center !important;
}

.approach-mini .mini-icon {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  margin: 0 auto 12px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(180, 130, 69, 0.42) !important;
  color: var(--navy) !important;
  box-shadow: none !important;
}

.approach-mini .mini-icon svg {
  width: 25px !important;
  height: 25px !important;
  color: var(--navy) !important;
  stroke: currentColor !important;
  fill: none !important;
  stroke-width: 1.55 !important;
}

.approach-mini span {
  display: block !important;
  color: var(--navy) !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
  font-weight: 600 !important;
}

/* --- MENOS DISTANCIA ENTRE ENFOQUE Y PILARES DE ABAJO --- */
.approach-section {
  padding-bottom: 24px !important;
}

.about-final-pillars-section {
  padding-top: 10px !important;
  margin-top: 0 !important;
}

.about-final-pillars {
  margin-top: 0 !important;
}

/* Si todavía queda mucho hueco, baja un poco más esto */
@media (max-width: 900px) {
  .approach-section {
    padding-bottom: 18px !important;
  }

  .about-final-pillars-section {
    padding-top: 6px !important;
  }

  .approach-icons {
    gap: 16px !important;
    margin-top: 22px !important;
    margin-bottom: 6px !important;
  }

  .approach-mini .mini-icon {
    width: 50px !important;
    height: 50px !important;
    min-width: 50px !important;
  }

  .approach-mini .mini-icon svg {
    width: 22px !important;
    height: 22px !important;
  }
}
/* =====================================================
   ESTADOS OPEN / CLOSED - ESTILO PYR
===================================================== */

.asset-status {
  position: absolute !important;
  top: 22px !important;
  left: 22px !important;
  z-index: 2 !important;
  padding: 10px 15px !important;
  border-radius: 999px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  box-shadow: 0 12px 26px rgba(6, 31, 70, 0.12) !important;
}

/* ARIA I - Closed */
.asset-status-closed {
  background: rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(180, 130, 69, 0.46) !important;
  color: var(--navy) !important;
}

.asset-status-closed::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(6, 31, 70, 0.72);
}

/* ARIA II - Open */
.asset-status-open {
  background: rgba(180, 130, 69, 0.16) !important;
  border: 1px solid rgba(180, 130, 69, 0.62) !important;
  color: var(--navy) !important;
  backdrop-filter: blur(10px);
}

.asset-status-open::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
}

/* Ajuste del campo Estado dentro de las cards */
.asset-info-grid strong {
  color: var(--navy) !important;
}

.asset-info-grid div:first-child strong {
  color: var(--navy) !important;
  font-weight: 800 !important;
}
/* Encabezado del portafolio alineado con las cards */
.portfolio-head {
  width: min(1240px, calc(100% - 80px)) !important;
  margin: 0 auto 34px !important;
}

.portfolio-head-main {
  max-width: 980px !important;
}

.portfolio-head-main h2 {
  max-width: 880px !important;
}

.portfolio-head-main p {
  max-width: 860px !important;
}
/* =====================================================
   FIX FINAL - FRANJA INSTITUCIONAL COMPACTA
===================================================== */

.portfolio-section .asset-legal-band {
  width: min(980px, calc(100% - 80px)) !important;
  margin: 28px auto 0 !important;
  padding: 16px 20px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr auto !important;
  gap: 22px !important;
  align-items: center !important;
  border-radius: 16px !important;
  background: #ffffff !important;
  border: 1px solid rgba(6, 31, 70, 0.10) !important;
  border-bottom: 3px solid var(--navy) !important;
  box-shadow:
    0 14px 30px rgba(6, 31, 70, 0.045),
    0 6px 14px rgba(180, 130, 69, 0.025) !important;
}

.portfolio-section .asset-legal-item {
  display: grid !important;
  grid-template-columns: 54px minmax(0, 1fr) !important;
  gap: 14px !important;
  align-items: center !important;
}

.portfolio-section .asset-legal-icon {
  width: 48px !important;
  height: 34px !important;
  min-width: 48px !important;
  border-radius: 999px !important;
  display: grid !important;
  place-items: center !important;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(180, 130, 69, 0.42) !important;
  color: var(--navy) !important;
  box-shadow: none !important;
}

.portfolio-section .asset-legal-icon svg {
  width: 18px !important;
  height: 18px !important;
  stroke-width: 1.55 !important;
  color: var(--navy) !important;
  stroke: currentColor !important;
  fill: none !important;
}

.portfolio-section .asset-legal-item strong {
  display: block !important;
  margin: 0 0 5px !important;
  color: var(--navy) !important;
  font-size: 10px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
}

.portfolio-section .asset-legal-item p {
  margin: 0 !important;
  max-width: 330px !important;
  color: rgba(16, 38, 77, 0.72) !important;
  font-size: 10.8px !important;
  line-height: 1.42 !important;
  font-weight: 500 !important;
}

.portfolio-section .asset-legal-button {
  height: 38px !important;
  padding: 0 18px !important;
  border-radius: 10px !important;
  background: var(--navy) !important;
  color: #ffffff !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  font-size: 9.3px !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(6, 31, 70, 0.12) !important;
}

.portfolio-section .asset-legal-button span {
  font-size: 15px !important;
  line-height: 1 !important;
}

/* Responsive */
@media (max-width: 980px) {
  .portfolio-section .asset-legal-band {
    width: calc(100% - 32px) !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 18px !important;
  }

  .portfolio-section .asset-legal-item p {
    max-width: none !important;
  }

  .portfolio-section .asset-legal-button {
    width: 100% !important;
  }
}
/* =====================================================
   STATUS PROYECTOS - ESTILO 1 MINIMALISTA
   CLOSED / OPEN
===================================================== */

.asset-status-min {
  position: absolute !important;
  top: 22px !important;
  left: 22px !important;
  z-index: 3 !important;

  height: 44px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;

  display: inline-flex !important;
  align-items: center !important;
  gap: 15px !important;

  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(180, 130, 69, 0.62) !important;
  color: var(--navy) !important;

  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;

  box-shadow:
    0 12px 28px rgba(6, 31, 70, 0.10),
    0 4px 12px rgba(180, 130, 69, 0.06) !important;

  backdrop-filter: blur(12px);
}

/* Elimina decoraciones anteriores */
.asset-status-min::before,
.asset-status-min::after {
  content: none !important;
  display: none !important;
}

/* Línea divisoria dorada */
.status-divider {
  width: 1px;
  height: 24px;
  display: block;
  background: rgba(180, 130, 69, 0.68);
}

/* Candado minimalista */
.status-lock {
  position: relative;
  width: 19px;
  height: 16px;
  display: inline-block;
  border: 2px solid var(--navy);
  border-radius: 3px;
  box-sizing: border-box;
}

.status-lock::before {
  content: "";
  position: absolute;
  left: 3px;
  top: -12px;
  width: 13px;
  height: 12px;
  border: 2px solid var(--navy);
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
  box-sizing: border-box;
}

.status-lock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 5px;
  width: 4px;
  height: 6px;
  border-radius: 999px;
  background: var(--navy);
  transform: translateX(-50%);
}

/* Punto dorado para OPEN */
.status-dot {
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 999px;
  display: block;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.42), transparent 34%),
    var(--gold);
  box-shadow:
    inset 0 0 0 1px rgba(180, 130, 69, 0.22),
    0 5px 12px rgba(180, 130, 69, 0.22);
}

/* CLOSED y OPEN comparten la misma base */
.asset-status-closed,
.asset-status-open {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(180, 130, 69, 0.62) !important;
  color: var(--navy) !important;
}

/* Responsive */
@media (max-width: 720px) {
  .asset-status-min {
    top: 16px !important;
    left: 16px !important;
    height: 38px !important;
    padding: 0 15px !important;
    gap: 11px !important;
    font-size: 9.5px !important;
    letter-spacing: 0.13em !important;
  }

  .status-divider {
    height: 20px;
  }

  .status-lock {
    width: 16px;
    height: 14px;
    border-width: 1.7px;
  }

  .status-lock::before {
    left: 2.5px;
    top: -10px;
    width: 11px;
    height: 10px;
    border-width: 1.7px;
  }

  .status-lock::after {
    top: 4px;
    width: 3.5px;
    height: 5px;
  }

  .status-dot {
    width: 13px;
    height: 13px;
    min-width: 13px;
  }
}
/* =====================================================
   TODA LA PÁGINA MÁS ALEJADA SOLO EN COMPUTADORA
   No afecta celular ni tablet
===================================================== */

@media (min-width: 1100px) {
  html {
    zoom: 0.9 !important;
  }

  body {
    overflow-x: hidden !important;
    background: #fffefa !important;
  }

  .hero-section {
    transform: none !important;
  }
}

@media (max-width: 1099px) {
  html {
    zoom: 1 !important;
  }

  .hero-section {
    transform: none !important;
  }
}
/* =====================================================
   RESET - QUITAR ZOOM Y ESCALADOS QUE ROMPEN EL LAYOUT
===================================================== */

html {
  zoom: 1 !important;
}

body {
  transform: none !important;
  width: auto !important;
  overflow-x: hidden !important;
}

.site-header,
.home-main,
.home-shell,
.hero-section,
.hero-card,
.side-value,
.about-section-clean,
.approach-section,
.portfolio-section,
.footer {
  transform: none !important;
}
/* =====================================================
   ACERCAR HOME A SECCIÓN NOSOTROS
===================================================== */

.home-shell {
  padding-bottom: 0 !important;
}

.hero-section {
  padding-bottom: 10px !important;
}

.hero-dots {
  bottom: -4px !important;
}

.about-section-clean {
  padding-top: 24px !important;
}

/* Desktop */
@media (min-width: 1100px) {
  .home-shell {
    padding-bottom: 0 !important;
  }

  .hero-section {
    padding-bottom: 14px !important;
  }

  .about-section-clean {
    padding-top: 28px !important;
  }
}

/* Celular */
@media (max-width: 768px) {
  .hero-section {
    padding-bottom: 24px !important;
  }

  .about-section-clean {
    padding-top: 24px !important;
  }
}