/* ============================================================
   SEGURMA · design.css — nuevo diseño de conversión Hero C
   Marca: naranja #f5821f / #ff6800, WA #25d366, oscuro #15171d
   Tipografía: Manrope (body) + Poppins (números grandes)
   ============================================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:   #f5821f;
  --orange-d: #e0720f;
  --green:    #25d366;
  --green-d:  #128C7E;
  --dark:     #15171d;
  --dark-2:   #1c1f27;
  --dark-3:   #26201a;
  --text:     #33383f;
  --text-dim: #6a707b;
  --text-muted: #8a9099;
  --border:   #eceae6;
  --bg-warm:  #faf8f5;
  --white:    #ffffff;
  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;
  --shadow-md: 0 20px 40px -20px rgba(0,0,0,.25);
  --shadow-lg: 0 30px 60px -30px rgba(0,0,0,.35);
  --texture-light:
    radial-gradient(circle at 1px 1px, rgba(84,61,38,.025) .7px, transparent .8px) 0 0 / 5px 5px,
    linear-gradient(135deg, #fffdfa 0%, #faf6ef 55%, #fff 100%);
  --texture-dark:
    radial-gradient(circle at 82% 18%, rgba(245,130,31,.10), transparent 28%),
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px) 0 0 / 34px 34px,
    var(--dark);
  --texture-promo:
    radial-gradient(circle at 9% 42%, rgba(255,184,115,.28) 0 1px, transparent 1.7px),
    radial-gradient(circle at 73% 30%, rgba(255,184,115,.20) 0 1px, transparent 1.7px),
    radial-gradient(circle at 91% 68%, rgba(37,211,102,.17) 0 1px, transparent 1.7px),
    linear-gradient(110deg, #15171d 0%, #211a15 52%, #15171d 100%);
  --texture-footer:
    linear-gradient(30deg, rgba(255,255,255,.018) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.018) 87.5%),
    linear-gradient(150deg, rgba(255,255,255,.014) 12%, transparent 12.5%, transparent 87%, rgba(255,255,255,.014) 87.5%),
    #1f2937;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

.sg-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- LINK-BUTTONS (legal, etc.) ---------- */
.link-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--orange);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  text-decoration: underline;
  padding: 0;
}
.link-btn:hover { color: var(--orange-d); }

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.ann-bar {
  background: var(--texture-promo);
  color: #fff;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13.5px;
  font-weight: 600;
}
.ann-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.2s infinite;
  flex-shrink: 0;
}
.ann-highlight { color: #f5a44f; }
.ann-sep { opacity: .4; }
.ann-green { color: var(--green); font-weight: 700; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ============================================================
   HEADER
   ============================================================ */
.sg-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.sg-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.sg-logo-wrap { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.sg-logo { height: 38px; width: auto; }
.sg-logo-divider { width: 1px; height: 30px; background: #e5e2dc; }
.sg-distributor-logo { height: 38px; width: auto; }
.sg-header-right { display: flex; align-items: center; gap: 14px; }
.sg-tel-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
}
.sg-tel-link:hover { color: var(--orange); }
.sg-header-wa {
  font-size: 14.5px;
  padding: 11px 20px;
  border-radius: 999px;
  animation: waBtnPulse 2.2s infinite;
}

/* ============================================================
   SHARED BUTTON STYLES
   ============================================================ */
.sg-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 15px;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 8px 20px rgba(37,211,102,.3);
}
.sg-wa-btn:hover { background: var(--green-d); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(37,211,102,.4); }
.sg-wa-btn:active { transform: translateY(0); }
.sg-header-wa:hover { transform: translateY(-1px) scale(1.03); animation-play-state: paused; }

@keyframes waBtnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,.55), 0 8px 20px rgba(37,211,102,.3); }
  70%  { box-shadow: 0 0 0 10px rgba(37,211,102,0), 0 8px 20px rgba(37,211,102,.3); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 20px rgba(37,211,102,.3); }
}

.sg-orange-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-radius: 12px;
  padding: 14px 26px;
  font-size: 15px;
  transition: background .2s, transform .15s;
  box-shadow: 0 10px 24px -6px rgba(245,130,31,.5);
}
.sg-orange-btn:hover { background: var(--orange-d); transform: translateY(-1px); }

.sg-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  border-radius: 10px;
  padding: 13px 24px;
  font-size: 15px;
  letter-spacing: .01em;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 0 0 0 rgba(245,130,31,.55), 0 8px 20px rgba(245,130,31,.35);
  animation: callBtnPulse 2.2s infinite;
}
.sg-call-btn:hover { background: var(--orange-d); transform: translateY(-1px) scale(1.03); animation-play-state: paused; box-shadow: 0 12px 26px rgba(245,130,31,.5); }
.sg-call-btn:active { transform: translateY(0); }

