/* =========================================================
   TRANSVISIÓN EXPERIENCE · BY PREFALUM
   Tema público premium impulsado por ZERO
========================================================= */

:root {
  --experience-orange: #e55d09;
  --experience-orange-dark: #c94f06;
  --experience-blue: #174a97;
  --experience-blue-dark: #123f7f;
  --experience-ink: #0b1622;
  --experience-muted: #66717d;
  --experience-line: rgba(11, 22, 34, .12);
  --experience-white: #ffffff;
  --experience-soft: #f4f7fa;
  --experience-radius: 30px;
  --experience-shadow: 0 24px 70px rgba(18, 42, 66, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.experience-body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: #fff;
  color: var(--experience-ink);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Helvetica,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.experience-container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ===== Navegación ===== */

.experience-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 16px 20px;
  pointer-events: none;
}

.experience-nav-inner {
  width: min(1180px, 100%);
  min-height: 82px;
  margin: 0 auto;
  padding: 8px 12px 8px 20px;
  display: flex;
  align-items: center;
  gap: 28px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 999px;
  background: rgba(7, 21, 34, .48);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .17);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  pointer-events: auto;
}

.experience-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 210px;
  min-width: 210px;
  gap: 2px;
  color: #fff;
  text-decoration: none;
}

.experience-header-logo {
  display: block;
  width: auto;
  height: 48px;
  max-width: 205px;
  object-fit: contain;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  transition: transform .22s ease;
}

.experience-brand-discover {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin: 1px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: .66rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .025em;
  white-space: nowrap;
  text-decoration: none;
  transition:
    color .22s ease,
    gap .22s ease;
}

.experience-brand-discover b {
  color: var(--experience-orange);
  font-size: .84rem;
  font-weight: 900;
}

.experience-brand:hover {
  color: #fff;
}

.experience-brand:hover img {
  transform: translateY(-1px);
}

.experience-brand:hover .experience-brand-discover {
  gap: 10px;
  color: #fff;
}

.experience-nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.experience-nav-links a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  font-size: .87rem;
  font-weight: 700;
  transition: color .2s ease;
}

.experience-nav-links a:hover {
  color: #fff;
}

.experience-nav-cta {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--experience-blue-dark);
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .16);
}

/* ===== Hero ===== */

.experience-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    url("/static/fondo_publico.jpg")
    center 48% / cover no-repeat;
}

.experience-hero::before {
  content: "";
  position: absolute;
  inset: -5%;
  background:
    url("/static/fondo_publico.jpg")
    center 48% / cover no-repeat;
  filter: blur(3.5px) brightness(.74) saturate(.82);
  transform: scale(1.07);
  animation: experienceHeroZoom 20s ease-in-out infinite alternate;
}

@keyframes experienceHeroZoom {
  from { transform: scale(1.03); }
  to { transform: scale(1.09); }
}

.experience-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(180deg, rgba(3, 13, 22, .64), rgba(3, 13, 22, .28) 42%, rgba(3, 13, 22, .78)),
    linear-gradient(90deg, rgba(4, 20, 34, .58), rgba(4, 20, 34, .10) 58%, rgba(4, 20, 34, .30));
}

.experience-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 38px;
  background: linear-gradient(
    145deg,
    rgba(5,22,36,.34),
    rgba(255,255,255,.07)
  );
  box-shadow:
    0 30px 80px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.16);
  backdrop-filter: blur(13px) saturate(125%);
  -webkit-backdrop-filter: blur(13px) saturate(125%);
  text-align: center;
  color: #fff;
  animation: experienceFadeUp .9s ease both;
}

@keyframes experienceFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.experience-eyebrow,
.experience-section-kicker {
  margin-bottom: 16px;
  color: var(--experience-blue);
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.experience-eyebrow {
  color: rgba(255, 255, 255, .78);
}

.experience-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  font-weight: 760;
  letter-spacing: -.07em;
  line-height: .92;
  text-wrap: balance;
}

.experience-hero-content > p {
  max-width: 690px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.65;
  text-wrap: balance;
}

.experience-hero-actions {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.experience-btn {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 850;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease;
}

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

.experience-btn-primary {
  background: #fff;
  color: var(--experience-blue-dark);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .22);
}

.experience-btn-light {
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .10);
  color: #fff;
  backdrop-filter: blur(12px);
}

.experience-hero-brands {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 54px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .82);
  text-align: center;
}

.experience-hero-brands div:not(.experience-hero-divider) {
  display: flex;
  flex-direction: column;
}

.experience-hero-brands span {
  font-size: .82rem;
  font-weight: 850;
}

.experience-hero-brands small {
  margin-top: 3px;
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .60);
}

.experience-hero-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, .34);
}

.experience-scroll {
  position: absolute;
  z-index: 3;
  right: 32px;
  bottom: 32px;
  width: 42px;
  height: 64px;
  display: grid;
  place-items: start center;
  padding-top: 11px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
}

.experience-scroll span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
  animation: experienceScroll 1.8s ease-in-out infinite;
}

@keyframes experienceScroll {
  0% { transform: translateY(0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(32px); opacity: 0; }
}

/* ===== Secciones ===== */

.experience-section {
  padding: 120px 0;
}

.experience-intro {
  background:
    radial-gradient(circle at 15% 10%, rgba(10, 102, 169, .08), transparent 28%),
    #fff;
}

.experience-intro h2,
.experience-brands-section h2 {
  max-width: 950px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 720;
}

.experience-intro h2 span {
  display: block;
  color: #8d98a4;
}

.experience-lead {
  max-width: 690px;
  margin: 30px 0 0;
  color: var(--experience-muted);
  font-size: 1.14rem;
  line-height: 1.75;
}

.experience-access-grid {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.experience-access-card {
  min-height: 230px;
  position: relative;
  padding: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.92);
  border-radius: var(--experience-radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(235,243,249,.78));
  color: var(--experience-ink);
  text-align: left;
  text-decoration: none;
  box-shadow:
    0 20px 55px rgba(19,49,77,.10),
    inset 0 1px 0 rgba(255,255,255,.96);
  backdrop-filter: blur(16px) saturate(125%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.experience-access-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -80px;
  top: -100px;
  border-radius: 50%;
  background: rgba(10, 102, 169, .08);
  filter: blur(2px);
}

.experience-access-card:hover {
  transform: translateY(-5px);
  border-color: rgba(10, 102, 169, .25);
  box-shadow: var(--experience-shadow);
}

.experience-access-number {
  align-self: start;
  color: var(--experience-blue);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.experience-access-card h3 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  letter-spacing: -.04em;
  font-weight: 760;
}

.experience-access-card p {
  max-width: 380px;
  margin: 10px 0 0;
  color: var(--experience-muted);
  line-height: 1.55;
}

.experience-access-arrow {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--experience-ink);
  color: #fff;
  font-size: 1.1rem;
}

/* ===== Proyecto destacado ===== */

.experience-feature {
  min-height: 82svh;
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  background: #071521;
}

.experience-feature-media {
  position: absolute;
  inset: -3%;
  background:
    url("/static/fondo_publico.jpg")
    center / cover no-repeat;
  filter: blur(2px) brightness(.78) saturate(.78);
  transform: scale(1.06);
}

.experience-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,14,23,.90), rgba(3,14,23,.30) 72%),
    linear-gradient(180deg, rgba(3,14,23,.12), rgba(3,14,23,.82));
}

.experience-feature-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
  color: #fff;
}

.experience-feature-content h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.8rem, 7vw, 6.3rem);
  line-height: .94;
  letter-spacing: -.06em;
  font-weight: 720;
}

.experience-feature-content p {
  max-width: 580px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.08rem;
  line-height: 1.7;
}

.experience-section-kicker-light {
  color: rgba(255, 255, 255, .62);
}

.experience-text-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
}

/* ===== Marcas ===== */

.experience-brands-section {
  background: var(--experience-soft);
}

.experience-brand-panel {
  min-height: 410px;
  padding: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .75fr);
  gap: 50px;
  align-items: center;
  border: 1px solid rgba(10, 102, 169, .13);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(236, 243, 248, .94));
  box-shadow: 0 22px 70px rgba(22, 50, 78, .08);
}

.experience-brand-panel + .experience-brand-panel {
  margin-top: 22px;
}

.experience-brand-panel h2 {
  font-size: clamp(2.3rem, 5vw, 4.8rem);
}

.experience-brand-panel h2 span {
  color: #87939f;
}

.experience-brand-panel p {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--experience-muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.experience-brand-logo {
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 34px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow:
    inset 0 1px 0 #fff,
    0 18px 40px rgba(16, 43, 68, .08);
}

.experience-brand-logo img {
  max-width: 100%;
  max-height: 110px;
  object-fit: contain;
}

.experience-brand-panel-thermia {
  background:
    linear-gradient(145deg, #f7f9fb, #e8eef3);
}

.experience-seal {
  min-height: 240px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 22, 34, .10);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, #fff, #e9eef2 70%);
  text-align: center;
  box-shadow:
    inset 0 1px 0 #fff,
    0 20px 50px rgba(15, 37, 58, .10);
}

.experience-seal span,
.experience-seal small {
  color: #6f7b87;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-seal strong {
  margin: 4px 0;
  font-size: 2rem;
  letter-spacing: -.04em;
}

/* ===== CTA ===== */

.experience-project-cta {
  padding: 42px 20px;
  background: #fff;
}

.experience-project-cta-inner {
  width: min(1180px, 100%);
  min-height: 360px;
  margin: 0 auto;
  padding: 58px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 85% 10%, rgba(36, 134, 196, .40), transparent 28%),
    linear-gradient(135deg, #06213a, #0a66a9);
  color: #fff;
  box-shadow: 0 28px 80px rgba(5, 41, 72, .20);
}

.experience-project-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.6rem, 6vw, 5.3rem);
  line-height: .96;
  letter-spacing: -.055em;
}

.experience-project-cta p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 1.05rem;
  line-height: 1.65;
}

.experience-btn-white {
  flex: 0 0 auto;
  background: #fff;
  color: var(--experience-blue-dark);
}

/* ===== Footer ===== */

.experience-footer {
  padding: 80px 0 44px;
  background: #07121c;
  color: #fff;
}

.experience-footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.experience-footer-brand img {
  width: auto;
  height: 44px;
  max-width: 190px;
}

.experience-footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .60);
}

.experience-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.experience-footer-links a {
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  font-weight: 700;
}

.experience-footer-links a:hover {
  color: #fff;
}

.experience-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: .9rem;
}

.experience-footer-meta small {
  margin-top: 20px;
  color: rgba(255, 255, 255, .38);
}

/* ===== Modal ===== */

.experience-modal .modal-dialog {
  width: min(94vw, 560px);
  max-width: 560px;
}

.experience-modal .modal-content {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 32px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 34px 100px rgba(0, 23, 43, .28);
  backdrop-filter: blur(20px);
}

.experience-modal-head {
  padding: 34px 34px 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.experience-modal-head h2 {
  margin: 0;
  font-size: 2.25rem;
  letter-spacing: -.045em;
  font-weight: 760;
}

.experience-modal-head p {
  margin: 10px 0 0;
  color: var(--experience-muted);
  line-height: 1.55;
}

.experience-modal-close {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #eef2f5;
  color: #263746;
  font-size: 1.7rem;
  line-height: 1;
}

.experience-modal-body {
  padding: 10px 34px 34px;
}

.experience-field {
  display: block;
  margin-top: 18px;
}

.experience-field > span {
  display: block;
  margin-bottom: 8px;
  color: #42515f;
  font-size: .82rem;
  font-weight: 850;
}

.experience-field input {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid #d8e0e7;
  border-radius: 18px;
  background: #fff;
  color: var(--experience-ink);
  outline: none;
  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}

.experience-field input:focus {
  border-color: rgba(10, 102, 169, .62);
  box-shadow: 0 0 0 4px rgba(10, 102, 169, .10);
}

.experience-plan-link {
  margin-top: 18px;
  padding: 16px 17px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(10, 102, 169, .17);
  border-radius: 18px;
  background: #f3f8fc;
  color: var(--experience-blue-dark);
  text-decoration: none;
}

.experience-plan-link span:first-child {
  display: flex;
  flex-direction: column;
}

.experience-plan-link small {
  margin-top: 3px;
  color: var(--experience-muted);
}

.experience-alert {
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid #f1d2a0;
  border-radius: 16px;
  background: #fff8e8;
  color: #79521b;
  font-weight: 700;
}

.experience-submit {
  width: 100%;
  min-height: 58px;
  margin-top: 24px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--experience-blue-dark), var(--experience-blue));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(10, 102, 169, .22);
}

.experience-privacy {
  margin: 15px 0 0;
  color: #89939c;
  font-size: .74rem;
  text-align: center;
}

/* ===== Responsive ===== */

@media (max-width: 900px) {
  .experience-nav-links {
    display: none;
  }

  .experience-nav-inner {
    gap: 12px;
  }

  .experience-nav-cta {
    margin-left: auto;
  }

  .experience-access-grid {
    grid-template-columns: 1fr;
  }

  .experience-brand-panel {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .experience-brand-logo,
  .experience-seal {
    min-height: 190px;
  }

  .experience-seal {
    width: 240px;
    margin: 0 auto;
  }

  .experience-project-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 640px) {
  .experience-container,
  .experience-feature-content {
    width: min(100% - 24px, 1180px);
  }

  .experience-nav {
    padding: 10px;
  }

  .experience-nav-inner {
    min-height: 68px;
    padding: 7px 8px 7px 14px;
  }

  .experience-brand {
    width: 145px;
    min-width: 145px;
  }

  .experience-header-logo {
    width: auto;
    height: 34px;
    max-width: 145px;
  }

  .experience-brand-discover {
    margin-top: 1px;
    font-size: .54rem;
  }


  .experience-brand-discover b {
    font-size: .68rem;
  }

  .experience-nav-cta {
    min-height: 42px;
    padding: 0 15px;
    font-size: .82rem;
  }

  .experience-hero {
    min-height: 100svh;
  }

  .experience-hero-content {
    width: calc(100% - 28px);
    padding: 32px 22px;
    border-radius: 28px;
  }

  .experience-hero h1 {
    font-size: clamp(3.15rem, 16vw, 5rem);
  }

  .experience-hero-content > p {
    font-size: .98rem;
  }

  .experience-hero-actions {
    flex-direction: column;
  }

  .experience-btn {
    width: 100%;
  }

  .experience-hero-brands {
    bottom: 28px;
    width: calc(100% - 80px);
    justify-content: center;
    gap: 15px;
  }

  .experience-scroll {
    display: none;
  }

  .experience-section {
    padding: 82px 0;
  }

  .experience-intro h2,
  .experience-brand-panel h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .experience-access-grid {
    margin-top: 44px;
  }

  .experience-access-card {
    min-height: 210px;
    padding: 24px;
    grid-template-columns: 1fr auto;
  }

  .experience-access-number {
    grid-column: 1 / -1;
  }

  .experience-feature {
    min-height: 76svh;
  }

  .experience-feature-content {
    padding: 70px 0;
  }

  .experience-brand-panel {
    min-height: 0;
    padding: 28px;
    border-radius: 28px;
  }

  .experience-project-cta {
    padding: 18px 12px;
  }

  .experience-project-cta-inner {
    min-height: 430px;
    padding: 30px;
    border-radius: 28px;
  }

  .experience-footer {
    padding-top: 60px;
  }

  .experience-modal .modal-dialog {
    width: calc(100% - 18px);
    margin: 9px auto;
  }

  .experience-modal .modal-content {
    border-radius: 26px;
  }

  .experience-modal-head {
    padding: 26px 22px 14px;
  }

  .experience-modal-body {
    padding: 6px 22px 24px;
  }

  .experience-plan-link {
    flex-direction: column;
  }
}

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

  .experience-hero::before,
  .experience-scroll span {
    animation: none;
  }

  .experience-hero-content {
    animation: none;
  }
}

.experience-project-search {
  margin: 0;
}

.experience-op-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.experience-op-search-btn {
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 15px;
  background: #0a66a9;
  color: #ffffff;
  font-size: .86rem;
  font-weight: 800;
  transition:
    transform .2s ease,
    background .2s ease;
}

.experience-op-search-btn:hover {
  background: #07538a;
  transform: translateY(-1px);
}

.experience-project-result {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 24px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .98),
      rgba(241, 247, 252, .96)
    );
  box-shadow: 0 16px 38px rgba(15, 23, 42, .09);
}

.experience-project-result-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.experience-project-result-kicker {
  display: block;
  margin-bottom: 5px;
  color: #0a66a9;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-project-result h3 {
  margin: 0;
  color: #111827;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -.025em;
}

.experience-project-result-top p {
  margin: 7px 0 0;
  color: #64748b;
  font-size: .85rem;
}

.experience-project-result-top p strong {
  color: #334155;
}

.experience-project-op {
  flex-shrink: 0;
  min-width: 84px;
  padding: 10px 13px;
  border-radius: 16px;
  background: #eaf4fb;
  text-align: center;
}

.experience-project-op small {
  display: block;
  color: #64748b;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.experience-project-op strong {
  display: block;
  margin-top: 2px;
  color: #073763;
  font-size: 1.05rem;
  font-weight: 900;
}

.experience-project-document {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  margin-top: 17px;
  padding: 13px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 17px;
  background: rgba(255, 255, 255, .88);
}

.experience-project-document-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 54px;
  border-radius: 12px;
  background: #0a66a9;
  color: #ffffff;
  font-size: .67rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.experience-project-document-icon.is-empty {
  background: #e2e8f0;
  color: #64748b;
}

.experience-project-document-copy {
  min-width: 0;
}

