/* SHUEVO — identidad visual premium */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --sh-cream: #F8F3EA;
  --sh-cream-deep: #EFE6D8;
  --sh-card: #F3EADF;
  --sh-olive: #4C582F;
  --sh-olive-dark: #3A4424;
  --sh-gold: #C4A35A;
  --sh-ink: #2B2924;
  --sh-muted: #7A7468;
  --sh-white: #FFFcf7;
  --sh-radius: 18px;
  --sh-radius-sm: 12px;
  --sh-sans: "Manrope", system-ui, sans-serif;
  --sh-serif: var(--sh-sans);
  --sh-script: "Great Vibes", cursive;
  --sh-shadow: 0 18px 40px rgba(43, 41, 36, 0.08);
  --sh-shadow-soft: 0 10px 28px rgba(43, 41, 36, 0.06);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body.shuevo-body {
  margin: 0;
  font-family: var(--sh-sans);
  color: var(--sh-ink);
  background: var(--sh-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

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

/* —— Header —— */
.sh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 243, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 88, 47, 0.08);
}

.sh-header.sh-header-home {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /* Velo cream a todo el ancho/alto del nav (logo + links + ES|EN + iconos) */
  background: linear-gradient(
    180deg,
    rgba(248, 243, 234, 1.00) 0%,
    rgba(248, 243, 234, 0.97) 45%,
    rgba(248, 243, 234, 0.93) 82%,
    rgba(248, 243, 234, 0.86) 100%
  );
  backdrop-filter: blur(2px);
  border-bottom: 0;
  /* El margen de protección del logo vive en .sh-header-inner */
  padding-top: 0;
  padding-bottom: 0;
  transition:
    background .3s ease,
    border-color .3s ease,
    backdrop-filter .3s ease,
    box-shadow .3s ease,
    padding .3s ease;
}

.sh-header.sh-header-home::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(248, 243, 234, 0.70) 0%,
    rgba(248, 243, 234, 0.40) 75%,
    rgba(248, 243, 234, 0.00) 100%
  );
}

.sh-header.sh-header-home .sh-header-inner {
  position: relative;
  z-index: 1;
  align-items: center;
  min-height: 88px;
}

.sh-header.sh-header-home .sh-nav a {
  color: #2B2924;
}

.sh-header.sh-header-home .sh-nav a:hover,
.sh-header.sh-header-home .sh-nav a.is-active {
  color: var(--sh-olive, #4C582F);
}

.sh-header.sh-header-home .lang-switch a {
  color: #2B2924;
}

.sh-header.sh-header-home .sh-icon-btn {
  color: #2B2924;
  background: rgba(248, 243, 234, 0.72);
  border-color: rgba(43, 41, 36, 0.22);
}

.sh-header.sh-header-home .sh-icon-btn:hover {
  background: rgba(248, 243, 234, 0.92);
}

.sh-header.sh-header-home.is-solid {
  background: rgba(248, 243, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 88, 47, 0.08);
  box-shadow: 0 8px 24px rgba(43, 41, 36, 0.06);
  padding-top: 0;
  padding-bottom: 0;
}

.sh-header.sh-header-home.is-solid::before {
  display: none;
}

.sh-header.is-solid {
  background: rgba(248, 243, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(76, 88, 47, 0.08);
  box-shadow: 0 8px 24px rgba(43, 41, 36, 0.06);
}

.sh-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 78px;
  /* ~30px aire arriba/abajo: el logo nunca pega al borde al escalar */
  padding-top: var(--sh-logo-pad, 30px);
  padding-bottom: var(--sh-logo-pad, 30px);
  box-sizing: border-box;
}

.sh-logo {
  font-family: var(--sh-serif);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--sh-olive);
}

.sh-logo.sh-logo--img {
  display: inline-flex;
  align-items: center;
  align-self: center;
  line-height: 0;
  flex: 0 0 auto;
  max-height: 100%;
}

.sh-logo-img,
.sh-logo.sh-logo--img .sh-logo-img {
  display: block;
  /* Base 3x vs caja boutique (42px); Ajustes → tamaño multiplica encima */
  height: calc(126px * var(--brand-logo-scale, 1));
  width: auto;
  max-width: min(420px, 56vw);
  /* No crecer más allá del header dejando el padding de protección */
  max-height: min(
    calc(126px * var(--brand-logo-scale, 1)),
    calc(100% - 0px)
  );
  object-fit: contain;
}

