.lch-wrap {
  --lch-red:    #E2001A;
  --lch-red-dk: #C0001A;
  --lch-red-lt: #FDECEA;
  --lch-blue:   #3B5EF5;
  --lch-green:  #00A550;
  --lch-black:  #1A1A1A;
  --lch-gray1:  #3D3D3D;
  --lch-gray2:  #6B6B6B;
  --lch-gray3:  #9E9E9E;
  --lch-white:  #FFFFFF;
  font-family: 'Nunito', sans-serif !important;
  font-size: 16px !important;
  color: var(--lch-black);
  -webkit-font-smoothing: antialiased;
  container-type: inline-size;
}
.lch-wrap *,
.lch-wrap *::before,
.lch-wrap *::after {
  box-sizing: border-box;
  font-family: 'Nunito', sans-serif !important;
}

/*  HERO base (móvil)  */
.lch-wrap .lch-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--lch-white);
  margin: 0;
  overflow: hidden;
  min-height: 60vh;
}

/*  IMAGEN MÓVIL  */
.lch-wrap .lch-hero-img-mobile {
  position: relative;
  width: 100%;
  height: 180px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center top;
  background-color: #e8e8e8;
}
.lch-wrap .lch-hero-img-mobile::after {
  content: '';
  position: absolute; inset: 0;
  /*background: linear-gradient(
    to bottom,
    rgba(255,255,255,0)   0%,
    rgba(255,255,255,0.6) 60%,
    rgba(255,255,255,1)   100%
  );*/
}
.lch-wrap .lch-hero-img-mobile.lch-img-hidden { display: none; }

/*  IMAGEN DESKTOP  */
.lch-wrap .lch-hero-img-desktop {
  display: none;
  position: absolute; inset: 0; 
  /* z-index: 0; */
  background-size: cover;
  background-position: right center;
  background-color: #e8e8e8;
}
.lch-wrap .lch-hero-img-desktop::after {
  content: '';
  position: absolute; inset: 0;
  /*background: linear-gradient(
    90deg,
    rgba(255,255,255,1)   0%,
    rgba(255,255,255,0.98) 40%,
    rgba(255,255,255,0.7)  65%,
    rgba(255,255,255,0)    100%
  );*/
}

/*  CONTENIDO  */
.lch-wrap .lch-hero-content {
  position: relative; 
  /* z-index: 1; */
  width: 100%;
  padding: 24px 20px 48px;
}

/*  EYEBROW  */
.lch-wrap .lch-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 0 0 22px; font-size: 14px !important; font-weight: 600;
  animation: lchFadeUp 0.5s ease both !important;
}
.lch-wrap .lch-eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lch-green); flex-shrink: 0;
  animation: lchPulse 2s ease infinite !important;
}
.lch-wrap .lch-eyebrow-highlight { color: var(--lch-green); font-weight: 700; }
.lch-wrap .lch-eyebrow-text { color: var(--lch-gray2); font-weight: 500; }

/*  TITULAR  */
.lch-wrap .lch-title {
  font-size: clamp(26px, 4.2vw, 51px) !important;
  font-weight: 900; letter-spacing: -0.5px;
  color: var(--lch-black); line-height: 1.25;
  margin: 0 0 20px;
  animation: lchFadeUp 0.5s 0.1s ease both !important; opacity: 0;
}
.lch-wrap .lch-title em { color: var(--lch-blue); font-style: normal; }

/*  SUBTITULO  */
.lch-wrap .lch-sub {
  font-size: clamp(16px, 1.3vw + 8px, 20px) !important;
  color: var(--lch-gray1); line-height: 1.65;
  margin: 0 0 24px;
  animation: lchFadeUp 0.5s 0.2s ease both !important; opacity: 0;
}
.lch-wrap .lch-sub strong { color: var(--lch-black); font-weight: 700; }

/*  BLOQUE OFERTA  */
.lch-wrap .lch-offer-block {
  margin: 0 0 24px; padding: 14px 18px;
  background: #F0FAF4; border-left: 3px solid var(--lch-green);
  border-radius: 0 8px 8px 0;
  font-size: 14px !important; color: var(--lch-gray1); line-height: 1.6;
  animation: lchFadeUp 0.5s 0.25s ease both !important; opacity: 0;
  overflow: hidden; max-height: 200px;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.3s ease, padding 0.3s ease;
}
.lch-wrap .lch-offer-block.lch-offer--hidden {
  max-height: 0; opacity: 0;
  margin-bottom: 0; padding-top: 0; padding-bottom: 0;
}
.lch-wrap .lch-offer-block-title {
  font-weight: 700; color: var(--lch-green); margin: 0 0 4px; font-size: 14px !important;
}
.lch-wrap .lch-offer-block-body { margin: 0; padding: 0; }
.lch-wrap .lch-offer-block-body li { list-style: none; padding: 0; margin: 2px 0; }
.lch-wrap .lch-offer-block-body li::before {
  content: '•'; margin-right: 6px; color: var(--lch-green); font-weight: 700;
}