@keyframes callBtnPulse {
  0%   { box-shadow: 0 0 0 0 rgba(245,130,31,.55), 0 8px 20px rgba(245,130,31,.35); }
  70%  { box-shadow: 0 0 0 10px rgba(245,130,31,0), 0 8px 20px rgba(245,130,31,.35); }
  100% { box-shadow: 0 0 0 0 rgba(245,130,31,0), 0 8px 20px rgba(245,130,31,.35); }
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-eyebrow {
  color: var(--orange);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.15;
}
.section-sub {
  color: var(--text-dim);
  font-size: 17px;
  margin-top: 12px;
  max-width: 560px;
}
.stars-orange { color: var(--orange); letter-spacing: 2px; }

/* ============================================================
   HERO C
   ============================================================ */
.hero-c {
  background-color: #fffaf5;
  background-image:
    linear-gradient(90deg, rgba(255,250,245,.96) 0%, rgba(255,255,255,.84) 48%, rgba(255,255,255,.58) 100%),
    url('../images/generated/hero_security_background.png');
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid #f0ede8;
  padding: 60px 0 64px;
}
.hero-c-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fdece0;
  border: 1px solid #f8d4b6;
  color: #c0630a;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero-h1 {
  font-size: 50px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.12;
}
.hero-price-val {
  color: var(--orange);
  font-family: 'Poppins', sans-serif;
}
.hero-price-period {
  font-size: 26px;
  font-weight: 700;
  color: #7c828d;
}
.hero-sub {
  margin-top: 14px;
  font-size: 18px;
  color: #565c67;
  max-width: 440px;
  line-height: 1.5;
}
.hero-year-highlight {
  color: #1f8f55;
  font-weight: 700;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}
.chip-big {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px -10px rgba(0,0,0,.18);
  transition: transform .2s, box-shadow .2s;
}
.chip-big:hover { transform: translateY(-2px); }
.chip-big-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
  color: #fff;
}
.chip-big-text {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.chip-big-text strong {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .01em;
}
.chip-big-green {
  background: #e9f9ef;
  border: 1.5px solid #b8ecc9;
  color: #0f9d4f;
}
.chip-big-green .chip-big-icon { background: #0f9d4f; }
.chip-big-orange {
  background: #fdece0;
  border: 1.5px solid #f8d4b6;
  color: #c0630a;
}
.chip-big-orange .chip-big-icon { background: var(--orange); }

/* Countdown */
.hero-countdown { margin-top: 26px; }
.countdown-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 9px;
}
.countdown-blocks { display: flex; gap: 10px; }
.cd-block {
  background: var(--dark);
  color: #fff;
  border-radius: 12px;
  padding: 10px 0;
  min-width: 66px;
  text-align: center;
}
.cd-val {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1;
}
.cd-lbl {
  display: block;
  font-size: 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9aa0aa;
  margin-top: 3px;
}

/* Chat card */
.chat-card {
  background: var(--white);
  border: 1px solid #ece9e4;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.chat-header {
  background: #075e54;
  color: #fff;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,.4);
}
.chat-name { font-weight: 700; font-size: 15px; }
.chat-status { font-size: 12px; color: #a7e0d6; }
.chat-body {
  padding: 20px 18px;
  background: #e6ddd4;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 300px;
  overflow-y: auto;
  scrollbar-gutter: stable;
}
.chat-bubble {
  background: var(--white);
  border-radius: 4px 14px 14px 14px;
  padding: 12px 14px;
  font-size: 14.5px;
  color: var(--dark);
  max-width: 88%;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  line-height: 1.5;
  animation: bubbleIn .3s ease;
}
/* Ana = incoming (izquierda, blanco) · Cliente = outgoing (derecha, verde WhatsApp) */
.chat-bubble-in {
  align-self: flex-start;
  border-radius: 4px 14px 14px 14px;
}
.chat-bubble-out {
  align-self: flex-end;
  background: #dcf8c6;
  border-radius: 14px 4px 14px 14px;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.chat-typing {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border-radius: 4px 14px 14px 14px;
  padding: 12px 16px;
  width: fit-content;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  animation: bubbleIn .25s ease;
}
.chat-typing-out {
  align-self: flex-end;
  background: #dcf8c6;
  border-radius: 14px 4px 14px 14px;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #9aa0aa;
  animation: typingDot 1.1s infinite ease-in-out;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-4px); opacity: 1; }
}
.chat-actions { padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; }
.chat-wa-btn { width: 100%; font-size: 16px; padding: 15px; border-radius: 12px; }
.chat-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  background: var(--orange);
  border: none;
  border-radius: 12px;
  padding: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px -6px rgba(245,130,31,.45);
}
.chat-call-btn:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -6px rgba(245,130,31,.55);
}
.chat-call-btn:active { transform: translateY(0); }
.chat-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px 14px;
  font-size: 13px;
  color: var(--text-muted);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--texture-dark);
  color: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  padding-top: 26px;
  padding-bottom: 26px;
}
.trust-num {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 28px;
  color: var(--orange);
}
.trust-lbl { font-size: 13px; color: #aeb3bc; margin-top: 2px; }

/* ============================================================
   FEATURES (TODO INCLUIDO)
   ============================================================ */
.features-section {
  padding: 80px 0 40px;
  background-color: #fffdf9;
  background-image:
    linear-gradient(rgba(255,255,255,.72), rgba(255,255,255,.72)),
    url('../images/generated/benefits_section_background.png');
  background-position: center;
  background-size: cover;
}
.features-section .sg-container { text-align: center; }
.features-section .section-sub { margin-left: auto; margin-right: auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
  text-align: left;
}
.feature-card {
  background: var(--bg-warm);
  border: 1px solid #eeeae4;
  border-radius: 18px;
  padding: 26px 24px;
  transition: transform .18s, box-shadow .18s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 18px 34px -18px rgba(0,0,0,.2); }
.feature-icon {
  width: 140px;
  height: 140px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid #eadfd2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px -16px rgba(21,23,29,.35);
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--dark); }
.feature-card p { font-size: 14.5px; color: var(--text-dim); }
.feature-tag {
  display: inline-block;
  margin-top: 14px;
  background: #e9f9ef;
  color: #0f9d4f;
  font-weight: 700;
  font-size: 12px;
  padding: 4px 11px;
  border-radius: 999px;
}

