/** Shopify CDN: Minification failed

Line 4312:0 Unexpected "}"
Line 5282:0 Unexpected "("

**/
:root{
  --color-bg:#0C0B0A;
  --color-bg-soft:#14120F;
  --color-surface:#1A1815;
  --color-carbon:#E8E4DC;
  --color-black:#050504;
  --color-muted:#9C968A;
  --color-border:rgba(201,160,80,.16);
  --gold-1:#F4E3B0;
  --gold-2:#D9B25E;
  --gold-3:#C9A050;
  --gold-4:#8C6A2E;
  --silver-1:#F2F1EE;
  --silver-2:#C7C4BC;
  --color-brand:var(--gold-3);
  --color-brand-tint:rgba(201,160,80,.1);
  --font-display:"Fraunces",Georgia,serif;
  --font-body:"Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  --container-w:1160px;
  --radius-s:8px;
  --radius-m:16px;
  --radius-l:28px;
  --ease:cubic-bezier(.4,0,.2,1);
  --ease-out:cubic-bezier(.16,1,.3,1);
  --t-fast:200ms var(--ease);
  --t-base:350ms var(--ease-out);
  --gold-gradient:linear-gradient(120deg,var(--gold-1),var(--gold-3) 45%,var(--gold-4) 100%);
}

*{box-sizing:border-box}

html{
  scroll-behavior:auto;
  font-size:16px;
}

body{
  margin:0;
  font-family:var(--font-body);
  font-size:16px;
  color:var(--color-carbon);
  background:var(--color-bg);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  cursor:auto;
}

body:not(.has-custom-cursor){
  cursor:auto;
}

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

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

ul{
  margin:0;
  padding:0;
  list-style:none;
}

.container{
  max-width:var(--container-w);
  margin:0 auto;
  padding:0 24px;
  position:relative;
}

h1,
h2,
h3{
  font-family:var(--font-display);
  font-weight:500;
  letter-spacing:-.01em;
  color:var(--silver-1);
  margin:0;
}

h1{
  font-size:clamp(2.4rem,7vw,4.2rem);
}

h2{
  font-size:clamp(1.8rem,4.5vw,2.8rem);
}

h3{
  font-size:clamp(1.1rem,3vw,1.5rem);
}

section{
  padding:128px 0;
  position:relative;
  background:var(--color-bg);
}

.eyebrow{
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-2);
  margin:0 0 22px;
}

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

.section-title{
  font-size:clamp(1.9rem,3.6vw,2.6rem);
  max-width:720px;
  margin-bottom:56px;
  line-height:1.25;
  color:var(--silver-1);
}

/* LOGO */

.logo{
  display:flex;
  align-items:center;
}

.logo-img{
  height:52px;
  width:auto;
}

.logo-img-footer{
  height:42px;
}

.logo-fallback{
  display:none;
  align-items:center;
  font-family:var(--font-display);
  font-size:1.4rem;
  font-weight:500;
  color:var(--silver-1);
}

.logo-fallback span{
  color:var(--gold-2);
}

.logo-fallback-footer{
  font-size:1.5rem;
}

/* PRELOADER */

.preloader{
  position:fixed;
  inset:0;
  z-index:9999;
  background:var(--color-bg);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:opacity 500ms var(--ease),visibility 500ms;
}

.preloader.is-hidden{
  opacity:0;
  visibility:hidden;
  pointer-events:none;
}

.preloader-logo{
  font-family:var(--font-display);
  font-size:1.8rem;
  color:var(--silver-1);
  opacity:0;
  animation:preloaderFade 1.1s var(--ease) forwards;
}

.preloader-logo span{
  color:var(--gold-2);
}

@keyframes preloaderFade{
  0%{
    opacity:0;
    letter-spacing:.08em;
  }

  60%{
    opacity:1;
    letter-spacing:0;
  }

  100%{
    opacity:1;
  }
}

.grain-overlay{
  position:fixed;
  inset:0;
  z-index:998;
  pointer-events:none;
  opacity:.025;
  mix-blend-mode:overlay;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* CURSOR */

.cursor-dot,
.cursor-ring,
.cursor-spotlight{
  display:none;
}

body.has-custom-cursor .cursor-dot,
body.has-custom-cursor .cursor-ring,
body.has-custom-cursor .cursor-spotlight{
  display:block;
}

.cursor-spotlight{
  position:fixed;
  top:0;
  left:0;
  width:600px;
  height:600px;
  border-radius:50%;
  pointer-events:none;
  z-index:1;
  background:radial-gradient(circle,rgba(201,160,80,.06),transparent 70%);
  transform:translate(-50%,-50%);
}

.cursor-dot,
.cursor-ring{
  position:fixed;
  top:0;
  left:0;
  border-radius:50%;
  pointer-events:none;
  z-index:9997;
  transform:translate(-50%,-50%);
}

.cursor-dot{
  width:6px;
  height:6px;
  background:var(--gold-2);
}

.cursor-ring{
  width:34px;
  height:34px;
  border:1.5px solid rgba(201,160,80,.5);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:
    width 200ms var(--ease-out),
    height 200ms var(--ease-out),
    border-color 200ms,
    background 200ms;
}

.cursor-ring.is-active{
  width:66px;
  height:66px;
  border-color:var(--gold-2);
  background:rgba(201,160,80,.1);
}

.cursor-label{
  font-size:.62rem;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:var(--gold-1);
  opacity:0;
  transition:opacity 150ms;
  white-space:nowrap;
}

.cursor-ring.is-active .cursor-label{
  opacity:1;
}

.scroll-progress{
  position:fixed;
  top:0;
  left:0;
  height:2px;
  width:0;
  background:var(--gold-2);
  z-index:1001;
}

/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(12,11,10,.82);
  backdrop-filter:blur(14px);
  border-bottom:1px solid var(--color-border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 24px;
}

.main-nav{
  display:flex;
  gap:32px;
}

.main-nav a{
  font-size:.9rem;
  font-weight:500;
  color:var(--color-muted);
  transition:color var(--t-fast);
}

.main-nav a:hover{
  color:var(--silver-1);
}

.header-contact{
  display:flex;
  align-items:center;
  gap:20px;
}

.header-email{
  font-size:.85rem;
  color:var(--color-muted);
  transition:color var(--t-fast);
}

.header-email:hover{
  color:var(--gold-2);
}

.nav-toggle{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:0;
  cursor:pointer;
  padding:6px;
}

.nav-toggle span{
  width:22px;
  height:2px;
  background:var(--gold-2);
  border-radius:2px;
}

/* HERO */

.hero{
  min-height:92vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:150px 0 60px;
  position:relative;
  overflow:hidden;
}

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

body.has-particles .hero-canvas{
  opacity:.82;
}

.hero-glow{
  position:absolute;
  top:-25%;
  left:50%;
  transform:translateX(-50%);
  width:1000px;
  height:1000px;
  border-radius:50%;
  background:radial-gradient(
    circle,
    rgba(217,178,94,.18) 0%,
    rgba(201,160,80,.09) 35%,
    rgba(201,160,80,.025) 58%,
    transparent 72%
  );
  filter:blur(2px);
  pointer-events:none;
  z-index:0;
}

.hero::before,
.hero::after{
  content:"";
  position:absolute;
  pointer-events:none;
  border-radius:50%;
  z-index:0;
}

.hero::before{
  width:560px;
  height:560px;
  top:-220px;
  left:-180px;
  background:radial-gradient(circle,rgba(201,160,80,.08),transparent 70%);
  filter:blur(12px);
}

.hero::after{
  width:500px;
  height:500px;
  right:-180px;
  bottom:-220px;
  background:radial-gradient(circle,rgba(140,106,46,.08),transparent 70%);
  filter:blur(14px);
}

.hero-inner{
  max-width:760px;
  position:relative;
  z-index:2;
}

.hero h1{
  line-height:1.14;
  margin-bottom:30px;
  font-weight:600;
}

.mask-line{
  display:block;
  overflow:hidden;
}

.mask-line-inner{
  display:block;
  transform:translateY(105%);
}

.hero-sub{
  font-size:1.15rem;
  color:var(--color-muted);
  max-width:560px;
  margin-bottom:40px;
}

/* Mensaje destacado con brillo animado */

.hero-catalog-highlight {
  position: relative;
  width: min(100%, 680px);
  margin: 18px 0 38px;
  padding: 24px 28px;
  overflow: hidden;
  border-left: 4px solid var(--gold-2);
  border-radius: 10px;
  background: rgba(201, 160, 80, 0.08);
  color: var(--silver-1);
  box-shadow:
    0 0 26px rgba(201, 160, 80, 0.12),
    inset 0 0 22px rgba(201, 160, 80, 0.04);
}

.hero-catalog-highlight::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -35%;
  width: 22%;
  height: 180%;
  pointer-events: none;
  transform: rotate(22deg);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 238, 180, 0.72),
    transparent
  );
  filter: blur(8px);
  animation: highlight-shine 8s ease-in-out infinite;
}

.hero-catalog-highlight strong,
.hero-catalog-highlight span {
  position: relative;
  z-index: 1;
}