.sh-logo-img--light {
  display: none;
}

.sh-header-home .sh-logo.has-logo-white .sh-logo-img--dark {
  display: none;
}

.sh-header-home .sh-logo.has-logo-white .sh-logo-img--light {
  display: block;
}

.sh-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.sh-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-muted);
  transition: color .3s ease;
}

.sh-nav a:hover,
.sh-nav a.is-active {
  color: var(--sh-olive);
}

.sh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 26px;
  background: var(--sh-olive);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .35s cubic-bezier(.22,1,.36,1), background .25s ease, box-shadow .35s ease;
  box-shadow: 0 10px 24px rgba(76, 88, 47, 0.18);
}

.sh-btn:hover {
  background: var(--sh-olive-dark);
  transform: translateY(-2px);
  color: #fff;
}

.sh-btn-ghost {
  background: transparent;
  color: var(--sh-olive);
  border: 1px solid rgba(76, 88, 47, 0.25);
  box-shadow: none;
}

.sh-btn-ghost:hover {
  background: var(--sh-olive);
  color: #fff;
}

.sh-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sh-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(76, 88, 47, 0.18);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--sh-olive);
  transition: background .25s ease, transform .3s ease;
}

.sh-icon-btn:hover {
  background: var(--sh-cream-deep);
  transform: translateY(-1px);
}

/* —— Hero full-bleed + panel opaco izquierdo —— */
.sh-hero {
  position: relative;
  min-height: clamp(620px, 88vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.sh-hero-bg {
  position: absolute;
  inset: -10% -6%;
  z-index: 0;
  overflow: hidden;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  will-change: transform;
}

.sh-hero-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.sh-hero-slide:not(:last-child) {
  margin-right: 0;
}

.sh-hero-track::-webkit-scrollbar {
  display: none;
}

.sh-hero-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.sh-hero-slide a,
.sh-hero-bg img,
.sh-hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  display: block;
  transform: scale(1.06);
}

.sh-hero-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 6px;
  transform: translateX(-50%);
}

.sh-hero-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 252, 247, 0.45);
  cursor: pointer;
  transition: width .2s ease, background .2s ease;
}

.sh-hero-dots button.is-active {
  width: 18px;
  background: var(--sh-olive);
}

.sh-hero-panel {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(72%, 880px);
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(248, 243, 234, 1) 0%,
      rgba(248, 243, 234, 0.98) 58%,
      rgba(248, 243, 234, 0.92) 72%,
      rgba(248, 243, 234, 0.55) 88%,
      rgba(248, 243, 234, 0) 100%
    );
}

.sh-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  /* Debajo del header fijo + logo grande: el kicker no se pega al logo */
  padding: 210px 0 64px;
}

.sh-hero-copy {
  max-width: 520px;
}

.sh-hero h1 {
  margin: 0 0 18px;
  font-family: var(--sh-serif);
  font-size: clamp(44px, 6.2vw, 72px);
  line-height: 1.02;
  font-weight: 600;
  color: var(--sh-ink);
}

.sh-hero h1 .sh-hero-line2 {
  white-space: nowrap;
}

.sh-hero h1 em {
  font-family: var(--sh-script);
  font-style: normal;
  font-weight: 400;
  color: #8A9A4A;
  font-size: 0.95em;
  letter-spacing: 0.01em;
}

.sh-hero-lead {
  margin: 0 0 28px;
  max-width: 400px;
  color: var(--sh-muted);
  font-size: 15px;
  line-height: 1.75;
}

.sh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.sh-hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
}

.sh-perk {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  color: var(--sh-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  max-width: 120px;
}

.sh-perk-ico {
  color: var(--sh-olive);
  display: inline-flex;
}

.sh-stamp {
  position: absolute;
  z-index: 3;
  right: max(4vw, calc((100% - 1180px) / 2 + 24px));
  bottom: 12%;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--sh-olive);
  color: #fff;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.35;
  box-shadow: var(--sh-shadow);
  animation: sh-float 5.5s ease-in-out infinite;
}

@keyframes sh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* —— Reveal motions —— */
.sh-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}

.sh-reveal.is-in {
  opacity: 1;
  transform: none;
}

.sh-reveal-delay-1 { transition-delay: .1s; }
.sh-reveal-delay-2 { transition-delay: .2s; }
.sh-reveal-delay-3 { transition-delay: .3s; }

/* —— Sections —— */
.sh-section {
  padding: 72px 0;
}