.experience-project-document-copy span {
  display: block;
  color: #64748b;
  font-size: .67rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.experience-project-document-copy strong {
  display: block;
  margin-top: 3px;
  overflow: hidden;
  color: #111827;
  font-size: .87rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.experience-project-document-copy small {
  display: block;
  margin-top: 3px;
  color: #64748b;
  font-size: .72rem;
}

.experience-project-document-btn {
  flex-shrink: 0;
  padding: 9px 13px;
  border: 1px solid rgba(10, 102, 169, .25);
  border-radius: 12px;
  background: #ffffff;
  color: #0a66a9;
  text-decoration: none;
  font-size: .75rem;
  font-weight: 800;
}

.experience-project-document-btn:hover {
  background: #edf7fd;
  color: #07538a;
}

.experience-project-status-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  min-height: 54px;
  margin-top: 16px;
  padding: 12px 17px;
  border-radius: 15px;
  background: #0a66a9;
  color: #ffffff;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 850;
  transition:
    transform .2s ease,
    background .2s ease;
}

.experience-project-status-btn:hover {
  background: #07538a;
  color: #ffffff;
  transform: translateY(-1px);
}

.experience-internal-access {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 14px;
  color: #94a3b8;
  font-size: .71rem;
}

.experience-internal-access a {
  color: #64748b;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.experience-project-empty {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 18px;
  padding: 15px;
  border: 1px dashed rgba(15, 23, 42, .16);
  border-radius: 18px;
  background: rgba(248, 250, 252, .78);
}

.experience-project-empty-mark {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eaf4fb;
  color: #0a66a9;
  font-size: .72rem;
  font-weight: 900;
}

.experience-project-empty strong {
  color: #111827;
  font-size: .86rem;
}

.experience-project-empty p {
  margin: 3px 0 0;
  color: #64748b;
  font-size: .76rem;
  line-height: 1.4;
}

@media (max-width: 540px) {
  .experience-op-search-row {
    grid-template-columns: 1fr;
  }

  .experience-project-result {
    padding: 15px;
    border-radius: 20px;
  }

  .experience-project-document {
    grid-template-columns: 45px minmax(0, 1fr);
  }

  .experience-project-document-icon {
    width: 45px;
    height: 49px;
  }

  .experience-project-document-btn {
    grid-column: 1 / -1;
    width: 100%;
    text-align: center;
  }

  .experience-internal-access {
    flex-direction: column;
    gap: 2px;
  }
}

/* =========================================================
   MI PROYECTO · PREFALUM EXPERIENCE V2
========================================================= */
.project-experience {
  background: #f3f6f8;
}

.project-experience-nav .experience-nav-inner {
  background: rgba(5, 25, 40, .68);
}

.project-back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.project-experience-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 20px 54px;
  background:
    linear-gradient(125deg, rgba(3, 18, 31, .92), rgba(7, 70, 112, .72)),
    url('/static/fondo_publico.jpg') center / cover no-repeat;
}

.project-experience-ambient {
  position: absolute;
  inset: -8%;
  background:
    radial-gradient(circle at 76% 24%, rgba(255,255,255,.26), transparent 22%),
    linear-gradient(110deg, transparent 28%, rgba(255,255,255,.09) 50%, transparent 70%);
  filter: blur(10px);
  animation: projectAmbient 14s ease-in-out infinite alternate;
}

.stage-aprobacion .project-experience-hero {
  background:
    linear-gradient(125deg, rgba(4, 30, 50, .91), rgba(10, 102, 169, .66)),
    url('/static/fondo_publico.jpg') center / cover no-repeat;
}

.stage-produccion .project-experience-hero {
  background:
    linear-gradient(125deg, rgba(2, 22, 39, .94), rgba(7, 77, 125, .74)),
    url('/static/fondo_publico.jpg') center / cover no-repeat;
}

.stage-terminada .project-experience-hero {
  background:
    linear-gradient(125deg, rgba(9, 39, 57, .91), rgba(35, 111, 148, .66)),
    url('/static/fondo_publico.jpg') center / cover no-repeat;
}

@keyframes projectAmbient {
  from { transform: translate3d(-2%, -1%, 0) scale(1.02); }
  to { transform: translate3d(4%, 3%, 0) scale(1.08); }
}

.project-experience-shell,
.project-experience-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.project-experience-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 26px;
  align-items: stretch;
}

.project-welcome,
.project-stage-card {
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 38px;
  background: rgba(5, 25, 42, .34);
  box-shadow: 0 32px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.project-welcome {
  padding: clamp(34px, 6vw, 72px);
  color: #fff;
}

.project-kicker {
  color: rgba(255,255,255,.64);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.project-greeting {
  margin: 34px 0 5px;
  color: rgba(255,255,255,.68);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.project-welcome h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 650;
  line-height: .95;
  letter-spacing: -.065em;
  text-wrap: balance;
}

.project-client-name {
  margin: 25px 0 0;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 850;
}

.project-main-message {
  max-width: 690px;
  margin: 13px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
  line-height: 1.7;
}

.project-current-state {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 31px;
}

.project-current-state-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #8fd7ff;
  box-shadow: 0 0 0 8px rgba(143,215,255,.12);
}

.stage-aprobacion .project-current-state-dot { background: #dceeff; }
.stage-terminada .project-current-state-dot { background: #c7f0dc; }

.project-current-state small,
.project-current-state strong {
  display: block;
}

.project-current-state small {
  color: rgba(255,255,255,.54);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-current-state strong {
  margin-top: 3px;
  font-size: .98rem;
}

.project-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 34px;
}

.project-primary-action,
.project-secondary-action {
  min-height: 52px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease;
}

.project-primary-action {
  background: #fff;
  color: #073763;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.project-secondary-action {
  border: 1px solid rgba(255,255,255,.30);
  background: rgba(255,255,255,.08);
  color: #fff;
}

.project-primary-action:hover,
.project-secondary-action:hover {
  transform: translateY(-2px);
}

.project-primary-action.is-disabled {
  opacity: .58;
  pointer-events: none;
}

.project-stage-card {
  padding: clamp(28px, 4vw, 45px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.project-stage-card-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.project-stage-card-top span {
  color: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.project-stage-card-top strong {
  font-size: clamp(3.7rem, 7vw, 6.5rem);
  font-weight: 320;
  line-height: .8;
  letter-spacing: -.07em;
}

.project-progress-track {
  height: 4px;
  margin-top: 28px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.17);
}

.project-progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.project-stage-card > p {
  margin: 24px 0 0;
  color: rgba(255,255,255,.72);
  line-height: 1.65;
}

.project-stage-mini-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.15);
}

.project-stage-mini-info small,
.project-stage-mini-info strong {
  display: block;
}

.project-stage-mini-info small {
  color: rgba(255,255,255,.48);
  font-size: .64rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-stage-mini-info strong {
  margin-top: 5px;
  overflow: hidden;
  font-size: .88rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-story-section,
.project-plan-section,
.project-care-section {
  padding: 105px 20px;
}

.project-story-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(10,102,169,.08), transparent 30%),
    #fff;
}

.project-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
}

.project-section-heading h2,
.project-plan-copy h2,
.project-brand-experience h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 690;
  line-height: .98;
  letter-spacing: -.055em;
}

.project-section-heading > p {
  max-width: 430px;
  margin: 0;
  color: #66717d;
  line-height: 1.65;
}

.project-story-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  margin-top: 64px;
}

.project-story-step {
  position: relative;
  min-height: 190px;
  padding: 0 25px 0 0;
}

.project-story-step::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 48px;
  right: 0;
  height: 1px;
  background: rgba(11,22,34,.13);
}

.project-story-step:last-child::before { display: none; }
.project-story-step.is-completed::before { background: rgba(10,102,169,.58); }

.project-story-marker {
  position: relative;
  z-index: 2;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(11,22,34,.14);
  border-radius: 50%;
  background: #fff;
  color: #8a96a2;
  font-size: .77rem;
  font-weight: 900;
}

.project-story-step.is-completed .project-story-marker,
.project-story-step.is-current .project-story-marker {
  border-color: #0a66a9;
  background: #0a66a9;
  color: #fff;
  box-shadow: 0 0 0 8px rgba(10,102,169,.08);
}

.project-story-step.is-current .project-story-marker {
  animation: projectCurrent 2.4s ease-in-out infinite;
}

@keyframes projectCurrent {
  50% { box-shadow: 0 0 0 14px rgba(10,102,169,.04); }
}

.project-story-step small {
  display: block;
  margin-top: 25px;
  color: #97a2ad;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-story-step h3 {
  margin: 7px 0 0;
  font-size: 1.14rem;
  font-weight: 800;
}

.project-story-step p {
  margin: 9px 0 0;
  color: #0a66a9;
  font-size: .8rem;
  font-weight: 750;
}

.project-plan-section {
  background: #edf2f6;
}

.project-plan-panel {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 40px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 26px 75px rgba(21,48,74,.12);
}

.project-plan-copy {
  padding: clamp(34px, 6vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-plan-copy p {
  max-width: 590px;
  margin: 24px 0 0;
  color: #66717d;
  font-size: 1.04rem;
  line-height: 1.7;
}

.project-plan-button {
  width: fit-content;
  min-height: 54px;
  margin-top: 31px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: #0a66a9;
  color: #fff;
  text-decoration: none;
  font-weight: 850;
  box-shadow: 0 16px 38px rgba(10,102,169,.22);
}

.project-plan-button.is-disabled {
  background: #dce4ea;
  color: #75818d;
  box-shadow: none;
}

.project-document-name {
  margin-top: 15px;
  color: #8a96a2;
  font-size: .73rem;
}

/* =========================================================
   MI PROYECTO · PLANO SOBRE MESA DE PIEDRA
========================================================= */

.project-plan-visual {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 54px 42px 62px;

  background:
    radial-gradient(
      circle at 20% 10%,
      rgba(255, 255, 255, .92),
      transparent 32%
    ),
    radial-gradient(
      circle at 88% 85%,
      rgba(161, 174, 183, .20),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #e7e8e6 0%,
      #cfd3d3 48%,
      #b8bfc1 100%
    );
}


/* Vetas suaves de la superficie */
.project-plan-visual::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: -10%;
  pointer-events: none;

  background:
    linear-gradient(
      118deg,
      transparent 0 18%,
      rgba(96, 109, 116, .10) 18.4%,
      transparent 19.1% 39%,
      rgba(255, 255, 255, .34) 39.5%,
      transparent 40.3% 67%,
      rgba(105, 118, 124, .08) 67.5%,
      transparent 68.2%
    ),
    linear-gradient(
      25deg,
      transparent 0 32%,
      rgba(255, 255, 255, .28) 32.5%,
      transparent 33.2% 72%,
      rgba(91, 105, 112, .08) 72.5%,
      transparent 73.3%
    );

  opacity: .75;
  transform: rotate(-3deg) scale(1.08);
}


/* Sombra de contacto debajo del papel */
.project-plan-visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 18%;
  right: 14%;
  bottom: 8%;
  height: 56px;
  border-radius: 50%;
  pointer-events: none;

  background:
    radial-gradient(
      ellipse at center,
      rgba(20, 28, 33, .36) 0%,
      rgba(20, 28, 33, .16) 42%,
      transparent 73%
    );

  filter: blur(13px);
  transform: rotate(2deg);
}

.project-plan-sheet {
  position: relative;
  z-index: 2;
  width: min(72%, 440px);
  aspect-ratio: 1 / 1.28;
  padding: 34px;
  border-radius: 12px;
  background:
    repeating-linear-gradient(0deg, transparent 0, transparent 22px, rgba(10,102,169,.055) 23px),
    repeating-linear-gradient(90deg, transparent 0, transparent 22px, rgba(10,102,169,.055) 23px),
    #fff;
  box-shadow: 0 35px 70px rgba(0,0,0,.28);
  transform: rotate(4deg);
}

.project-plan-sheet-brand,
.project-plan-sheet-title,
.project-plan-sheet b {
  display: block;
  color: #0a66a9;
}

.project-plan-sheet-brand { font-size: .65rem; font-weight: 950; letter-spacing: .14em; }
.project-plan-sheet-title { margin-top: 8px; font-size: .75rem; font-weight: 850; }
.project-plan-sheet b { position: absolute; left: 34px; bottom: 30px; font-size: .82rem; }

.project-plan-sheet .line {
  position: absolute;
  display: block;
  border: 2px solid rgba(10,102,169,.34);
}

.project-plan-sheet .line-a { inset: 25% 18% 51% 18%; }
.project-plan-sheet .line-b { inset: 48% 32% 25% 13%; }
.project-plan-sheet .line-c { width: 21%; height: 28%; right: 15%; bottom: 23%; }
.project-plan-sheet .line-d { width: 38%; height: 2px; left: 20%; top: 42%; border-width: 1px 0 0; }

.project-plan-visual.is-pending .project-plan-sheet { opacity: .44; filter: grayscale(.4); }

.project-care-section {
  background: #fff;
}

.project-experience-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
  margin-top: 56px;
}