.hero-catalog-highlight strong {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-1);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-catalog-highlight span {
  display: block;
  color: var(--silver-1);
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes highlight-shine {
  0% {
    left: -35%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  45%,
  100% {
    left: 125%;
    opacity: 0;
  }
}

@media screen and (max-width: 760px) {
  .hero-catalog-highlight {
    margin: 4px 0 30px;
    padding: 19px 19px 20px;
    border-left-width: 3px;
  }

  .hero-catalog-highlight strong {
    font-size: 1rem;
  }

  .hero-catalog-highlight span {
    font-size: 0.9rem;
    line-height: 1.52;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-catalog-highlight::after {
    animation: none;
    opacity: 0.35;
    left: 35%;
  }
}

.hero-cta{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
}

.hero-cta-note{
  font-size:.85rem;
  color:var(--color-muted);
  margin:0;
}

[data-fade]{
  opacity:0;
  transform:translateY(16px);
}

.hero-visual{
  display:none!important;
}

/* CLIENTES */

.trust{
  padding:80px 0;
  background:var(--color-bg-soft);
  border-top:1px solid var(--color-border);
  border-bottom:1px solid var(--color-border);
  overflow:hidden;
}

.trust-after-process{
  padding:72px 0;
}

.marquee{
  width:100%;
  overflow:hidden;
  margin:38px 0 46px;
  mask-image:linear-gradient(
    90deg,
    transparent,
    #000 12%,
    #000 88%,
    transparent
  );
}

.marquee-track{
  display:flex;
  gap:0;
  width:max-content;
  animation:marquee 32s linear infinite;
}

@keyframes marquee{
  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }
}

/* Sin tarjetas. Solo separación dorada entre logos. */

.logo-slot{
  flex:0 0 auto;
  min-width:0;
  width:auto;
  height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 42px;
  overflow:visible;
  border:0;
  border-right:1px solid rgba(217,178,94,.65);
  border-radius:0;
  background:transparent;
  color:inherit;
}

.logo-slot:last-child{
  border-right:0;
}

.logo-slot img{
  display:block;
  width:auto;
  height:78px;
  max-width:330px;
  object-fit:contain;
  object-position:center;
  opacity:.9;
  filter:grayscale(1) brightness(1.35);
  transform:scale(1.12);
  transform-origin:center;
  transition:
    opacity 200ms ease,
    filter 200ms ease,
    transform 200ms ease;
}

.logo-slot:hover img{
  opacity:1;
  filter:grayscale(0) brightness(1);
  transform:scale(1.2);
}

.trust-statement{
  text-align:center;
  font-family:var(--font-display);
  font-style:italic;
  font-size:1.35rem;
  max-width:640px;
  margin:0 auto;
  color:var(--silver-1);
}

/* REVEALS */

.reveal-title,
.reveal-stagger{
  opacity:0;
  transform:translateY(20px);
}

.reveal-title.is-visible,
.reveal-stagger.is-visible{
  opacity:1;
  transform:translateY(0);
  transition:
    opacity 550ms var(--ease-out),
    transform 550ms var(--ease-out);
}

/* PROBLEMAS */

.problems-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.problem-card{
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-m);
  padding:32px 26px;
  transition:
    border-color var(--t-base),
    transform var(--t-base);
}

.problem-card:hover{
  border-color:rgba(201,160,80,.4);
  transform:translateY(-3px);
}

.problem-card h3{
  font-family:var(--font-body);
  font-size:1rem;
  font-weight:700;
  margin-bottom:10px;
  line-height:1.4;
  color:var(--silver-1);
}

.problem-card p{
  color:var(--color-muted);
  font-size:.92rem;
  margin:0;
}

.icon{
  width:40px;
  height:40px;
  margin-bottom:20px;
  border-radius:50%;
  background:var(--color-brand-tint);
  position:relative;
}

.icon::after{
  content:"";
  position:absolute;
  inset:12px;
  border:1.5px solid var(--gold-2);
  border-radius:3px;
}

/* SOLUCIONES */

.solutions{
  background:var(--color-bg-soft);
}

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

.solution-card{
  border:1px solid var(--color-border);
  border-radius:var(--radius-m);
  padding:0 0 28px;
  overflow:hidden;
  position:relative;
  background:var(--color-surface);

  transform-style:preserve-3d;
  transform-origin:center center;
  will-change:transform;

  transition:
    border-color var(--t-base),
    box-shadow var(--t-base),
    transform 180ms ease-out;
}

.solution-card:hover{
  border-color:rgba(201,160,80,.4);
  box-shadow:0 24px 60px rgba(0,0,0,.35);
}

.solution-media{
  height:170px;
  margin-bottom:22px;
  position:relative;
  overflow:hidden;
  transform-origin:center;
  will-change:transform;
}

.solution-media::before,
.solution-media::after{
  content:"";
  position:absolute;
  inset:auto;
  pointer-events:none;
}

.solution-media .solution-index{
  position:absolute;
  bottom:14px;
  right:18px;
  font-family:var(--font-display);
  font-size:2rem;
  color:rgba(201,160,80,.45);
  z-index:2;
}

/* CATEGORÍAS */

.solution-media-empleados{
  background:
    radial-gradient(circle at 20% 15%, rgba(217,178,94,.38), transparent 24%),
    radial-gradient(circle at 70% 80%, rgba(201,160,80,.16), transparent 28%),
    linear-gradient(150deg, #241d15, #11100f 72%);
}

.solution-media-empleados::before{
  width:110px;
  height:110px;
  border:1px solid rgba(217,178,94,.55);
  border-radius:50%;
  top:16px;
  left:18px;
  box-shadow:0 0 30px rgba(217,178,94,.12);
}

.solution-media-empleados::after{
  width:180px;
  height:180px;
  border:1px dashed rgba(217,178,94,.22);
  border-radius:50%;
  top:-24px;
  right:-20px;
}

.solution-media-ferias{
  background:
    linear-gradient(135deg, rgba(217,178,94,.34), transparent 45%),
    linear-gradient(150deg, #281b11, #0f0d0c 70%);
}

.solution-media-ferias::before{
  width:220px;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(217,178,94,.8), transparent);
  top:40px;
  left:-20px;
  transform:rotate(-18deg);
  box-shadow:0 0 24px rgba(217,178,94,.26);
}

.solution-media-ferias::after{
  width:130px;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(255,210,120,.72), transparent);
  top:70px;
  right:-18px;
  transform:rotate(28deg);
}

.solution-media-clientes{
  background:
    radial-gradient(circle at 78% 18%, rgba(242,241,238,.36), transparent 20%),
    radial-gradient(circle at 35% 72%, rgba(199,196,188,.12), transparent 26%),
    linear-gradient(150deg, #191817, #0f0e0d 70%);
}

.solution-media-clientes::before{
  width:150px;
  height:95px;
  border:1px solid rgba(242,241,238,.28);
  border-radius:50% 50% 42% 58% / 58% 40% 60% 42%;
  top:18px;
  left:22px;
  transform:rotate(-12deg);
}

.solution-media-clientes::after{
  width:70px;
  height:70px;
  border:1px solid rgba(242,241,238,.26);
  border-radius:50%;
  top:48px;
  right:30px;
  box-shadow:0 0 22px rgba(242,241,238,.1);
}

.solution-media-merchandising{
  background:
    linear-gradient(180deg, rgba(201,160,80,.12), transparent 35%),
    linear-gradient(150deg, #1c1915, #0d0c0b 72%);
}

.solution-media-merchandising::before{
  width:240px;
  height:1px;
  background:rgba(201,160,80,.5);
  top:42px;
  left:-10px;
  box-shadow:
    0 22px 0 rgba(201,160,80,.22),
    0 44px 0 rgba(201,160,80,.12),
    0 66px 0 rgba(201,160,80,.08);
  transform:rotate(-12deg);
}

.solution-media-merchandising::after{
  width:120px;
  height:120px;
  border:1px solid rgba(201,160,80,.18);
  border-radius:18px;
  bottom:-18px;
  right:18px;
  transform:rotate(18deg);
}

.solution-media-medida{
  background:
    radial-gradient(circle at 48% 42%, rgba(217,178,94,.24), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(199,196,188,.14), transparent 22%),
    linear-gradient(150deg, #231d18, #0e0d0c 72%);
}

.solution-media-medida::before{
  width:180px;
  height:120px;
  border:1px solid rgba(217,178,94,.3);
  border-radius:60% 40% 55% 45% / 55% 45% 55% 45%;
  top:14px;
  left:26px;
  transform:rotate(10deg);
  box-shadow:0 0 30px rgba(217,178,94,.08);
}

.solution-media-medida::after{
  width:100px;
  height:100px;
  border:1px dashed rgba(199,196,188,.18);
  border-radius:50%;
  bottom:10px;
  right:18px;
}

.solution-card h3{
  font-size:1.15rem;
  margin:0 26px 8px;
  color:var(--silver-1);
  position:relative;
  z-index:2;
}

.solution-card p{
  margin:0 26px;
  color:var(--color-muted);
  font-size:.92rem;
  position:relative;
  z-index:2;
}

.link-cta{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin:16px 26px 0;
  font-weight:600;
  color:var(--gold-2);
  border-bottom:1px solid transparent;
  transition:
    border-color var(--t-fast),
    gap var(--t-fast);
  position:relative;
  z-index:2;
}

.link-cta:hover{
  border-color:var(--gold-2);
  gap:10px;
}

/* FILOSOFÍA */

.philosophy{
  background:var(--color-black);
}

.philosophy .section-title{
  max-width:780px;
}

.philosophy-inner{
  max-width:820px;
}

.philosophy-text{
  font-size:1.12rem;
  color:var(--color-muted);
  margin-bottom:50px;
  max-width:700px;
}

.philosophy-principles{
  display:flex;
  flex-direction:column;
  gap:20px;
}

.philosophy-principles li{
  display:flex;
  align-items:flex-start;
  gap:18px;
  font-size:1.12rem;
  font-family:var(--font-display);
  color:var(--silver-1);
  padding-bottom:18px;
  border-bottom:1px solid var(--color-border);
}

.philosophy-principles li:last-child{
  border-bottom:0;
}

.philosophy-principles span{
  font-size:.82rem;
  color:var(--gold-2);
  font-weight:700;
  font-family:var(--font-body);
  padding-top:5px;
}

/* PROCESO */

.process-line{
  position:relative;
  height:1px;
  background:var(--color-border);
  margin-bottom:48px;
  display:none;
}

.process-line-fill{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:0;
  background:var(--gold-2);
}

.process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.step{
  padding:28px 22px;
  border-radius:var(--radius-m);
  background:var(--color-surface);
  border:1px solid var(--color-border);
  transition:border-color var(--t-base);
  will-change:transform;
}

.step:hover{
  border-color:rgba(201,160,80,.35);
}

.step-number{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--gold-2);
  color:var(--color-black);
  font-weight:700;
  font-size:.88rem;
  margin-bottom:18px;
}

.step h3{
  font-size:1rem;
  margin-bottom:8px;
  color:var(--silver-1);
}

.step p{
  color:var(--color-muted);
  font-size:.88rem;
  margin:0;
}

/* CTA FINAL */

.cta-final{
  background:var(--color-bg-soft);
  text-align:center;
  border-top:1px solid var(--color-border);
}

.cta-final-inner{
  max-width:640px;
}

.cta-final h2{
  font-size:clamp(1.9rem,3.6vw,2.7rem);
  margin-bottom:18px;
}

.cta-final p{
  color:var(--color-muted);
  margin-bottom:34px;
  font-size:1.05rem;
}

.cta-final-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}

/* FORMULARIO */

.contact-form-section{
  background:var(--color-bg);
}

.contact-form-inner{
  max-width:560px;
}

.contact-form{
  margin-top:38px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.form-row{
  position:relative;
}

.form-row input,
.form-row textarea{
  width:100%;
  border:0;
  border-bottom:1.5px solid var(--color-border);
  padding:13px 2px 9px;
  font-family:var(--font-body);
  font-size:1rem;
  resize:vertical;
  background:transparent;
  color:var(--silver-1);
  transition:border-color var(--t-fast);
}

.form-row input:focus,
.form-row textarea:focus{
  outline:0;
  border-color:var(--gold-2);
}

.form-row label{
  position:absolute;
  left:2px;
  top:13px;
  font-size:1rem;
  color:var(--color-muted);
  pointer-events:none;
  transition:
    transform 180ms var(--ease-out),
    font-size 180ms var(--ease-out),
    color 180ms;
}

.form-row input:focus+label,
.form-row input:not(:placeholder-shown)+label,
.form-row textarea:focus+label,
.form-row textarea:not(:placeholder-shown)+label{
  transform:translateY(-20px);
  font-size:.76rem;
  color:var(--gold-2);
}

.form-note{
  font-size:.82rem;
  color:var(--color-muted);
  margin:4px 0;
}

.form-confirmation{
  margin-top:22px;
  padding:26px;
  border-radius:var(--radius-m);
  background:var(--color-brand-tint);
  border:1px solid var(--color-border);
  color:var(--silver-1);
  text-align:center;
}

.form-confirmation p{
  margin:4px 0;
}

.check-circle{
  stroke:var(--gold-2);
  stroke-width:2;
  stroke-dasharray:151;
  stroke-dashoffset:151;
  animation:checkCircle 450ms ease forwards;
}

.check-mark{
  stroke:var(--gold-2);
  stroke-width:3;
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-dasharray:36;
  stroke-dashoffset:36;
  animation:checkMark 300ms ease forwards 420ms;
}

@keyframes checkCircle{
  to{
    stroke-dashoffset:0;
  }
}

@keyframes checkMark{
  to{
    stroke-dashoffset:0;
  }
}

/* BOTONES */

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 28px;
  border-radius:999px;
  font-weight:600;
  font-size:.94rem;
  cursor:pointer;
  border:1px solid transparent;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    border-color var(--t-fast),
    transform var(--t-fast);
  white-space:nowrap;
}

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

.btn-primary:hover{
  background:var(--gold-1);
  transform:translateY(-1px);
}

.btn-outline-light,
.btn-outline-dark{
  background:transparent;
  color:var(--silver-1);
  border-color:var(--color-border);
}

.btn-outline-light:hover{
  border-color:var(--gold-2);
  color:var(--gold-1);
}

.btn-sm{
  padding:10px 18px;
  font-size:.84rem;
}

.btn-lg{
  padding:16px 34px;
  font-size:.98rem;
}

/* FOOTER */

.site-footer{
  background:var(--color-black);
  color:var(--color-muted);
  padding:80px 0 0;
  border-top:1px solid var(--color-border);
}

.footer-inner{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1fr;
  gap:40px;
  padding-bottom:46px;
  border-bottom:1px solid var(--color-border);
}

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

.footer-col h4{
  color:var(--silver-1);
  font-size:.84rem;
  text-transform:uppercase;
  letter-spacing:.06em;
  margin-bottom:6px;
}

.footer-col a{
  color:var(--color-muted);
  font-size:.9rem;
}

.footer-col a:hover{
  color:var(--gold-2);
}

.footer-brand p{
  font-size:.87rem;
  color:var(--color-muted);
  max-width:260px;
  margin-top:14px;
}

.footer-social{
  display:flex;
  gap:16px;
  margin-top:8px;
}

.footer-bottom{
  padding:22px 0;
  font-size:.8rem;
  color:#5F5B53;
  text-align:center;
}

/* WHATSAPP */

.whatsapp-float{
  position:fixed;
  bottom:26px;
  right:26px;
  width:56px;
  height:56px;
  border-radius:50%;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 24px rgba(0,0,0,.4);
  z-index:200;
  transition:transform var(--t-fast);
}

.whatsapp-float:hover{
  transform:scale(1.06);
}

.whatsapp-icon{
  color:#fff;
  font-weight:700;
  font-size:.84rem;
}

/* BARRA MÓVIL */

.sticky-mobile-bar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:199;
  display:none;
  gap:10px;
  padding:12px 16px;
  background:rgba(12,11,10,.97);
  backdrop-filter:blur(10px);
  border-top:1px solid var(--color-border);
  transform:translateY(100%);
  transition:transform var(--t-base);
}

.sticky-mobile-bar.is-visible{
  transform:translateY(0);
}

.sticky-mobile-bar .btn{
  flex:1;
  padding:12px 14px;
  font-size:.85rem;
}

/* MODAL */

.exit-modal{
  position:fixed;
  inset:0;
  z-index:500;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
}

.exit-modal:not([hidden]){
  display:flex;
}

.exit-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(5,4,4,.78);
  backdrop-filter:blur(5px);
  opacity:0;
  transition:opacity var(--t-base);
}

