/* Bloque de packs estáticos en Home - Salero Digital */
.home-packs-section{
  position:relative;
  padding:clamp(76px,9vw,126px) 0;
  background:#1f2a17;
  color:var(--paper);
  overflow:hidden;
  isolation:isolate;
}

.home-packs-video{
  position:absolute;
  inset:0;
  z-index:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  opacity:.46;
  filter:saturate(.72) contrast(.9) brightness(.72);
  pointer-events:none;
}

.home-packs-video-overlay{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    linear-gradient(180deg,rgba(20,32,18,.78) 0%,rgba(20,32,18,.64) 46%,rgba(20,32,18,.82) 100%),
    radial-gradient(circle at 50% 18%,rgba(199,244,88,.14),transparent 46%);
  pointer-events:none;
}

.home-packs-section::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:64px 64px;
  pointer-events:none;
}

.home-packs-section::after{
  content:"";
  position:absolute;
  inset:auto -12% -34% -12%;
  z-index:1;
  height:42%;
  background:radial-gradient(circle at center,rgba(199,244,88,.12),transparent 64%);
  pointer-events:none;
}

.home-packs-section .container{
  position:relative;
  z-index:2;
}

.home-packs-heading{
  max-width:780px;
  margin:0 auto 48px;
  text-align:center;
}

.home-packs-heading .eyebrow{
  color:var(--lime);
  justify-content:center;
}

.home-packs-heading .eyebrow::after{
  content:"";
  width:30px;
  height:3px;
  background:var(--albero);
  border-radius:999px;
}

.home-packs-heading h2{
  color:var(--paper);
  font-size:clamp(2.8rem,6vw,5.8rem);
  line-height:.9;
  letter-spacing:-.06em;
  text-shadow:0 14px 44px rgba(0,0,0,.22);
}

.home-packs-heading .lead{
  max-width:680px;
  margin:22px auto 0;
  color:rgba(255,253,247,.8);
}

.home-packs-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:24px;
  align-items:stretch;
}

.home-pack-card{
  position:relative;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:390px;
  padding:28px;
  border:1px solid rgba(255,253,247,.16);
  border-radius:34px;
  background:rgba(239,232,209,.94);
  color:#222817;
  box-shadow:0 24px 70px rgba(0,0,0,.22);
  overflow:hidden;
  backdrop-filter:blur(10px) saturate(1.02);
  -webkit-backdrop-filter:blur(10px) saturate(1.02);
}

.home-pack-card::after{
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  border-radius:50%;
  background:rgba(199,244,88,.14);
  right:-78px;
  top:-78px;
  pointer-events:none;
}

.home-pack-card > *{
  position:relative;
  z-index:1;
}

.home-pack-card-featured{
  background:rgba(255,250,240,.96);
  border:2px solid var(--lime);
  box-shadow:0 28px 82px rgba(0,0,0,.28),0 0 0 1px rgba(199,244,88,.18);
}

.home-pack-recommended{
  position:absolute;
  top:-1px;
  left:50%;
  transform:translateX(-50%);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:max-content;
  max-width:calc(100% - 36px);
  padding:10px 20px 9px;
  border-radius:0 0 999px 999px;
  background:var(--lime);
  color:#17210f;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.07em;
  line-height:1;
  text-transform:uppercase;
  text-align:center;
  white-space:nowrap;
}

.home-pack-label{
  display:inline-flex;
  width:fit-content;
  margin-bottom:auto;
  padding:10px 16px 9px;
  border:1px solid rgba(34,40,23,.14);
  border-radius:999px;
  background:rgba(34,40,23,.055);
  color:#334027;
  font-size:.76rem;
  font-weight:900;
  letter-spacing:.07em;
  line-height:1;
  text-transform:uppercase;
}

.home-pack-card h3{
  margin:44px 0 18px;
  color:#1f2518;
  font-family:var(--font-serif);
  font-size:clamp(2.65rem,3.6vw,4rem);
  line-height:.92;
  letter-spacing:-.06em;
}

.home-pack-card p{
  margin:0 0 28px;
  color:rgba(34,40,23,.72);
  font-size:clamp(1rem,1.35vw,1.15rem);
  line-height:1.55;
}

.home-pack-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:fit-content;
  min-height:46px;
  margin-top:auto;
  padding:13px 19px;
  border-radius:999px;
  background:#222817;
  color:#fffdf7;
  font-size:.9rem;
  font-weight:900;
  line-height:1;
  transition:transform .2s ease,background .2s ease;
}

.home-pack-link::after{
  content:"→";
  margin-left:8px;
  transition:transform .2s ease;
}

.home-pack-link:hover{
  transform:translateY(-2px);
  background:#10160c;
}

.home-pack-link:hover::after{
  transform:translateX(4px);
}

@media(max-width:1120px){
  .home-packs-grid{
    grid-template-columns:1fr;
    max-width:760px;
    margin:0 auto;
  }

  .home-pack-card{
    min-height:340px;
  }
}

@media(max-width:680px){
  .home-packs-section{
    padding:72px 0 82px;
  }

  .home-packs-video{
    opacity:.36;
  }

  .home-packs-heading{
    margin-bottom:40px;
  }

  .home-packs-heading h2{
    font-size:clamp(2.65rem,12vw,3.9rem);
  }

  .home-pack-card{
    min-height:330px;
    padding:28px 24px;
    border-radius:28px;
  }

  .home-pack-card h3{
    margin-top:38px;
    font-size:clamp(2.45rem,11vw,3.45rem);
  }

  .home-pack-recommended{
    padding:10px 16px 9px;
    font-size:.66rem;
    white-space:normal;
  }

  .home-pack-link{
    width:100%;
  }
}

@media(prefers-reduced-motion:reduce){
  .home-packs-video{
    display:none;
  }
}