.project-experience-card {
  min-height: 340px;
  padding: 31px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(11,22,34,.10);
  border-radius: 30px;
  background: linear-gradient(145deg, #fff, #f2f6f9);
  box-shadow: 0 18px 52px rgba(20,48,74,.08);
}

.project-experience-card.is-featured {
  background: linear-gradient(145deg, #06233d, #0a66a9);
  color: #fff;
}

.project-experience-card > span {
  color: #0a66a9;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .13em;
}

.project-experience-card.is-featured > span { color: rgba(255,255,255,.64); }

.project-experience-card h3 {
  margin: auto 0 0;
  font-size: clamp(1.6rem, 2.5vw, 2.25rem);
  font-weight: 720;
  letter-spacing: -.04em;
}

.project-experience-card p {
  margin: 14px 0 0;
  color: #66717d;
  line-height: 1.6;
}

.project-experience-card.is-featured p { color: rgba(255,255,255,.72); }

.project-experience-card a {
  margin-top: 25px;
  color: #0a66a9;
  text-decoration: none;
  font-weight: 850;
}

.project-experience-card.is-featured a { color: #fff; }

.project-brand-experience {
  padding: 80px 20px;
  background: #081722;
  color: #fff;
}

.project-brand-experience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.project-brand-experience-grid > div {
  min-height: 320px;
  padding: clamp(30px, 5vw, 54px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  background: rgba(255,255,255,.055);
}

.project-brand-experience small {
  color: rgba(255,255,255,.48);
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-brand-experience h2 {
  margin-top: 14px;
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.project-brand-experience h2 span { color: rgba(255,255,255,.48); }
.project-brand-experience p { max-width: 560px; margin: 17px 0 0; color: rgba(255,255,255,.64); line-height: 1.65; }
.project-experience-footer { padding-top: 68px; }

@media (max-width: 900px) {
  .project-experience-shell,
  .project-plan-panel,
  .project-brand-experience-grid {
    grid-template-columns: 1fr;
  }

  .project-stage-card { min-height: 310px; }
  .project-story-line { grid-template-columns: 1fr 1fr; gap: 34px 0; }
  .project-story-step:nth-child(2)::before { display: none; }
  .project-experience-cards { grid-template-columns: 1fr; }
  .project-plan-visual { min-height: 500px; }
}

@media (max-width: 640px) {
  .project-experience-hero { padding: 92px 10px 20px; }
  .project-welcome,
  .project-stage-card { border-radius: 28px; }
  .project-welcome { padding: 30px 23px; }
  .project-welcome h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .project-hero-actions { flex-direction: column; }
  .project-primary-action,
  .project-secondary-action { width: 100%; }
  .project-stage-mini-info { grid-template-columns: 1fr; }
  .project-story-section,
  .project-plan-section,
  .project-care-section { padding: 76px 12px; }
  .project-section-heading { display: block; }
  .project-section-heading > p { margin-top: 17px; }
  .project-story-line { grid-template-columns: 1fr; }
  .project-story-step { min-height: 92px; display: grid; grid-template-columns: 52px 1fr; gap: 15px; padding: 0; }
  .project-story-step::before { top: 48px; left: 24px; right: auto; width: 1px; height: calc(100% - 26px); }
  .project-story-step:last-child::before { display: none; }
  .project-story-step:nth-child(2)::before { display: block; }
  .project-story-step small { margin-top: 3px; }
  .project-story-step h3 { margin-top: 4px; }
  .project-plan-panel { min-height: 0; border-radius: 28px; }
  .project-plan-copy { padding: 31px 24px; }
  .project-plan-button { width: 100%; }
  .project-plan-visual { min-height: 390px; }
  .project-plan-sheet { width: 72%; padding: 24px; }
  .project-experience-card { min-height: 300px; border-radius: 26px; }
  .project-brand-experience { padding: 58px 12px; }
  .project-brand-experience-grid > div { min-height: 270px; border-radius: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .project-experience-ambient,
  .project-story-step.is-current .project-story-marker { animation: none; }
}


/* =========================================================
   PREFALUM EXPERIENCE
   EXPERIENCIA MÓVIL TIPO PASE DIGITAL
   Solo se activa hasta 768 px.
========================================================= */

/* En computadora no aparece la versión móvil. */
.project-mobile-experience {
  display: none;
}


/* =========================================================
   TABLET Y TELÉFONO
========================================================= */

@media (max-width: 768px) {

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
  }

  body.project-experience {
    overflow-x: hidden;
  }


  /* -------------------------------------------------------
     NAVEGACIÓN MÓVIL
  -------------------------------------------------------- */

  .project-experience-nav {
    position: sticky;
    top: 8px;
    z-index: 1000;
    width: calc(100% - 24px);
    margin: 8px 12px 0;
    border-radius: 24px;
    background:
      linear-gradient(
        135deg,
        rgba(4, 34, 55, 0.94),
        rgba(7, 55, 84, 0.88)
      );
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow:
      0 14px 38px rgba(3, 22, 35, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .project-experience-nav .experience-nav-inner {
    min-height: 68px;
    padding: 8px 9px 8px 17px;
    gap: 12px;
  }

  .project-experience-nav .experience-header-logo {
    width: auto;
    height: 34px;
    max-width: 145px;
  }

  .project-experience-nav .experience-nav-links {
    display: none;
  }

  .project-back-btn {
    min-height: 48px;
    padding: 0 19px;
    border-radius: 999px;
    font-size: 0.82rem;
    white-space: nowrap;
  }


  /* -------------------------------------------------------
     HERO GENERAL
  -------------------------------------------------------- */

  .project-experience-hero {
    min-height: auto;
    padding:
      16px
      0
      38px;
    margin-top: -84px;
  }

  .project-experience-ambient {
    opacity: 0.82;
  }

  /* Oculta únicamente el hero de escritorio. */
  .project-desktop-hero {
    display: none !important;
  }

  /* Activa la experiencia móvil. */
  .project-mobile-experience {
    position: relative;
    z-index: 3;
    display: block;
    width: 100%;
    padding:
      calc(92px + env(safe-area-inset-top))
      14px
      0;
  }


  /* -------------------------------------------------------
     PASE PRINCIPAL
  -------------------------------------------------------- */

  .project-mobile-pass {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: calc(100svh - 132px);
    padding:
      24px
      22px
      22px;
    border-radius: 34px;
    color: #ffffff;
    background:
      radial-gradient(
        circle at 88% 15%,
        rgba(102, 184, 227, 0.25),
        transparent 34%
      ),
      radial-gradient(
        circle at 5% 85%,
        rgba(52, 151, 207, 0.20),
        transparent 35%
      ),
      linear-gradient(
        145deg,
        rgba(4, 39, 63, 0.97),
        rgba(7, 79, 116, 0.91)
      );
    border: 1px solid rgba(255, 255, 255, 0.19);
    box-shadow:
      0 28px 70px rgba(1, 22, 37, 0.34),
      inset 0 1px 0 rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(19px);
    -webkit-backdrop-filter: blur(19px);
  }

  .project-mobile-pass::before {
    content: "";
    position: absolute;
    top: -95px;
    right: -80px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background:
      rgba(255, 255, 255, 0.08);
    filter: blur(1px);
  }

  .project-mobile-pass::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 155px;
    height: 1px;
    background:
      linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.20),
        transparent
      );
  }

  .project-mobile-pass > * {
    position: relative;
    z-index: 2;
  }

  .project-mobile-pass-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
  }

  .project-mobile-pass-head div {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .project-mobile-pass-head small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .project-mobile-pass-head strong {
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 800;
  }

  .project-mobile-stage-number {
    display: grid;
    place-items: center;
    width: 43px;
    height: 43px;
    flex: 0 0 43px;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.17);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.08em;
  }

  .project-mobile-pass-copy {
    margin-top: clamp(55px, 9vh, 90px);
  }

  .project-mobile-hello {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.18rem;
    font-weight: 400;
  }

  .project-mobile-pass-copy h1 {
    max-width: 620px;
    margin: 0;
    color: #ffffff;
    font-size:
      clamp(
        3rem,
        13.5vw,
        4.55rem
      );
    line-height: 0.96;
    letter-spacing: -0.065em;
    text-wrap: balance;
  }

  .project-mobile-message {
    margin:
      27px
      0
      0;
    color: rgba(255, 255, 255, 0.77);
    font-size: 1rem;
    line-height: 1.65;
  }

  .project-mobile-status {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .project-mobile-status-light {
    position: relative;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border-radius: 50%;
    background: #d7f3ff;
    box-shadow:
      0 0 0 8px rgba(132, 211, 246, 0.12),
      0 0 22px rgba(132, 211, 246, 0.55);
  }

  .project-mobile-status div {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .project-mobile-status small {
    color: rgba(255, 255, 255, 0.53);
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .project-mobile-status strong {
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.25;
  }


  /* -------------------------------------------------------
     BOTÓN PRINCIPAL
  -------------------------------------------------------- */

  .project-mobile-main-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 78px;
    margin-top: 31px;
    padding:
      15px
      17px
      15px
      20px;
    border-radius: 24px;
    color: #073a5d;
    background: #ffffff;
    text-decoration: none;
    box-shadow:
      0 16px 34px rgba(0, 22, 37, 0.20);
  }

  .project-mobile-main-action span:first-child {
    display: flex;
    flex-direction: column;
    gap: 3px;
    color: #073a5d;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.25;
  }

  .project-mobile-main-action small {
    color: #638096;
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .project-mobile-main-action b {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    border-radius: 50%;
    color: #ffffff;
    background: #0c70ae;
    font-size: 1.1rem;
  }

  .project-mobile-main-action.is-disabled {
    opacity: 0.65;
  }

  .project-mobile-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 58px;
    margin-top: 13px;
    border-radius: 20px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-decoration: none;
    font-size: 0.93rem;
    font-weight: 800;
  }


  /* -------------------------------------------------------
     TARJETA DE PROGRESO
  -------------------------------------------------------- */

  .project-mobile-progress-card {
    margin-top: 14px;
    padding: 24px 21px;
    border-radius: 29px;
    color: #ffffff;
    background:
      linear-gradient(
        145deg,
        rgba(7, 48, 75, 0.92),
        rgba(8, 94, 137, 0.78)
      );
    border: 1px solid rgba(255, 255, 255, 0.17);
    box-shadow:
      0 18px 45px rgba(1, 26, 41, 0.22);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .project-mobile-progress-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
  }

  .project-mobile-progress-head > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
  }

  .project-mobile-progress-head small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.65rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .project-mobile-progress-head strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 1rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .project-mobile-progress-head > span {
    color: #ffffff;
    font-size: 2.55rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -0.06em;
  }

  .project-mobile-progress-track {
    position: relative;
    overflow: hidden;
    height: 5px;
    margin-top: 23px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.19);
  }

  .project-mobile-progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #ffffff;
  }

  .project-mobile-progress-card > p {
    margin:
      20px
      0
      0;
    color: rgba(255, 255, 255, 0.70);
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .project-mobile-progress-meta {
    display: grid;
    grid-template-columns:
      minmax(0, 1fr)
      auto;
    gap: 18px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .project-mobile-progress-meta div {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
  }

  .project-mobile-progress-meta small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.59rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .project-mobile-progress-meta strong {
    overflow: hidden;
    color: #ffffff;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .project-mobile-scroll {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: max-content;
    margin:
      25px
      auto
      0;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 800;
  }


  /* -------------------------------------------------------
     RECORRIDO VERTICAL
  -------------------------------------------------------- */

  .project-story-section {
    padding:
      70px
      0
      58px;
  }

  .project-story-section .project-experience-container {
    padding:
      0
      20px;
  }

  .project-story-section .project-section-heading {
    display: block;
    margin-bottom: 38px;
  }

  .project-story-section .project-section-heading h2 {
    max-width: 330px;
    margin-top: 12px;
    font-size: clamp(2.35rem, 11vw, 3.3rem);
    line-height: 0.99;
    letter-spacing: -0.055em;
  }

  .project-story-section .project-section-heading > p {
    max-width: 330px;
    margin:
      18px
      0
      0;
    font-size: 1rem;
    line-height: 1.55;
  }

  .project-story-line {
    display: block;
    position: relative;
    padding-left: 7px;
  }

  .project-story-step {
    position: relative;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 17px;
    min-height: 105px;
    padding: 0;
  }

  .project-story-step::before {
    content: "";
    position: absolute;
    top: 46px;
    bottom: 0;
    left: 23px;
    width: 1px;
    background: #d6e0e7;
  }

  .project-story-step:last-child::before {
    display: none;
  }

  .project-story-marker {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    margin: 0;
    border-radius: 50%;
    color: #8293a0;
    background: #ffffff;
    border: 1px solid #d8e1e7;
    font-size: 0.76rem;
    font-weight: 900;
  }

  .project-story-step > div:last-child {
    padding:
      4px
      0
      27px;
  }

  .project-story-step small {
    display: block;
    margin-bottom: 5px;
    color: #95a2ac;
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  .project-story-step h3 {
    margin: 0;
    color: #0c1721;
    font-size: 1.18rem;
    line-height: 1.25;
  }

  .project-story-step.is-completed .project-story-marker,
  .project-story-step.is-current .project-story-marker {
    color: #ffffff;
    background: #0c75b7;
    border-color: #0c75b7;
    box-shadow:
      0 0 0 7px rgba(12, 117, 183, 0.09);
  }

  .project-story-step.is-completed::before {
    background: #0c75b7;
  }

  .project-story-step.is-current h3 {
    color: #0870ad;
  }

  .project-story-current-label {
    display: inline-flex;
    margin:
      9px
      0
      0;
    padding:
      6px
      10px;
    border-radius: 999px;
    color: #0870ad;
    background: #e9f5fc;
    font-size: 0.67rem;
    font-weight: 900;
  }


  /* -------------------------------------------------------
     PLANO MÓVIL
  -------------------------------------------------------- */

  .project-plan-section {
    padding:
      28px
      13px
      64px;
  }

  .project-plan-section .project-experience-container {
    padding: 0;
  }

  .project-plan-panel {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 31px;
  }

  .project-plan-copy {
    order: 1;
    padding:
      35px
      27px
      29px;
  }

  .project-plan-copy h2 {
    margin-top: 12px;
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
  }

  .project-plan-copy p {
    margin-top: 22px;
    font-size: 1rem;
    line-height: 1.65;
  }

  .project-plan-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 61px;
    margin-top: 26px;
    border-radius: 999px;
  }

  .project-document-name {
    display: block;
    overflow: hidden;
    margin-top: 15px;
    color: #8a98a3;
    font-size: 0.7rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .project-plan-visual {
    order: 2;
    min-height: 455px;
    padding:
      23px
      25px
      25px;
  }

  .project-plan-sheet {
    width: 100%;
    min-height: 405px;
    transform: rotate(2deg);
  }


  /* -------------------------------------------------------
     ACOMPAÑAMIENTO COMPACTO
  -------------------------------------------------------- */

  .project-care-section {
    padding:
      67px
      15px
      64px;
  }

  .project-care-section .project-experience-container {
    padding: 0;
  }

  .project-care-section .project-section-heading {
    display: block;
    padding:
      0
      7px;
    margin-bottom: 29px;
  }

  .project-care-section .project-section-heading h2 {
    margin-top: 12px;
    font-size: clamp(2.4rem, 11vw, 3.3rem);
    line-height: 1;
    letter-spacing: -0.055em;
  }

  .project-care-section .project-section-heading > p {
    margin:
      16px
      0
      0;
    line-height: 1.55;
  }

  .project-experience-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .project-experience-card {
    position: relative;
    min-height: 0;
    padding:
      25px
      23px
      23px
      71px;
    border-radius: 24px;
  }

  .project-experience-card > span {
    position: absolute;
    top: 27px;
    left: 22px;
    display: grid;
    place-items: center;
    width: 31px;
    height: 31px;
    border-radius: 50%;
    color: #0871ae;
    background: #edf7fc;
    font-size: 0.61rem;
  }

  .project-experience-card h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.15;
  }

  .project-experience-card p {
    margin:
      10px
      0
      0;
    font-size: 0.91rem;
    line-height: 1.52;
  }

  .project-experience-card a {
    display: inline-flex;
    margin-top: 15px;
    font-size: 0.85rem;
  }

  .project-experience-card.is-featured > span {
    color: #0b4b71;
    background: rgba(255, 255, 255, 0.88);
  }


  /* -------------------------------------------------------
     MARCAS
  -------------------------------------------------------- */

  .project-brand-experience {
    padding:
      52px
      14px;
  }

  .project-brand-experience-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 0;
  }

  .project-brand-experience-grid > div {
    min-height: 0;
    padding:
      34px
      27px;
    border-radius: 25px;
  }

  .project-brand-experience-grid h2 {
    margin-top: 12px;
    font-size: 2rem;
    line-height: 1.04;
    letter-spacing: -0.05em;
  }

  .project-brand-experience-grid p {
    margin-top: 15px;
    font-size: 0.92rem;
    line-height: 1.55;
  }


  /* -------------------------------------------------------
     FOOTER MÓVIL
  -------------------------------------------------------- */

  .project-experience-footer {
    padding:
      47px
      21px
      calc(44px + env(safe-area-inset-bottom));
  }

  .project-experience-footer .experience-container {
    padding: 0;
  }

  .project-experience-footer .experience-footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .project-experience-footer .experience-footer-brand img {
    width: 126px;
  }

  .project-experience-footer .experience-footer-brand p {
    margin-top: 13px;
    font-size: 0.93rem;
  }

  .project-experience-footer .experience-footer-links {
    display: grid;
    gap: 14px;
  }

  .project-experience-footer .experience-footer-meta {
    display: grid;
    gap: 11px;
    font-size: 0.81rem;
  }

}


/* =========================================================
   TELÉFONOS MUY PEQUEÑOS
========================================================= */

@media (max-width: 390px) {

  .project-experience-nav {
    width: calc(100% - 18px);
    margin-left: 9px;
    margin-right: 9px;
  }

  .project-experience-nav .experience-nav-inner {
    padding-left: 13px;
  }

  .project-experience-nav .experience-brand {
    width: 125px;
    min-width: 125px;
  }

  .project-experience-nav .experience-header-logo {
    width: auto;
    height: 29px;
    max-width: 125px;
  }

  .project-experience-nav .experience-brand-discover {
    font-size: .52rem;
  }

  .project-back-btn {
    min-height: 45px;
    padding:
      0
      15px;
    font-size: 0.75rem;
  }

  .project-mobile-experience {
    padding-left: 9px;
    padding-right: 9px;
  }

  .project-mobile-pass {
    padding:
      22px
      19px
      19px;
    border-radius: 30px;
  }

  .project-mobile-pass-copy h1 {
    font-size: clamp(2.75rem, 13.4vw, 3.8rem);
  }

  .project-mobile-pass-copy {
    margin-top: 48px;
  }

  .project-mobile-message {
    font-size: 0.94rem;
  }

  .project-mobile-main-action span:first-child {
    font-size: 0.91rem;
  }

  .project-plan-copy {
    padding:
      32px
      23px
      26px;
  }

}


/* =========================================================
   CORRECCIÓN FINAL MÓVIL · SAFARI IOS
   Evita duplicados visuales, reduce la altura del pase
   y mantiene todos los botones visibles.
========================================================= */

@media (max-width: 768px) {

  /* Safari estaba duplicando visualmente la tarjeta debido
     a la mezcla de animación, transparencia y backdrop-filter. */
  .project-experience-ambient {
    display: none !important;
    animation: none !important;
  }

  .project-experience-hero {
    isolation: isolate;
    overflow: hidden;
    background:
      linear-gradient(
        155deg,
        rgba(2, 24, 40, 0.84),
        rgba(7, 72, 108, 0.58)
      ),
      url("/static/fondo_publico.jpg")
      center top / cover no-repeat;
  }

  .project-mobile-experience {
    isolation: isolate;
    transform: none !important;
  }

  /* Tarjeta completamente sólida:
     elimina el contenido fantasma que mostraba Safari detrás. */
  .project-mobile-pass {
    min-height: 0;
    padding: 24px 22px 21px;
    background:
      radial-gradient(
        circle at 92% 5%,
        rgba(86, 166, 211, 0.22),
        transparent 32%
      ),
      linear-gradient(
        150deg,
        #062b46 0%,
        #074f76 100%
      );
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    contain: paint;
  }

  .project-mobile-pass::before {
    opacity: 0.45;
  }

  .project-mobile-pass::after {
    display: none;
  }

  /* Evita también posibles fantasmas en la segunda tarjeta. */
  .project-mobile-progress-card {
    background:
      linear-gradient(
        145deg,
        #073451,
        #08648f
      );
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* El contenido inicial estaba demasiado separado,
     haciendo que la tarjeta fuera excesivamente alta. */
  .project-mobile-pass-copy {
    margin-top: 42px;
  }

  .project-mobile-pass-copy h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 12.4vw, 4rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  .project-mobile-message {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .project-mobile-status {
    margin-top: 24px;
    padding-top: 21px;
  }

  .project-mobile-main-action {
    min-height: 69px;
    margin-top: 25px;
    padding: 12px 14px 12px 18px;
    border-radius: 22px;
  }

  .project-mobile-main-action b {
    width: 39px;
    height: 39px;
    flex-basis: 39px;
  }

  .project-mobile-contact {
    min-height: 53px;
    margin-top: 11px;
  }

  /* Da espacio real antes de la barra inferior de Safari. */
  .project-mobile-scroll {
    margin-bottom: 9px;
  }
}


/* Ajuste específico para iPhone angosto */
@media (max-width: 430px) {

  .project-mobile-pass-copy h1 {
    font-size: clamp(2.65rem, 12vw, 3.65rem);
  }

  .project-mobile-pass-head small {
    font-size: 0.61rem;
    letter-spacing: 0.15em;
  }

  .project-mobile-pass-head strong {
    font-size: 0.84rem;
  }

  .project-mobile-message {
    font-size: 0.93rem;
  }

  .project-mobile-status strong {
    font-size: 0.94rem;
  }

  .project-mobile-main-action span:first-child {
    font-size: 0.91rem;
  }
}


/* iPhone con poca altura útil */
@media (max-width: 430px) and (max-height: 760px) {

  .project-mobile-pass-copy {
    margin-top: 30px;
  }

  .project-mobile-pass-copy h1 {
    font-size: 2.55rem;
  }

  .project-mobile-message {
    margin-top: 17px;
    line-height: 1.48;
  }

  .project-mobile-status {
    margin-top: 19px;
    padding-top: 17px;
  }

  .project-mobile-main-action {
    margin-top: 20px;
  }
}



/* =========================================================
   PREFALUM EXPERIENCE · FICHAS DE VIDRIO GIRATORIAS
========================================================= */

.experience-flip-grid {
  perspective: 1800px;
}

.experience-flip-card {
  --glass-rotate-x: 0deg;
  --glass-rotate-y: 0deg;

  position: relative;
  min-height: 390px;
  perspective: 1500px;
  animation:
    experienceFlipCardEntrance
    .85s
    cubic-bezier(.2, .75, .25, 1)
    both;
}

.experience-flip-card:nth-child(2) {
  animation-delay: .08s;
}

.experience-flip-card:nth-child(3) {
  animation-delay: .16s;
}

.experience-flip-card:nth-child(4) {
  animation-delay: .24s;
}

@keyframes experienceFlipCardEntrance {
  from {
    opacity: 0;
    transform: translateY(38px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.experience-flip-card-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform:
    rotateX(var(--glass-rotate-x))
    rotateY(var(--glass-rotate-y));
  transform-origin: 24px center;
  transition:
    transform
    .82s
    cubic-bezier(.18, .78, .22, 1),
    filter
    .35s
    ease;
}

.experience-flip-card.is-flipped .experience-flip-card-inner {
  transform:
    rotateX(0deg)
    rotateY(-180deg);
}

.experience-flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px 30px 28px 38px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 32px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow:
    0 30px 70px rgba(19, 48, 73, .15),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}

/* =========================================================
   FRENTE
========================================================= */

.experience-flip-front {
  color: #0b1622;
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(125, 195, 232, .27),
      transparent 34%
    ),
    radial-gradient(
      circle at 10% 100%,
      rgba(10, 102, 169, .08),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .92),
      rgba(224, 238, 247, .76)
    );
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.experience-flip-front::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, .38),
      transparent 27%,
      transparent 73%,
      rgba(255, 255, 255, .16)
    );
}

.experience-flip-front::after {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -100px;
  bottom: -125px;
  border: 1px solid rgba(10, 102, 169, .10);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

/* =========================================================
   HERRAJES LATERALES
========================================================= */

.experience-glass-hinge {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 8px;
  display: flex;
  flex-direction: column;
  gap: 92px;
  transform: translateY(-50%);
}

.experience-glass-hinge span {
  position: relative;
  width: 18px;
  height: 44px;
  border-radius: 5px;
  background:
    linear-gradient(
      90deg,
      #909ca5,
      #eef2f4 42%,
      #808d96
    );
  box-shadow:
    2px 3px 8px rgba(20, 38, 52, .22),
    inset 1px 0 rgba(255, 255, 255, .65);
}

.experience-glass-hinge span::before,
.experience-glass-hinge span::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #64717a;
  transform: translateX(-50%);
}

.experience-glass-hinge span::before {
  top: 8px;
}

.experience-glass-hinge span::after {
  bottom: 8px;
}

/* =========================================================
   REFLEJO QUE RECORRE EL VIDRIO
========================================================= */

.experience-glass-reflection {
  position: absolute;
  z-index: 4;
  top: -45%;
  bottom: -45%;
  left: -70%;
  width: 34%;
  pointer-events: none;
  opacity: 0;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .16),
      rgba(255, 255, 255, .58),
      rgba(255, 255, 255, .12),
      transparent
    );
  transform: rotate(15deg);
}

.experience-flip-card:hover .experience-glass-reflection {
  animation:
    experienceGlassReflection
    1.15s
    cubic-bezier(.2, .68, .22, 1)
    both;
}

@keyframes experienceGlassReflection {
  0% {
    left: -70%;
    opacity: 0;
  }

  22% {
    opacity: .68;
  }

  72% {
    opacity: .34;
  }

  100% {
    left: 145%;
    opacity: 0;
  }
}

/* =========================================================
   CONTENIDO DEL FRENTE
========================================================= */

.experience-flip-top {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.experience-flip-label {
  padding: 7px 11px;
  border: 1px solid rgba(10, 102, 169, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  color: #547083;
  font-size: .63rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.experience-flip-front-copy {
  position: relative;
  z-index: 6;
  margin-top: auto;
  padding-top: 48px;
}

.experience-flip-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(10, 102, 169, .15);
  border-radius: 17px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .92),
      rgba(224, 238, 247, .72)
    );
  color: #0a66a9;
  font-size: .83rem;
  font-weight: 950;
  box-shadow:
    0 13px 28px rgba(18, 62, 94, .10),
    inset 0 1px 0 #fff;
}

.experience-flip-front-copy h3 {
  max-width: 480px;
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 720;
  line-height: 1;
  letter-spacing: -.05em;
}

.experience-flip-front-copy p {
  max-width: 440px;
  margin: 15px 0 0;
  color: #62717d;
  line-height: 1.62;
}

.experience-flip-trigger {
  position: relative;
  z-index: 8;
  width: 100%;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 10px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgba(10, 102, 169, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .70);
  color: #073763;
  cursor: pointer;
  font-size: .83rem;
  font-weight: 850;
}

.experience-flip-trigger b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #092b45;
  color: #fff;
  font-size: 1rem;
  transition: transform .35s ease;
}

