/* Lysafe · home (front-page) — Personal Care Products.
   Hero claro/fresco. Primario CYAN (#00aabf), complementos navy/rojo Roux.
   Secciones: hero · líneas · por qué · respaldo Roux · CTA. */

/* ============================================================
   1) HERO — claro y fresco, logo completo centrado
   ============================================================ */
.rx-hero--light {
  position: relative; overflow: hidden;
  min-height: clamp(420px, 56vh, 560px);
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(60% 70% at 78% 12%, rgba(0, 170, 191, .14), transparent 60%),
    radial-gradient(48% 60% at 12% 92%, rgba(22, 51, 95, .08), transparent 60%),
    linear-gradient(180deg, var(--rx-cyan-50) 0%, #ffffff 72%);
}
/* línea-acento Roux (azul→rojo) sutil al pie del hero */
.rx-hero--light::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px;
  background: linear-gradient(90deg, var(--rx-cyan) 0%, var(--rx-navy) 55%, var(--rx-red) 100%);
  opacity: .9;
}
.rx-hero--light .rx-hero__inner { position: relative; z-index: 2; padding: clamp(2.4rem, 6vw, 4rem) var(--rx-gutter); }
.rx-hero__logo {
  display: block; margin: 0 auto var(--rx-space-3); width: auto; height: auto;
  max-height: clamp(140px, 22vh, 210px); max-width: min(86vw, 420px);
  filter: drop-shadow(0 10px 24px rgba(20, 37, 61, .14));
}
.rx-hero__title {
  color: var(--rx-navy); font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold);
  font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.12; margin-bottom: var(--rx-space-2);
  text-wrap: balance;
}
.rx-hero__lead {
  color: var(--rx-ink-soft); font-size: var(--rx-text-md); line-height: 1.5;
  max-width: 44ch; margin: 0 auto var(--rx-space-3); text-wrap: balance;
}
.rx-hero__cta-row { display: flex; gap: var(--rx-space-2); justify-content: center; flex-wrap: wrap; }
.rx-hero--light .rx-btn--ghost { color: var(--rx-navy); border-color: var(--rx-navy); background: transparent; }
.rx-hero--light .rx-btn--ghost:hover { background: var(--rx-navy); color: #fff; }

/* ============================================================
   2) LÍNEAS DE CUIDADO PERSONAL — cards con ícono (sin foto aún)
   ============================================================ */
.rx-cats { background: var(--rx-grey-50); padding-block: var(--rx-space-6); }
.rx-cats__head { text-align: center; max-width: 660px; margin: 0 auto var(--rx-space-5); }
.rx-cats__title { font-size: var(--rx-text-2xl); color: var(--rx-navy); }
.rx-cats__sub { color: var(--rx-ink-soft); margin-top: var(--rx-space-1); font-size: var(--rx-text-md); }
.rx-cats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 2.4vw, 1.6rem); }