.sh-section-products {
  padding: 80px 0 88px;
}

.sh-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
}

.sh-section-head-center {
  text-align: center;
}

.sh-section-eyebrow {
  margin: 0 0 8px;
  font-family: var(--sh-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--sh-gold);
}

.sh-diamond {
  color: var(--sh-gold);
  font-size: 9px;
  margin: 0 7px;
  vertical-align: middle;
}

.sh-section-head h2 {
  margin: 0;
  font-family: var(--sh-serif);
  font-size: clamp(40px, 5.2vw, 58px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--sh-olive);
  letter-spacing: 0.01em;
}

.sh-section-rule {
  position: relative;
  width: min(440px, 76%);
  height: 1px;
  margin: 12px auto 10px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 163, 90, 0.35) 12%,
    rgba(196, 163, 90, 0.85) 50%,
    rgba(196, 163, 90, 0.35) 88%,
    transparent 100%
  );
}

.sh-section-rule-diamond {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: var(--sh-gold);
  font-size: 10px;
  line-height: 1;
  background: var(--sh-cream);
  padding: 0 8px;
}

.sh-section-lead {
  margin: 0 auto;
  max-width: 580px;
  color: #777777;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
}

.sh-section-head h2 em,
.sh-why-panel h2 em {
  font-family: var(--sh-script);
  font-style: normal;
  color: #8A9A4A;
  font-weight: 400;
}

.sh-section-head p {
  margin: 8px 0 0;
  color: var(--sh-muted);
  max-width: 420px;
}

/* —— Product cards: imagen llena el cuadrado, info encima —— */
.sh-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sh-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(43, 41, 36, 0.07);
  transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
}

.sh-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 42px rgba(43, 41, 36, 0.1);
}

.sh-card-frame {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  background: #F7F1E9;
  cursor: default;
}

.sh-card-modal .sh-card-frame {
  cursor: pointer;
}

.sh-card-img-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}

.sh-card-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transition: transform .9s cubic-bezier(.22,1,.36,1);
}

.sh-card:hover .sh-card-img {
  transform: scale(1.04);
}

.sh-card-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px 10px;
  pointer-events: none;
}

.sh-card-overlay .sh-cart-fab {
  pointer-events: auto;
}

.sh-card-info {
  min-width: 0;
  flex: 1;
  pointer-events: none;
}

.sh-card-info h3 {
  margin: 0 0 1px;
  font-family: var(--sh-sans);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sh-ink);
  line-height: 1.15;
}

.sh-card-info .meta {
  margin: 0 0 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5C574E;
  line-height: 1.2;
}

.sh-card-info .price {
  margin: 0;
  font-family: var(--sh-sans);
  font-size: 22px;
  font-weight: 800;
  color: var(--sh-ink);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.sh-cart-fab {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 0;
  background: var(--sh-olive);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(76, 88, 47, 0.28);
  transition: transform .3s ease, background .25s ease, box-shadow .3s ease;
}

.sh-cart-fab:hover {
  background: var(--sh-olive-dark);
  transform: scale(1.05);
  box-shadow: 0 10px 22px rgba(76, 88, 47, 0.34);
  color: #fff;
}

/* —— Producto estrella: bg parallax + columna oscura (png+botón) + 6 cajas —— */
.sh-star {
  padding: 0;
  background: #1c1a17;
}

.sh-star-scene {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: min(88vh, 820px);
  padding: 56px 0;
  display: flex;
  align-items: center;
}

.sh-star-bg {
  position: absolute;
  inset: -16% 0;
  z-index: 0;
  background: var(--star-bg) center / cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.12);
  will-change: transform;
  pointer-events: none;
}

.sh-star-frame {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(180px, 0.9fr) minmax(420px, 1.45fr) minmax(180px, 0.9fr);
  align-items: center;
  gap: 0 8px;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(12px, 2.2vw, 28px);
  box-sizing: border-box;
}

.sh-star-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 3;
}

.sh-star-col--left {
  align-items: flex-end;
  margin-right: -12%;
}

.sh-star-col--right {
  align-items: flex-start;
  margin-left: -12%;
}