.experience-flip-trigger:hover b {
  transform: rotate(90deg);
}

/* =========================================================
   REVERSO
========================================================= */

.experience-flip-back {
  color: #fff;
  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(105, 191, 234, .25),
      transparent 35%
    ),
    linear-gradient(
      145deg,
      #06253d,
      #075a85
    );
  transform: rotateY(180deg);
}

.experience-flip-back::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      125deg,
      rgba(255, 255, 255, .11),
      transparent 30%,
      transparent 70%,
      rgba(255, 255, 255, .05)
    );
}

.experience-flip-back-head {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.experience-flip-back-head > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.experience-flip-back-head span {
  color: rgba(255, 255, 255, .48);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .16em;
}

.experience-flip-back-head small {
  color: #fff;
  font-size: .84rem;
  font-weight: 850;
}

.experience-flip-close {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.experience-flip-back-copy {
  position: relative;
  z-index: 5;
  margin-top: 28px;
}

.experience-flip-back-copy h3 {
  max-width: 440px;
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 680;
  line-height: 1.04;
  letter-spacing: -.045em;
}

.experience-flip-options {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.experience-flip-options li {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .80);
  font-size: .82rem;
}

.experience-flip-options li span {
  color: rgba(255, 255, 255, .39);
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.experience-flip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 25px;
}

.experience-flip-chips a {
  min-height: 37px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .075);
  color: rgba(255, 255, 255, .86);
  text-decoration: none;
  font-size: .73rem;
  font-weight: 750;
  transition:
    background .2s ease,
    border-color .2s ease;
}

.experience-flip-chips a:hover {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .14);
}

.experience-flip-main-action {
  position: relative;
  z-index: 6;
  width: 100%;
  min-height: 55px;
  margin-top: auto;
  padding: 0 10px 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #073763;
  cursor: pointer;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .17);
}

.experience-flip-main-action span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a66a9;
  color: #fff;
}

/* =========================================================
   PERSONALIDAD MUY SUTIL DE CADA FICHA
========================================================= */

.experience-flip-card-project .experience-flip-front {
  background:
    radial-gradient(circle at 88% 12%, rgba(92, 177, 224, .31), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(219, 237, 248, .78));
}

.experience-flip-card-inspiration .experience-flip-front {
  background:
    radial-gradient(circle at 88% 12%, rgba(160, 204, 222, .32), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(231, 241, 244, .78));
}

.experience-flip-card-products .experience-flip-front {
  background:
    radial-gradient(circle at 88% 12%, rgba(132, 183, 209, .29), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(223, 235, 242, .78));
}

.experience-flip-card-contact .experience-flip-front {
  background:
    radial-gradient(circle at 88% 12%, rgba(109, 185, 224, .29), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(226, 239, 247, .78));
}

/* =========================================================
   TABLET Y CELULAR
========================================================= */

@media (max-width: 900px) {

  .experience-flip-card {
    min-height: 410px;
  }

  .experience-flip-card-inner {
    transform-origin: center center;
  }

  .experience-flip-face {
    padding: 27px 25px 25px 34px;
    border-radius: 29px;
  }
}

@media (max-width: 640px) {

  .experience-flip-grid {
    gap: 14px;
  }

  .experience-flip-card {
    min-height: 405px;
  }

  .experience-flip-face {
    padding: 25px 22px 22px 32px;
    border-radius: 27px;
  }

  /*
    En teléfono no usamos backdrop-filter sobre la ficha.
    Evita errores gráficos en Safari iOS.
  */
  .experience-flip-front {
    background:
      radial-gradient(
        circle at 88% 10%,
        rgba(110, 188, 226, .25),
        transparent 33%
      ),
      linear-gradient(
        145deg,
        #f9fcfe,
        #e4f0f7
      );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .experience-glass-hinge {
    left: 7px;
    gap: 82px;
  }

  .experience-glass-hinge span {
    width: 16px;
    height: 40px;
  }

  .experience-flip-front-copy {
    padding-top: 37px;
  }

  .experience-flip-front-copy h3 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .experience-flip-front-copy p {
    font-size: .93rem;
  }

  .experience-flip-trigger {
    min-height: 52px;
    margin-top: 23px;
  }

  .experience-flip-back-copy {
    margin-top: 23px;
  }

  .experience-flip-back-copy h3 {
    font-size: 1.75rem;
  }

  .experience-flip-options {
    margin-top: 20px;
  }

  .experience-flip-options li {
    min-height: 39px;
    font-size: .77rem;
  }

  .experience-flip-chips {
    gap: 7px;
    margin-top: 21px;
  }

  .experience-flip-chips a {
    min-height: 35px;
    padding: 0 11px;
    font-size: .69rem;
  }

  /*
    En celular el reflejo aparece brevemente al tocar,
    no depende del hover.
  */
  .experience-flip-card.is-flipped .experience-glass-reflection {
    animation:
      experienceGlassReflection
      .9s
      ease
      both;
  }
}

/* =========================================================
   ACCESIBILIDAD · MENOS MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .experience-flip-card,
  .experience-glass-reflection {
    animation: none !important;
  }

  .experience-flip-card-inner {
    transition-duration: .01ms;
  }
}

/* =========================================================
   CORRECCIÓN FICHAS DE VIDRIO · VERSIÓN LIMPIA
   Giro central, sin bisagras y sin reverso fantasma
========================================================= */

/* Fondo más profundo para que el vidrio realmente se perciba */
.experience-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(65, 164, 220, .22),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 92%,
      rgba(23, 112, 166, .20),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #041b2c 0%,
      #072d47 48%,
      #061f32 100%
    );
  color: #ffffff;
}

.experience-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      rgba(255,255,255,.035) 34%,
      transparent 58%
    );
}

.experience-intro .experience-container {
  position: relative;
  z-index: 2;
}

.experience-intro .experience-section-kicker {
  color: rgba(158, 217, 250, .88);
}

.experience-intro h2 {
  color: #ffffff;
}

.experience-intro h2 span {
  color: rgba(204, 226, 240, .58);
}

.experience-intro .experience-lead {
  color: rgba(223, 236, 245, .70);
}


/* =========================================================
   ELIMINA COMPLETAMENTE LOS HERRAJES
========================================================= */

.experience-glass-hinge {
  display: none !important;
}


/* =========================================================
   ESTRUCTURA 3D CORREGIDA
========================================================= */

.experience-flip-grid {
  perspective: 2200px;
}

.experience-flip-card {
  min-height: 410px;
  perspective: 2200px;
  isolation: isolate;
}

.experience-flip-card-inner {
  position: absolute;
  inset: 0;

  transform-origin: center center !important;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;

  transform:
    rotateX(0deg)
    rotateY(0deg)
    translateZ(0) !important;

  transition:
    transform
    1.05s
    cubic-bezier(.22, .76, .20, 1),
    filter
    .45s
    ease !important;

  will-change: transform;
}

.experience-flip-card.is-flipped .experience-flip-card-inner {
  transform:
    rotateX(0deg)
    rotateY(180deg)
    translateZ(0) !important;
}


/* =========================================================
   CARAS · EVITA QUE SE VEA EL REVERSO ESPEJADO
========================================================= */

.experience-flip-face {
  position: absolute;
  inset: 0;

  padding: 31px;

  overflow: hidden;
  border-radius: 32px;

  backface-visibility: hidden !important;
  -webkit-backface-visibility: hidden !important;

  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;

  isolation: isolate;

  border:
    1px solid
    rgba(255, 255, 255, .24);

  box-shadow:
    0 28px 70px rgba(0, 8, 18, .30),
    inset 0 1px 0 rgba(255, 255, 255, .30),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.experience-flip-front {
  transform: rotateY(0deg) translateZ(1px) !important;
}

.experience-flip-back {
  transform: rotateY(180deg) translateZ(1px) !important;
}


/* =========================================================
   FRENTE · PLACA DE VIDRIO LIMPIA
========================================================= */

.experience-flip-front,
.experience-flip-card-project .experience-flip-front,
.experience-flip-card-inspiration .experience-flip-front,
.experience-flip-card-products .experience-flip-front,
.experience-flip-card-contact .experience-flip-front {
  color: #ffffff;

  background:
    radial-gradient(
      circle at 82% 12%,
      rgba(118, 205, 249, .18),
      transparent 35%
    ),
    radial-gradient(
      circle at 8% 92%,
      rgba(44, 143, 201, .13),
      transparent 33%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .13),
      rgba(255, 255, 255, .045)
    ) !important;

  backdrop-filter:
    blur(18px)
    saturate(145%);

  -webkit-backdrop-filter:
    blur(18px)
    saturate(145%);
}


/* Línea muy fina en el canto del vidrio */
.experience-flip-front::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  border-radius: inherit;

  background:
    linear-gradient(
      135deg,
      rgba(255,255,255,.34) 0%,
      rgba(255,255,255,.08) 23%,
      transparent 47%,
      rgba(255,255,255,.03) 72%,
      rgba(255,255,255,.16) 100%
    );
}


/* Luz difusa dentro de la placa */
.experience-flip-front::after {
  content: "";
  position: absolute;
  z-index: 1;

  width: 300px;
  height: 300px;

  top: -175px;
  right: -125px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(164, 222, 253, .20),
      transparent 69%
    );

  pointer-events: none;
}


/* =========================================================
   REFLEJO REAL SOBRE EL VIDRIO
========================================================= */

.experience-glass-reflection {
  position: absolute;
  z-index: 3;

  top: -45%;
  bottom: -45%;
  left: -82%;

  width: 38%;

  opacity: 0;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent 0%,
      rgba(255,255,255,.025) 12%,
      rgba(255,255,255,.26) 48%,
      rgba(255,255,255,.07) 68%,
      transparent 100%
    );

  filter: blur(.4px);
  transform: rotate(17deg);
}

.experience-flip-card:hover .experience-glass-reflection {
  animation:
    experienceCleanGlassReflection
    1.45s
    cubic-bezier(.18, .68, .22, 1)
    both;
}

@keyframes experienceCleanGlassReflection {
  0% {
    left: -82%;
    opacity: 0;
  }

  18% {
    opacity: .45;
  }

  55% {
    opacity: .82;
  }

  82% {
    opacity: .30;
  }

  100% {
    left: 142%;
    opacity: 0;
  }
}


/* =========================================================
   CONTENIDO DEL FRENTE EN BLANCO
========================================================= */

.experience-flip-top,
.experience-flip-front-copy,
.experience-flip-trigger {
  position: relative;
  z-index: 5;
}

.experience-flip-front .experience-access-number {
  color: rgba(171, 222, 250, .94);
}

.experience-flip-label {
  border-color: rgba(255, 255, 255, .17);
  background: rgba(255, 255, 255, .075);
  color: rgba(229, 243, 251, .70);
}

.experience-flip-front-copy h3 {
  color: #ffffff;
  text-shadow: 0 5px 25px rgba(0, 13, 25, .20);
}

.experience-flip-front-copy p {
  color: rgba(226, 239, 247, .72);
}


/* Icono transparente, no tarjeta blanca */
.experience-flip-icon {
  border-color: rgba(255, 255, 255, .18);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .13),
      rgba(255, 255, 255, .045)
    );

  color: #d9f2ff;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .20),
    0 15px 35px rgba(0, 13, 25, .16);
}


/* Botón también en vidrio */
.experience-flip-trigger {
  border-color: rgba(255, 255, 255, .18);

  background:
    rgba(255, 255, 255, .075);

  color: #ffffff;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .11);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  transition:
    background .25s ease,
    border-color .25s ease;
}

.experience-flip-trigger:hover {
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .13);
}

.experience-flip-trigger b {
  background: rgba(255, 255, 255, .95);
  color: #083858;
}


/* =========================================================
   PARTE TRASERA · SIN TRANSPARENCIA EXCESIVA
========================================================= */

.experience-flip-back {
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(107, 201, 248, .20),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #05253b 0%,
      #075277 100%
    ) !important;

  box-shadow:
    0 28px 70px rgba(0, 8, 18, .34),
    inset 0 1px 0 rgba(255, 255, 255, .17);
}


/* Evita cualquier mezcla extraña de la cara trasera */
.experience-flip-back::before {
  opacity: .42;
}


/* =========================================================
   COMPUTADORA · SIN INCLINACIÓN EXTRAÑA
========================================================= */

@media (hover: hover) and (pointer: fine) {

  .experience-flip-card-inner {
    transform:
      rotateX(0deg)
      rotateY(0deg)
      translateZ(0) !important;
  }

  .experience-flip-card.is-flipped .experience-flip-card-inner {
    transform:
      rotateX(0deg)
      rotateY(180deg)
      translateZ(0) !important;
  }

  .experience-flip-card:hover {
    z-index: 10;
  }

  .experience-flip-card:hover .experience-flip-face {
    box-shadow:
      0 36px 86px rgba(0, 8, 18, .38),
      inset 0 1px 0 rgba(255, 255, 255, .32),
      inset 0 -1px 0 rgba(255, 255, 255, .07);
  }
}