/*  CHECKS  */
.lch-wrap .lch-checks {
  display: flex; flex-direction: column; gap: 10px;
  margin: 0 0 32px;
  animation: lchFadeUp 0.5s 0.3s ease both !important; opacity: 0;
  list-style: none; padding: 0;
}
.lch-wrap .lch-checks.lch-only-mobile { display: flex !important; flex-direction: column; }
.lch-wrap .lch-checks.lch-only-desktop { display: none !important; }
.lch-wrap .lch-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px !important; color: var(--lch-gray1); font-weight: 500;
}
.lch-wrap .lch-check-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #4FC3F7 0%, #3B5EF5 100%);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px !important; color: white; font-weight: 700;
}
.lch-wrap .lch-check strong { color: var(--lch-black); }

/*  CTAs  */
.lch-wrap .lch-ctas {
  display: flex; flex-direction: column; gap: 12px;
  animation: lchFadeUp 0.5s 0.35s ease both !important; opacity: 0;
}
.lch-wrap .lch-cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--lch-red); color: var(--lch-white);
  border: none; border-radius: 99px; padding: 17px 28px;
  font-size: 16px !important; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(226,0,26,0.3);
}
.lch-wrap .lch-cta-primary:hover { background: var(--lch-red-dk); transform: translateY(-2px); }
.lch-wrap .lch-cta-primary .lch-arrow { transition: transform 0.2s; }
.lch-wrap .lch-cta-primary:hover .lch-arrow { transform: translateX(4px); }

.lch-wrap .lch-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: transparent; color: var(--lch-red);
  border: 2px solid var(--lch-red); border-radius: 99px; padding: 15px 28px;
  font-size: 15px !important; font-weight: 700; cursor: pointer; text-decoration: none;
  transition: all 0.2s;
}
.lch-wrap .lch-cta-secondary:hover { background: var(--lch-red-lt); }

.lch-wrap .lch-cta-note {
  font-size: 14px !important; color: var(--lch-gray3); text-align: center; margin: 6px 0 0;
}

/*  ANIMACIONES  */
@keyframes lchFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes lchPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(0.85); }
}

/*  Visibilidad por dispositivo  */
.lch-wrap .lch-only-desktop { display: none !important; }
.lch-wrap .lch-only-mobile  { display: block !important; }

/*  Responsive tablet y desktop  */
@media (min-width: 600px) {
  .lch-wrap .lch-hero { flex-direction: row; align-items: center; min-height: 80vh; }
  .lch-wrap .lch-hero-img-mobile { display: none !important; }
  .lch-wrap .lch-hero-img-desktop { display: block; }
  .lch-wrap .lch-hero-content {
    position: relative; 
    /* z-index: 1; */
    width: 100%; 
    padding: 60px 48px;
  }
  .lch-wrap .lch-title { font-size: clamp(32px, 3.5vw, 51px) !important; }
  .lch-wrap .lch-sub { font-size: clamp(17px, 1.5vw + 8px, 20px) !important; }
  .lch-wrap .lch-check { font-size: 16px !important; }
  .lch-wrap .lch-eyebrow { font-size: 16px !important; }
  .lch-wrap .lch-offer-block { font-size: 16px !important; }
  .lch-wrap .lch-offer-block-title { font-size: 16px !important; }
  .lch-wrap .lch-cta-note { font-size: 12px !important; text-align: center !important; }
  .lch-wrap .lch-ctas { flex-direction: row; align-items: center; }
  .lch-wrap .lch-cta-primary,
  .lch-wrap .lch-cta-secondary { width: 50%; justify-content: center; }
  .lch-wrap .lch-only-desktop { display: block !important; }
  .lch-wrap .lch-only-mobile  { display: none !important; }
  .lch-wrap .lch-checks.lch-only-desktop { display: flex !important; flex-direction: column; }
  .lch-wrap .lch-checks.lch-only-mobile  { display: none !important; }
}
@media (min-width: 1024px) {
  .lch-wrap .lch-hero-content { width: 50%; }
}

/*  Accesibilidad: sin animaciones si el usuario lo prefiere  */
@media (prefers-reduced-motion: reduce) {
  .lch-wrap .lch-eyebrow,
  .lch-wrap .lch-title,
  .lch-wrap .lch-sub,
  .lch-wrap .lch-offer-block,
  .lch-wrap .lch-checks,
  .lch-wrap .lch-ctas {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .lch-wrap .lch-eyebrow-dot {
    animation: none !important;
  }
}