/* ============================================================
   CÓMO FUNCIONA — SECUENCIA ANIMADA
   ============================================================ */
.how-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0;
  background:
    radial-gradient(circle at 10% 15%, rgba(245,130,31,.13), transparent 30%),
    radial-gradient(circle at 90% 85%, rgba(37,211,102,.08), transparent 28%),
    #11141b;
  color: #fff;
}
.how-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 42px 42px;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 80%, transparent);
}
.how-section .sg-container { position: relative; z-index: 1; }
.how-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}
.how-section .section-title { color: #fff; }
.how-section .section-sub { color: #aeb4bf; max-width: 680px; }
.how-pause {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dfe3e9;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 10px 16px;
  font: 700 13px 'Manrope', sans-serif;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.how-pause:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.how-pause-icon { width: 12px; text-align: center; color: var(--orange); }
.how-experience {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .85fr);
  gap: 22px;
  align-items: center;
}
.how-visual {
  position: relative;
  isolation: isolate;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: #080a0f;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.8);
}
.how-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .75s ease, transform 5.2s ease;
}
.how-frame.is-active { opacity: 1; transform: scale(1); z-index: 1; }
.how-frame img { width: 100%; height: 100%; object-fit: cover; }
.how-visual-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(4,7,12,.22) 0%, transparent 42%, rgba(4,7,12,.88) 100%);
}
.how-live-badge {
  position: absolute;
  z-index: 3;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  background: rgba(9,14,19,.72);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}
.how-live-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(37,211,102,.14);
  animation: howPulse 1.8s ease infinite;
}
@keyframes howPulse {
  50% { box-shadow: 0 0 0 9px rgba(37,211,102,0); }
}
.how-scene-caption {
  position: absolute;
  z-index: 3;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}