/* =========================================================
   CELULAR · CORRECCIÓN SAFARI
========================================================= */

@media (max-width: 640px) {

  .experience-flip-card {
    min-height: 410px;

    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }

  .experience-flip-card-inner {
    transform-style: preserve-3d !important;
    -webkit-transform-style: preserve-3d !important;

    transform:
      rotateY(0deg)
      translateZ(0) !important;
  }

  .experience-flip-card.is-flipped .experience-flip-card-inner {
    transform:
      rotateY(180deg)
      translateZ(0) !important;
  }

  .experience-flip-face {
    padding: 25px 23px;

    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;

    transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;

    contain: paint;
  }

  .experience-flip-front {
    transform:
      rotateY(0deg)
      translateZ(2px) !important;

    background:
      radial-gradient(
        circle at 84% 10%,
        rgba(107, 198, 244, .21),
        transparent 34%
      ),
      linear-gradient(
        145deg,
        rgba(14, 71, 105, .88),
        rgba(7, 42, 67, .95)
      ) !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .experience-flip-back {
    transform:
      rotateY(180deg)
      translateZ(2px) !important;

    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  /*
    Safari a veces conserva la cara opuesta.
    Estas reglas la ocultan de forma explícita.
  */
  .experience-flip-card:not(.is-flipped)
  .experience-flip-back {
    visibility: hidden;
    pointer-events: none;
  }

  .experience-flip-card.is-flipped
  .experience-flip-front {
    visibility: hidden;
    pointer-events: none;
  }

  .experience-flip-card.is-flipped
  .experience-flip-back {
    visibility: visible;
    pointer-events: auto;
  }

  .experience-flip-card:not(.is-flipped)
  .experience-flip-front {
    visibility: visible;
    pointer-events: auto;
  }

  .experience-flip-card.is-flipped
  .experience-glass-reflection {
    animation:
      experienceCleanGlassReflection
      1.15s
      ease
      both;
  }
}


/* =========================================================
   MENOS MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .experience-flip-card-inner {
    transition-duration: .01ms !important;
  }

  .experience-glass-reflection {
    animation: none !important;
  }
}

/* =========================================================
   PREFALUM EXPERIENCE · GALERÍA DE INSPIRACIÓN
========================================================= */

.experience-projects-section {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background:
    radial-gradient(
      circle at 92% 4%,
      rgba(10, 102, 169, .08),
      transparent 26%
    ),
    linear-gradient(
      180deg,
      #f7f9fb 0%,
      #ffffff 45%,
      #edf3f7 100%
    );
}

.experience-projects-section::before {
  content: "";
  position: absolute;
  top: 300px;
  left: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(10, 102, 169, .055);
  filter: blur(8px);
  pointer-events: none;
}

.experience-projects-section .experience-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.experience-projects-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr);
  gap: 60px;
  align-items: end;
}

.experience-projects-heading h2 {
  max-width: 900px;
  margin: 0;
  color: #0b1622;
  font-size: clamp(3rem, 6.4vw, 6rem);
  font-weight: 690;
  line-height: .94;
  letter-spacing: -.065em;
}

.experience-projects-heading h2 span {
  display: block;
  color: #8c99a4;
}

.experience-projects-heading > p {
  max-width: 420px;
  margin: 0;
  color: #66717d;
  font-size: 1.03rem;
  line-height: 1.72;
}


/* =========================================================
   FILTROS
========================================================= */

.experience-project-filters {
  margin-top: 55px;
  padding-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.experience-project-filters::-webkit-scrollbar {
  display: none;
}

.experience-project-filter {
  min-height: 44px;
  flex: 0 0 auto;
  padding: 0 18px;
  border: 1px solid rgba(11, 22, 34, .11);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: #596875;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 820;
  transition:
    color .25s ease,
    background .25s ease,
    border-color .25s ease,
    transform .25s ease;
}

.experience-project-filter:hover {
  transform: translateY(-2px);
  border-color: rgba(10, 102, 169, .26);
  color: #0a66a9;
}

.experience-project-filter.is-active {
  border-color: #092b45;
  background: #092b45;
  color: #ffffff;
  box-shadow: 0 12px 27px rgba(5, 37, 60, .16);
}


/* =========================================================
   PROYECTO DESTACADO
========================================================= */

.experience-featured-project {
  min-height: 720px;
  margin-top: 28px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 42px;
  background: #071725;
  box-shadow:
    0 32px 90px rgba(14, 38, 61, .18),
    inset 0 1px 0 rgba(255, 255, 255, .15);

  opacity: 0;
  transform: translateY(35px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.2, .75, .22, 1);
}

.experience-featured-project.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-featured-project[hidden] {
  display: none !important;
}

.experience-featured-project.is-filtered-out {
  opacity: 0;
  transform: scale(.985);
}

.experience-featured-project-media {
  position: relative;
  min-height: 530px;
  overflow: hidden;
}

.experience-featured-project-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition:
    transform 1.25s cubic-bezier(.2, .72, .22, 1),
    filter .5s ease;
}

.experience-featured-project:hover
.experience-featured-project-media img {
  transform: scale(1.035);
  filter: saturate(1.04);
}

.experience-project-image-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 15, 25, .08),
      rgba(3, 15, 25, .10) 50%,
      rgba(3, 15, 25, .68)
    );
}

.experience-featured-project-badge {
  position: absolute;
  top: 27px;
  left: 27px;
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  background: rgba(5, 27, 43, .30);
  color: #ffffff;
  font-size: .69rem;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.experience-featured-project-content {
  min-height: 190px;
  padding: 35px 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(72, 169, 222, .18),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      #061d30,
      #083e5d
    );
  color: #ffffff;
}

.experience-featured-project-copy {
  max-width: 750px;
}

.experience-project-location {
  color: rgba(190, 226, 246, .68);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.experience-featured-project-copy h3 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.055em;
}

.experience-featured-project-copy p {
  max-width: 680px;
  margin: 15px 0 0;
  color: rgba(224, 239, 247, .67);
  line-height: 1.6;
}

.experience-project-tags {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.experience-project-tags span {
  min-height: 31px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(255, 255, 255, .74);
  font-size: .67rem;
  font-weight: 750;
}

.experience-project-open {
  min-width: 180px;
  min-height: 57px;
  padding: 0 10px 0 21px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #073763;
  cursor: pointer;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .20);
}

.experience-project-open span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a66a9;
  color: #ffffff;
}


/* =========================================================
   GALERÍA
========================================================= */

.experience-project-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.experience-project-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 34px;
  background: #0a1a27;
  box-shadow:
    0 24px 65px rgba(17, 43, 66, .15),
    inset 0 1px 0 rgba(255, 255, 255, .13);

  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.2, .75, .22, 1);
}

.experience-project-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-project-card[hidden] {
  display: none !important;
}

.experience-project-card.is-filtered-out {
  opacity: 0;
  transform: scale(.97);
}

.experience-project-card-tall {
  min-height: 650px;
}

.experience-project-card-wide {
  grid-column: span 2;
  min-height: 580px;
}

.experience-project-card-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.experience-project-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1.15s cubic-bezier(.2, .72, .22, 1),
    filter .45s ease;
}

.experience-project-card:hover
.experience-project-card-media img {
  transform: scale(1.055);
  filter: saturate(1.06);
}

.experience-project-card-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(2, 12, 20, .06),
      rgba(2, 12, 20, .13) 47%,
      rgba(2, 12, 20, .88)
    );
  transition: background .35s ease;
}

.experience-project-card:hover
.experience-project-card-shade {
  background:
    linear-gradient(
      180deg,
      rgba(2, 12, 20, .03),
      rgba(2, 12, 20, .11) 40%,
      rgba(2, 12, 20, .94)
    );
}

.experience-project-card-number {
  position: absolute;
  top: 24px;
  left: 25px;
  color: rgba(255, 255, 255, .78);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.experience-project-card-content {
  position: absolute;
  z-index: 4;
  inset: auto 0 0;
  padding: 31px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
  color: #ffffff;
}

.experience-project-card-content > div {
  min-width: 0;
}

.experience-project-card-content > div > span {
  color: rgba(184, 223, 244, .65);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.experience-project-card-content h3 {
  margin: 7px 0 0;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  font-weight: 660;
  line-height: 1;
  letter-spacing: -.045em;
}

.experience-project-card-content p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
}

.experience-project-card-open {
  min-width: 132px;
  min-height: 48px;
  padding: 0 7px 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 999px;
  background: rgba(255, 255, 255, .085);
  color: #ffffff;
  cursor: pointer;
  font-size: .72rem;
  font-weight: 850;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: .75;
  transform: translateY(6px);
  transition:
    opacity .28s ease,
    transform .28s ease,
    background .28s ease;
}

.experience-project-card-open b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  color: #073763;
}

.experience-project-card:hover
.experience-project-card-open {
  opacity: 1;
  transform: translateY(0);
  background: rgba(255, 255, 255, .13);
}


/* =========================================================
   PIE
========================================================= */

.experience-projects-footer {
  margin-top: 48px;
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-top: 1px solid rgba(11, 22, 34, .10);
}

.experience-projects-footer p {
  max-width: 610px;
  margin: 0;
  color: #7a8792;
  font-size: .87rem;
  line-height: 1.6;
}

.experience-projects-footer a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #073763;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 850;
}


/* =========================================================
   MODAL DE INSPIRACIÓN
========================================================= */

.experience-inspiration-modal .modal-dialog {
  width: min(94vw, 1180px);
  max-width: 1180px;
}

.experience-inspiration-modal .modal-content {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  border: 1px solid rgba(255, 255, 255, .70);
  border-radius: 38px;
  background: #ffffff;
  box-shadow: 0 40px 120px rgba(0, 20, 35, .35);
}

.experience-inspiration-modal-close {
  position: absolute;
  z-index: 10;
  top: 20px;
  right: 20px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background: rgba(5, 28, 44, .38);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.45rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.experience-inspiration-modal-grid {
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
}

.experience-inspiration-modal-media {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #071725;
}

.experience-inspiration-modal-media::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset -50px 0 80px rgba(0, 0, 0, .08);
  pointer-events: none;
}

.experience-inspiration-modal-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}

.experience-inspiration-modal-copy {
  padding: 58px 48px 45px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(10, 102, 169, .08),
      transparent 30%
    ),
    #ffffff;
}

.experience-inspiration-modal-copy h2 {
  margin: 0;
  color: #0b1622;
  font-size: clamp(2.5rem, 4vw, 4.6rem);
  font-weight: 670;
  line-height: .95;
  letter-spacing: -.06em;
}

.experience-inspiration-modal-copy > div:first-child > p {
  margin: 22px 0 0;
  color: #66717d;
  font-size: 1rem;
  line-height: 1.65;
}

.experience-inspiration-modal-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 22px 0;
  border-top: 1px solid rgba(11, 22, 34, .09);
  border-bottom: 1px solid rgba(11, 22, 34, .09);
}

.experience-inspiration-modal-details small,
.experience-inspiration-modal-details strong {
  display: block;
}

.experience-inspiration-modal-details small {
  color: #8e99a3;
  font-size: .64rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.experience-inspiration-modal-details strong {
  margin-top: 5px;
  color: #172532;
  font-size: .85rem;
}

.experience-inspiration-modal-action p {
  margin: 0 0 16px;
  color: #65727e;
  font-size: .9rem;
  line-height: 1.5;
}

.experience-inspiration-modal-action a {
  min-height: 57px;
  padding: 0 10px 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: linear-gradient(135deg, #073763, #0a66a9);
  color: #ffffff;
  text-decoration: none;
  font-size: .83rem;
  font-weight: 900;
  box-shadow: 0 16px 35px rgba(10, 102, 169, .22);
}

.experience-inspiration-modal-action a span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .17);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .experience-projects-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .experience-featured-project {
    min-height: 650px;
  }

  .experience-featured-project-content {
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-project-open {
    width: 100%;
  }

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

  .experience-project-card-wide {
    grid-column: auto;
  }

  .experience-inspiration-modal-grid {
    grid-template-columns: 1fr;
  }

  .experience-inspiration-modal-media {
    min-height: 470px;
  }

  .experience-inspiration-modal-copy {
    min-height: 520px;
  }
}

@media (max-width: 640px) {

  .experience-projects-section {
    padding: 86px 0;
  }

  .experience-projects-heading h2 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .experience-projects-heading > p {
    font-size: .96rem;
  }

  .experience-project-filters {
    margin-top: 38px;
    margin-right: -12px;
    padding-right: 12px;
  }

  .experience-project-filter {
    min-height: 42px;
    padding: 0 15px;
    font-size: .73rem;
  }

  .experience-featured-project {
    min-height: 0;
    border-radius: 29px;
  }

  .experience-featured-project-media {
    min-height: 430px;
  }

  .experience-featured-project-badge {
    top: 18px;
    left: 18px;
  }

  .experience-featured-project-content {
    min-height: 0;
    padding: 27px 23px 24px;
    gap: 27px;
  }

  .experience-featured-project-copy h3 {
    font-size: 2.35rem;
  }

  .experience-project-card,
  .experience-project-card-tall,
  .experience-project-card-wide {
    min-height: 510px;
    border-radius: 28px;
  }

  .experience-project-card-content {
    padding: 23px;
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-project-card-open {
    width: 100%;
    opacity: 1;
    transform: none;
  }

  .experience-projects-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .experience-inspiration-modal .modal-dialog {
    width: calc(100% - 16px);
    margin: 8px auto;
  }

  .experience-inspiration-modal .modal-content {
    min-height: 0;
    border-radius: 29px;
  }

  .experience-inspiration-modal-media {
    min-height: 390px;
  }

  .experience-inspiration-modal-copy {
    min-height: 470px;
    padding: 35px 25px 25px;
  }

  .experience-inspiration-modal-copy h2 {
    font-size: 2.75rem;
  }

  .experience-inspiration-modal-details {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {

  .experience-featured-project,
  .experience-project-card,
  .experience-featured-project-media img,
  .experience-project-card-media img {
    transition: none !important;
  }
}

/* =========================================================
   PREFALUM EXPERIENCE · POR QUÉ PREFALUM
========================================================= */

.experience-reasons-section {
  position: relative;
  overflow: hidden;
  padding: 135px 0;
  background:
    radial-gradient(
      circle at 90% 4%,
      rgba(88, 183, 231, .16),
      transparent 28%
    ),
    radial-gradient(
      circle at 4% 90%,
      rgba(10, 102, 169, .11),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #061b2b 0%,
      #082d45 48%,
      #061c2e 100%
    );
  color: #ffffff;
}

.experience-reasons-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 10%,
      rgba(255, 255, 255, .028) 36%,
      rgba(255, 255, 255, .055) 50%,
      transparent 68%
    );
}

.experience-reasons-section::after {
  content: "";
  position: absolute;
  top: -230px;
  right: -210px;
  width: 570px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(255, 255, 255, .018),
    0 0 0 150px rgba(255, 255, 255, .010);
  pointer-events: none;
}

.experience-reasons-section .experience-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.experience-reasons-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.42fr)
    minmax(270px, .58fr);
  gap: 70px;
  align-items: end;
}

.experience-reasons-heading .experience-section-kicker {
  color: rgba(157, 216, 248, .80);
}

.experience-reasons-heading h2 {
  max-width: 910px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6.4vw, 6rem);
  font-weight: 680;
  line-height: .94;
  letter-spacing: -.065em;
}

.experience-reasons-heading h2 span {
  display: block;
  color: rgba(195, 220, 235, .50);
}

.experience-reasons-heading > p {
  max-width: 410px;
  margin: 0;
  color: rgba(221, 236, 245, .65);
  font-size: 1.03rem;
  line-height: 1.72;
}


/* =========================================================
   CUADRÍCULA
========================================================= */

.experience-reasons-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.experience-reason-card {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  padding: 31px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 34px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .105),
      rgba(255, 255, 255, .032)
    );
  box-shadow:
    0 25px 70px rgba(0, 6, 14, .22),
    inset 0 1px 0 rgba(255, 255, 255, .15);
  backdrop-filter: blur(17px) saturate(130%);
  -webkit-backdrop-filter: blur(17px) saturate(130%);

  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .72s ease var(--reason-delay, 0ms),
    transform .72s cubic-bezier(.2, .75, .22, 1)
      var(--reason-delay, 0ms),
    border-color .35s ease,
    box-shadow .35s ease;
}

.experience-reason-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-reason-card:hover {
  border-color: rgba(164, 222, 251, .28);
  box-shadow:
    0 34px 85px rgba(0, 7, 15, .30),
    inset 0 1px 0 rgba(255, 255, 255, .19);
}

.experience-reason-light {
  position: absolute;
  top: -160px;
  right: -150px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(93, 190, 237, .22),
      transparent 68%
    );
  pointer-events: none;
  transition:
    transform .8s cubic-bezier(.2, .7, .2, 1),
    opacity .4s ease;
}

.experience-reason-card:hover .experience-reason-light {
  transform: translate(-23px, 24px) scale(1.12);
}


/* =========================================================
   VARIACIONES MUY SUTILES
========================================================= */

.experience-reason-card-design {
  background:
    radial-gradient(
      circle at 90% 4%,
      rgba(99, 194, 240, .14),
      transparent 33%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .105),
      rgba(255, 255, 255, .032)
    );
}

.experience-reason-card-precision {
  background:
    radial-gradient(
      circle at 88% 10%,
      rgba(124, 182, 211, .13),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .095),
      rgba(255, 255, 255, .028)
    );
}