.exit-modal.is-active .exit-modal-backdrop{
  opacity:1;
}

.exit-modal-card{
  position:relative;
  z-index:1;
  width:min(420px,100%);
  background:var(--color-surface);
  border:1px solid var(--color-border);
  border-radius:var(--radius-l);
  padding:40px 36px;
  box-shadow:0 40px 80px rgba(0,0,0,.5);
  transform:translateY(20px);
  opacity:0;
  transition:
    transform var(--t-base),
    opacity var(--t-base);
  text-align:center;
}

.exit-modal.is-active .exit-modal-card{
  transform:translateY(0);
  opacity:1;
}

.exit-modal-card .eyebrow{
  text-align:center;
}

.exit-modal-close{
  position:absolute;
  top:16px;
  right:16px;
  background:none;
  border:0;
  font-size:1.05rem;
  cursor:pointer;
  color:var(--color-muted);
  padding:6px;
}

.exit-modal-card h3{
  font-size:1.4rem;
  margin:4px 0 12px;
}

.exit-modal-text{
  color:var(--color-muted);
  font-size:.94rem;
  margin-bottom:26px;
}

.exit-modal-btn{
  width:100%;
}

/* RESPONSIVE */

@media (min-width:980px){
  .process-line{
    display:block;
  }
}

@media (max-width:980px){
  .problems-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

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

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

@media (max-width:760px){
  body{
    font-size:17px;
  }

  section{
    padding:80px 0;
  }

  .hero{
    padding-top:116px;
    min-height:auto;
  }

  .hero h1{
    font-size:clamp(2.3rem,10vw,3.4rem);
  }

  .hero-sub,
  .problem-card p,
  .solution-card p,
  .step p{
    font-size:1rem;
  }

  .problems-grid,
  .solutions-grid,
  .process-steps{
    grid-template-columns:1fr;
  }

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

  .cta-final-buttons .btn{
    width:100%;
  }

  .sticky-mobile-bar{
    display:flex;
  }

  .whatsapp-float{
    bottom:84px;
  }

  body{
    padding-bottom:68px;
  }

  .trust-after-process{
    padding:56px 0;
  }

  .logo-slot{
    height:78px;
    padding:0 28px;
  }

  .logo-slot img{
    height:62px;
    max-width:250px;
    transform:scale(1.08);
  }

  .logo-slot:hover img{
    transform:scale(1.14);
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
    scroll-behavior:auto!important;
  }

  .cursor-dot,
  .cursor-ring,
  .cursor-spotlight,
  .hero-canvas{
    display:none!important;
  }

  body.has-custom-cursor{
    cursor:auto;
  }
}

.hero-canvas {
  z-index: 1;
  pointer-events: none;
}

.hero-glow {
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  body.has-particles .hero-canvas {
    opacity: 1 !important;
    z-index: 1;
  }

  .hero-glow {
    width: 850px;
    height: 850px;
    top: -15%;
    opacity: 1;
  }
}

/* =========================================================
   PARALLAX VISUAL
   ========================================================= */

.hero-glow,
.hero-canvas,
.solution-media,
.trust-statement,
.process-steps .step {
  will-change: transform;
}

.solution-media {
  overflow: hidden;
  transform-origin: center;
}

.process-steps .step {
  will-change: transform;
}

@media (max-width: 760px) {
  .hero-glow,
  .hero-canvas,
  .solution-media,
  .trust-statement,
  .process-steps .step {
    will-change: transform;
  }
}

/* =========================================================
   PARALLAX Y EFECTOS AVANZADOS
   ========================================================= */

.hero-canvas,
.hero-glow,
.solution-media,
.trust-statement,
.process-steps .step{
  will-change:transform;
}

.hero-canvas{
  z-index:1;
  pointer-events:none;
}

.hero-glow{
  z-index:0;
}

.hero-inner{
  position:relative;
  z-index:2;
}

.solution-media{
  overflow:hidden;
  transform-origin:center;
  will-change:transform;
}

.solution-card h3,
.solution-card p,
.solution-card .link-cta{
  position:relative;
  z-index:2;
}

@media (max-width:760px){
  body.has-particles .hero-canvas{
    opacity:1 !important;
    z-index:1;
  }

  .hero-glow{
    width:850px;
    height:850px;
    top:-15%;
    opacity:1;
  }

  .solution-card{
    transform:none !important;
    transition:
      border-color var(--t-base),
      box-shadow var(--t-base);
  }

  .solution-media{
    will-change:transform;
  }
}

@media (prefers-reduced-motion:reduce){
  .hero-canvas,
  .hero-glow,
  .solution-media,
  .trust-statement,
  .process-steps .step{
    will-change:auto;
  }

  .solution-card{
    transform:none !important;
  }
}

/* =========================================================
   EFECTOS DEL HERO Y TARJETAS POR CATEGORÍA
   ========================================================= */

.solution-media-empleados{
  background:
    radial-gradient(circle at 20% 15%, rgba(217,178,94,.38), transparent 24%),
    radial-gradient(circle at 70% 80%, rgba(201,160,80,.16), transparent 28%),
    linear-gradient(150deg, #241d15, #11100f 72%);
}

.solution-media-empleados::before{
  width:110px;
  height:110px;
  border:1px solid rgba(217,178,94,.55);
  border-radius:50%;
  top:16px;
  left:18px;
  box-shadow:0 0 30px rgba(217,178,94,.12);
}

.solution-media-empleados::after{
  width:180px;
  height:180px;
  border:1px dashed rgba(217,178,94,.22);
  border-radius:50%;
  top:-24px;
  right:-20px;
}

.solution-media-ferias{
  background:
    linear-gradient(135deg, rgba(217,178,94,.34), transparent 45%),
    linear-gradient(150deg, #281b11, #0f0d0c 70%);
}

.solution-media-ferias::before{
  width:220px;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(217,178,94,.8), transparent);
  top:40px;
  left:-20px;
  transform:rotate(-18deg);
  box-shadow:0 0 24px rgba(217,178,94,.26);
}

.solution-media-ferias::after{
  width:130px;
  height:2px;
  background:linear-gradient(90deg, transparent, rgba(255,210,120,.72), transparent);
  top:70px;
  right:-18px;
  transform:rotate(28deg);
}

.solution-media-clientes{
  background:
    radial-gradient(circle at 78% 18%, rgba(242,241,238,.36), transparent 20%),
    radial-gradient(circle at 35% 72%, rgba(199,196,188,.12), transparent 26%),
    linear-gradient(150deg, #191817, #0f0e0d 70%);
}

.solution-media-clientes::before{
  width:150px;
  height:95px;
  border:1px solid rgba(242,241,238,.28);
  border-radius:50% 50% 42% 58% / 58% 40% 60% 42%;
  top:18px;
  left:22px;
  transform:rotate(-12deg);
}

.solution-media-clientes::after{
  width:70px;
  height:70px;
  border:1px solid rgba(242,241,238,.26);
  border-radius:50%;
  top:48px;
  right:30px;
  box-shadow:0 0 22px rgba(242,241,238,.1);
}

.solution-media-merchandising{
  background:
    linear-gradient(180deg, rgba(201,160,80,.12), transparent 35%),
    linear-gradient(150deg, #1c1915, #0d0c0b 72%);
}

.solution-media-merchandising::before{
  width:240px;
  height:1px;
  background:rgba(201,160,80,.5);
  top:42px;
  left:-10px;
  box-shadow:
    0 22px 0 rgba(201,160,80,.22),
    0 44px 0 rgba(201,160,80,.12),
    0 66px 0 rgba(201,160,80,.08);
  transform:rotate(-12deg);
}

.solution-media-merchandising::after{
  width:120px;
  height:120px;
  border:1px solid rgba(201,160,80,.18);
  border-radius:18px;
  bottom:-18px;
  right:18px;
  transform:rotate(18deg);
}

.solution-media-medida{
  background:
    radial-gradient(circle at 48% 42%, rgba(217,178,94,.24), transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(199,196,188,.14), transparent 22%),
    linear-gradient(150deg, #231d18, #0e0d0c 72%);
}

.solution-media-medida::before{
  width:180px;
  height:120px;
  border:1px solid rgba(217,178,94,.3);
  border-radius:60% 40% 55% 45% / 55% 45% 55% 45%;
  top:14px;
  left:26px;
  transform:rotate(10deg);
  box-shadow:0 0 30px rgba(217,178,94,.08);
}

.solution-media-medida::after{
  width:100px;
  height:100px;
  border:1px dashed rgba(199,196,188,.18);
  border-radius:50%;
  bottom:10px;
  right:18px;
}

@media (max-width:760px){
  .solution-media-empleados::before,
  .solution-media-empleados::after,
  .solution-media-ferias::before,
  .solution-media-ferias::after,
  .solution-media-clientes::before,
  .solution-media-clientes::after,
  .solution-media-merchandising::before,
  .solution-media-merchandising::after,
  .solution-media-medida::before,
  .solution-media-medida::after{
    transform:scale(.9);
  }
}

/* Hero value box */
.hero-catalog-highlight {
  max-width: 650px;
  margin: -12px 0 34px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold-2);
  background:
    linear-gradient(
      90deg,
      rgba(217, 178, 94, 0.14),
      rgba(217, 178, 94, 0.035) 65%,
      transparent
    );
  color: var(--silver-1);
  line-height: 1.55;
  box-shadow: 0 0 36px rgba(201, 160, 80, 0.08);
}

.hero-catalog-highlight strong {
  display: block;
  margin-bottom: 5px;
  color: var(--gold-1);
  font-size: 1.08rem;
  letter-spacing: 0.01em;
}

.hero-catalog-highlight span {
  display: block;
  color: var(--color-muted);
  font-size: 0.94rem;
}

@media (max-width: 760px) {
  .hero-catalog-highlight {
    margin: -10px 0 30px;
    padding: 16px 18px;
  }

  .hero-catalog-highlight strong {
    font-size: 1rem;
  }

  .hero-catalog-highlight span {
    font-size: 0.92rem;
  }
}
/* =========================================================
   RESPONSIVE MÓVIL — AJUSTE COMPLETO
   ========================================================= */

@media (max-width: 760px) {

  /* Base */
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
    line-height: 1.6;
    cursor: auto;
  }

  section {
    padding: 72px 0;
    overflow: hidden;
  }

  .container {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  /* Cabecera */
  .site-header {
    width: 100%;
  }

  .header-inner {
    min-height: 72px;
    padding: 10px 20px;
    gap: 14px;
  }

  .logo-img {
    width: auto;
    height: 42px;
    max-width: 145px;
  }

  .header-contact {
    margin-left: auto;
    gap: 8px;
  }

  .header-contact .header-email {
    display: none;
  }

  .header-contact .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
    flex: 0 0 auto;
    position: relative;
    z-index: 101;
  }

  /* Menú móvil */
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(84vw, 340px);
    height: 100dvh;
    min-height: 100vh;
    padding: 110px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
    background: linear-gradient(160deg, #19150f, #090807);
    border-left: 1px solid var(--color-border);
    transform: translateX(105%);
    transition: transform 350ms var(--ease-out);
    z-index: 100;
  }

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

  .main-nav a {
    display: block;
    width: 100%;
    font-size: 1.12rem;
    line-height: 1.3;
    color: var(--silver-1);
    padding: 8px 0;
  }

  .nav-scrim {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(0, 0, 0, .68);
    opacity: 0;
    pointer-events: none;
    transition: opacity 350ms var(--ease-out);
  }

  .nav-scrim.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 92px 0 64px;
  }

  .hero-inner {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.4rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .hero-sub {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .hero-catalog-highlight {
    width: 100%;
    max-width: 100%;
    margin: 0 0 28px;
    padding: 16px 16px 16px 18px;
  }

  .hero-catalog-highlight strong {
    font-size: .98rem;
    line-height: 1.4;
  }

  .hero-catalog-highlight span {
    font-size: .9rem;
    line-height: 1.55;
  }

  .hero-cta {
    width: 100%;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }

  .hero-glow {
    width: 720px;
    height: 720px;
    top: -8%;
    left: 50%;
    opacity: .9;
  }

  .hero-canvas {
    width: 100%;
    height: 100%;
  }

  /* Títulos */
  .section-title {
    max-width: 100%;
    margin-bottom: 34px;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
    line-height: 1.15;
  }

  .eyebrow {
    font-size: .7rem;
    letter-spacing: .11em;
  }

  /* Problemas y soluciones */
  .problems-grid,
  .solutions-grid,
  .process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .problem-card,
  .solution-card,
  .step {
    width: 100%;
    min-width: 0;
  }

  .problem-card {
    padding: 24px 20px;
  }

  .problem-card h3,
  .solution-card h3,
  .step h3 {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .problem-card p,
  .solution-card p,
  .step p {
    font-size: .95rem;
  }

  .solution-card {
    transform: none !important;
  }

  .solution-media {
    height: 155px;
    margin-bottom: 20px;
  }

  .solution-index {
    font-size: 1.7rem;
    right: 16px;
    bottom: 12px;
  }

  /* Filosofía */
  .philosophy-inner {
    width: 100%;
    max-width: 100%;
  }

  .philosophy-text {
    max-width: 100%;
    font-size: 1rem;
    margin-bottom: 34px;
  }

  .philosophy-principles li {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Proceso */
  .process-line-wrap {
    display: none;
  }

  .step {
    padding: 24px 20px;
  }

  /* Logos */
  .trust-after-process {
    padding: 58px 0;
  }

  .marquee {
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: 28px;
    margin-bottom: 32px;
  }

  .marquee-track {
    gap: 0;
  }

  .logo-slot {
    height: 76px;
    padding: 0 24px;
    flex: 0 0 auto;
  }

  .logo-slot img {
    width: auto;
    height: 52px;
    max-width: 190px;
    transform: none;
  }

  .logo-slot:hover img {
    transform: none;
  }

  .trust-statement {
    padding: 0 8px;
    font-size: 1.12rem;
    line-height: 1.45;
  }

  /* CTA y formulario */
  .cta-final-inner,
  .contact-form-inner {
    width: 100%;
    max-width: 100%;
  }

  .cta-final-buttons {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }

  .cta-final-buttons .btn,
  .contact-form .btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .form-row input,
  .form-row textarea {
    font-size: 16px;
  }

  /* Footer */
  .site-footer {
    padding-top: 58px;
  }

  .footer-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col {
    min-width: 0;
  }

  /* Elementos flotantes */
  .whatsapp-float {
    width: 52px;
    height: 52px;
    right: 18px;
    bottom: 84px;
  }

  body {
    padding-bottom: 68px;
  }

  .sticky-mobile-bar {
    display: flex;
    padding: 10px 12px;
  }

  .sticky-mobile-bar .btn {
    min-width: 0;
    padding: 11px 10px;
    font-size: .8rem;
    white-space: normal;
    line-height: 1.2;
  }

  /* Reduce efectos pesados en móvil, no el diseño */
  .solution-media,
  .process-steps .step,
  .trust-statement {
    will-change: auto;
  }
}

/* Móviles pequeños */
@media (max-width: 390px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero {
    padding-top: 82px;
  }

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

  .logo-img {
    max-width: 128px;
  }

  .logo-slot {
    padding: 0 18px;
  }

  .logo-slot img {
    height: 46px;
    max-width: 165px;
  }
}

/* =========================================================
   AJUSTE MÓVIL — MÁS CONTENIDO VISIBLE Y MEJOR LEGIBILIDAD
   ========================================================= */

@media (max-width: 760px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  /* Header */
  .header-inner {
    padding: 11px 18px;
  }

  .logo-img {
    height: 42px;
  }

  .header-contact .btn {
    padding: 9px 13px;
    font-size: 0.74rem;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 88px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.05rem);
    line-height: 1.1;
    margin-bottom: 22px;
  }

  .hero-sub {
    max-width: 100%;
    margin-bottom: 27px;
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .hero-catalog-highlight {
    margin: -4px 0 26px;
    padding: 14px 16px;
    line-height: 1.48;
  }

  .hero-catalog-highlight strong {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .hero-catalog-highlight span {
    font-size: 0.86rem;
  }

  .hero-cta {
    gap: 10px;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 0.88rem;
    white-space: normal;
    text-align: center;
  }

  .hero-cta-note {
    font-size: 0.78rem;
  }

  /* Títulos de sección */
  .section-title {
    max-width: 100%;
    margin-bottom: 34px;
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    line-height: 1.18;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
    margin-bottom: 16px;
  }

  /* Tarjetas de problemas */
  .problem-card {
    padding: 24px 21px;
  }

  .problem-card h3 {
    font-size: 0.94rem;
    line-height: 1.35;
  }

  .problem-card p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .icon {
    width: 34px;
    height: 34px;
    margin-bottom: 15px;
  }

  .icon::after {
    inset: 10px;
  }

  /* Tarjetas de soluciones */
  .solution-card {
    padding-bottom: 22px;
  }

  .solution-media {
    height: 145px;
    margin-bottom: 17px;
  }

  .solution-card h3 {
    margin: 0 20px 7px;
    font-size: 1.03rem;
    line-height: 1.25;
  }

  .solution-card p {
    margin: 0 20px;
    font-size: 0.87rem;
    line-height: 1.5;
  }

  .solution-index {
    right: 15px;
    bottom: 10px;
    font-size: 1.65rem;
  }

  .link-cta {
    margin: 13px 20px 0;
    font-size: 0.86rem;
  }

  /* Filosofía */
  .philosophy-text {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 34px;
  }

  .philosophy-principles {
    gap: 15px;
  }

  .philosophy-principles li {
    gap: 13px;
    font-size: 0.98rem;
    line-height: 1.45;
    padding-bottom: 14px;
  }

  .philosophy-principles span {
    font-size: 0.72rem;
  }

  /* Proceso */
  .process-steps {
    gap: 15px;
  }

  .step {
    padding: 22px 19px;
  }

  .step-number {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
    margin-bottom: 13px;
  }

  .step h3 {
    font-size: 0.98rem;
    line-height: 1.3;
  }

  .step p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  /* Logos */
  .trust-after-process {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .marquee {
    margin: 28px 0 34px;
  }

  .logo-slot {
    height: 68px;
    padding: 0 22px;
  }

  .logo-slot img {
    height: 52px;
    max-width: 210px;
  }

  .trust-statement {
    padding: 0 12px;
    font-size: 1.08rem;
    line-height: 1.45;
  }

  /* CTA y formulario */
  .cta-final h2 {
    font-size: clamp(1.7rem, 7vw, 2.25rem);
  }

  .cta-final p {
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .cta-final-buttons .btn {
    width: 100%;
    padding: 13px 18px;
    font-size: 0.88rem;
  }

  .contact-form-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .form-row input,
  .form-row textarea {
    font-size: 0.94rem;
  }

  .form-row label {
    font-size: 0.94rem;
  }

  .form-note {
    font-size: 0.76rem;
  }

  /* Footer */
  .site-footer {
    padding-top: 58px;
  }

  .footer-col a,
  .footer-col p {
    font-size: 0.84rem;
  }

  .footer-bottom {
    font-size: 0.72rem;
  }

  /* Elementos flotantes */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 18px;
    bottom: 82px;
  }

  .sticky-mobile-bar {
    padding: 9px 12px;
  }

  .sticky-mobile-bar .btn {
    padding: 10px 12px;
    font-size: 0.78rem;
  }
}

/* =========================================================
   AJUSTE MOBILE COMPACTO Y MÁS ORDENADO
   ========================================================= */

@media (max-width: 760px) {
  body {
    font-size: 15px;
    line-height: 1.55;
  }

  .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  section {
    padding: 54px 0;
  }

  /* Header */
  .header-inner {
    padding: 10px 18px;
  }

  .logo-img {
    height: 42px;
  }

  .header-contact {
    gap: 8px;
  }

  .header-contact .header-email {
    display: none;
  }

  .header-contact .btn {
    padding: 10px 13px;
    font-size: 0.72rem;
  }

  .nav-toggle {
    padding: 8px 4px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 88px 0 58px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.08;
    margin-bottom: 22px;
  }

  .hero-sub {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 0.95rem;
    line-height: 1.55;
  }

  .hero-catalog-highlight {
    margin: 0 0 26px;
    padding: 13px 15px;
    border-left-width: 2px;
    line-height: 1.45;
  }

  .hero-catalog-highlight strong {
    margin-bottom: 4px;
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .hero-catalog-highlight span {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .hero-cta {
    gap: 10px;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    font-size: 0.82rem;
    white-space: normal;
    text-align: center;
  }

  .hero-cta-note {
    font-size: 0.75rem;
  }

  /* Títulos de sección */
  .section-title {
    max-width: 100%;
    margin-bottom: 28px;
    font-size: clamp(1.55rem, 7vw, 2.1rem);
    line-height: 1.15;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
    letter-spacing: 0.11em;
  }

  /* Tarjetas de problemas */
  .problems-grid {
    gap: 12px;
  }

  .problem-card {
    padding: 20px 18px;
    border-radius: 13px;
  }

  .problem-card h3 {
    font-size: 0.92rem;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .problem-card p {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .icon {
    width: 32px;
    height: 32px;
    margin-bottom: 13px;
  }

  .icon::after {
    inset: 9px;
  }

  /* Tarjetas de soluciones */
  .solutions-grid {
    gap: 14px;
  }

  .solution-card {
    border-radius: 13px;
    padding-bottom: 19px;
  }

  .solution-media {
    height: 126px;
    margin-bottom: 15px;
  }

  .solution-card h3 {
    margin: 0 18px 6px;
    font-size: 1rem;
    line-height: 1.25;
  }

  .solution-card p {
    margin: 0 18px;
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .link-cta {
    margin: 12px 18px 0;
    font-size: 0.8rem;
  }

  .solution-media .solution-index {
    right: 13px;
    bottom: 9px;
    font-size: 1.55rem;
  }

  /* Filosofía */
  .philosophy-inner {
    max-width: 100%;
  }

  .philosophy-text {
    max-width: 100%;
    margin-bottom: 30px;
    font-size: 0.94rem;
    line-height: 1.55;
  }

  .philosophy-principles {
    gap: 13px;
  }

  .philosophy-principles li {
    gap: 12px;
    padding-bottom: 13px;
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .philosophy-principles span {
    font-size: 0.7rem;
    padding-top: 3px;
  }

  /* Proceso */
  .process-steps {
    gap: 12px;
  }

  .step {
    padding: 20px 18px;
    border-radius: 13px;
  }

  .step-number {
    width: 29px;
    height: 29px;
    margin-bottom: 12px;
    font-size: 0.76rem;
  }

  .step h3 {
    font-size: 0.94rem;
    line-height: 1.28;
    margin-bottom: 6px;
  }

  .step p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  /* Logos */
  .trust-after-process {
    padding: 48px 0;
  }

  .marquee {
    margin: 24px 0 30px;
  }

  .logo-slot {
    height: 64px;
    padding: 0 22px;
  }

  .logo-slot img {
    height: 48px;
    max-width: 190px;
  }

  .trust-statement {
    padding: 0 12px;
    font-size: 1.05rem;
    line-height: 1.35;
  }

  /* CTA */
  .cta-final-inner {
    max-width: 100%;
  }

  .cta-final h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.15;
    margin-bottom: 14px;
  }

  .cta-final p {
    margin-bottom: 24px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .cta-final-buttons {
    gap: 10px;
  }

  .cta-final-buttons .btn {
    width: 100%;
    min-height: 46px;
    padding: 12px 16px;
    font-size: 0.84rem;
  }

  /* Formulario */
  .contact-form-inner {
    max-width: 100%;
  }

  .contact-form {
    margin-top: 28px;
    gap: 20px;
  }

  .form-row input,
  .form-row textarea {
    font-size: 16px;
    padding: 11px 2px 8px;
  }

  .form-row label {
    top: 11px;
    font-size: 0.9rem;
  }

  .form-note {
    font-size: 0.75rem;
  }

  /* Footer */
  .site-footer {
    padding-top: 54px;
  }

  .footer-inner {
    gap: 28px;
    padding-bottom: 30px;
  }

  .footer-col {
    gap: 8px;
  }

  .footer-col h4 {
    font-size: 0.75rem;
    margin-bottom: 3px;
  }

  .footer-col a,
  .footer-col p,
  .footer-brand p {
    font-size: 0.8rem;
  }

  .footer-bottom {
    padding: 17px 0;
    font-size: 0.7rem;
  }

  /* Elementos flotantes */
  .whatsapp-float {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 82px;
  }

  .sticky-mobile-bar {
    gap: 8px;
    padding: 9px 12px;
  }

  .sticky-mobile-bar .btn {
    min-height: 44px;
    padding: 10px 12px;
    font-size: 0.76rem;
  }

  /* Reducimos efectos decorativos en pantallas pequeñas */
  .hero-glow {
    width: 720px;
    height: 720px;
    top: -10%;
  }

  .hero::before {
    width: 420px;
    height: 420px;
    top: -170px;
    left: -180px;
  }

  .hero::after {
    width: 380px;
    height: 380px;
    right: -170px;
    bottom: -160px;
  }
}

/* Móviles muy estrechos: 320–360 px */
@media (max-width: 380px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-inner {
    padding-left: 15px;
    padding-right: 15px;
  }

  .logo-img {
    height: 38px;
  }

  .header-contact .btn {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.68rem;
  }

  .hero {
    padding-top: 78px;
  }

  .hero h1 {
    font-size: 1.95rem;
  }

  .problem-card,
  .step {
    padding-left: 15px;
    padding-right: 15px;
  }

  .solution-media {
    height: 112px;
  }

  .solution-card h3 {
    font-size: 0.92rem;
  }

  .solution-card p {
    font-size: 0.78rem;
  }

  .logo-slot {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo-slot img {
    height: 42px;
    max-width: 165px;
  }
}

.solution-media-uniformidad {
  background:
    radial-gradient(circle at 70% 25%, rgba(242, 241, 238, .28), transparent 18%),
    linear-gradient(145deg, #25201a, #0e0d0c 72%);
}

.solution-media-uniformidad::before {
  width: 120px;
  height: 145px;
  border: 1px solid rgba(217, 178, 94, .45);
  border-radius: 45% 45% 18% 18%;
  top: 18px;
  left: 32px;
  transform: rotate(-8deg);
}

.solution-media-uniformidad::after {
  width: 90px;
  height: 90px;
  border: 1px solid rgba(242, 241, 238, .25);
  border-radius: 50%;
  top: 34px;
  right: 34px;
}

.solution-media-sostenible {
  background:
    radial-gradient(circle at 28% 30%, rgba(217, 178, 94, .24), transparent 22%),
    linear-gradient(145deg, #1d251e, #0d100d 72%);
}

.solution-media-sostenible::before {
  width: 130px;
  height: 170px;
  border: 1px solid rgba(169, 190, 139, .42);
  border-radius: 70% 30% 65% 35%;
  top: 2px;
  left: 38px;
  transform: rotate(28deg);
}

.solution-media-sostenible::after {
  width: 1px;
  height: 150px;
  background: rgba(169, 190, 139, .42);
  top: 12px;
  left: 102px;
  transform: rotate(28deg);
}

@media screen and (max-width: 749px) {
  .container {
    width: min(100% - 32px, 100%);
    margin-inline: auto;
  }

  .site-header {
    padding: 16px 0;
  }

  .logo-img {
    max-width: 170px;
    height: auto;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 56px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 11vw, 3.5rem);
    line-height: 0.98;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .hero-actions a,
  .hero-actions button {
    width: 100%;
    min-height: 48px;
  }

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

  .solution-card {
    min-height: auto;
  }

  input,
  textarea,
  select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    font-size: 16px;
  }

  textarea {
    min-height: 140px;
  }

  .footer-col {
    padding-bottom: 20px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex: 0 0 auto;
}

.btn.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Corrección del hero bajo la cabecera */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hero {
  min-height: calc(100vh - 78px);
  padding-top: 40px;
}

@media screen and (max-width: 760px) {
  .hero {
    min-height: auto;
    padding-top: 92px;
  }
}


.problem-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 350ms ease,
    border-color 350ms ease,
    box-shadow 350ms ease;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold-2),
    transparent
  );
  opacity: 0.55;
}

.problem-card:hover {
  transform: translateY(-8px);
  border-color: rgba(217, 178, 94, 0.55);
  box-shadow: 0 18px 40px rgba(201, 160, 80, 0.14);
}.hero h1 {
  width: 100%;
  max-width: 760px;
  overflow: visible;
}

.hero h1 .mask-line {
  display: block;
  width: 100%;
  overflow: visible;
  white-space: normal;
}

.hero h1 .mask-line-inner {
  display: inline-block;
  width: auto;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  transform: none;
}

@media screen and (max-width: 760px) {
  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 9.5vw, 3rem);
    line-height: 1.08;
  }

  .hero h1 .mask-line,
  .hero h1 .mask-line-inner {
    max-width: 100%;
    white-space: normal;
  }
}
/* Filosofía: composición editorial */

.philosophy-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.philosophy-intro {
  max-width: 520px;
}

.philosophy-intro .section-title {
  margin-bottom: 30px;
  line-height: 1.12;
}

.philosophy-intro .section-title span {
  display: block;
  color: var(--gold-1);
}

.philosophy-text {
  max-width: 480px;
  margin-bottom: 28px;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.philosophy-intro .link-cta {
  margin: 0;
}

.philosophy-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 34px;
}

.philosophy-principle {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
}

.philosophy-principle:last-child {
  border-bottom: 1px solid var(--color-border);
}

.principle-number {
  color: var(--gold-2);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding-top: 5px;
}

.philosophy-principle h3 {
  margin: 0 0 8px;
  color: var(--silver-1);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.philosophy-principle p {
  margin: 0;
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.55;
}

@media screen and (max-width: 760px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .philosophy-principles {
    padding-top: 0;
  }

  .philosophy-intro .section-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .philosophy-text {
    font-size: .96rem;
  }

  .philosophy-principle {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 21px 0;
  }

  .philosophy-principle h3 {
    font-size: .98rem;
  }

  .philosophy-principle p {
    font-size: .88rem;
  }
}

/* Filosofía fusionada */

.philosophy-inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(55px, 9vw, 130px);
  align-items: start;
}

.philosophy-intro {
  max-width: 540px;
}

.philosophy-intro .section-title {
  margin-bottom: 30px;
  line-height: 1.12;
}

.philosophy-intro .section-title span {
  display: block;
  color: var(--gold-1);
}

.philosophy-text {
  max-width: 500px;
  margin: 0 0 30px;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.philosophy-intro .link-cta {
  margin: 0;
}

.philosophy-principles {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 38px;
}

.philosophy-principle {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--color-border);
}

.philosophy-principle:last-child {
  border-bottom: 1px solid var(--color-border);
}

.principle-number {
  padding-top: 5px;
  color: var(--gold-2);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
}

.philosophy-principle h3 {
  margin: 0 0 8px;
  color: var(--silver-1);
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.35;
}

.philosophy-principle p {
  margin: 0;
  color: var(--color-muted);
  font-size: .95rem;
  line-height: 1.55;
}

@media screen and (max-width: 760px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .philosophy-principles {
    padding-top: 0;
  }

  .philosophy-intro .section-title {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .philosophy-text {
    font-size: .96rem;
  }

  .philosophy-principle {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
    padding: 21px 0;
  }

  .philosophy-principle h3 {
    font-size: .98rem;
  }

  .philosophy-principle p {
    font-size: .88rem;
  }
}

.process-intro {
  max-width: 620px;
  margin: -28px 0 48px;
  color: var(--color-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.process .eyebrow {
  margin-bottom: 16px;
}

.process .step {
  transition:
    transform 300ms ease,
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.process .step:hover {
  transform: translateY(-6px);
  border-color: rgba(217, 178, 94, .5);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .24);
}

@media screen and (max-width: 760px) {
  .process-intro {
    margin: -14px 0 30px;
    font-size: .94rem;
  }

  .process .step:hover {
    transform: none;
  }
}

.hero-inner {
  max-width: 980px;
}

.hero h1 {
  max-width: 920px;
  text-wrap: balance;
}

.hero h1 .hero-line {
  display: inline;
  white-space: normal;
}

@media screen and (min-width: 980px) {
  .hero h1 {
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    line-height: 1.08;
  }
}
/* Títulos de sección sin cortes artificiales */

.section-title {
  width: 100%;
  max-width: 900px;
  overflow: visible;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
/* Títulos principales de sección en una línea en escritorio */

@media screen and (min-width: 981px) {
  #qu-resolvemos .section-title,
  #soluciones .section-title,
  #proceso .section-title,
  #formulario .section-title {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  }
}

/* Filosofía: conservar dos columnas también en móvil */

@media screen and (max-width: 760px) {
  #filosofia .philosophy-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    max-width: 100%;
  }

  #filosofia .philosophy-intro {
    max-width: none;
  }

  #filosofia .philosophy-principles {
    padding-top: 0;
    min-width: 0;
  }

  #filosofia .philosophy-intro .section-title {
    font-size: clamp(1.55rem, 6vw, 2rem);
    line-height: 1.08;
  }

  #filosofia .philosophy-text {
    font-size: .82rem;
    line-height: 1.5;
  }

  #filosofia .philosophy-principle {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    padding: 14px 0;
  }

  #filosofia .principle-number {
    font-size: .64rem;
  }

  #filosofia .philosophy-principle h3 {
    font-size: .78rem;
    line-height: 1.25;
  }

  #filosofia .philosophy-principle p {
    font-size: .7rem;
    line-height: 1.35;
  }

  #filosofia .philosophy-intro .link-cta {
    font-size: .76rem;
  }
}


@media screen and (max-width: 380px) {
  #filosofia .philosophy-inner {
    gap: 14px;
  }

  #filosofia .philosophy-intro .section-title {
    font-size: 1.45rem;
  }

  #filosofia .philosophy-text {
    font-size: .76rem;
  }

  #filosofia .philosophy-principle {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
  }

  #filosofia .philosophy-principle h3 {
    font-size: .72rem;
  }

  #filosofia .philosophy-principle p {
    font-size: .65rem;
  }
}