.how-scene-number {
  color: var(--orange);
  font: 800 26px 'Poppins', sans-serif;
}
.how-scene-caption strong {
  font: 700 clamp(17px, 2vw, 23px) 'Poppins', sans-serif;
}
.how-scene-progress {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: rgba(255,255,255,.12);
}
.how-scene-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb067);
}
.how-experience.is-playing .how-scene-progress span {
  animation: howProgress 4.5s linear forwards;
}
@keyframes howProgress { to { width: 100%; } }
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.how-step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: center;
  width: 100%;
  color: #aeb4bf;
  text-align: left;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px 16px;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  transition: transform .2s, color .2s, background .2s, border-color .2s;
}
.how-step:hover { transform: translateX(3px); color: #fff; border-color: rgba(245,130,31,.35); }
.how-step.is-active {
  color: #fff;
  background: rgba(245,130,31,.12);
  border-color: rgba(245,130,31,.55);
  box-shadow: inset 3px 0 0 var(--orange);
}
.how-step-index {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #8e96a3;
  background: rgba(255,255,255,.06);
  border-radius: 11px;
  font: 800 12px 'Poppins', sans-serif;
}
.how-step.is-active .how-step-index { color: #fff; background: var(--orange); }
.how-step-copy { display: flex; flex-direction: column; gap: 3px; }
.how-step-copy strong { color: inherit; font-size: 14px; }
.how-step-copy small { color: #8e96a3; font-size: 11.5px; line-height: 1.45; }
.how-step.is-active .how-step-copy small { color: #c5cad2; }
.how-cta {
  width: 100%;
  margin-top: 5px;
  padding: 14px 18px;
  font-size: 14px;
}
@media (prefers-reduced-motion: reduce) {
  .how-frame { transition: none; transform: none; }
  .how-live-badge span,
  .how-experience.is-playing .how-scene-progress span { animation: none; }
  .how-scene-progress span { width: 100%; }
}

/* ============================================================
   ELEMENTS GALLERY
   ============================================================ */
.elements-section {
  background: var(--bg-warm);
  border-top: 1px solid #f0ece5;
  border-bottom: 1px solid #f0ece5;
  padding: 76px 0;
  margin-top: 50px;
}
.elements-section .sg-container { text-align: center; }
.elements-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 30px;
  align-items: start;
  margin-top: 36px;
  text-align: left;
}
.elements-thumbs {
  background: var(--white);
  border: 1px solid #ece8e2;
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.el-thumb {
  border: 1.5px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  padding: 8px;
  cursor: pointer;
  transition: all .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.el-thumb:hover { border-color: var(--orange); background: #fff6ee; }
.el-thumb.active { border-color: var(--orange); background: #fff6ee; }
.el-thumb img { width: 100%; height: 52px; object-fit: contain; }
.elements-detail {
  background: var(--white);
  border: 1px solid #ece8e2;
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: center;
  box-shadow: var(--shadow-md);
}
.el-detail-img-wrap {
  background: var(--bg-warm);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.el-detail-img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.14));
}
.elements-detail h3 { font-size: 24px; font-weight: 800; color: var(--dark); }
.elements-detail p { color: var(--text-dim); font-size: 15px; margin-top: 8px; }
.el-features-list { margin-top: 16px; display: grid; gap: 9px; }
.el-features-list li {
  display: flex;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text);
}
.el-features-list li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.elements-cta { text-align: center; margin-top: 32px; }

/* ============================================================
   KITS
   ============================================================ */
.kits-section {
  background: var(--texture-dark);
  padding: 80px 0;
}
.kits-section .section-eyebrow,
.kits-section .section-title,
.kits-section .section-sub { text-align: center; max-width: 100%; }
.kits-section .section-sub { margin-left: auto; margin-right: auto; }
.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
  margin-top: 40px;
}
.kit-card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.kit-featured {
  background: var(--white);
  color: var(--dark);
  border: 2px solid var(--orange);
  box-shadow: 0 30px 60px -30px rgba(245,130,31,.5);
}
.kit-dark {
  background: var(--dark-2);
  color: var(--white);
  border: 1px solid #2b2f39;
}
.kit-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .05em;
  padding: 6px 16px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}
.kit-variant-tabs {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 5px;
  margin: 6px 0 18px;
  padding: 5px;
  border: 1px solid #e7e1d9;
  border-radius: 15px;
  background: #f2efeb;
}
.kit-variant-tab {
  min-height: 42px;
  padding: 8px 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 750;
  cursor: pointer;
  transition: color .2s, background .2s, box-shadow .2s, transform .2s;
}
.kit-variant-tab.is-active {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 5px 14px rgba(30,25,20,.1);
}
.kit-plus-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--orange-d);
  font-weight: 850;
  letter-spacing: .02em;
}
.kit-plus-tab.is-active {
  color: #fff;
  background: linear-gradient(120deg, #ff7a00, var(--orange));
  box-shadow: 0 8px 20px -8px rgba(245,130,31,.8);
  transform: scale(1.015);
}
.kit-plus-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 19px;
  font-weight: 500;
  line-height: 1;
  transition: color .2s, background .2s, transform .25s;
}
.kit-plus-tab:hover .kit-plus-icon { transform: rotate(90deg); }
.kit-plus-tab.is-active .kit-plus-icon { background: #fff; color: var(--orange-d); }
.kit-variant-tabs-dark {
  border-color: #343945;
  background: #191c23;
}
.kit-variant-tabs-dark .kit-variant-tab { color: #aeb3bc; }
.kit-variant-tabs-dark .kit-variant-tab.is-active {
  color: #fff;
  background: #30343e;
  box-shadow: 0 5px 14px rgba(0,0,0,.3);
}
.kit-variant-tabs-dark .kit-plus-tab { color: #ffae68; }
.kit-variant-tabs-dark .kit-plus-tab.is-active {
  color: #fff;
  background: linear-gradient(120deg, #ff7200, var(--orange));
}
.kit-variant-panel {
  display: flex;
  flex: 1;
  flex-direction: column;
  animation: kitVariantIn .28s ease both;
}
.kit-variant-panel[hidden] { display: none !important; }
@keyframes kitVariantIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.kit-img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  margin-bottom: 20px;
}
.kit-name { font-size: 22px; font-weight: 800; color: var(--dark); margin-bottom: 14px; }
.kit-name-light { color: var(--white); }
.kit-items { display: grid; gap: 8px; min-height: 150px; }
.kit-items li { display: flex; gap: 9px; font-size: 14px; color: var(--text); }
.kit-items li::before { content: '✓'; color: var(--orange); flex-shrink: 0; font-weight: 700; }
.kit-items-light li { color: #c8ccd3; }
.kit-variant-card .kit-items { min-height: 188px; }
.kit-items li.kit-plus-extra {
  color: var(--orange-d);
  font-weight: 800;
}
.kit-items-light li.kit-plus-extra { color: #ffb877; }
.kit-name-plus {
  display: inline-block;
  margin-left: 3px;
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: 3px;
  color: #fff;
  background: linear-gradient(120deg, #ff7200, var(--orange));
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .06em;
}
.kit-option-note {
  min-height: 43px;
  margin-top: 12px;
  padding: 9px 11px;
  border: 1px solid #f4d3b5;
  border-radius: 10px;
  background: #fff7ef;
  color: #9a4b08;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}
.kit-option-note-dark {
  border-color: rgba(245,130,31,.28);
  background: rgba(245,130,31,.09);
  color: #ffc28f;
}
.kit-price-wrap {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eeeae4;
}
.kit-price-label { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.kit-price-label strong { color: #1f8f55; font-weight: 700; }
.kit-price-label-dim { color: #9aa0aa; }
.kit-price-label-dim strong { color: #6fcf97; }
.kit-price-big {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 1;
}
.kit-price-orange { color: var(--orange); }
.kit-price-period { font-size: 15px; font-weight: 600; }
.kit-price-note { font-size: 12px; margin-top: 4px; color: var(--text-muted); }
.kit-price-note-dim { color: #9aa0aa; }
.kit-conditions { font-size: 11px; color: var(--text-muted); margin-top: 4px; }
.kit-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 18px;
  font-size: 15px;
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
}
.kit-cta-ghost {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.22);
  transition: background .2s;
}
.kit-cta-ghost:hover { background: rgba(255,255,255,.18); }
.kit-plus-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: 0 12px 25px -12px rgba(245,130,31,.75);
}
.kit-plus-cta span { font-size: 20px; line-height: 1; }
.kits-asterisk { text-align: center; color: #9aa0aa; font-size: 12.5px; margin-top: 22px; }

/* ============================================================
   SPACES
   ============================================================ */
.spaces-section { padding: 80px 0; }
.spaces-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}
.space-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 14px 30px -22px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
}
.space-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(0,0,0,.3); }
.space-img { width: 100%; height: 150px; object-fit: cover; }
.space-body { padding: 20px; }
.space-body h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.space-body p { font-size: 13.5px; color: var(--text-dim); }
.space-cta {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 13.5px;
  color: var(--orange);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.space-cta:hover { color: var(--orange-d); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg-warm);
  border-top: 1px solid #f0ece5;
  border-bottom: 1px solid #f0ece5;
  padding: 76px 0;
}
.testimonials-section .sg-container { text-align: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  text-align: left;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid #ece8e2;
  border-radius: 18px;
  padding: 26px;
}
.testi-stars { color: var(--orange); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.testimonial-card p { font-size: 15px; color: var(--text); line-height: 1.65; }
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}
.testi-author img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.testi-author div { display: flex; flex-direction: column; }
.testi-author strong { font-size: 15px; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 13px; color: var(--text-muted); }

/* ============================================================
   NEGOCIO OFFER
   ============================================================ */
.negocio-section { padding: 80px 0; }
.negocio-card {
  background: linear-gradient(115deg, var(--dark) 0%, var(--dark-3) 100%);
  border-radius: 26px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  color: #fff;
}
.negocio-left { padding: 48px 44px; }
.negocio-badge {
  display: inline-block;
  background: rgba(245,130,31,.18);
  border: 1px solid rgba(245,130,31,.5);
  color: #ffb877;
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 13px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.negocio-left h2 { font-size: 32px; font-weight: 800; line-height: 1.2; }
.negocio-left p { color: #c8ccd3; font-size: 16px; margin-top: 14px; max-width: 420px; }
.negocio-price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 22px; }
.negocio-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 44px;
  color: var(--orange);
}
.negocio-price-period { color: #aeb3bc; font-size: 16px; }
.negocio-cta { margin-top: 24px; font-size: 16px; padding: 15px 24px; }
.negocio-right {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}
.negocio-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================================
   FORM / ANA CTA
   ============================================================ */
.form-section {
  background: var(--texture-light);
  border-top: 1px solid #f0ece5;
  padding: 80px 0;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.form-left { display: flex; gap: 22px; align-items: center; }
.form-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 16px 30px -12px rgba(0,0,0,.35);
}
.form-left h2 { font-size: 32px; font-weight: 800; color: var(--dark); }
.form-left p { font-size: 16px; color: var(--text-dim); margin-top: 10px; line-height: 1.55; }
.form-rating { display: flex; align-items: center; gap: 8px; margin-top: 14px; font-size: 14px; color: var(--text-muted); }
.form-card {
  background: var(--white);
  border: 1px solid #ece8e2;
  border-radius: 22px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 21px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.form-card-sub { color: var(--text-muted); font-size: 14px; margin-bottom: 16px; }
.form-input {
  width: 100%;
  border: 1.5px solid #dcdad5;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: 'Manrope', sans-serif;
  outline: none;
  transition: border-color .2s;
}
.form-input:focus { border-color: var(--orange); }
.form-privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-dim);
}
.form-privacy-row input { margin-top: 2px; flex-shrink: 0; }
.form-submit-btn {
  width: 100%;
  margin-top: 14px;
  font-size: 16px;
  padding: 15px;
  border-radius: 12px;
}
.form-or { text-align: center; color: #b7bcc4; font-size: 13px; margin: 14px 0; }
.form-wa-btn { width: 100%; font-size: 16px; padding: 14px; }
.form-legal-note { text-align: center; color: #a2a7b0; font-size: 11.5px; margin-top: 12px; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
.sg-footer {
  background: var(--texture-footer);
  background-size: 56px 96px, 56px 96px, auto;
  color: #fff;
  padding: 32px 0 84px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 16px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer-logo { width: auto; max-width: 140px; height: auto; }
.footer-tagline {
  color: #d1d5db;
  font-size: 14px;
}
.footer-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
}
.footer-track4x { height: 25px; width: auto; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid #374151;
}
.footer-copyright {
  max-width: 60%;
  color: #9ca3af;
  font-size: 12px;
  line-height: 1.6;
}
.footer-legal {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal .link-btn {
  color: #9ca3af;
  font-size: 14px;
  text-decoration: none;
  transition: color .3s;
}
.footer-legal .link-btn:hover { color: var(--orange); }
@media (max-width: 767px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .footer-brand {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 8px;
  }
  .footer-partners {
    width: 100%;
    margin: 10px 0 0;
  }
  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .footer-copyright { max-width: 100%; }
  .footer-legal { justify-content: center; }
}

/* ============================================================
   STICKY BAR
   ============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 70;
  background: var(--texture-promo);
  color: #fff;
  padding: 12px 20px;
  display: none;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.25);
  animation: riseUp .3s ease;
}
.sticky-bar.visible { display: flex; }
.sticky-left { display: flex; align-items: baseline; gap: 8px; flex: 1; min-width: 0; }
.sticky-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--orange);
}
.sticky-period { font-size: 13px; color: #aeb3bc; }
.sticky-actions { display: flex; gap: 10px; flex-shrink: 0; }
.sticky-call-btn {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,.28);
  background: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.sticky-call-btn:hover { background: rgba(255,255,255,.08); }
.sticky-wa-btn { font-size: 14px; padding: 12px 20px; border-radius: 10px; }

@keyframes riseUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 90px;
  right: 20px;
  z-index: 69;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.45);
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.float-wa:hover { transform: scale(1.08); box-shadow: 0 12px 30px rgba(37,211,102,.6); }

/* Mantiene el selector de idioma por encima de la barra promocional fija. */
.gtranslate_wrapper > div {
  bottom: 90px !important;
}

/* ============================================================
   PRIVACY / LEGAL POPUPS (compatibility with main.js)
   ============================================================ */
.privacy-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.privacy-popup.active { display: flex; }
.privacy-popup-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 620px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--white);
}
.popup-header-logo { display: flex; align-items: center; gap: 12px; }
.popup-logo { height: 28px; }
.popup-header h3 { font-size: 18px; font-weight: 700; color: var(--dark); }
.close-popup { font-size: 22px; cursor: pointer; color: var(--text-muted); line-height: 1; }
.close-popup:hover { color: var(--dark); }
.popup-body { padding: 22px 24px; }
.popup-body p, .popup-body h4 { margin-bottom: 12px; font-size: 14px; line-height: 1.65; color: var(--text); }
.popup-body h4 { font-weight: 700; font-size: 15px; color: var(--dark); margin-top: 16px; }
.privacy-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  font-size: 13.5px;
  color: var(--text);
}
.privacy-checkbox input { margin-top: 2px; flex-shrink: 0; }
.popup-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.continue-button, .phone-send-button {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 14.5px;
  padding: 10px 22px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s;
}
.continue-button:disabled, .phone-send-button:disabled { opacity: .45; cursor: not-allowed; }
.continue-button:hover:not(:disabled), .phone-send-button:hover:not(:disabled) { background: var(--orange-d); }
.cancel-button {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 14.5px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  font-family: inherit;
}
.cancel-button:hover { background: var(--bg-warm); }
.action-message { min-height: 24px; }

/* Phone popup */
.phone-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.6);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.phone-popup.active { display: flex; }
.phone-popup-content {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 440px;
  width: 100%;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.4);
}
.popup-description { font-size: 14.5px; color: var(--text-dim); margin-bottom: 16px; }
.phone-input-group { display: flex; flex-direction: column; gap: 6px; }
.sg-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.phone-input-group label { font-size: 13.5px; font-weight: 600; color: var(--text); }
.phone-input {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color .2s;
}
.phone-input:focus { border-color: var(--orange); }
.phone-privacy { margin-top: 12px; }

/* Cookies banner */
.cookies-banner {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 1200;
  width: min(1080px, calc(100% - 40px));
  transform: translate(-50%, 18px);
  overflow: hidden;
  background: rgba(255,255,255,.98);
  color: var(--dark);
  border: 1px solid rgba(245,130,31,.22);
  border-radius: 20px;
  padding: 20px 22px;
  box-shadow: 0 24px 70px -24px rgba(21,23,29,.45), 0 8px 24px rgba(21,23,29,.12);
  backdrop-filter: blur(16px);
}
.cookies-banner::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--orange), #ffad62);
}
.cookies-banner.visible {
  display: block;
  animation: cookiesIn .35s ease forwards;
}
.cookies-open .sticky-bar,
.cookies-open .float-wa,
.cookies-open .gtranslate_wrapper {
  opacity: 0;
  pointer-events: none;
}
@keyframes cookiesIn {
  from { opacity: 0; transform: translate(-50%, 18px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}
.cookies-content {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookies-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  color: var(--orange);
  background: #fff4e9;
  border: 1px solid #f8dec8;
  border-radius: 15px;
}
.cookies-copy {
  flex: 1;
  min-width: 0;
}
.cookies-eyebrow {
  display: block;
  margin-bottom: 3px;
  color: var(--orange-d);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.cookies-copy h2 {
  margin: 0 0 4px;
  color: var(--dark);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}
.cookies-copy p {
  color: var(--text-dim);
  font-size: 12.5px;
  line-height: 1.5;
}
.cookies-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.cookies-policy-btn {
  background: #fff;
  color: var(--dark);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  padding: 11px 16px;
  border: 1px solid #dedbd5;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.cookies-policy-btn:hover {
  color: var(--orange-d);
  border-color: var(--orange);
  background: #fffaf5;
}
.cookies-accept-btn {
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  box-shadow: 0 8px 18px -8px rgba(245,130,31,.65);
  transition: background .2s, transform .15s, box-shadow .2s;
}
.cookies-accept-btn:hover {
  background: var(--orange-d);
  transform: translateY(-1px);
  box-shadow: 0 12px 22px -8px rgba(245,130,31,.75);
}

/* input-error style (for main.js validation) */
.input-error { border-color: #e53e3e !important; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .section-title { font-size: 30px; }
  .hero-h1 { font-size: 38px; }
  .hero-c-grid { grid-template-columns: 1fr; gap: 30px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-experience { grid-template-columns: 1fr; }
  .how-steps { display: grid; grid-template-columns: repeat(2, 1fr); }
  .how-cta { grid-column: 1 / -1; }
  .elements-layout { grid-template-columns: 1fr; }
  .elements-thumbs { grid-template-columns: repeat(4, 1fr); }
  .elements-detail { grid-template-columns: 1fr; }
  .kits-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .spaces-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .negocio-card { grid-template-columns: 1fr; }
  .negocio-right { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-left { flex-direction: column; align-items: flex-start; }
  .sg-header-right { gap: 8px; }
  .sg-header-wa, .sg-header-call { padding: 10px 14px; font-size: 13.5px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 580px)
   ============================================================ */
@media (max-width: 580px) {
  .ann-bar { font-size: 12px; gap: 8px; }
  .ann-sep { display: none; }
  .sg-tel-link { display: none; }
  .sg-logo-wrap { gap: 5px; }
  .sg-logo, .sg-distributor-logo { height: 24px; }
  .sg-logo-divider { height: 20px; }
  .sg-header-wa, .sg-header-call { padding: 8px 9px; font-size: 11.5px; }
  .sg-header-right { gap: 6px; }
  .hero-h1 { font-size: 30px; }
  .hero-price-val { font-size: 36px; }
  .hero-price-period { font-size: 20px; }
  .hero-sub { font-size: 15.5px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .trust-num { font-size: 22px; }
  .features-grid { grid-template-columns: 1fr; }
  .how-section { padding: 64px 0; }
  .how-heading { align-items: flex-start; }
  .how-pause-label { display: none; }
  .how-pause { padding: 10px 12px; }
  .how-steps { grid-template-columns: 1fr; }
  .how-cta { grid-column: auto; }
  .how-step { padding: 13px; }
  .how-live-badge { top: 12px; left: 12px; }
  .how-scene-caption { left: 15px; right: 15px; bottom: 15px; }
  .how-scene-number { font-size: 20px; }
  .elements-thumbs { grid-template-columns: repeat(3, 1fr); }
  .kits-grid { max-width: 100%; }
  .spaces-grid { grid-template-columns: 1fr; }
  .sticky-call-btn { display: none; }
  .sticky-left { display: none; }
  .sticky-wa-btn { width: 100%; }
  .sticky-actions { width: 100%; }
  .sticky-bar.visible { justify-content: center; }
  .cd-block { min-width: 54px; }
  .cd-val { font-size: 20px; }
  .negocio-left { padding: 30px 22px; }
  .negocio-price { font-size: 36px; }
  .hero-chips { gap: 10px; }
  .chip-big { padding: 11px 14px; gap: 9px; }
  .chip-big-icon { width: 26px; height: 26px; font-size: 14px; }
  .chip-big-text { font-size: 11.5px; }
  .chip-big-text strong { font-size: 14px; }
  .chat-body { height: 260px; }
  .gtranslate_wrapper #gt_float_wrapper {
    left: 10px !important;
    bottom: 84px !important;
  }
  .gtranslate_wrapper .gt_float_switcher,
  .gtranslate_wrapper .gt_float_switcher .gt-selected {
    border-radius: 999px !important;
  }
  .gtranslate_wrapper .gt_float_switcher {
    font-size: 12px !important;
    box-shadow: 0 8px 22px rgba(15,23,42,.18) !important;
  }
  .gtranslate_wrapper .gt_float_switcher .gt-current-lang {
    display: flex !important;
    align-items: center;
    padding: 7px 9px !important;
    line-height: 1 !important;
  }
  .gtranslate_wrapper .gt_float_switcher .gt-current-lang img {
    width: 24px !important;
    height: 18px !important;
    margin: 0 5px 0 0 !important;
  }
  .gtranslate_wrapper .gt_float_switcher .gt-lang-code {
    font-size: 12px !important;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
  }
  .gtranslate_wrapper .gt_float_switcher .gt_float_switcher-arrow {
    width: 10px !important;
    height: 16px !important;
    margin-left: 2px !important;
    transform: scale(.65);
    transform-origin: center;
  }
  .gtranslate_wrapper .gt_float_switcher .gt_options {
    width: 155px !important;
    max-height: 260px !important;
    overflow-y: auto !important;
    border-radius: 14px !important;
  }
  .gtranslate_wrapper .gt_float_switcher .gt_options a {
    padding: 8px 10px !important;
    font-size: 13px !important;
  }
  .gtranslate_wrapper .gt_float_switcher .gt_options img {
    width: 22px !important;
    margin-right: 6px !important;
  }
  .cookies-banner {
    bottom: 10px;
    width: calc(100% - 20px);
    padding: 18px;
    border-radius: 16px;
  }
  .cookies-content {
    align-items: flex-start;
    gap: 12px;
    flex-wrap: wrap;
  }
  .cookies-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
  .cookies-copy {
    min-width: calc(100% - 60px);
  }
  .cookies-copy h2 { font-size: 14px; }
  .cookies-copy p { font-size: 12px; }
  .cookies-buttons {
    width: 100%;
    gap: 8px;
  }
  .cookies-policy-btn,
  .cookies-accept-btn {
    flex: 1;
    padding: 11px 10px;
    font-size: 12px;
  }
}