.experience-reason-card-security {
  background:
    radial-gradient(
      circle at 90% 7%,
      rgba(84, 164, 205, .15),
      transparent 33%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .10),
      rgba(255, 255, 255, .03)
    );
}

.experience-reason-card-care {
  background:
    radial-gradient(
      circle at 90% 7%,
      rgba(105, 200, 244, .17),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .115),
      rgba(255, 255, 255, .035)
    );
}


/* =========================================================
   CONTENIDO DE LAS TARJETAS
========================================================= */

.experience-reason-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.experience-reason-number {
  color: rgba(174, 222, 246, .82);
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.experience-reason-label {
  min-height: 31px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .055);
  color: rgba(225, 241, 249, .62);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.experience-reason-copy {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding-top: 58px;
}

.experience-reason-symbol {
  width: 55px;
  height: 55px;
  margin-bottom: 24px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .12),
      rgba(255, 255, 255, .035)
    );
  color: #d7f2ff;
  font-size: 1rem;
  font-weight: 900;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .13),
    0 15px 35px rgba(0, 7, 15, .16);
}

.experience-reason-copy h3 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.052em;
  text-wrap: balance;
}

.experience-reason-copy p {
  max-width: 510px;
  margin: 18px 0 0;
  color: rgba(222, 236, 245, .64);
  font-size: .94rem;
  line-height: 1.65;
}


/* =========================================================
   FRANJA DE CONFIANZA
========================================================= */

.experience-trust-strip {
  margin-top: 17px;
  padding: 34px;
  display: grid;
  grid-template-columns:
    minmax(250px, .72fr)
    minmax(0, 1.28fr);
  gap: 46px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 32px;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, .085),
      rgba(255, 255, 255, .025)
    );
  box-shadow:
    0 22px 60px rgba(0, 7, 15, .18),
    inset 0 1px 0 rgba(255, 255, 255, .12);

  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .72s ease var(--reason-delay, 0ms),
    transform .72s cubic-bezier(.2, .75, .22, 1)
      var(--reason-delay, 0ms);
}

.experience-trust-strip.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.experience-trust-intro span,
.experience-trust-intro strong {
  display: block;
}

.experience-trust-intro span {
  color: rgba(164, 220, 249, .62);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.experience-trust-intro strong {
  max-width: 390px;
  margin-top: 8px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.3;
}

.experience-trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.experience-trust-items > div {
  min-height: 75px;
  padding: 8px 19px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, .11);
}

.experience-trust-items strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
}

.experience-trust-items span {
  margin-top: 5px;
  color: rgba(220, 236, 245, .48);
  font-size: .7rem;
  line-height: 1.35;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .experience-reasons-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .experience-trust-strip {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .experience-trust-items > div:first-child {
    border-left: 0;
  }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 640px) {

  .experience-reasons-section {
    padding: 88px 0;
  }

  .experience-reasons-heading h2 {
    font-size: clamp(2.7rem, 12.5vw, 4rem);
  }

  .experience-reasons-heading > p {
    font-size: .96rem;
  }

  .experience-reasons-grid {
    margin-top: 43px;
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .experience-reason-card {
    min-height: 390px;
    padding: 25px 23px;
    border-radius: 28px;
    background:
      radial-gradient(
        circle at 90% 5%,
        rgba(88, 181, 226, .15),
        transparent 35%
      ),
      linear-gradient(
        145deg,
        #0a3b58,
        #07293f
      );
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .experience-reason-copy {
    padding-top: 42px;
  }

  .experience-reason-symbol {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .experience-reason-copy h3 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .experience-reason-copy p {
    font-size: .91rem;
  }

  .experience-trust-strip {
    margin-top: 13px;
    padding: 26px 22px;
    border-radius: 27px;
  }

  .experience-trust-items {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .experience-trust-items > div {
    min-height: 82px;
    padding: 13px 14px;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .10);
  }

  .experience-trust-items > div:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, .10);
  }

  .experience-trust-items strong {
    font-size: .91rem;
  }
}


/* =========================================================
   TELÉFONOS MUY PEQUEÑOS
========================================================= */

@media (max-width: 390px) {

  .experience-reason-card {
    min-height: 375px;
  }

  .experience-reason-copy h3 {
    font-size: 1.95rem;
  }

  .experience-trust-items {
    grid-template-columns: 1fr;
  }

  .experience-trust-items > div:nth-child(even) {
    border-left: 0;
  }
}


/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .experience-reason-card,
  .experience-trust-strip,
  .experience-reason-light {
    transition: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {

  .experience-nav-inner {
    gap: 18px;
  }

  .experience-nav-links {
    gap: 15px;
  }

  .experience-nav-links a {
    font-size: .81rem;
  }
}

/* =========================================================
   PREFALUM EXPERIENCE · PRODUCTOS Y SOLUCIONES
========================================================= */

.experience-products-section {
  position: relative;
  overflow: hidden;
  padding: 135px 0;
  background:
    radial-gradient(
      circle at 8% 5%,
      rgba(10, 102, 169, .10),
      transparent 28%
    ),
    radial-gradient(
      circle at 96% 78%,
      rgba(93, 181, 225, .11),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #eef3f7 0%,
      #ffffff 45%,
      #f2f6f9 100%
    );
}

.experience-products-section::before {
  content: "";
  position: absolute;
  top: 260px;
  right: -210px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(10, 102, 169, .07);
  border-radius: 50%;
  box-shadow:
    0 0 0 80px rgba(10, 102, 169, .025),
    0 0 0 160px rgba(10, 102, 169, .012);
  pointer-events: none;
}

.experience-products-section .experience-container {
  position: relative;
  z-index: 2;
}


/* =========================================================
   ENCABEZADO
========================================================= */

.experience-products-heading {
  display: grid;
  grid-template-columns:
    minmax(0, 1.4fr)
    minmax(280px, .6fr);
  gap: 70px;
  align-items: end;
}

.experience-products-heading h2 {
  max-width: 890px;
  margin: 0;
  color: #0b1622;
  font-size: clamp(3rem, 6.4vw, 6rem);
  font-weight: 680;
  line-height: .94;
  letter-spacing: -.065em;
}

.experience-products-heading h2 span {
  display: block;
  color: #8996a1;
}

.experience-products-heading-copy {
  max-width: 430px;
}

.experience-products-heading-copy strong {
  display: block;
  color: #162838;
  font-size: 1.1rem;
  line-height: 1.4;
}

.experience-products-heading-copy p {
  margin: 15px 0 0;
  color: #66717d;
  font-size: 1rem;
  line-height: 1.7;
}


/* =========================================================
   CUADRÍCULA
========================================================= */

.experience-products-grid {
  margin-top: 66px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 18px;
}

.experience-product-card {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(320px, 1fr) auto;
  border: 1px solid rgba(255, 255, 255, .90);
  border-radius: 36px;
  background: #ffffff;
  box-shadow:
    0 25px 70px rgba(17, 43, 66, .12),
    inset 0 1px 0 rgba(255, 255, 255, .95);
  transition:
    transform .45s cubic-bezier(.2, .72, .22, 1),
    box-shadow .45s ease,
    border-color .45s ease;
}

.experience-product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(121, 195, 234, .42);
  box-shadow:
    0 35px 90px rgba(17, 43, 66, .17),
    inset 0 1px 0 rgba(255, 255, 255, .98);
}

.experience-product-card-large {
  min-height: 760px;
}

.experience-product-card-wide {
  grid-column: span 2;
  min-height: 700px;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  grid-template-rows: 1fr;
}


/* =========================================================
   IMAGEN
========================================================= */

.experience-product-media {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #071725;
}

.experience-product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .18),
    inset 0 -80px 100px rgba(2, 15, 25, .14);
}

.experience-product-media img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition:
    transform 1.1s cubic-bezier(.2, .72, .22, 1),
    filter .5s ease;
}

.experience-product-card:hover
.experience-product-media img {
  transform: scale(1.045);
  filter: saturate(1.04);
}

.experience-product-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(3, 16, 26, .05),
      rgba(3, 16, 26, .10) 62%,
      rgba(3, 16, 26, .52)
    );
}

.experience-product-number {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 25px;
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
  background: rgba(4, 27, 44, .27);
  color: rgba(255, 255, 255, .91);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   CONTENIDO
========================================================= */

.experience-product-content {
  position: relative;
  padding: 32px;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(
      circle at 94% 2%,
      rgba(10, 102, 169, .07),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #f5f8fa
    );
}

.experience-product-title > span {
  display: block;
  color: #0a66a9;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.experience-product-title h3 {
  margin: 8px 0 0;
  color: #0b1622;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  font-weight: 670;
  line-height: .98;
  letter-spacing: -.052em;
}

.experience-product-content > p {
  max-width: 600px;
  margin: 17px 0 0;
  color: #65727d;
  font-size: .94rem;
  line-height: 1.65;
}

.experience-product-features {
  margin: 23px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.experience-product-features li {
  min-height: 32px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10, 102, 169, .11);
  border-radius: 999px;
  background: rgba(10, 102, 169, .045);
  color: #547083;
  font-size: .68rem;
  font-weight: 760;
}

.experience-product-action {
  width: 100%;
  min-height: 55px;
  margin-top: 28px;
  padding: 0 9px 0 19px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(10, 102, 169, .14);
  border-radius: 999px;
  background: #ffffff;
  color: #073763;
  text-decoration: none;
  font-size: .79rem;
  font-weight: 900;
  box-shadow:
    0 13px 30px rgba(17, 52, 79, .08);
  transition:
    color .25s ease,
    background .25s ease,
    transform .25s ease;
}

.experience-product-action span {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a66a9;
  color: #ffffff;
}

.experience-product-action:hover {
  transform: translateY(-2px);
  background: #073763;
  color: #ffffff;
}


/* =========================================================
   TARJETA PERSONALIZADA
========================================================= */

.experience-product-custom {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 36px;
  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(91, 191, 239, .25),
      transparent 33%
    ),
    linear-gradient(
      145deg,
      #051f34,
      #075b86
    );
  color: #ffffff;
  box-shadow:
    0 28px 75px rgba(3, 30, 51, .22),
    inset 0 1px 0 rgba(255, 255, 255, .17);
}

.experience-product-custom-light {
  position: absolute;
  top: -170px;
  right: -140px;
  width: 390px;
  height: 390px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(160, 222, 251, .22),
      transparent 68%
    );
  pointer-events: none;
}

.experience-product-custom > *:not(.experience-product-custom-light) {
  position: relative;
  z-index: 2;
}

.experience-product-custom h3 {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  font-weight: 650;
  line-height: .95;
  letter-spacing: -.06em;
}

.experience-product-custom p {
  max-width: 570px;
  margin: 21px 0 0;
  color: rgba(223, 239, 248, .69);
  font-size: 1rem;
  line-height: 1.65;
}

.experience-product-custom > a {
  width: fit-content;
  min-width: 245px;
  min-height: 57px;
  margin-top: 31px;
  padding: 0 10px 0 21px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
  border-radius: 999px;
  background: #ffffff;
  color: #073763;
  text-decoration: none;
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 17px 37px rgba(0, 0, 0, .20);
}

.experience-product-custom > a span {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a66a9;
  color: #ffffff;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .experience-products-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .experience-products-grid {
    grid-template-columns: 1fr;
  }

  .experience-product-card-wide {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(380px, 1fr) auto;
  }

  .experience-product-card,
  .experience-product-card-large,
  .experience-product-card-wide {
    min-height: 0;
  }

  .experience-product-custom {
    min-height: 480px;
  }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 640px) {

  .experience-products-section {
    padding: 88px 0;
  }

  .experience-products-heading h2 {
    font-size: clamp(2.7rem, 12.5vw, 4rem);
  }

  .experience-products-heading-copy strong {
    font-size: 1rem;
  }

  .experience-products-heading-copy p {
    font-size: .94rem;
  }

  .experience-products-grid {
    margin-top: 44px;
    gap: 14px;
  }

  .experience-product-card {
    grid-template-rows: 360px auto;
    border-radius: 29px;
  }

  .experience-product-card-wide {
    grid-template-rows: 390px auto;
  }

  .experience-product-content {
    padding: 26px 23px 23px;
  }

  .experience-product-title h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .experience-product-content > p {
    font-size: .91rem;
  }

  .experience-product-action {
    min-height: 53px;
    margin-top: 24px;
  }

  .experience-product-custom {
    min-height: 455px;
    padding: 31px 25px;
    border-radius: 29px;
  }

  .experience-product-custom h3 {
    font-size: clamp(2.4rem, 12vw, 3.55rem);
  }

  .experience-product-custom p {
    font-size: .94rem;
  }

  .experience-product-custom > a {
    width: 100%;
    min-width: 0;
  }
}


/* =========================================================
   TELÉFONOS MUY PEQUEÑOS
========================================================= */

@media (max-width: 390px) {

  .experience-product-card {
    grid-template-rows: 325px auto;
  }

  .experience-product-title h3 {
    font-size: 1.95rem;
  }

  .experience-product-features li {
    font-size: .64rem;
  }

  .experience-product-custom {
    min-height: 430px;
  }
}


/* =========================================================
   ACCESIBILIDAD
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .experience-product-card,
  .experience-product-media img,
  .experience-product-action {
    transition: none !important;
  }
}

#proyectos {
  scroll-margin-top: 105px;
}

@media (max-width: 640px) {
  #proyectos {
    scroll-margin-top: 82px;
  }
}


/* =========================================================
   THERMIA BARCELONA · IDENTIDAD OFICIAL
========================================================= */

.experience-thermia-details {
  margin-top: 29px;
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
}

.experience-thermia-details > div {
  min-width: 180px;
  padding: 14px 17px;
  border: 1px solid rgba(11, 22, 34, .08);
  border-radius: 17px;
  background: rgba(255, 255, 255, .62);
}

.experience-thermia-details span,
.experience-thermia-details strong {
  display: block;
}

.experience-thermia-details span {
  color: #89959f;
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.experience-thermia-details strong {
  margin-top: 5px;
  color: #20313f;
  font-size: .84rem;
}

.experience-thermia-brand {
  min-height: 280px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(11, 22, 34, .08);
  border-radius: 31px;
  background:
    radial-gradient(
      circle at 85% 5%,
      rgba(10, 102, 169, .08),
      transparent 32%
    ),
    rgba(255, 255, 255, .73);
  box-shadow:
    inset 0 1px 0 #ffffff,
    0 20px 48px rgba(18, 43, 66, .09);
}

.experience-thermia-logo-wrap {
  min-height: 150px;
  display: grid;
  place-items: center;
}

.experience-thermia-logo {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 115px;
  object-fit: contain;
}

.experience-thermia-logo-fallback {
  display: none;
  flex-direction: column;
  align-items: center;
  color: #20282e;
  text-align: center;
}

.experience-thermia-logo-fallback strong {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 750;
  line-height: .9;
  letter-spacing: -.04em;
}

.experience-thermia-logo-fallback span {
  margin-top: 8px;
  color: #7d878e;
  font-size: .75rem;
  font-weight: 850;
  letter-spacing: .31em;
}

.experience-thermia-exclusive {
  padding-top: 20px;
  border-top: 1px solid rgba(11, 22, 34, .08);
}

.experience-thermia-exclusive span,
.experience-thermia-exclusive strong {
  display: block;
}

.experience-thermia-exclusive span {
  color: #89949d;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.experience-thermia-exclusive strong {
  margin-top: 5px;
  color: #263744;
  font-size: .86rem;
}


/* =========================================================
   GALERÍA · CIERRE SIMPLE
========================================================= */

.experience-projects-footer-simple {
  justify-content: flex-start;
}

.experience-projects-footer-simple p {
  max-width: 760px;
}


/* =========================================================
   CONTACTO Y REDES
========================================================= */

.experience-connect-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0 110px;
  background:
    radial-gradient(
      circle at 10% 90%,
      rgba(10, 102, 169, .08),
      transparent 30%
    ),
    #ffffff;
}

.experience-connect-panel {
  position: relative;
  min-height: 630px;
  overflow: hidden;
  padding: 18px;
  display: grid;
  grid-template-columns:
    minmax(0, 1.16fr)
    minmax(340px, .84fr);
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 42px;
  background:
    radial-gradient(
      circle at 83% 8%,
      rgba(79, 178, 228, .22),
      transparent 32%
    ),
    linear-gradient(
      145deg,
      #041c2f 0%,
      #073c5d 100%
    );
  box-shadow:
    0 36px 95px rgba(4, 35, 57, .24),
    inset 0 1px 0 rgba(255, 255, 255, .13);
}

.experience-connect-light {
  position: absolute;
  top: -280px;
  right: -220px;
  width: 650px;
  height: 650px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, .014),
    0 0 0 180px rgba(255, 255, 255, .008);
  pointer-events: none;
}

.experience-connect-main,
.experience-connect-links {
  position: relative;
  z-index: 2;
  border-radius: 31px;
}

.experience-connect-main {
  padding: clamp(38px, 6vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, .11);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, .075),
      rgba(255, 255, 255, .025)
    );
  color: #ffffff;
}

.experience-connect-main h2 {
  max-width: 670px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 650;
  line-height: .93;
  letter-spacing: -.065em;
}

.experience-connect-main h2 span {
  display: block;
  color: rgba(199, 225, 239, .52);
}

.experience-connect-main > p {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(224, 239, 247, .68);
  font-size: 1.02rem;
  line-height: 1.7;
}

.experience-connect-primary {
  width: min(100%, 430px);
  min-height: 74px;
  margin-top: 34px;
  padding: 12px 13px 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 999px;
  background: #ffffff;
  color: #073763;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(0, 0, 0, .22);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.experience-connect-primary:hover {
  color: #073763;
  transform: translateY(-3px);
  box-shadow: 0 27px 55px rgba(0, 0, 0, .27);
}