@media screen and (max-width: 760px) {
  #filosofia .philosophy-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 22px;
    align-items: start;
  }

  #filosofia .philosophy-principles {
    align-self: center;
    justify-self: center;
    width: 100%;
    padding-top: 0;
  }
}

/* =========================================================
   TARJETAS 01 Y 02 — PACKS INTERACTIVOS
   ========================================================= */

/* Contenedor común */
.solution-pack-builder {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: default;
}

/* Mantiene las formas decorativas detrás de los productos */
.solution-pack-builder::before,
.solution-pack-builder::after {
  z-index: 0;
  opacity: .35;
  transition: opacity 500ms ease;
}

/* Productos individuales: ocultos inicialmente */
.solution-pack-builder .pack-item {
  position: absolute;
  z-index: 3;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  opacity: 0;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .32));
  transition:
    opacity 360ms ease,
    transform 650ms cubic-bezier(.16, 1, .3, 1);
}

/* PC: al pasar por la tarjeta se ven los productos */
@media (hover: hover) and (pointer: fine) {
  .solution-pack-builder:hover .pack-item {
    opacity: 1;
  }

  .solution-pack-builder:hover .pack-action {
    opacity: 1;
    pointer-events: auto;
  }
}

/* El pack terminado se esconde hasta pulsar el botón */
.solution-pack-builder .pack-complete {
  position: absolute;
  z-index: 6;
  display: block;
  width: auto;
  height: 106px;
  max-width: 76%;
  left: 50%;
  top: 55%;
  bottom: auto;
  opacity: 0;
  pointer-events: none;
  object-fit: contain;
  object-position: center;
  transform: translate(-50%, -50%) scale(.76);
  filter:
    drop-shadow(0 12px 15px rgba(0, 0, 0, .42))
    drop-shadow(0 0 12px rgba(217, 178, 94, .15));
  transition:
    opacity 420ms ease,
    transform 700ms cubic-bezier(.16, 1, .3, 1);
}