.sh-star-box {
  width: min(100%, 260px);
  min-height: 88px;
  padding: 22px 24px;
  text-align: left;
  border-radius: 26px;
  background: #F8F3EA;
  border: 0;
  box-shadow: 0 14px 34px rgba(20, 18, 14, 0.2);
  color: var(--sh-ink, #2B2924);
}

.sh-star-box strong {
  display: block;
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 700;
  color: var(--sh-olive, #4C582F);
}

.sh-star-box span {
  display: block;
  font-size: 15px;
  line-height: 1.45;
  color: var(--sh-muted, #7A7468);
}

.sh-star-center {
  justify-self: stretch;
  width: 100%;
  z-index: 1;
}

.sh-star-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  min-height: min(72vh, 640px);
  padding: 36px 28px 28px;
  border-radius: 10px;
  background: #3a3a3a;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.28);
}

.sh-star-png {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 320px;
}

.sh-star-png img {
  width: auto;
  max-width: 92%;
  max-height: min(52vh, 480px);
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.sh-star-png-ph {
  font-family: var(--sh-sans, Manrope, sans-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
}

.sh-star-cta {
  width: 100%;
  max-width: 240px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .sh-star-bg {
    inset: 0;
    transform: none !important;
    will-change: auto;
  }
}

@media (max-width: 900px) {
  .sh-star-frame {
    grid-template-columns: minmax(140px, 0.85fr) minmax(300px, 1.3fr) minmax(140px, 0.85fr);
    padding: 0 12px;
  }
  .sh-star-col--left { margin-right: -8%; }
  .sh-star-col--right { margin-left: -8%; }
  .sh-star-box { width: min(100%, 200px); min-height: 78px; padding: 16px 18px; }
  .sh-star-box strong { font-size: 16px; }
  .sh-star-box span { font-size: 14px; }
  .sh-star-panel { min-height: 520px; padding: 24px 18px 20px; }
}

@media (max-width: 720px) {
  .sh-star-scene {
    min-height: 0;
    padding: 36px 0 44px;
  }
  .sh-star-bg {
    inset: 0;
    transform: none;
  }
  .sh-star-frame {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 14px;
  }
  .sh-star-center { order: 1; }
  .sh-star-col--left,
  .sh-star-col--right {
    order: 2;
    align-items: stretch;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .sh-star-col--right { order: 3; }
  .sh-star-box {
    width: calc(50% - 7px);
    text-align: center;
  }
  .sh-star-panel {
    min-height: 420px;
  }
}

/* —— Why: foto limpia + panel derecho GRANDE premium —— */
.sh-why-band {
  position: relative;
  display: grid;
  /* Foto un poco más ancha (~38–40%) */
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.45fr);
  align-items: stretch;
  min-height: clamp(580px, 62vw, 720px);
  height: auto;
  overflow: hidden;
  isolation: isolate;
  background: #F9F4EB;
}

.sh-why-photo {
  position: relative;
  z-index: 1;
  min-height: clamp(580px, 62vw, 720px);
  height: auto;
  align-self: stretch;
  background-image: var(--why-img);
  background-size: cover;
  background-position: center;
  -webkit-mask-image: none;
  mask-image: none;
  transform: none;
  transition: none;
}

.sh-why-band:hover .sh-why-photo {
  transform: none;
}

.sh-why-panel {
  position: relative;
  z-index: 2;
  background: #F9F4EB;
  display: flex;
  align-items: center;
  justify-content: center; /* centro horizontal del bloque */
  margin-left: 0;
  width: 100%;
  box-sizing: border-box;
}

.sh-why-panel::before {
  display: none;
}

.sh-why-panel-inner {
  width: 100%;
  max-width: min(920px, 92%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(64px, 7.5vw, 100px) clamp(28px, 4vw, 56px) clamp(60px, 7vw, 92px);
  text-align: center;
  box-sizing: border-box;
}

.sh-why-panel .sh-section-eyebrow {
  margin: 0 0 16px;
  font-family: var(--sh-sans, "Segoe UI", system-ui, sans-serif);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #2D3A26;
}

.sh-why-rule {
  position: relative;
  width: min(320px, 46%);
  height: 1px;
  margin: 0 auto 26px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(196, 163, 90, 0.45) 14%,
    rgba(196, 163, 90, 0.95) 50%,
    rgba(196, 163, 90, 0.45) 86%,
    transparent 100%
  );
}

.sh-why-rule-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D4AF37;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 8px #F9F4EB;
}

.sh-why-panel h2 {
  margin: 0 0 52px;
  font-family: var(--sh-serif);
  font-size: clamp(44px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.06;
  color: #2D3A26;
  letter-spacing: -0.02em;
}

.sh-why-panel h2 em {
  display: block;
  margin-top: 8px;
  font-family: var(--sh-script);
  font-style: normal;
  color: #3F4F2E;
  font-weight: 400;
  font-size: 0.72em;
  line-height: 1.22;
  letter-spacing: 0;
}

.sh-why-lead {
  display: none;
}

.sh-why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  text-align: center;
  align-items: start;
}

.sh-feature {
  position: relative;
  padding: 10px 20px 0;
}

.sh-feature + .sh-feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 8px;
  width: 1px;
  background: rgba(45, 58, 38, 0.16);
}

/* Círculo outline via SVG; sin borde CSS doble */
.sh-feature-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  color: #2D3A26;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-sizing: border-box;
}

.sh-feature-icon svg {
  width: 78px;
  height: 78px;
  display: block;
}

.sh-feature h3 {
  margin: 0 0 14px;
  font-family: var(--sh-sans, "Segoe UI", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2D3A26;
  line-height: 1.35;
}

.sh-feature p {
  margin: 0 auto;
  max-width: 220px;
  color: #4a4a44;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

/* —— Trust bar (CTA WhatsApp premium) —— */
.sh-trust {
  --sh-trust-ink: #F3EDE2;
  background: #4C582F;
  color: var(--sh-trust-ink);
  padding: clamp(52px, 6vw, 78px) 0;
  border-radius: 0;
  margin-top: 0;
}

.sh-trust-inner.sh-container,
.sh-trust .sh-trust-inner {
  width: min(1320px, calc(100% - 64px));
}

.sh-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 64px);
}

.sh-trust-copy {
  position: relative;
  min-width: 0;
  flex: 0 1 400px;
  max-width: 400px;
}

.sh-trust-title {
  margin: 0 0 10px;
  font-family: var(--sh-sans, "Segoe UI", system-ui, sans-serif);
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sh-trust-ink);
  line-height: 1.15;
  white-space: nowrap;
}