.experience-connect-primary > span {
  display: flex;
  flex-direction: column;
  font-size: .95rem;
  font-weight: 900;
}

.experience-connect-primary small {
  margin-bottom: 3px;
  color: #7890a0;
  font-size: .6rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.experience-connect-primary b {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #0a66a9;
  color: #ffffff;
  font-size: 1.15rem;
}

.experience-connect-links {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 22px 60px rgba(0, 14, 25, .18);
}

.experience-connect-links-head {
  margin-bottom: 24px;
  padding: 0 5px 23px;
  border-bottom: 1px solid rgba(11, 22, 34, .09);
}

.experience-connect-links-head span,
.experience-connect-links-head strong {
  display: block;
}

.experience-connect-links-head span {
  color: #89959f;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.experience-connect-links-head strong {
  margin-top: 7px;
  color: #142635;
  font-size: 1.25rem;
}

.experience-connect-links > a {
  min-height: 86px;
  padding: 13px 8px;
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr) auto;
  gap: 15px;
  align-items: center;
  border-bottom: 1px solid rgba(11, 22, 34, .08);
  color: #172a39;
  text-decoration: none;
  transition:
    padding-left .25s ease,
    color .25s ease;
}

.experience-connect-links > a:last-child {
  border-bottom: 0;
}

.experience-connect-links > a:hover {
  padding-left: 14px;
  color: #0a66a9;
}

.experience-connect-link-mark {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(10, 102, 169, .11);
  border-radius: 15px;
  background: #edf6fb;
  color: #0a66a9;
  font-size: .67rem;
  font-weight: 950;
  letter-spacing: .03em;
}

.experience-connect-links > a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  font-size: .93rem;
  font-weight: 900;
}

.experience-connect-links small {
  margin-bottom: 3px;
  color: #8a969f;
  font-size: .65rem;
  font-weight: 700;
}

.experience-connect-links b {
  color: #78909f;
  font-size: 1rem;
}


/* =========================================================
   FOOTER MINIMALISTA
========================================================= */

.experience-footer-minimal {
  padding: 70px 0 30px;
}

.experience-footer-minimal-main {
  padding-bottom: 42px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.experience-footer-back-top {
  min-height: 46px;
  padding: 0 8px 0 17px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: rgba(255, 255, 255, .74);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 850;
}

.experience-footer-back-top span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .10);
  color: #ffffff;
}

.experience-footer-minimal-bottom {
  padding: 29px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, .60);
}

.experience-footer-signatures {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  font-size: .82rem;
}

.experience-footer-minimal-bottom > small {
  font-size: .72rem;
}

.experience-footer-zero {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  color: rgba(255, 255, 255, .27);
  font-size: .65rem;
  letter-spacing: .07em;
  text-align: center;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .experience-connect-panel {
    grid-template-columns: 1fr;
  }

  .experience-connect-main {
    min-height: 520px;
  }

  .experience-connect-links {
    min-height: 410px;
  }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 640px) {

  .experience-thermia-details {
    display: grid;
    grid-template-columns: 1fr;
  }

  .experience-thermia-details > div {
    min-width: 0;
  }

  .experience-thermia-brand {
    min-height: 245px;
    padding: 23px;
    border-radius: 25px;
  }

  .experience-thermia-logo-wrap {
    min-height: 125px;
  }

  .experience-connect-section {
    padding: 20px 0 78px;
  }

  .experience-connect-panel {
    min-height: 0;
    padding: 10px;
    gap: 10px;
    border-radius: 30px;
  }

  .experience-connect-main,
  .experience-connect-links {
    border-radius: 23px;
  }

  .experience-connect-main {
    min-height: 500px;
    padding: 30px 24px;
  }

  .experience-connect-main h2 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .experience-connect-main > p {
    font-size: .94rem;
  }

  .experience-connect-primary {
    width: 100%;
    min-height: 70px;
    padding-left: 18px;
  }

  .experience-connect-primary b {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .experience-connect-links {
    min-height: 0;
    padding: 23px 19px;
  }

  .experience-connect-links > a {
    min-height: 80px;
  }

  .experience-footer-minimal {
    padding: 58px 0 27px;
  }

  .experience-footer-minimal-main {
    align-items: flex-start;
    flex-direction: column;
  }

  .experience-footer-back-top {
    width: 100%;
    justify-content: space-between;
  }

  .experience-footer-minimal-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .experience-footer-signatures {
    flex-direction: column;
    gap: 8px;
  }
}


/* =========================================================
   POSICIÓN DE ANCLAJES
========================================================= */

#conectar,
#contacto {
  scroll-margin-top: 105px;
}

@media (max-width: 640px) {
  #conectar,
  #contacto {
    scroll-margin-top: 82px;
  }
}

/* =========================================================
   MI PROYECTO · MINIATURA REAL DEL PLANO
========================================================= */

.project-plan-sheet-real {
  position: relative;
  z-index: 3;
  display: block;
  padding: 0;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  background: #f8f8f5;
  transform: rotate(3.2deg);
  transform-origin: center center;
  box-shadow:
  12px 30px 34px rgba(25, 34, 39, .25),
  4px 12px 15px rgba(25, 34, 39, .18),
  1px 3px 5px rgba(25, 34, 39, .13),
  inset 0 0 0 1px rgba(255, 255, 255, .60);
  transition:
    transform .45s cubic-bezier(.2, .72, .22, 1),
    box-shadow .45s ease;
}

.project-plan-sheet-real:hover {
  color: inherit;
  transform:
    rotate(1.2deg)
    translateY(-9px)
    scale(1.018);
  box-shadow:
  16px 38px 45px rgba(25, 34, 39, .29),
  6px 16px 20px rgba(25, 34, 39, .20),
  1px 4px 7px rgba(25, 34, 39, .14),
  inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.project-plan-preview-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f2f1ec
    );
  transition:
    transform .6s ease,
    filter .4s ease;
}

.project-plan-sheet-real:hover
.project-plan-preview-image {
  transform: scale(1.012);
  filter:
    contrast(1.015)
    brightness(1.01);
}


/* Oscurecimiento muy ligero arriba y abajo
   para que los textos sean legibles sin tapar el plano */
.project-plan-sheet-real::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(5, 25, 39, .72) 0,
      rgba(5, 25, 39, .18) 13%,
      transparent 25%,
      transparent 73%,
      rgba(5, 25, 39, .13) 84%,
      rgba(5, 25, 39, .76) 100%
    );
}


/* Textura sutil de papel */
.project-plan-sheet-real::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: .15;
  mix-blend-mode: multiply;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(19, 32, 42, .035) 0,
      rgba(19, 32, 42, .035) 1px,
      transparent 1px,
      transparent 4px
    );
}


.project-plan-paper-header {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  padding: 23px 25px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .36);
}

.project-plan-paper-header span {
  font-size: .61rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.project-plan-paper-header strong {
  max-width: 190px;
  font-size: .71rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-align: right;
  text-transform: uppercase;
}


.project-plan-paper-footer {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 36px 24px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, .42);
}

.project-plan-paper-footer > span {
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.project-plan-paper-footer > strong {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .7rem;
  font-weight: 850;
  opacity: .82;
  transition:
    opacity .25s ease,
    transform .25s ease;
}

.project-plan-sheet-real:hover
.project-plan-paper-footer > strong {
  opacity: 1;
  transform: translateX(3px);
}

.project-plan-paper-footer b {
  font-size: .9rem;
}


/* Pequeña esquina doblada */
.project-plan-paper-corner {
  position: absolute;
  z-index: 7;
  top: 0;
  right: 0;
  width: 34px;
  height: 34px;
  pointer-events: none;
  background:
    linear-gradient(
      225deg,
      rgba(6, 34, 52, .20) 0 48%,
      #ffffff 50% 70%,
      #dce2e5 72% 100%
    );
  box-shadow:
    -5px 5px 13px rgba(0, 0, 0, .12);
}


/* Luz que recorre suavemente el papel */
.project-plan-paper-shine {
  position: absolute;
  z-index: 6;
  top: -40%;
  bottom: -40%;
  left: -65%;
  width: 31%;
  opacity: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .04),
      rgba(255, 255, 255, .45),
      rgba(255, 255, 255, .08),
      transparent
    );
  transform: rotate(14deg);
}

.project-plan-sheet-real:hover
.project-plan-paper-shine {
  animation:
    projectPlanPaperShine
    1.15s
    cubic-bezier(.2, .68, .22, 1)
    both;
}

@keyframes projectPlanPaperShine {
  0% {
    left: -65%;
    opacity: 0;
  }

  25% {
    opacity: .45;
  }

  70% {
    opacity: .24;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}


/* Diseño genérico que aparece únicamente
   cuando la miniatura no pudo cargarse */
.project-plan-preview-fallback {
  position: absolute;
  inset: 0;
  z-index: 0;
  padding: 34px;
  display: block;
  color: #0a66a9;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 22px,
      rgba(10, 102, 169, .055) 23px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 22px,
      rgba(10, 102, 169, .055) 23px
    ),
    #ffffff;
}

.project-plan-preview-fallback > span {
  display: block;
  font-size: .65rem;
  font-weight: 950;
  letter-spacing: .14em;
}

.project-plan-preview-fallback > strong {
  display: block;
  margin-top: 8px;
  font-size: .75rem;
  font-weight: 850;
}

.project-plan-preview-fallback > b {
  position: absolute;
  left: 34px;
  bottom: 30px;
  font-size: .82rem;
}


/* Si la imagen falla, escondemos la imagen
   y mostramos automáticamente el plano genérico */
.project-plan-sheet-real.preview-failed
.project-plan-preview-image {
  display: none;
}

.project-plan-sheet-real.preview-failed
.project-plan-preview-fallback {
  z-index: 1;
}

.project-plan-sheet-real:not(.preview-failed)
.project-plan-preview-fallback {
  visibility: hidden;
}


/* Etiqueta del plano pendiente */
.project-plan-pending-label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  min-height: 31px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(10, 102, 169, .14);
  border-radius: 999px;
  background: #edf7fc;
  color: #0a66a9;
  font-size: .61rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .07em;
  text-transform: uppercase;
}


/* El plano pendiente conserva el diseño anterior */
.project-plan-sheet-generic {
  position: relative;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .project-plan-sheet-real:hover {
    transform:
      rotate(2deg)
      translateY(-4px);
  }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

  .project-plan-sheet-real {
    width: min(88%, 430px);
    min-height: 405px;
    transform: rotate(1.7deg);
  }

  .project-plan-paper-header {
    padding: 19px 20px 25px;
  }

  .project-plan-paper-footer {
    padding: 32px 20px 19px;
  }

  .project-plan-paper-footer > strong {
    opacity: 1;
  }

  .project-plan-sheet-real:hover {
    transform: rotate(1.7deg);
  }

  .project-plan-sheet-real:active {
    transform:
      rotate(.8deg)
      scale(.985);
  }
}


/* =========================================================
   TELÉFONOS PEQUEÑOS
========================================================= */

@media (max-width: 390px) {

  .project-plan-sheet-real {
    width: 92%;
  }

  .project-plan-paper-header strong {
    max-width: 145px;
    font-size: .62rem;
  }

  .project-plan-paper-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}


/* =========================================================
   MENOS MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .project-plan-sheet-real,
  .project-plan-preview-image,
  .project-plan-paper-footer > strong {
    transition: none !important;
  }

  .project-plan-paper-shine {
    animation: none !important;
  }
}


/* =========================================================
   MI PROYECTO · CARGA ELEGANTE DE LA MINIATURA
========================================================= */

.project-plan-loading {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  background:
    linear-gradient(
      145deg,
      #f9f9f6,
      #eeeee9
    );
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition:
    opacity .35s ease,
    visibility .35s ease;
}

.project-plan-loading-sheet {
  position: relative;
  width: 68%;
  aspect-ratio: 1 / 1.28;
  overflow: hidden;
  border: 1px solid rgba(15, 35, 49, .08);
  border-radius: 7px;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 18px,
      rgba(10, 102, 169, .045) 19px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 18px,
      rgba(10, 102, 169, .045) 19px
    ),
    #ffffff;
  box-shadow:
    0 18px 38px rgba(20, 42, 58, .13);
}

.project-plan-loading-sheet::before {
  content: "PREFALUM";
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(10, 102, 169, .50);
  font-size: .53rem;
  font-weight: 950;
  letter-spacing: .14em;
}

.project-plan-loading-sheet span {
  position: absolute;
  top: -30%;
  bottom: -30%;
  left: -75%;
  width: 42%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, .28),
      rgba(255, 255, 255, .92),
      rgba(255, 255, 255, .25),
      transparent
    );
  transform: rotate(15deg);
  animation:
    projectPlanLoadingShine
    1.35s
    ease-in-out
    infinite;
}

.project-plan-loading small {
  color: #6f7d87;
  font-size: .66rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.project-plan-preview-image {
  opacity: 0;
  transition:
    opacity .35s ease,
    transform .6s ease,
    filter .4s ease;
}

.project-plan-preview-image.is-loaded {
  opacity: 1;
}

.project-plan-sheet-real.preview-loaded
.project-plan-loading {
  opacity: 0;
  visibility: hidden;
}

.project-plan-sheet-real.preview-failed
.project-plan-loading {
  opacity: 0;
  visibility: hidden;
}

@keyframes projectPlanLoadingShine {
  0% {
    left: -75%;
    opacity: 0;
  }

  20% {
    opacity: .75;
  }

  75% {
    opacity: .45;
  }

  100% {
    left: 140%;
    opacity: 0;
  }
}

@media (max-width: 768px) {

  .project-plan-loading-sheet {
    width: 72%;
  }

  .project-plan-loading small {
    font-size: .61rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  .project-plan-loading-sheet span {
    animation: none !important;
  }

  .project-plan-loading,
  .project-plan-preview-image {
    transition: none !important;
  }
}


/* =========================================================
   MI PROYECTO · SELLO TÉCNICO DEL PLANO
========================================================= */

.project-plan-approval-stamp {
  position: absolute;
  z-index: 5;
  right: 24px;
  bottom: 74px;
  width: 142px;
  min-height: 56px;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(10, 102, 169, .20);
  border-radius: 8px;
  color: rgba(10, 102, 169, .27);
  background: rgba(255, 255, 255, .12);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-4deg);
  pointer-events: none;
  mix-blend-mode: multiply;
}

.project-plan-approval-stamp span {
  font-size: .52rem;
  font-weight: 950;
  letter-spacing: .18em;
}

.project-plan-approval-stamp strong {
  margin-top: 4px;
  font-size: .56rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: .08em;
}

.project-plan-sheet-real:hover
.project-plan-approval-stamp {
  color: rgba(10, 102, 169, .34);
}

@media (max-width: 768px) {

  .project-plan-approval-stamp {
    right: 19px;
    bottom: 70px;
    width: 124px;
    min-height: 50px;
    padding: 8px 9px;
  }

  .project-plan-approval-stamp strong {
    font-size: .51rem;
  }
}

@media (max-width: 390px) {

  .project-plan-approval-stamp {
    right: 16px;
    bottom: 92px;
    width: 112px;
  }
}

/* =========================================================
   MI PROYECTO · ENTRADA SUAVE DEL PLANO
========================================================= */

.project-plan-sheet-real {
  opacity: 0;
  transform:
    rotate(3.2deg)
    translateY(42px)
    scale(.965);
  transition:
    opacity .75s ease,
    transform .85s cubic-bezier(.18, .78, .22, 1),
    box-shadow .45s ease;
}

.project-plan-sheet-real.is-in-view {
  opacity: 1;
  transform:
    rotate(3.2deg)
    translateY(0)
    scale(1);
}

.project-plan-sheet-real.is-in-view:hover {
  transform:
    rotate(1.2deg)
    translateY(-9px)
    scale(1.018);
}


/* En caso de que JavaScript tarde en cargar,
   la hoja no permanece invisible indefinidamente. */
.project-plan-sheet-real.preview-loaded:not(.is-in-view) {
  animation:
    projectPlanSafetyReveal
    .8s
    ease
    1.5s
    forwards;
}

@keyframes projectPlanSafetyReveal {
  to {
    opacity: 1;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .project-plan-sheet-real {
    transform:
      rotate(2deg)
      translateY(34px)
      scale(.975);
  }

  .project-plan-sheet-real.is-in-view {
    transform:
      rotate(2deg)
      translateY(0)
      scale(1);
  }

  .project-plan-sheet-real.is-in-view:hover {
    transform:
      rotate(2deg)
      translateY(-4px);
  }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

  .project-plan-sheet-real {
    transform:
      rotate(1.7deg)
      translateY(28px)
      scale(.98);
  }

  .project-plan-sheet-real.is-in-view {
    transform:
      rotate(1.7deg)
      translateY(0)
      scale(1);
  }

  .project-plan-sheet-real.is-in-view:hover {
    transform: rotate(1.7deg);
  }

  .project-plan-sheet-real.is-in-view:active {
    transform:
      rotate(.8deg)
      scale(.985);
  }
}


/* =========================================================
   MENOS MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .project-plan-sheet-real,
  .project-plan-sheet-real.is-in-view,
  .project-plan-sheet-real.is-in-view:hover {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}


/* =========================================================
   MI PROYECTO · ANIMACIÓN AL ABRIR EL PLANO
========================================================= */

.project-plan-opening {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(58, 155, 210, .22),
      transparent 38%
    ),
    rgba(4, 28, 45, .72);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  transition:
    opacity .22s ease,
    visibility .22s ease;
}

.project-plan-opening strong {
  font-size: .69rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-shadow: 0 3px 12px rgba(0, 0, 0, .28);
}

.project-plan-opening-spinner {
  width: 34px;
  height: 34px;
  border: 3px solid rgba(255, 255, 255, .25);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation:
    projectPlanOpeningSpin
    .75s
    linear
    infinite;
}

.project-plan-sheet-real.is-opening
.project-plan-opening {
  opacity: 1;
  visibility: visible;
}

.project-plan-sheet-real.is-opening {
  transform:
    rotate(.7deg)
    translateY(3px)
    scale(.985) !important;
  box-shadow:
    0 23px 45px rgba(0, 0, 0, .28),
    0 4px 10px rgba(0, 0, 0, .16),
    inset 0 0 0 1px rgba(16, 35, 49, .08);
}

.project-plan-sheet-real.is-opening
.project-plan-paper-header,
.project-plan-sheet-real.is-opening
.project-plan-paper-footer,
.project-plan-sheet-real.is-opening
.project-plan-approval-stamp {
  opacity: .24;
}

@keyframes projectPlanOpeningSpin {
  to {
    transform: rotate(360deg);
  }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

  .project-plan-opening {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(4, 34, 53, .82);
  }

  .project-plan-sheet-real.is-opening {
    transform:
      rotate(.4deg)
      scale(.975) !important;
  }
}


/* =========================================================
   MENOS MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .project-plan-opening-spinner {
    animation: none !important;
  }

  .project-plan-sheet-real.is-opening {
    transform: none !important;
  }
}


/* =========================================================
   MESA DEL PLANO · TABLET Y CELULAR
========================================================= */

@media (max-width: 900px) {

  .project-plan-visual {
    padding:
      50px
      35px
      62px;
  }

  .project-plan-visual::after {
    left: 16%;
    right: 12%;
    bottom: 7%;
  }
}

@media (max-width: 768px) {

  .project-plan-visual {
    min-height: 455px;
    padding:
      32px
      24px
      44px;

    background:
      radial-gradient(
        circle at 15% 8%,
        rgba(255, 255, 255, .86),
        transparent 35%
      ),
      linear-gradient(
        145deg,
        #e2e4e3,
        #bdc3c4
      );
  }

  .project-plan-visual::after {
    left: 12%;
    right: 8%;
    bottom: 5%;
    height: 42px;
    filter: blur(10px);
  }
}

/* =========================================================
   MI PROYECTO · ESCENA REALISTA DE ESCRITORIO TÉCNICO
========================================================= */

.project-plan-visual {
  perspective: 1500px;
  isolation: isolate;
}


/* =========================================================
   LUZ NATURAL DE VENTANA
========================================================= */

.project-desk-light {
  position: absolute;
  z-index: 1;
  inset: -12%;
  pointer-events: none;
  opacity: .72;

  background:
    linear-gradient(
      118deg,
      transparent 0 12%,
      rgba(255, 255, 255, .38) 12% 26%,
      transparent 26% 34%,
      rgba(255, 255, 255, .20) 34% 47%,
      transparent 47% 100%
    );

  filter: blur(2px);
  transform: rotate(-4deg);
}


/* Sombra tenue proyectada por la ventana */
.project-desk-light::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      118deg,
      transparent 0 28%,
      rgba(48, 56, 60, .08) 28% 31%,
      transparent 31% 52%,
      rgba(48, 56, 60, .06) 52% 55%,
      transparent 55%
    );

  filter: blur(5px);
}