/* Al juntar: se esconden los sueltos y aparece el resultado */
.solution-pack-builder.is-packed .pack-item {
  opacity: 0;
}

.solution-pack-builder.is-packed .pack-complete {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.solution-pack-builder.is-packed::before,
.solution-pack-builder.is-packed::after {
  opacity: .08;
}

/* Botón “Juntar el pack” */
.pack-action {
  position: absolute;
  left: 12px;
  bottom: 11px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 6px 10px;
  border: 1px solid rgba(217, 178, 94, .56);
  border-radius: 999px;
  background: rgba(8, 7, 6, .78);
  color: var(--gold-1);
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  animation: hint-pulse 2.5s ease-in-out infinite;
  transition:
    opacity 250ms ease,
    background 250ms ease,
    border-color 250ms ease,
    box-shadow 250ms ease;
}

.pack-action:hover {
  background: rgba(217, 178, 94, .18);
  border-color: var(--gold-2);
  box-shadow: 0 6px 18px rgba(217, 178, 94, .18);
}

.pack-action-reset {
  display: none;
}

.solution-pack-builder.is-packed .pack-action-build {
  display: none;
}

.solution-pack-builder.is-packed .pack-action-reset {
  display: inline;
}

/* Número: nunca lo tapa ningún producto */
.solution-pack-builder .solution-index {
  position: absolute;
  z-index: 30;
  right: 15px;
  bottom: 10px;
  margin: 0;
  pointer-events: none;
}

/* Chispa central */
.pack-spark {
  position: absolute;
  z-index: 31;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, #ffd76a 0%, #d9b25e 60%, transparent 70%);
  transform: translate(-50%, -50%) scale(0);
}

.solution-pack-builder.is-packed .pack-spark {
  animation: spark 850ms ease-out 300ms;
}

@keyframes spark {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.6);
  }
}