.sh-trust-lead-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: nowrap;
}

.sh-trust-lead {
  margin: 0;
  font-family: var(--sh-sans, "Segoe UI", system-ui, sans-serif);
  font-size: clamp(14px, 1.35vw, 17px);
  font-weight: 400;
  line-height: 1.4;
  color: rgba(243, 237, 226, 0.92);
  white-space: nowrap;
}

.sh-trust-arrow {
  flex: 0 0 auto;
  width: 108px;
  height: 58px;
  margin-top: -10px;
  margin-left: 2px;
  color: #E89B1C;
}

.sh-trust-arrow svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.sh-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 12px;
  background: #F8F3EA;
  color: #2B2924;
  border-radius: 999px;
  padding: 18px 32px;
  min-width: 230px;
  margin: 0;
  font-family: var(--sh-sans, "Segoe UI", system-ui, sans-serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), background 0.25s ease;
  white-space: nowrap;
}

.sh-wa-btn-ico {
  flex: 0 0 auto;
  color: #2B2924;
}

.sh-wa-btn:hover {
  transform: translateY(-2px);
  background: #fff;
  color: #2B2924;
}

.sh-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  flex: 0 1 500px;
  width: 100%;
  max-width: 500px;
  min-height: 118px;
  opacity: 1;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: normal;
  text-transform: none;
}

.sh-trust-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 8px 10px;
  text-align: center;
}

.sh-trust-item + .sh-trust-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8%;
  bottom: 8%;
  width: 1px;
  background: rgba(243, 237, 226, 0.32);
}

.sh-trust-ico {
  width: 68px;
  height: 68px;
  color: var(--sh-trust-ink);
  display: grid;
  place-items: center;
}

.sh-trust-ico svg {
  width: 64px;
  height: 64px;
  display: block;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sh-trust-item-label {
  font-family: var(--sh-sans, "Segoe UI", system-ui, sans-serif);
  font-size: clamp(13px, 1.15vw, 15px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--sh-trust-ink);
  max-width: 11.5em;
  white-space: normal;
}

/* —— Footer —— */
.sh-footer {
  padding: 48px 0 28px;
  background: var(--sh-cream-deep);
}

.sh-footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.sh-footer h4 {
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sh-olive);
}

.sh-footer p,
.sh-footer a {
  color: var(--sh-muted);
  font-size: 14px;
  line-height: 1.7;
}

.sh-footer a:hover { color: var(--sh-olive); }

.sh-copy {
  border-top: 1px solid rgba(76, 88, 47, 0.12);
  padding-top: 18px;
  font-size: 12px;
  color: var(--sh-muted);
}