/* =========================================================
   HOJAS DEBAJO DEL PLANO
========================================================= */

.project-paper-stack {
  position: absolute;
  z-index: 2;
  width: min(72%, 440px);
  aspect-ratio: 1 / 1.28;
  pointer-events: none;
}

.project-paper-stack span {
  position: absolute;
  inset: 0;
  border-radius: 5px;
  background: #f7f6f1;
  border: 1px solid rgba(55, 64, 69, .08);
}

.project-paper-stack span:first-child {
  transform:
    translate(-8px, 10px)
    rotate(-1.1deg);

  box-shadow:
    5px 12px 22px rgba(24, 31, 35, .11);
}

.project-paper-stack span:last-child {
  transform:
    translate(7px, 6px)
    rotate(1.4deg);

  background: #eeede8;

  box-shadow:
    6px 14px 25px rgba(24, 31, 35, .10);
}


/* =========================================================
   PLANO PRINCIPAL
========================================================= */

.project-plan-sheet-real {
  z-index: 5 !important;
  border-radius: 4px;

  transform-origin: 48% 54%;

  box-shadow:
    13px 29px 34px rgba(25, 33, 37, .23),
    5px 12px 15px rgba(25, 33, 37, .16),
    1px 3px 5px rgba(25, 33, 37, .12),
    inset 0 0 0 1px rgba(255, 255, 255, .64);
}


/* Relieve muy fino del borde del papel */
.project-plan-sheet-real::after {
  box-shadow:
    inset 1px 0 0 rgba(255, 255, 255, .62),
    inset -1px 0 0 rgba(60, 68, 72, .07),
    inset 0 -2px 2px rgba(60, 68, 72, .07);
}


/* Ligera curvatura visual inferior */
.project-plan-sheet-real .project-plan-preview-image {
  clip-path:
    polygon(
      0 0,
      100% 0,
      100% 98.8%,
      92% 99.3%,
      76% 99.7%,
      52% 100%,
      28% 99.7%,
      9% 99.2%,
      0 98.7%
    );
}


/* =========================================================
   HERRAMIENTAS
========================================================= */

.project-desk-tools {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}


/* =========================================================
   REGLA METÁLICA
========================================================= */

.project-desk-ruler {
  position: absolute;
  left: -32px;
  bottom: 54px;
  width: 270px;
  height: 31px;
  overflow: hidden;
  border-radius: 4px;

  background:
    linear-gradient(
      180deg,
      #d8dddf 0%,
      #f2f4f4 38%,
      #aeb5b8 100%
    );

  border:
    1px solid
    rgba(48, 60, 66, .22);

  box-shadow:
    8px 13px 22px rgba(25, 32, 36, .24),
    inset 0 1px 0 rgba(255, 255, 255, .80);

  transform:
    rotate(12deg);

  opacity: .92;
}

.project-desk-ruler::before {
  content: "0    5    10    15    20    25";
  position: absolute;
  top: 4px;
  left: 12px;

  color:
    rgba(43, 52, 57, .58);

  font-family:
    monospace;

  font-size: 7px;
  letter-spacing: 5px;
  white-space: nowrap;
}

.project-desk-ruler i {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 12px;
  margin-left: 4px;
  margin-top: 18px;
  border-left:
    1px solid
    rgba(38, 47, 52, .50);
}

.project-desk-ruler i:nth-child(even) {
  height: 8px;
}


/* =========================================================
   LÁPIZ TÉCNICO
========================================================= */

.project-desk-pencil {
  position: absolute;
  right: 18px;
  top: 46px;
  width: 245px;
  height: 16px;
  border-radius: 4px 9px 9px 4px;

  background:
    linear-gradient(
      180deg,
      #183e55 0%,
      #0a669f 42%,
      #063e64 100%
    );

  box-shadow:
    7px 12px 18px rgba(22, 29, 34, .22),
    inset 0 1px 0 rgba(255, 255, 255, .24);

  transform:
    rotate(-34deg);

  opacity: .95;
}

.project-desk-pencil::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;

  width: 31px;
  height: 16px;

  background:
    linear-gradient(
      90deg,
      #d5b07a,
      #f0d1a1
    );

  clip-path:
    polygon(
      100% 0,
      100% 100%,
      0 50%
    );
}

.project-desk-pencil::after {
  content: "";
  position: absolute;
  left: -35px;
  top: 5px;

  width: 8px;
  height: 6px;

  background: #31383d;

  clip-path:
    polygon(
      100% 0,
      100% 100%,
      0 50%
    );
}

.project-desk-pencil i {
  position: absolute;
  right: 10px;
  top: 3px;

  width: 42px;
  height: 10px;

  border-radius: 999px;
  background:
    rgba(255, 255, 255, .14);
}


/* =========================================================
   ESCALÍMETRO
========================================================= */

.project-desk-scale {
  position: absolute;
  right: -65px;
  bottom: 64px;

  width: 245px;
  height: 34px;

  transform:
    rotate(-19deg);

  filter:
    drop-shadow(
      8px
      13px
      11px
      rgba(22, 29, 33, .24)
    );

  opacity: .95;
}

.project-desk-scale::before,
.project-desk-scale::after {
  content: "";
  position: absolute;
  inset: 0;

  clip-path:
    polygon(
      0 50%,
      7% 0,
      93% 0,
      100% 50%,
      93% 100%,
      7% 100%
    );
}

.project-desk-scale::before {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #e2e5e5 48%,
      #bec4c5 100%
    );

  border-radius: 5px;
}

.project-desk-scale::after {
  inset: 7px 15px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(40, 48, 52, .18),
      transparent
    );
}

.project-desk-scale i {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 50px;
  height: 7px;
  margin:
    6px
    0
    0
    22px;

  border-top:
    1px solid
    rgba(42, 52, 57, .40);

  border-left:
    1px solid
    rgba(42, 52, 57, .40);
}


/* =========================================================
   PROFUNDIDAD AL PASAR EL MOUSE
========================================================= */

@media (hover: hover) and (pointer: fine) {

  .project-plan-sheet-real.is-in-view:hover {
    transform:
      rotate(1deg)
      translateY(-8px)
      rotateX(1.2deg)
      rotateY(-1.2deg)
      scale(1.012);

    box-shadow:
      17px 39px 46px rgba(25, 33, 37, .28),
      6px 17px 21px rgba(25, 33, 37, .18),
      1px 4px 7px rgba(25, 33, 37, .13),
      inset 0 0 0 1px rgba(255, 255, 255, .67);
  }

  .project-plan-visual:hover
  .project-desk-light {
    opacity: .82;
  }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

  .project-desk-ruler {
    left: -42px;
    bottom: 45px;
    width: 230px;
  }

  .project-desk-pencil {
    right: 5px;
    top: 42px;
    width: 210px;
  }

  .project-desk-scale {
    right: -78px;
    width: 220px;
  }
}


/* =========================================================
   CELULAR
========================================================= */

@media (max-width: 768px) {

  .project-paper-stack {
    width: min(88%, 430px);
  }

  .project-desk-light {
    opacity: .52;
  }

  .project-desk-ruler {
    left: -72px;
    bottom: 27px;
    width: 210px;
    height: 27px;
    opacity: .74;
  }

  .project-desk-pencil {
    right: -55px;
    top: 34px;
    width: 190px;
    height: 14px;
    opacity: .76;
  }

  .project-desk-pencil::before {
    height: 14px;
  }

  .project-desk-scale {
    right: -105px;
    bottom: 37px;
    width: 210px;
    opacity: .72;
  }

  .project-plan-sheet-real.is-in-view:hover {
    transform:
      rotate(1.7deg)
      translateY(0)
      scale(1);
  }
}


/* =========================================================
   TELÉFONOS PEQUEÑOS
========================================================= */

@media (max-width: 390px) {

  .project-paper-stack {
    width: 92%;
  }

  .project-desk-ruler {
    left: -90px;
  }

  .project-desk-pencil {
    right: -80px;
  }

  .project-desk-scale {
    right: -125px;
  }
}


/* =========================================================
   MENOS MOVIMIENTO
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .project-desk-light,
  .project-plan-sheet-real {
    transition: none !important;
  }
}

/* =========================================================
   AJUSTE DE POSICIÓN DE LAS HERRAMIENTAS
   Más visibles alrededor del plano
========================================================= */

.project-desk-ruler {
  left: -58px;
  bottom: 38px;
}

.project-desk-pencil {
  right: -42px;
  top: 58px;
}

.project-desk-scale {
  right: -92px;
  bottom: 46px;
}



/* =========================================================
   TRANSVISIÓN EXPERIENCE · REBRANDING 2026
========================================================= */

.experience-brand img {
  height: 42px;
  max-width: 220px;
  filter: none !important;
}

.experience-nav-cta,
.experience-op-search-btn,
.experience-project-status-btn,
.experience-submit {
  background: var(--experience-orange) !important;
  color: #fff !important;
  border-color: var(--experience-orange) !important;
  box-shadow: 0 14px 34px rgba(229,93,9,.25);
}

.experience-nav-cta:hover,
.experience-op-search-btn:hover,
.experience-project-status-btn:hover,
.experience-submit:hover {
  background: var(--experience-orange-dark) !important;
}

.experience-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.experience-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: var(--experience-orange);
}

.experience-eyebrow small {
  font-size: .62rem;
  letter-spacing: .14em;
  opacity: .72;
}

.experience-section-kicker,
.experience-access-number,
.experience-project-result-kicker,
.project-kicker,
.zero-first-kicker,
.zero-plan-history-head small {
  color: var(--experience-orange) !important;
}

.experience-btn-primary {
  background: var(--experience-orange);
  color: #fff;
  box-shadow: 0 18px 40px rgba(229,93,9,.28);
}

.experience-btn-primary:hover {
  background: var(--experience-orange-dark);
}

.experience-hero-shade {
  background:
    radial-gradient(circle at 20% 42%, rgba(229,93,9,.18), transparent 27%),
    radial-gradient(circle at 72% 28%, rgba(174,224,244,.13), transparent 30%),
    linear-gradient(180deg, rgba(3,13,22,.68), rgba(3,13,22,.30) 42%, rgba(3,13,22,.82)),
    linear-gradient(90deg, rgba(4,20,34,.62), rgba(4,20,34,.10) 58%, rgba(4,20,34,.32));
}

.experience-footer-brand img {
  height: 54px;
  max-width: 250px;
  filter: none !important;
}

.experience-footer-zero,
.experience-powered {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.experience-powered img {
  width: auto;
  height: 24px;
  max-width: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.project-experience-nav .experience-brand img {
  width: auto !important;
  height: 38px !important;
  max-width: 190px !important;
}

.zero-first-open,
.project-plan-button,
.zero-approval-modal-btn.send {
  background: var(--experience-orange) !important;
  border-color: var(--experience-orange) !important;
  box-shadow: 0 14px 30px rgba(229,93,9,.22);
}

.zero-first-btn.change {
  color: var(--experience-orange-dark);
  border-color: rgba(229,93,9,.28);
}

.zero-first-current-state {
  background: #fff0e6;
  color: #9a3e05;
}

.project-story-step.is-completed .project-story-marker,
.project-story-step.is-current .project-story-marker {
  border-color: var(--experience-orange);
  background: var(--experience-orange);
  box-shadow: 0 0 0 8px rgba(229,93,9,.09);
}

.project-story-step.is-completed::before {
  background: rgba(229,93,9,.62);
}

.project-story-step p,
.project-experience-card > span,
.project-experience-card a {
  color: var(--experience-orange);
}

@media (max-width: 768px) {
  .experience-brand img,
  .project-experience-nav .experience-brand img {
    width: auto !important;
    height: 32px !important;
    max-width: 150px !important;
  }

  .project-mobile-main-action b,
  .project-story-step.is-completed .project-story-marker,
  .project-story-step.is-current .project-story-marker {
    background: var(--experience-orange) !important;
    border-color: var(--experience-orange) !important;
  }

  .project-story-step.is-completed::before {
    background: var(--experience-orange) !important;
  }

  .project-story-step.is-current h3,
  .project-story-current-label {
    color: var(--experience-orange-dark) !important;
  }

  .project-story-current-label {
    background: #fff0e6 !important;
  }
}


/* =========================================================
   CORRECCIÓN FINAL · LOGO TRANSVISIÓN EN EL HEADER
   El PNG vertical tiene un lienzo cuadrado con mucho aire.
   Se muestra recortado dentro de una franja horizontal para
   que el logotipo real ocupe el alto disponible del header.
========================================================= */

.experience-nav .experience-brand {
  width: 230px !important;
  min-width: 230px !important;
  height: 66px !important;
  gap: 1px !important;
  overflow: hidden !important;
}

.experience-nav .experience-header-logo {
  display: block !important;
  width: 220px !important;
  max-width: 220px !important;
  height: 49px !important;
  object-fit: cover !important;
  object-position: center 50% !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  transform: none !important;
}

.experience-nav .experience-brand:hover .experience-header-logo {
  transform: none !important;
}

.experience-nav .experience-brand-discover {
  width: auto !important;
  margin: 1px 0 0 !important;
  font-size: .64rem !important;
  line-height: 1 !important;
}

.project-experience-nav .experience-brand {
  width: 230px !important;
  min-width: 230px !important;
}

.project-experience-nav .experience-header-logo {
  width: 220px !important;
  max-width: 220px !important;
  height: 49px !important;
}

@media (max-width: 768px) {
  .experience-nav .experience-brand,
  .project-experience-nav .experience-brand {
    width: 158px !important;
    min-width: 158px !important;
    height: 57px !important;
  }

  .experience-nav .experience-header-logo,
  .project-experience-nav .experience-header-logo {
    width: 154px !important;
    max-width: 154px !important;
    height: 39px !important;
    object-fit: cover !important;
    object-position: center 50% !important;
  }

  .experience-nav .experience-brand-discover,
  .project-experience-nav .experience-brand-discover {
    margin-top: 1px !important;
    font-size: .52rem !important;
  }
}

@media (max-width: 390px) {
  .experience-nav .experience-brand,
  .project-experience-nav .experience-brand {
    width: 138px !important;
    min-width: 138px !important;
    height: 54px !important;
  }

  .experience-nav .experience-header-logo,
  .project-experience-nav .experience-header-logo {
    width: 134px !important;
    max-width: 134px !important;
    height: 36px !important;
  }

  .experience-nav .experience-brand-discover,
  .project-experience-nav .experience-brand-discover {
    font-size: .49rem !important;
  }
}