/* Pistas de interacción */
.pack-hint,
.pack-hint-mobile {
  z-index: 21;
  padding: 6px 9px;
  border: 1px solid rgba(217, 178, 94, .48);
  border-radius: 999px;
  background: rgba(8, 7, 6, .74);
  color: var(--gold-1);
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  animation: hint-pulse 2.5s ease-in-out infinite;
}

.pack-hint {
  position: absolute;
  top: 12px;
  right: 12px;
  opacity: 0;
}

.pack-hint-mobile {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .solution-pack-builder:not(.has-interacted) .pack-hint {
    opacity: 1;
  }
}

@keyframes hint-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(217, 178, 94, .4);
  }

  50% {
    box-shadow: 0 0 0 9px rgba(217, 178, 94, 0);
  }
}

/* =========================================================
   TARJETA 01 — PACK DE BIENVENIDA
   ========================================================= */

.solution-pack-builder:has(.pack-item-mochila) .pack-item-mochila {
  --rot: -6deg;
  width: 28%;
  left: 6%;
  bottom: 10%;
  transform: rotate(var(--rot));
}

.solution-pack-builder:has(.pack-item-mochila) .pack-item-termo {
  --rot: 7deg;
  width: 18%;
  right: 16%;
  top: 12%;
  transform: rotate(var(--rot));
}

.solution-pack-builder:has(.pack-item-mochila) .pack-item-libreta {
  --rot: -4deg;
  width: 22%;
  left: 34%;
  bottom: 12%;
  transform: rotate(var(--rot));
}

.solution-pack-builder:has(.pack-item-mochila) .pack-item-taza {
  --rot: 6deg;
  width: 19%;
  right: 30%;
  bottom: 16%;
  transform: rotate(var(--rot));
}

.solution-pack-builder:has(.pack-item-mochila) .pack-item-tarjeta {
  --rot: -8deg;
  width: 15%;
  left: 14%;
  top: 14%;
  transform: rotate(var(--rot));
}

/* Esta clase solo corresponde a las chuches de la tarjeta 01 */
.solution-pack-builder:has(.pack-item-mochila) .pack-item-chuches {
  --rot: 5deg;
  width: 17%;
  right: 22%;
  bottom: 8%;
  transform: rotate(var(--rot));
}

/* =========================================================
   TARJETA 02 — EVENTOS: SEIS PRODUCTOS PROPORCIONADOS
   ========================================================= */

/*
  Importante:
  Las alturas controlan la escala visual de PNG con formatos distintos.
  Es la forma correcta de equilibrar botella, polo, bolsa, lanyard,
  bolígrafo y chuches sin que se corten ni se solapen.
*/

/* Lanyard: arriba izquierda */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-lanyard {
  --rot: -7deg;
  height: 54px;
  left: 8%;
  top: 9px;
  transform: rotate(var(--rot));
}

/* Bolígrafo: arriba-centro */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-boligrafo {
  --rot: 9deg;
  height: 28px;
  left: 29%;
  top: 27px;
  transform: rotate(var(--rot));
}

/* Botella: centro-arriba */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-botella {
  --rot: -4deg;
  height: 84px;
  left: 45%;
  top: 5px;
  transform: rotate(var(--rot));
}

/* Bolsa: arriba derecha */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-bolsa {
  --rot: 4deg;
  height: 74px;
  right: 7%;
  top: 9px;
  transform: rotate(var(--rot));
}

/* Polo: bajo-centro; deja libre el botón de abajo a la izquierda */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-polo {
  --rot: -5deg;
  height: 66px;
  left: 28%;
  bottom: 7px;
  transform: rotate(var(--rot));
}

/* Chuches: bajo-centro-derecha, lejos del 02 */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-chuches {
  --rot: 5deg;
  height: 43px;
  left: 60%;
  bottom: 10px;
  transform: rotate(var(--rot));
}

/* Solo la tarjeta 02: centrado visual del resultado */
.solution-pack-builder:has(.pack-item-lanyard) .pack-complete {
  height: 180px;
  max-width: 94%;
  top: 52%;
}

/* =========================================================
   MÓVIL — TARJETAS CERRADAS HASTA TOCARLAS
   ========================================================= */