.rx-cat-card--icon {
  display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%;
  background: #fff; border: 1px solid var(--rx-border); border-radius: var(--rx-radius-lg);
  padding: var(--rx-space-4) var(--rx-space-3) var(--rx-space-3);
  box-shadow: var(--rx-shadow-sm); color: inherit; text-decoration: none;
  transition: transform .25s var(--rx-ease), box-shadow .25s var(--rx-ease), border-color .25s var(--rx-ease);
}
a.rx-cat-card--icon:hover { transform: translateY(-5px); box-shadow: var(--rx-shadow-md); border-color: var(--rx-cyan); }
.rx-cat-card--icon.is-soon { background: var(--rx-grey-50); }
.rx-cat-card__glyph {
  width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  background: var(--rx-cyan-50); color: var(--rx-cyan-deep); margin-bottom: var(--rx-space-2);
}
.rx-cat-card__glyph svg { width: 38px; height: 38px; }
.rx-cat-card--icon.is-soon .rx-cat-card__glyph { background: #eef1f5; color: var(--rx-ink-muted); }
.rx-cat-card__body { display: flex; flex-direction: column; gap: .5rem; align-items: center; flex: 1; }
.rx-cat-card__name {
  color: var(--rx-navy); font-family: var(--rx-font-head); font-weight: var(--rx-fw-bold);
  font-size: 1.05rem; letter-spacing: .02em;
}
a.rx-cat-card--icon:hover .rx-cat-card__name { color: var(--rx-cyan-deep); }
.rx-cat-card__desc { color: var(--rx-ink-soft); font-size: .9rem; line-height: 1.45; }
.rx-cat-card__soon {
  margin-top: auto; display: inline-block; font-size: .72rem; font-weight: var(--rx-fw-bold);
  letter-spacing: .1em; text-transform: uppercase; color: var(--rx-cyan-deep);
  background: var(--rx-cyan-50); border-radius: 999px; padding: .32rem .8rem;
}

/* ============================================================
   3) POR QUÉ LYSAFE — 3 beneficios con ícono
   ============================================================ */
.rx-exp { background: #fff; padding-block: var(--rx-space-6); text-align: center; }
.rx-exp__title { font-size: var(--rx-text-2xl); color: var(--rx-navy); margin-bottom: var(--rx-space-5); }
.rx-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.4rem, 3vw, 2.6rem); max-width: 980px; margin-inline: auto; }
.rx-why__item { display: flex; flex-direction: column; align-items: center; gap: .7rem; }
.rx-why__icon {
  width: 64px; height: 64px; border-radius: 16px; display: grid; place-items: center;
  background: var(--rx-navy); color: var(--rx-cyan);
}
.rx-why__icon svg { width: 32px; height: 32px; }
.rx-why__title { font-size: var(--rx-text-md); color: var(--rx-navy); font-weight: var(--rx-fw-bold); }
.rx-why__desc { color: var(--rx-ink-soft); font-size: .95rem; line-height: 1.5; max-width: 30ch; }

/* ============================================================
   4) RESPALDO ROUX CORPORATION — banda cyan-lavado, texto + logo
   ============================================================ */
.rx-roux { background: var(--rx-cyan-50); padding-block: var(--rx-space-6); }
.rx-roux__inner { display: grid; grid-template-columns: 1.3fr .7fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.rx-roux__eyebrow { color: var(--rx-cyan-deep); font-weight: var(--rx-fw-bold); letter-spacing: .14em; text-transform: uppercase; font-size: .85rem; }
.rx-roux__title { font-size: var(--rx-text-xl); color: var(--rx-navy); margin: .2rem 0 var(--rx-space-2); }
.rx-roux__lead { color: var(--rx-ink); font-size: var(--rx-text-md); line-height: 1.6; margin-bottom: var(--rx-space-3); max-width: 56ch; }
.rx-roux .rx-btn--ghost { color: var(--rx-navy); border-color: var(--rx-navy); }
.rx-roux .rx-btn--ghost:hover { background: var(--rx-navy); color: #fff; }
.rx-roux__logo { text-align: center; }
.rx-roux__logo img { width: 100%; max-width: 220px; height: auto; display: inline-block; }

/* ============================================================
   5) CTA — Lysafe logo (left) + heading/lead/button (right)
   ============================================================ */
.rx-cta { background: #fff; padding-block: var(--rx-space-6); }
.rx-cta__inner { display: grid; grid-template-columns: minmax(200px, .8fr) 1.2fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.rx-cta__logo img { width: 100%; max-width: 300px; height: auto; display: block; margin-inline: auto; }
.rx-cta__title { font-size: var(--rx-text-xl); color: var(--rx-navy); line-height: var(--rx-leading-tight); }
.rx-cta__lead { color: var(--rx-ink-soft); margin: var(--rx-space-2) 0 var(--rx-space-3); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .rx-cats__grid { grid-template-columns: repeat(2, 1fr); }
  .rx-why__grid { grid-template-columns: 1fr; max-width: 420px; }
  .rx-roux__inner { grid-template-columns: 1fr; text-align: center; }
  .rx-roux__lead { margin-inline: auto; }
}
@media (max-width: 760px) {
  .rx-cta__inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 480px) {
  .rx-cats__grid { grid-template-columns: 1fr; }
}