/* —— Empty / placeholder note —— */
.sh-empty {
  grid-column: 1 / -1;
  padding: 40px;
  text-align: center;
  color: var(--sh-muted);
  border: 1px dashed rgba(76, 88, 47, 0.25);
  border-radius: var(--sh-radius);
  background: rgba(255,255,255,0.35);
}

/* —— Responsive —— */
@media (max-width: 980px) {
  .sh-hero {
    min-height: 720px;
    align-items: flex-end;
  }
  .sh-hero-bg {
    background-position: 70% center;
  }
  .sh-hero-panel {
    width: 100%;
    inset: auto 0 0 0;
    height: 62%;
    background: linear-gradient(
      180deg,
      rgba(248, 243, 234, 0) 0%,
      rgba(248, 243, 234, 0.82) 22%,
      rgba(248, 243, 234, 0.97) 48%,
      rgba(248, 243, 234, 1) 100%
    );
  }
  .sh-hero-inner { padding: 40px 0 48px; }
  .sh-hero-copy { max-width: 100%; }
  .sh-why-band {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
  }
  .sh-why-photo {
    height: min(58vw, 360px);
    min-height: 240px;
    -webkit-mask-image: none;
    mask-image: none;
    transform: none;
  }
  .sh-why-band:hover .sh-why-photo {
    transform: none;
  }
  .sh-why-panel {
    margin-left: 0;
  }
  .sh-why-panel-inner {
    padding: 52px 22px 56px;
  }
  .sh-why-panel h2 {
    font-size: clamp(34px, 8.5vw, 46px);
    margin-bottom: 36px;
  }
  .sh-feature-icon,
  .sh-feature-icon svg {
    width: 64px;
    height: 64px;
  }
  .sh-why-panel::before { display: none; }
  .sh-why-lead {
    display: none;
  }
  .sh-why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 14px;
  }
  .sh-feature + .sh-feature::before {
    display: none;
  }
  .sh-feature:nth-child(even)::before {
    display: none;
  }
  .sh-products { grid-template-columns: 1fr 1fr; }
  .sh-nav { display: none; }
  .sh-header-inner {
    min-height: 58px;
    gap: 8px;
    padding-top: var(--sh-logo-pad, 30px);
    padding-bottom: var(--sh-logo-pad, 30px);
  }
  .sh-logo {
    font-size: 22px;
    letter-spacing: 0.03em;
  }
  .sh-logo-img,
  .sh-logo.sh-logo--img .sh-logo-img {
    height: calc(88px * var(--brand-logo-scale, 1));
    max-width: min(220px, 48vw);
  }
  .sh-header-actions {
    gap: 6px;
    margin-left: auto;
  }
  .sh-header-actions .lang-switch {
    gap: 2px;
    margin-right: 2px;
  }
  .sh-header-actions .lang-switch a {
    font-size: 10px;
    padding: 0 2px;
  }
  .sh-icon-btn {
    width: 40px;
    height: 40px;
  }
  .sh-stamp { right: 16px; bottom: 58%; width: 96px; height: 96px; font-size: 10px; }
  .sh-footer-grid { grid-template-columns: 1fr; }
  .sh-footer-nav { display: none; }
  .sh-footer { display: none; }
  .sh-trust-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 26px;
    width: min(1180px, calc(100% - 28px));
  }
  .sh-trust-copy {
    max-width: none;
    flex: none;
  }
  .sh-trust-title {
    white-space: normal;
    font-size: clamp(22px, 6vw, 28px);
  }
  .sh-trust-lead-row {
    justify-content: center;
  }
  .sh-trust-arrow {
    display: none;
  }
  .sh-trust-list {
    width: 100%;
    max-width: 640px;
    flex: none;
  }
  .sh-trust-item + .sh-trust-item::before {
    top: 8%;
    bottom: 8%;
  }
}

@media (max-width: 640px) {
  .sh-products,
  .sh-why-grid {
    grid-template-columns: 1fr;
  }
  .sh-container,
  .sh-hero-inner {
    width: min(1180px, calc(100% - 28px));
  }
  .sh-hero { min-height: 680px; }
  .sh-perk { max-width: none; }
}

/* iOS Safari: zoom automático si el input tiene < 16px */
@media (max-width: 900px) {
  input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="file"]):not([type="hidden"]):not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="image"]),
  select,
  textarea {
    font-size: 16px !important;
  }
}