@media (hover: none), (pointer: coarse) {
  .solution-pack-builder .pack-item,
  .solution-pack-builder .pack-action {
    opacity: 0;
    pointer-events: none;
  }

  .solution-pack-builder.has-interacted .pack-item,
  .solution-pack-builder.has-interacted .pack-action {
    opacity: 1;
    pointer-events: auto;
  }

  .solution-pack-builder.is-packed .pack-item {
    opacity: 0;
  }

  .solution-pack-builder.is-packed .pack-complete {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .pack-hint {
    display: none;
  }

  .pack-hint-mobile {
    position: absolute;
    top: 12px;
    right: 12px;
    display: inline-block;
    opacity: 1;
  }

  .solution-pack-builder.has-interacted .pack-hint-mobile {
    opacity: 0;
    transition: opacity 220ms ease;
  }

  .pack-action {
    left: 10px;
    bottom: 9px;
    min-height: 25px;
    font-size: .58rem;
  }

  .solution-pack-builder .solution-index {
    right: 15px;
    bottom: 10px;
  }

  /* Tarjeta 01 */
  .solution-pack-builder:has(.pack-item-mochila) .pack-item-mochila {
    width: 26%;
    left: 5%;
    bottom: 8%;
  }

  .solution-pack-builder:has(.pack-item-mochila) .pack-item-termo {
    width: 16%;
    right: 14%;
    top: 10%;
  }

  .solution-pack-builder:has(.pack-item-mochila) .pack-item-libreta {
    width: 20%;
    left: 32%;
    bottom: 10%;
  }

  .solution-pack-builder:has(.pack-item-mochila) .pack-item-taza {
    width: 17%;
    right: 28%;
    bottom: 14%;
  }

  .solution-pack-builder:has(.pack-item-mochila) .pack-item-tarjeta {
    width: 13%;
    left: 12%;
    top: 12%;
  }

  .solution-pack-builder:has(.pack-item-mochila) .pack-item-chuches {
    width: 15%;
    right: 20%;
    bottom: 6%;
  }

  .solution-pack-builder:has(.pack-item-mochila) .pack-complete {
    height: 88px;
    max-width: 72%;
    top: 58%;
  }

  /* Tarjeta 02: seis productos con escala proporcional */
  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-lanyard {
    height: 46px;
    left: 8%;
    top: 9px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-boligrafo {
    height: 24px;
    left: 29%;
    top: 26px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-botella {
    height: 71px;
    left: 45%;
    top: 6px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-bolsa {
    height: 63px;
    right: 7%;
    top: 10px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-polo {
    height: 56px;
    left: 28%;
    bottom: 8px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-chuches {
    height: 36px;
    left: 60%;
    bottom: 11px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-complete {
  height: 130px;        /* antes 94px */
  max-width: 84%;       /* antes 72% */
  top: 57%;
}
}

/* Móviles especialmente estrechos */
@media screen and (max-width: 380px) {
  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-lanyard {
    height: 40px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-boligrafo {
    height: 21px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-botella {
    height: 62px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-bolsa {
    height: 55px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-polo {
    height: 49px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-chuches {
    height: 32px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-complete {
  height: 115px;        /* antes 84px */
}
}

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-boligrafo {
    height: 22px;
    left: 32%;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-botella {
    height: 60px;
    left: 49%;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-bolsa {
    height: 56px;
    right: 7%;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-polo {
    height: 52px;
    left: 30%;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-chuches {
    height: 34px;
    left: 59%;
  }

  .solution-pack-builder:has(.pack-item-lanyard).is-packed .pack-complete {
    height: 82px;
    top: 58%;
  }
}

/* =========================================================
   TARJETA 02 — PACK EVENTOS (SEIS PRODUCTOS)
   Identificada por .pack-item-lanyard
   ========================================================= */

/* Marco de la tarjeta 02 */
.solution-pack-builder:has(.pack-item-lanyard) {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Altura suficiente para que no se corten los productos */
.solution-pack-builder:has(.pack-item-lanyard) .solution-media {
  position: relative;
  height: 190px;
  min-height: 190px;
  overflow: hidden;
}

/* Base común para los seis productos */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item {
  position: absolute;
  z-index: 3;
  display: block;
  width: 21%;
  height: auto;
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transition:
    opacity 300ms ease,
    transform 500ms ease;
}

/* Escritorio: mostrar productos al pasar por la tarjeta */
@media (hover: hover) and (pointer: fine) {
  .solution-pack-builder:has(.pack-item-lanyard):hover .pack-item {
    opacity: 1;
  }
}

/* Producto 1: lanyard */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-lanyard {
  left: 7%;
  top: 12%;
  transform: rotate(-6deg);
}

/* Producto 2: bolígrafo */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-boligrafo {
  left: 32%;
  top: 17%;
  transform: rotate(8deg);
}

/* Producto 3: botella */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-botella {
  left: 51%;
  top: 8%;
  transform: rotate(-4deg);
}

/* Producto 4: bolsa */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-bolsa {
  right: 6%;
  top: 10%;
  transform: rotate(5deg);
}

/* Producto 5: polo */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-polo {
  left: 27%;
  bottom: 7%;
  transform: rotate(-5deg);
}

/* Producto 6: chuches */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-chuches {
  left: 57%;
  bottom: 11%;
  transform: rotate(5deg);
}

/* El número queda siempre libre */
.solution-pack-builder:has(.pack-item-lanyard) .solution-index {
  position: absolute;
  right: 15px;
  bottom: 10px;
  z-index: 20;
  pointer-events: none;
}

/* El botón queda siempre libre */
.solution-pack-builder:has(.pack-item-lanyard) .pack-action {
  z-index: 21;
}

/* Resultado final */
.solution-pack-builder:has(.pack-item-lanyard) .pack-complete {
  position: absolute;
  z-index: 6;
  left: 50%;
  top: 52%;
  width: auto;
  height: 155px;        /* más grande */
  max-width: 88%;       /* casi todo el ancho */
  opacity: 0;
  transform: translate(-50%, -50%) scale(.9);  /* empezamos casi al tamaño final */
  object-fit: contain;
  pointer-events: none;
}

/* Estado empaquetado */
.solution-pack-builder:has(.pack-item-lanyard).is-packed .pack-complete {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.solution-pack-builder:has(.pack-item-lanyard).is-packed .pack-complete {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Móvil */
@media (hover: none), (pointer: coarse) {
  .solution-pack-builder:has(.pack-item-lanyard) .solution-media {
    height: 190px;
    min-height: 190px;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item {
    opacity: 0;
  }

  .solution-pack-builder:has(.pack-item-lanyard).has-interacted .pack-item {
    opacity: 1;
  }

  .solution-pack-builder:has(.pack-item-lanyard).is-packed .pack-item {
    opacity: 0;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-action {
    opacity: 0;
    pointer-events: none;
  }

  .solution-pack-builder:has(.pack-item-lanyard).has-interacted .pack-action {
    opacity: 1;
    pointer-events: auto;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-complete {
  height: 130px;
  max-width: 84%;
  top: 57%;
}
}

/* =========================================================
   TARJETA 02 — POSICIONES FINALES (JUNTOS PERO SIN TOCARSE)
   ========================================================= */

/* Bolígrafo: un poco más cerca del centro */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-boligrafo {
  left: 29%;
  top: 15%;
}

/* Botella: un poco más centrada, sin invadir chuches */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-botella {
  left: 54%;
  top: 7%;
}

/* Polo: un poco más hacia el centro */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-polo {
  left: 25%;
  bottom: 7%;
}

/* Chuches: un poco más cerca de la botella, pero sin solaparse */
.solution-pack-builder:has(.pack-item-lanyard) .pack-item-chuches {
  left: 60%;
  bottom: 10%;
}

/* Móvil: mismo ajuste */
@media (hover: none), (pointer: coarse) {
  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-boligrafo {
    left: 29%;
    top: 15%;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-botella {
    left: 54%;
    top: 7%;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-polo {
    left: 25%;
    bottom: 7%;
  }

  .solution-pack-builder:has(.pack-item-lanyard) .pack-item-chuches {
    left: 60%;
    bottom: 10%;
  }
}

/* =========================================================
   TARJETA 01 — LIMPIEZA VISUAL
   ========================================================= */

/* Elimina únicamente los círculos decorativos de la tarjeta 01 */
.solution-media-empleados.solution-pack-preview::before,
.solution-media-empleados.solution-pack-preview::after {
  content: none;
  display: none;
}

/* La imagen del pack queda limpia y centrada */
.solution-media-empleados.solution-pack-preview {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  cursor: zoom-in;
}

/* PNG del pack */
.solution-media-empleados.solution-pack-preview .solution-pack-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Número 01 claro y siempre visible */
.solution-media-empleados.solution-pack-preview .solution-index {
  position: absolute;
  right: 14px;
  bottom: 10px;
  z-index: 10;
  display: block;
  color: var(--gold-1);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, .95),
    0 0 8px rgba(0, 0, 0, .8);
  pointer-events: none;
}

/* Mejora del número cuando el fondo de la imagen es claro */
.solution-media-empleados.solution-pack-preview .solution-index::before {
  content: "";
  position: absolute;
  inset: -5px -7px;
  z-index: -1;
  border-radius: 6px;
  background: rgba(5, 5, 4, .42);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .24);
}

/* Móvil */
@media screen and (max-width: 760px) {
  .solution-media-empleados.solution-pack-preview .solution-pack-image {
    padding: 6px 8px 18px;
  }

  .solution-media-empleados.solution-pack-preview .solution-index {
    right: 12px;
    bottom: 9px;
    font-size: 1.65rem;
  }
}
/* =========================================================
   TARJETA 01 — AMPLIAR IMAGEN AL HACER CLIC
   ========================================================= */

.solution-media-empleados.solution-pack-preview {
  cursor: zoom-in;
}

/* Fondo oscuro que cubre la pantalla */
.pack-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 4, .88);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 250ms ease,
    visibility 250ms ease;
}

/* Cuando está abierto */
.pack-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Imagen grande */
.pack-lightbox img {
  display: block;
  width: min(1100px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  transform: scale(.94);
  transition: transform 380ms cubic-bezier(.16, 1, .3, 1);
}

/* Pequeña animación de entrada */
.pack-lightbox.is-open img {
  transform: scale(1);
}

/* Botón X */
.pack-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(217, 178, 94, .65);
  border-radius: 50%;
  background: rgba(8, 7, 6, .85);
  color: var(--gold-1);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
}

/* Móvil */
@media screen and (max-width: 760px) {
  .pack-lightbox {
    padding: 14px;
  }

  .pack-lightbox img {
    width: 100%;
    max-height: 82vh;
  }

  .pack-lightbox-close {
    top: 12px;
    right: 12px;
  }
}

/* =========================================================
   TARJETA 02 — IMAGEN 16:9 SIN ESTIRAR NI RECORTAR
   ========================================================= */

/* La tarjeta 02 adopta la proporción de 2-pack.png: 1600 × 900 */
.solution-media-ferias.solution-pack-preview {
  height: auto;
  aspect-ratio: 16 / 9;
  min-height: 0;
}

/* La imagen llena la tarjeta, respetando su formato 16:9 */
.solution-media-ferias.solution-pack-preview .solution-pack-image {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

/* El 02 queda legible sobre la foto */
.solution-media-ferias.solution-pack-preview .solution-index {
  position: absolute;
  z-index: 10;
  right: 14px;
  bottom: 10px;
  color: var(--gold-1);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, .95),
    0 0 8px rgba(0, 0, 0, .8);
}

/* Fondo discreto para que se lea sobre cualquier foto */
.solution-media-ferias.solution-pack-preview .solution-index::before {
  content: "";
  position: absolute;
  inset: -5px -7px;
  z-index: -1;
  border-radius: 6px;
  background: rgba(5, 5, 4, .42);
}

/* Quita las dos líneas diagonales antiguas de tarjeta 02 */
.solution-media-ferias.solution-pack-preview::before,
.solution-media-ferias.solution-pack-preview::after {
  content: none;
  display: none;
}

/* Móvil: se mantiene 16:9 */
@media screen and (max-width: 760px) {
  .solution-media-ferias.solution-pack-preview {
    aspect-ratio: 16 / 9;
  }

  .solution-media-ferias.solution-pack-preview .solution-index {
    right: 12px;
    bottom: 9px;
    font-size: 1.65rem;
  }
}

/* =========================================================
   IGUALAR ALTURA DE TARJETAS 01 Y 02
   ========================================================= */

/* Las dos imágenes son 1600 × 900, por eso ambas usan 16:9 */
.solution-media-empleados.solution-pack-preview,
.solution-media-ferias.solution-pack-preview {
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  margin-bottom: 22px;
}

/* Las dos imágenes llenan exactamente su espacio */
.solution-media-empleados.solution-pack-preview .solution-pack-image,
.solution-media-ferias.solution-pack-preview .solution-pack-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
}

/* Móvil: iguala también el margen inferior de ambas */
@media screen and (max-width: 760px) {
  .solution-media-empleados.solution-pack-preview,
  .solution-media-ferias.solution-pack-preview {
    margin-bottom: 17px;
  }
}
/* =========================================================
   TARJETA 03 — PACK DE REGALOS PARA CLIENTES
   ========================================================= */

/* Quita las formas decorativas antiguas de esta tarjeta */
.solution-media-clientes.solution-pack-preview::before,
.solution-media-clientes.solution-pack-preview::after {
  content: none;
  display: none;
}

/* La tarjeta 03 usa el mismo formato de 3-pack.png: 1600 × 900 */
.solution-media-clientes.solution-pack-preview {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 22px;
  cursor: zoom-in;
}

/* La foto llena el espacio sin deformarse */
.solution-media-clientes.solution-pack-preview .solution-pack-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Número 03 claramente visible */
.solution-media-clientes.solution-pack-preview .solution-index {
  position: absolute;
  z-index: 10;
  right: 14px;
  bottom: 10px;
  display: block;
  color: var(--gold-1);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, .95),
    0 0 8px rgba(0, 0, 0, .8);
  pointer-events: none;
}

/* Fondo oscuro sutil debajo del 03 */
.solution-media-clientes.solution-pack-preview .solution-index::before {
  content: "";
  position: absolute;
  inset: -5px -7px;
  z-index: -1;
  border-radius: 6px;
  background: rgba(5, 5, 4, .42);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .24);
}

/* Móvil */
@media screen and (max-width: 760px) {
  .solution-media-clientes.solution-pack-preview {
    margin-bottom: 17px;
  }

  .solution-media-clientes.solution-pack-preview .solution-index {
    right: 12px;
    bottom: 9px;
    font-size: 1.65rem;
  }
}

/* =========================================================
   TARJETA 04 — KIT PARA STARTUPS Y EQUIPOS
   ========================================================= */

/* Quita las líneas y formas decorativas antiguas */
.solution-media-merchandising.solution-pack-preview::before,
.solution-media-merchandising.solution-pack-preview::after {
  content: none;
  display: none;
}

/* Mantiene el formato 1600 × 900 = 16:9 */
.solution-media-merchandising.solution-pack-preview {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 22px;
  cursor: zoom-in;
}

/* La imagen llena todo el hueco */
.solution-media-merchandising.solution-pack-preview .solution-pack-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Número 04 sobre la imagen */
.solution-media-merchandising.solution-pack-preview .solution-index {
  position: absolute;
  z-index: 10;
  right: 14px;
  bottom: 10px;
  display: block;
  color: var(--gold-1);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, .95),
    0 0 8px rgba(0, 0, 0, .8);
  pointer-events: none;
}

/* Fondo discreto detrás del número */
.solution-media-merchandising.solution-pack-preview .solution-index::before {
  content: "";
  position: absolute;
  inset: -5px -7px;
  z-index: -1;
  border-radius: 6px;
  background: rgba(5, 5, 4, .42);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .24);
}

/* Móvil */
@media screen and (max-width: 760px) {
  .solution-media-merchandising.solution-pack-preview {
    margin-bottom: 17px;
  }

  .solution-media-merchandising.solution-pack-preview .solution-index {
    right: 12px;
    bottom: 9px;
    font-size: 1.65rem;
  }
}
/* =========================================================
   TARJETA 05 — ROPA LABORAL Y UNIFORMIDAD
   ========================================================= */

/* Quita las figuras decorativas antiguas de la tarjeta 05 */
.solution-media-uniformidad.solution-pack-preview::before,
.solution-media-uniformidad.solution-pack-preview::after {
  content: none;
  display: none;
}

/* Imagen 1600 × 900: misma proporción que las tarjetas anteriores */
.solution-media-uniformidad.solution-pack-preview {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 22px;
  cursor: zoom-in;
}

/* Imagen llena el hueco completo */
.solution-media-uniformidad.solution-pack-preview .solution-pack-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Número 05 claramente visible */
.solution-media-uniformidad.solution-pack-preview .solution-index {
  position: absolute;
  z-index: 10;
  right: 14px;
  bottom: 10px;
  display: block;
  color: var(--gold-1);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, .95),
    0 0 8px rgba(0, 0, 0, .8);
  pointer-events: none;
}

/* Fondo discreto detrás del 05 */
.solution-media-uniformidad.solution-pack-preview .solution-index::before {
  content: "";
  position: absolute;
  inset: -5px -7px;
  z-index: -1;
  border-radius: 6px;
  background: rgba(5, 5, 4, .42);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .24);
}

/* Móvil */
@media screen and (max-width: 760px) {
  .solution-media-uniformidad.solution-pack-preview {
    margin-bottom: 17px;
  }

  .solution-media-uniformidad.solution-pack-preview .solution-index {
    right: 12px;
    bottom: 9px;
    font-size: 1.65rem;
  }
}
/* =========================================================
   TARJETA 06 — PACKS SOSTENIBLES Y REGALOS PREMIUM
   ========================================================= */

/* Quita las figuras decorativas antiguas de la tarjeta 06 */
.solution-media-sostenible.solution-pack-preview::before,
.solution-media-sostenible.solution-pack-preview::after {
  content: none;
  display: none;
}

/* Imagen 1600 × 900: misma proporción que las tarjetas anteriores */
.solution-media-sostenible.solution-pack-preview {
  position: relative;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
  aspect-ratio: 16 / 9 !important;
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 22px;
  cursor: zoom-in;
}

/* La imagen llena todo el hueco */
.solution-media-sostenible.solution-pack-preview .solution-pack-image {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

/* Número 06 visible sobre la imagen */
.solution-media-sostenible.solution-pack-preview .solution-index {
  position: absolute;
  z-index: 10;
  right: 14px;
  bottom: 10px;
  display: block;
  color: var(--gold-1);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  text-shadow:
    0 1px 3px rgba(0, 0, 0, .95),
    0 0 8px rgba(0, 0, 0, .8);
  pointer-events: none;
}

/* Fondo oscuro discreto detrás del 06 */
.solution-media-sostenible.solution-pack-preview .solution-index::before {
  content: "";
  position: absolute;
  inset: -5px -7px;
  z-index: -1;
  border-radius: 6px;
  background: rgba(5, 5, 4, .42);
  box-shadow: 0 2px 8px rgba(0, 0, 0, .24);
}

/* Móvil */
@media screen and (max-width: 760px) {
  .solution-media-sostenible.solution-pack-preview {
    margin-bottom: 17px;
  }

  .solution-media-sostenible.solution-pack-preview .solution-index {
    right: 12px;
    bottom: 9px;
    font-size: 1.65rem;
  }
}

.lz-page-nav {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto 26px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(201, 164, 91, .28);
  font-family: Inter, sans-serif;
}

.lz-page-nav a {
  color: #d6b56b;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}

.lz-page-nav a:hover {
  color: #fff;
  transform: translateY(-2px);
}

@media screen and (max-width: 749px) {
  .lz-page-nav {
    justify-content: flex-start;
    gap: 10px;
    width: calc(100% - 28px);
    margin-bottom: 18px;
    padding: 12px 0;
  }

  .lz-page-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 13px;
    color: #e5c77e;
    border: 1px solid rgba(201, 164, 91, .42);
    border-radius: 999px;
    font-size: 12px;
  }
}

.site-header {
  position: relative;
  z-index: 1000;
  overflow: visible !important;
}

.header-inner {
  position: relative;
}

@media screen and (max-width: 749px) {
  .site-header,
  .header-inner {
    overflow: visible !important;
  }

  .header-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 68px !important;
    gap: 12px !important;
  }

  .logo {
    display: flex !important;
    align-items: center !important;
    min-width: 0 !important;
    max-width: calc(100% - 62px) !important;
  }

  .logo-img {
    display: block !important;
    width: min(155px, 57vw) !important;
    height: auto !important;
    max-height: 48px !important;
    object-fit: contain !important;
  }

  .header-contact {
    display: none !important;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
    gap: 5px !important;
    flex: 0 0 44px !important;
    width: 44px !important;
    height: 44px !important;
    margin-left: auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 1px solid rgba(214,181,107,.70) !important;
    border-radius: 9px !important;
    cursor: pointer !important;
    opacity: 1 !important;
    visibility: visible !important;
    position: relative !important;
    z-index: 10002 !important;
  }

  .nav-toggle span {
    display: block !important;
    width: 23px !important;
    height: 2px !important;
    background: #d6b56b !important;
    border-radius: 4px !important;
  }

  .main-nav {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: 12px !important;
    left: 12px !important;
    z-index: 10001 !important;
    display: none !important;
    flex-direction: column !important;
    gap: 0 !important;
    padding: 10px !important;
    margin: 0 !important;
    background: rgba(8,8,8,.98) !important;
    border: 1px solid rgba(214,181,107,.55) !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 50px rgba(0,0,0,.55) !important;
  }

  .main-nav.is-open {
    display: flex !important;
  }

  .main-nav a {
    display: block !important;
    width: 100% !important;
    padding: 14px 12px !important;
    color: #fff !important;
    border-bottom: 1px solid rgba(214,181,107,.20) !important;
    font-size: 15px !important;
    line-height: 1.3 !important;
    text-decoration: none !important;
  }

  .main-nav a:last-child {
    border-bottom: 0 !important;
  }
}

.lz-shared-header {
  margin-top: 0 !important;
}

.lz-page-nav {
  display: none !important;
}

body:has(.lz-shared-header) .shopify-section-header,
body:has(.lz-shared-header) .section-header,
body:has(.lz-shared-header) .header-wrapper {
  display: none !important;
}

body:has(.lz-shared-header) main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body:has(.lz-shared-header) #MainContent,
body:has(.lz-shared-header) .content-for-layout {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

(function () {
  function initLutzardoMobileMenu() {
    var button = document.getElementById('nav-toggle');
    var nav = document.getElementById('main-nav');

    if (!button || !nav) return;

    if (button.dataset.menuReady === 'true') return;
    button.dataset.menuReady = 'true';

    button.addEventListener('click', function (event) {
      event.preventDefault();

      var isOpen = button.getAttribute('aria-expanded') === 'true';

      button.setAttribute('aria-expanded', String(!isOpen));
      button.setAttribute(
        'aria-label',
        isOpen ? 'Abrir menú' : 'Cerrar menú'
      );

      nav.classList.toggle('is-open', !isOpen);
    });

    nav.querySelectorAll('a').forEach(function (link) {
      link.addEventListener('click', function () {
        button.setAttribute('aria-expanded', 'false');
        button.setAttribute('aria-label', 'Abrir menú');
        nav.classList.remove('is-open');
      });
    });
  }

  if (document.readyState === 'loading') {
    document.addEventListener('DOMContentLoaded', initLutzardoMobileMenu);
  } else {
    initLutzardoMobileMenu();
  }
})();