/* Buhonea Landing — marketing / periodismo */
:root {
  --navy: #1d1d3a;
  --navy-deep: #121228;
  --pink: #b45a9d;
  --pink-soft: #ebd6e7;
  --pink-dark: #9a4a86;
  --blue: #76bbe0;
  --blue-dark: #26a5da;
  --green: #88c946;
  --green-dark: #15803d;
  --amber: #f59e0b;
  --text: #2a2a42;
  --muted: #5c5c78;
  --line: #e8e4ef;
  --paper: #f8f7fb;
  --white: #fff;
  --radius: 14px;
  --radius-lg: 20px;
  --font: 'Dosis', system-ui, -apple-system, sans-serif;
  --header-h: 68px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --header-total-h: calc(var(--header-h) + var(--safe-top));
  --viewport-h: 100vh;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 4px 20px rgba(29, 29, 58, 0.06);
  --shadow-md: 0 12px 40px rgba(29, 29, 58, 0.1);
  --shadow-lg: 0 24px 60px rgba(18, 18, 40, 0.18);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  height: -webkit-fill-available;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}
@supports (height: 100dvh) {
  :root { --viewport-h: 100dvh; }
}
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
  min-height: 100vh;
  min-height: var(--viewport-h);
  min-height: -webkit-fill-available;
}
a,
button,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
}
button,
.btn,
.topbar__toggle {
  touch-action: manipulation;
}
img, video { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pink-dark); }
code {
  font-size: 0.88em;
  background: rgba(29, 29, 58, 0.06);
  padding: 0.12em 0.4em;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus,
.skip-link:focus-visible {
  outline: none;
}

.wrap {
  width: min(1400px, 100%);
  margin-inline: auto;
  padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
}

.eyebrow {
  font-size: clamp(17px, 20px, 22px);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin: 0 0 0.5rem;
}

/* ─── Topbar ─── */
.topbar {
    position: fixed;
    inset: 0 0 auto;
    z-index: 200;
    height: var(--header-total-h);
    padding-top: var(--safe-top);
    background: linear-gradient(135deg, #151517 0%, #1b1b20 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: box-shadow 0.3s var(--ease);
}
.topbar.is-scrolled { box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25); }

.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.topbar__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--white);
  font-weight: 700;
  font-size: 1.08rem;
  flex-shrink: 0;
}
.topbar__brand:hover { color: var(--white); }
.topbar__brand img { width: 36px; height: 36px; border-radius: 8px; }

.topbar__nav {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  flex-wrap: wrap;
}
.topbar__nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
  font-size: 0.86rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.topbar__nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}
.topbar__cta {
  background: var(--pink) !important;
  color: var(--white) !important;
  padding: 0.45rem 0.9rem !important;
  margin-left: 0.25rem;
}
.topbar__cta:hover {
  background: var(--pink-dark) !important;
  color: var(--white) !important;
}

/* Nav desktop vs móvil (hamburguesa sin tocar) */
@media (max-width: 1100px) {
  .topbar__nav-set--desktop { display: none !important; }
  .topbar__nav { display: none !important; }
  .topbar__toggle {
    display: flex !important;
    margin-left: auto;
    flex-shrink: 0;
    align-self: center;
  }
}

@keyframes topbarNavIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 1101px) {
  .topbar__nav-set--mobile { display: none !important; }
  .topbar__nav-set--desktop {
    display: flex;
    align-items: center;
    gap: 0.15rem;
  }

  .topbar__nav-set--desktop .topbar__link {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 600;
    font-size: 0.86rem;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-10px);
    animation: topbarNavIn 0.5s var(--ease) forwards;
    transition:
      transform 0.28s var(--ease),
      background 0.28s var(--ease),
      color 0.28s var(--ease),
      box-shadow 0.28s var(--ease);
  }

  .topbar__nav-set--desktop .topbar__link:nth-child(1) { animation-delay: 0.04s; }
  .topbar__nav-set--desktop .topbar__link:nth-child(4) { animation-delay: 0.1s; }
  .topbar__nav-set--desktop .topbar__link:nth-child(5) { animation-delay: 0.16s; }

  .topbar__nav-set--desktop .topbar__link[data-valora-trigger],
  .topbar__nav-set--desktop .topbar__link[data-soporte-trigger] {
    opacity: 1;
    transform: none;
    animation: none;
    position: relative;
    z-index: 1;
  }

  .topbar__nav-set--desktop .topbar__link[data-valora-trigger]:hover,
  .topbar__nav-set--desktop .topbar__link[data-soporte-trigger]:hover {
    transform: translateY(-2px) scale(1.03);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  }

  .topbar__nav-set--desktop .topbar__link:hover {
    transform: translateY(-2px) scale(1.03) !important;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
  }

  .topbar__nav-set--desktop .topbar__link:active {
    transform: translateY(0) scale(0.98);
    transition-duration: 0.12s;
  }

  .topbar__nav-set--desktop .topbar__cta {
    margin-left: 0.35rem;
    padding: 0.45rem 0.95rem !important;
    transform: translateY(-10px);
    animation: topbarNavIn 0.5s var(--ease) 0.34s forwards;
    transition:
      transform 0.28s var(--ease),
      background 0.28s var(--ease),
      box-shadow 0.28s var(--ease);
  }

  .topbar__nav-set--desktop .topbar__cta:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 24px rgba(180, 90, 157, 0.45);
  }

  .topbar__nav-set--desktop .topbar__cta:active {
    transform: translateY(0) scale(0.98);
  }
}

@media (min-width: 1101px) and (max-width: 1320px) {
  .topbar__nav-set--desktop .topbar__link {
    font-size: 0.8rem;
    padding-inline: 0.5rem;
  }

  .topbar__nav-set--desktop .topbar__cta {
    padding: 0.42rem 0.75rem !important;
    margin-left: 0.2rem;
  }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
  .topbar__nav-set--desktop .topbar__link,
  .topbar__nav-set--desktop .topbar__cta {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.topbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.topbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.25s;
}
.topbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topbar__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.topbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.85rem 1.45rem;
  border-radius: 999px;
  font-family: inherit;
  background: rgb(180 90 157);
  color: var(--white);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.15s var(--ease), background 0.2s, border-color 0.2s, color 0.2s;
}
.btn:active { transform: scale(0.97); }
.btn--primary { background: var(--pink); color: var(--white); }
.btn--primary:hover {
    background: #9a4a8600;
    color: #9a4a86;
    border: 2px solid #9a4a86;
}
.btn--secondary { background: var(--navy); color: var(--white); }
.btn--secondary:hover { 
    background: #1d1d3a00;
    color: #121228;
    border: 3px solid #1d1d3a;
}
.btn--ghost {
  color: var(--white);
}
.btn--ghost:hover {
    background: transparent;
    color: var(--white);
    border: 2px solid #f8f4f46e;
}
.btn--block { width: fit-content; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem;
}
.actions--center { justify-content: center; }

.link-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem;
    padding: 0.7rem 1.2rem;
    min-height: 48px;
    color: white;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.06);
    border: 6px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition:
      background 0.28s var(--ease),
      color 0.28s var(--ease),
      border-color 0.28s var(--ease),
      box-shadow 0.28s var(--ease),
      transform 0.28s var(--ease);
}
.link-pill:hover {
    background: transparent;
    color: #88c946;
    border-color: #88c94685;
    box-shadow: 0 8px 24px rgba(136, 201, 70, 0.22);
    transform: scale(1.03);
}
.link-pill:active {
    transform: scale(0.98);
}

.actions .link-pill {
  margin-top: 0;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  padding: calc(var(--header-total-h) + 6.5rem) 0 calc(6.5rem + var(--safe-bottom));
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #131314 0%, #202029 100%);
  z-index: 0;
}
.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 0.88fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: center;
}
.hero h1 {
  font-size: clamp(2.15rem, 5.2vw, 3.35rem);
  line-height: 1.06;
  margin: 0 0 0.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: min(22ch, 100%);
}
.hero__deck {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: #88c946;
  font-weight: 600;
  margin: 0 0 1rem;
  line-height: 1.4;
  text-transform: uppercase;
}
.hero__lede {
    font-size: clamp(17px, 19px, 20px);
    color: rgba(255, 255, 255, 0.78);
    max-width: 50ch;
    margin: 0;
    line-height: 1.65;
}
.hero__lede strong { color: var(--white); font-weight: 700; }

.hero__price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.5rem 1rem;
    margin-top: 1.5rem;
    padding: 0.9rem 1.1rem;
    max-width: 32rem;
    flex-direction: column;
}
.hero__price-num {
    font-size: clamp(2.75rem, 9vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}
.hero__price-num small { font-size: 0.55em; color: rgba(255, 255, 255, 0.7); }
.hero__price-txt {
    font-size: clamp(17px, 20px, 22px);
    color: #88c946;
}
.hero__price-txt-1 {
    font-size: clamp(17px, 20px, 22px);
    color: darkgray;
}

.hero__aside {
  background: rgba(255, 255, 255, 0.06);
  border: 6px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.75rem;
  backdrop-filter: blur(8px);
}
.hero__aside-title {
  margin: 0 0 1rem;
  font-size: clamp(17px, 19px, 20px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}
.hero__steps {
  margin: 0;
  padding: 0;
  list-style: none;
}
.hero__steps li {
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.98rem;
  font-weight: 600;
}
.hero__steps li::before {
  content: '→ ';
  color: var(--pink);
}
.hero__steps-end {
  border-bottom: none !important;
  padding-top: 0.75rem !important;
}
.hero__steps-end strong {
  color: var(--blue);
}
.hero__aside-fix {
  margin: 1.1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}
.hero__aside-fix strong { color: var(--green); }
.hero__aside-fix em { font-style: normal; color: #89c846; }

/* ─── Strip (pillars) ─── */
.strip {
  background: whitesmoke;
  border-bottom: 1px solid var(--line);
  padding: 2.25rem 0;
}
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.strip__item {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    transform 0.32s var(--ease),
    box-shadow 0.32s var(--ease),
    background 0.32s var(--ease);
}
.strip__item:hover {
  transform: translateY(-5px);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(29, 29, 58, 0.1);
}
.strip__title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.35rem;
  font-size: clamp(19px, 22px, 23px);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
}
.strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.15rem;
  height: 2.15rem;
  font-size: 1.35rem;
  line-height: 1;
  color: var(--pink);
  background: rgba(180, 90, 157, 0.12);
  border-radius: 10px;
  transition:
    transform 0.32s var(--ease),
    background 0.32s var(--ease),
    color 0.32s var(--ease),
    box-shadow 0.32s var(--ease);
}
.strip__item:hover .strip__icon {
  transform: scale(1.1);
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(180, 90, 157, 0.35);
}
.strip__item p {
  margin: 0;
  font-size: clamp(16px, 17px, 18px);
  color: gray;
  line-height: 1.45;
  transition: color 0.32s var(--ease);
}
.strip__item:hover p {
  color: var(--muted);
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: inherit;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ─── Sections ─── */
.section { padding: clamp(4rem, 7vw, 8rem) 0; }
.section--soft { background: var(--white); }

#herramientas { display: none; }

.section__head { margin-bottom: 2.25rem; }
.section__head--center { text-align: center; }
.section__head--center .section__deck { margin-inline: auto; }

.section h2 {
  font-size: clamp(1.65rem, 3.2vw, 2.4rem);
  line-height: 1.12;
  margin: 0 0 0.65rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.015em;
}
.section__deck {
    font-size: clamp(17px, 18px, 19px);
    color: var(--muted);
    max-width: 70ch;
    margin: 0;
    line-height: 1.6;
}

/* ─── Versus rows ─── */
.versus { display: grid; gap: 0.85rem; }

.versus__row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.versus__them,
.versus__us {
  padding: 1.2rem 1.35rem;
}
.versus__them { background: #fff5f5; }
.versus__us {
  background: #f0fdf4;
  border-left: 3px solid var(--green);
}

.versus__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.versus__them .versus__label {
    color: #080808;
    font-size: 1rem;
}
.versus__us .versus__label {
    color: var(--green-dark);
    font-size: 1rem;
}

.versus__them p,
.versus__us p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.45;
}
.versus__them p {
    color: #7f1d1d;
    font-weight: 300;
}
.versus__us p { color: var(--navy); }

.versus__arrow {
    display: grid;
    place-items: center;
    padding: 0 0.65rem;
    background: transparent;
    color: var(--pink);
    font-weight: 700;
    font-size: 2.2rem;
    border-inline: 1px solid var(--line);
}

/* ─── Matrix ─── */
.matrix-wrap {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  max-width: 100%;
}
.matrix-wrap[data-matrix-animated] {
  overflow-y: visible;
}
.matrix-wrap::after {
  content: 'Desliza →';
  display: none;
  padding: 0.5rem 0.75rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
}

.matrix {
  width: 100%;
  min-width: 640px;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.matrix th,
.matrix td {
  padding: 0.85rem 0.75rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}
.matrix thead th,
.matrix--head-clone thead th {
    font-size: 0.98rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #f8f8fa;
    background: linear-gradient(135deg, #151517 0%, #1b1b20 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.matrix thead th:first-child,
.matrix--head-clone thead th:first-child {
  text-align: left;
  padding-left: 1.1rem;
}
.matrix tbody th[scope="row"] {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
    background: var(--white);
    padding-left: 1.1rem;
    font-size: clamp(16px, 17px, 18px);
}
.matrix__col-feature { width: 40%; }
.matrix__col-platform { width: 11%; }
.matrix__col-bh { width: 16%; }

/* Cabecera fija al hacer scroll (clon sincronizado vía JS) */
.matrix-head-bar {
  position: fixed;
  top: var(--header-total-h);
  z-index: 150;
  display: none;
  overflow: hidden;
  pointer-events: none;
  background: rgb(18 18 40 / 72%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.matrix-head-bar.is-visible { display: block; }
.matrix-head-bar__scroll {
  overflow: hidden;
  width: 100%;
}
.matrix--head-clone {
  margin: 0;
  table-layout: fixed;
}
.matrix__bh {
    background: rgba(180, 90, 157, 0.08) !important;
    color: var(--pink-dark) !important;
    font-weight: 900 !important;
}
.matrix__cell { font-size: 1.1rem; font-weight: 700; }
.matrix__cell--yes { color: var(--green-dark); }
.matrix__cell--no { color: #cbd5e1; }
.matrix__cell--mid { color: var(--amber); }
.matrix tbody tr:last-child td,
.matrix tbody tr:last-child th { border-bottom: none; }

/* Filas comparativa: revelado al scroll (activado por JS) */
.matrix-wrap[data-matrix-animated] tbody tr.matrix-row-reveal {
  display: none;
}
.matrix-wrap[data-matrix-animated] tbody tr.matrix-row-reveal.is-visible {
  display: table-row;
}
.matrix-wrap[data-matrix-animated] tbody tr.matrix-row-reveal.is-entering {
  animation: matrix-row-in 0.36s var(--ease) both;
}
@keyframes matrix-row-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .matrix-wrap[data-matrix-animated] tbody tr.matrix-row-reveal {
    display: table-row !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ─── Showcase (flagships) ─── */
.showcase { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }

.showcase__block {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.showcase__block:nth-child(even) .showcase__media { order: 2; }
.showcase__block:nth-child(even) .showcase__content { order: 1; }
.showcase__media { min-width: 0; }

.showcase__index {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pink);
  margin-bottom: 0.35rem;
}
.showcase__kicker {
  margin: 0 0 0.25rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.showcase__block h3 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.3rem, 2.5vw, 1.55rem);
  color: var(--navy);
}
.showcase__pain,
.showcase__fix {
  margin: 0 0 0.65rem;
  font-size: 0.96rem;
  line-height: 1.55;
}
.showcase__pain span,
.showcase__fix span {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}
.showcase__pain span { color: #991b1b; }
.showcase__pain { color: #7f1d1d; font-weight: 600; }
.showcase__fix span { color: var(--green-dark); }
.showcase__fix { color: var(--muted); }
.showcase__note {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ─── Device mockup (video) ─── */
.device { max-width: 280px; margin-inline: auto; }

.device__shell {
  position: relative;
  padding: 10px;
  background: linear-gradient(145deg, #2a2a4a, #121228);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
}
.device__shell::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  z-index: 2;
}
.device__screen {
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-deep);
}
.device__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.device__placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}
.device__placeholder strong {
  color: var(--white);
  font-size: 1rem;
}
.device__play {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(180, 90, 157, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.25);
  position: relative;
  margin-bottom: 0.25rem;
}
.device__play::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border: 10px solid transparent;
  border-left: 16px solid var(--white);
  margin-left: 3px;
}
.device__caption {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}

/* ─── Benefits ─── */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.benefit {
  background: var(--white);
  border: 1px solid #19193747;
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.section--soft .benefit { background: var(--paper); }
.benefit h3 {
    margin: 0 0 0.5rem;
    font-size: 1.02rem;
    color: #1d1d3a;
    line-height: 1.25;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 1.5rem;
}
.benefit p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}
.benefit strong { color: var(--text); }

/* ─── Gestor carousel (scroll horizontal) ─── */
.gestor-carousel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0.5rem;
  width: 100%;
}

.bh-carousel-wrap {
  position: relative;
  overflow: visible;
}

.bh-scroll-hint {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0.35rem;
  z-index: 2;
  width: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0.2rem;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.82) 42%,
    #fff 100%
  );
  opacity: 1;
  transition: opacity 0.28s ease;
}

.bh-scroll-hint--hidden {
  opacity: 0;
}

.bh-scroll-hint__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  color: #9a4a86;
  background: rgba(154, 74, 134, 0.12);
  box-shadow: 0 4px 14px rgba(154, 74, 134, 0.18);
  animation: bh-scroll-hint-pulse 1.15s ease-in-out infinite;
}

@keyframes bh-scroll-hint-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

.gestor-carousel__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gestor-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.gestor-carousel__track {
  display: flex;
  gap: clamp(0.75rem, 2vw, 1rem);
  padding: 0.15rem clamp(0.35rem, 2vw, 0.75rem) 0.35rem;
  width: max-content;
  max-width: none;
}

.gestor-card {
  flex: 0 0 clamp(16.5rem, 78vw, 21rem);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(0.65rem, 2vw, 0.9rem);
  min-height: clamp(14rem, 42vw, 17rem);
  background: var(--white);
  border: 1px solid #19193747;
  border-radius: var(--radius);
  padding: clamp(1.1rem, 3vw, 1.45rem);
  box-shadow: var(--shadow-sm);
  box-sizing: border-box;
}

.gestor-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(2.75rem, 8vw, 3.35rem);
  height: clamp(2.75rem, 8vw, 3.35rem);
  border-radius: 14px;
  background: rgba(154, 74, 134, 0.12);
  color: #9a4a86;
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  line-height: 1;
}

.gestor-card__title {
  margin: 0;
  font-size: clamp(1.2rem, 2.4vw, 1.4rem);
  line-height: 1.25;
  color: #1d1d3a;
  text-transform: uppercase;
  font-weight: 900;
}

.gestor-card__text {
  margin: 0;
  font-size: clamp(0.92rem, 2vw, 1.1rem);
  line-height: 1.55;
  color: var(--muted);
}

.gestor-card__text strong {
  color: var(--text);
}

.section--soft .gestor-card {
  background: var(--paper);
}

/* ─── Panel Madre ─── */
.section--madre {
  background: linear-gradient(135deg, #131314 0%, #202029 100%);
  color: var(--white);
}
.section--madre .eyebrow { color: #88c946; }
.section--madre h2 { color: var(--white); }
.section--madre .section__deck { color: rgba(255, 255, 255, 0.72); }

.madre-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.madre-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}
.madre-card h3 {
    margin: 0 0 1.45rem;
    font-size: 1.1rem;
    color: #88c946;
}
.madre-card p {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
}

.madre-actions {
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.madre-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  border: 2px solid rgba(136, 201, 70, 0.55);
  background: rgba(136, 201, 70, 0.14);
  color: #eef8e4;
  font-family: inherit;
  font-size: clamp(0.92rem, 2.2vw, 1rem);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.15rem) scale(0.92);
  transition:
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.24s var(--ease),
    color 0.24s var(--ease),
    border-color 0.24s var(--ease),
    box-shadow 0.24s var(--ease);
}

.madre-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.madre-cta:hover {
  background: #88c946;
  color: #1a1a38;
  border-color: #88c946;
  box-shadow: 0 14px 32px rgba(136, 201, 70, 0.35);
  transform: translateY(0) scale(1.04);
}

.madre-cta:active {
  transform: translateY(0) scale(0.97);
}

.madre-cta.is-visible:hover {
  transform: translateY(0) scale(1.04);
}

.madre-cta.is-visible:active {
  transform: translateY(0) scale(0.97);
}

/* ─── Opiniones Buhonea (caras, no Google) ─── */
.reviews-source-banner {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1.1rem;
  background: #f3f0fb;
  border: 1px solid rgba(154, 74, 134, 0.18);
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #4a4a62;
  text-align: center;
  line-height: 1.45;
}
.reviews-source-banner strong { color: #1d1d3a; }

.reviews-beta-banner {
  margin-bottom: 1.25rem;
  padding: 0.85rem 1.1rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: #92400e;
  text-align: center;
  line-height: 1.45;
}
.reviews-beta-banner strong { color: #78350f; }

.reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.reviews-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.reviews-panel__scroll-wrap {
  position: relative;
  overflow: visible;
}

.reviews-panel__list {
  max-height: 23.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 0.15rem;
}

.reviews-panel__list::-webkit-scrollbar {
  display: none;
}

.bh-scroll-hint--vertical {
  top: auto;
  right: 0;
  left: 0;
  bottom: 0;
  width: auto;
  height: 3.25rem;
  padding-right: 0;
  padding-bottom: 0.15rem;
  align-items: flex-end;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.82) 42%,
    #fff 100%
  );
}

.bh-scroll-hint__icon--down {
  transform: rotate(90deg);
  animation: bh-scroll-hint-pulse-down 1.15s ease-in-out infinite;
}

@keyframes bh-scroll-hint-pulse-down {
  0%,
  100% {
    opacity: 0.4;
    transform: rotate(90deg) translateX(0);
  }
  50% {
    opacity: 1;
    transform: rotate(90deg) translateX(5px);
  }
}

.reviews-panel__head {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0.25rem;
}
.reviews-panel__head h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  color: var(--navy);
}
.reviews-panel__score {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.reviews-panel__count { font-size: 0.8rem; }

.g-review__face {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
}

.g-review__face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.g-review__tag {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  background: var(--paper);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  color: #9a4a86;
}

.g-review {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.g-review:last-child { border-bottom: none; }

.g-review__head {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.g-review__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--white);
  background: var(--av-color, var(--navy));
  flex-shrink: 0;
}
.g-review__meta { flex: 1; min-width: 0; }
.g-review__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.6rem;
}
.g-review__name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.g-review__sub {
  margin: 0.15rem 0 0;
  font-size: 0.76rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.6rem;
}

.g-review__body {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.52;
  color: var(--text);
}

.stars { display: inline-flex; gap: 1px; }
.stars__icon {
  color: #e2e8f0;
  font-size: 0.85rem;
}
.stars__icon.is-on { color: var(--amber); }

.g-review__badge {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.12rem 0.4rem;
  border-radius: 4px;
  background: var(--paper);
  color: var(--muted);
}
.g-review__badge--ok {
  background: #ecfdf5;
  color: var(--green-dark);
}
.g-review__avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  -webkit-user-drag: none;
  user-select: none;
}

[data-reviews-protect] img {
  -webkit-user-drag: none;
  user-select: none;
}

/* ─── Fase 2: flujo de opiniones ─── */
.review-flow {
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.review-flow__title {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.2rem;
  color: var(--navy);
}
.review-flow__steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
}
.review-flow__steps li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}
.review-flow__steps li span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--line);
  font-size: 0.78rem;
}
.review-flow__steps li.is-active { color: var(--navy); }
.review-flow__steps li.is-active span {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.review-flow__steps li.is-done span {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
}
.review-flow__panel { display: none; }
.review-flow__panel.is-active { display: block; }
.review-flow__lead {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}
.review-flow__hint {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 46ch;
  margin-inline: auto;
}
.review-flow__roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  max-width: 520px;
  margin-inline: auto;
}
.review-role {
  text-align: left;
  padding: 1rem 1.1rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.review-role strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--navy);
  font-size: 0.98rem;
}
.review-role span { font-size: 0.85rem; color: var(--muted); line-height: 1.4; }
.review-role.is-selected,
.review-role:hover {
  border-color: var(--pink);
  background: #fdf8fc;
}
.review-flow__google {
  display: flex;
  justify-content: center;
  min-height: 44px;
  margin-bottom: 0.75rem;
}
.review-flow__error {
  margin: 0.5rem 0 0;
  text-align: center;
  color: #b91c1c;
  font-size: 0.9rem;
  font-weight: 600;
}
.review-flow__admin-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--muted);
}
.review-compose-stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.review-compose-stars__btn {
  border: none;
  background: none;
  font-size: 2rem;
  color: #e2e8f0;
  padding: 0.15rem;
  font-family: inherit;
  line-height: 1;
  transition: transform 0.15s;
}
.review-compose-stars__btn.is-on { color: var(--amber); }
.review-compose-stars__btn:active { transform: scale(0.92); }
.review-compose-label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
}
.review-compose-text {
  width: 100%;
  max-width: 520px;
  margin: 0 auto 1rem;
  display: block;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
  resize: vertical;
  min-height: 110px;
}
.review-compose-text:focus {
  outline: 2px solid var(--pink-soft);
  border-color: var(--pink);
}
.review-flow__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}
.review-flow__success {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
}
.review-flow__panel--done { text-align: center; }

@media (max-width: 600px) {
  .review-flow__roles { grid-template-columns: 1fr; }
}

.review-cta {
  text-align: center;
  padding: 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.review-cta h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  color: var(--navy);
}
.review-cta p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 48ch;
  margin-inline: auto;
}
.google-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.google-btn[disabled] { opacity: 0.55; }
.review-cta__hint {
  margin: 0.85rem 0 0 !important;
  font-size: 0.82rem !important;
}

/* ─── Pricing ─── */
.pricing {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2rem;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.pricing__hero { text-align: center; }
.pricing__label {
  margin: 0;
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.pricing__amount {
    margin: 0.35rem 0;
    font-size: clamp(3rem, 8vw, 4.25rem);
    font-weight: 700;
    color: #88c946;
    line-height: 1;
}
.pricing__amount span {
  font-size: 0.32em;
  color: var(--muted);
  font-weight: 600;
}
.pricing__trial {
  margin: 0 0 1.25rem;
  font-size: 1.2rem;
  color: var(--muted);
}
.pricing__compare h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--navy);
}
.pricing__compare ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing__compare li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.pricing__compare li span { color: var(--muted); }
.pricing__compare li strong { color: var(--text); font-weight: 700; }
.pricing__compare li.is-highlight {
  background: rgba(136, 201, 70, 0.08);
  margin: 0.5rem -0.75rem 0;
  padding: 0.75rem;
  border-radius: 8px;
  border-bottom: none;
}
.pricing__compare li.is-highlight span,
.pricing__compare li.is-highlight strong { color: var(--green-dark); text-transform: uppercase; }

/* ─── Pregunta a la IA ─── */
.section--ai-ask {
  background:
    radial-gradient(ellipse 85% 55% at 12% 35%, rgba(180, 90, 157, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 45% at 88% 18%, rgba(118, 187, 224, 0.16), transparent 50%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(136, 201, 70, 0.12), transparent 55%),
    var(--paper);
}
.section--ai-ask .eyebrow { color: var(--pink-dark); }

.ai-ask__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.35rem);
}
.ai-ask__card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ai-ask__chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(180, 90, 157, 0.14), rgba(118, 187, 224, 0.16));
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ai-ask__card-title {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  line-height: 1.25;
  color: var(--navy);
}
.ai-ask__card-text {
  flex: 1;
  margin: 0;
  font-size: clamp(0.88rem, 1.8vw, 0.95rem);
  line-height: 1.55;
  color: var(--muted);
}
.ai-ask__providers {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.35rem;
}
.ai-ask__provider {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-width: 4.75rem;
  min-height: 4.75rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 2px 10px rgba(29, 29, 58, 0.05);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), border-color 0.18s var(--ease);
}
.ai-ask__provider:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: var(--shadow-md);
}
.ai-ask__provider:active {
  transform: scale(0.96);
}
.ai-ask__provider-name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ai-ask__icon {
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
}
.ai-ask__provider--chatgpt { color: #10a37f; }
.ai-ask__provider--chatgpt:hover { border-color: rgba(16, 163, 127, 0.45); }
.ai-ask__provider--gemini {
  background: linear-gradient(145deg, rgba(66, 133, 244, 0.08), rgba(234, 67, 53, 0.08));
  color: #4285f4;
}
.ai-ask__provider--gemini:hover { border-color: rgba(66, 133, 244, 0.45); }
.ai-ask__provider--copilot { color: #0078d4; }
.ai-ask__provider--copilot:hover { border-color: rgba(0, 120, 212, 0.45); }
.ai-ask__provider--perplexity { color: #20808d; }
.ai-ask__provider--perplexity:hover { border-color: rgba(32, 128, 141, 0.45); }
.section--ai-ask a.ai-ask__provider--chatgpt:hover { color: #10a37f; }
.section--ai-ask a.ai-ask__provider--gemini:hover { color: #4285f4; }
.section--ai-ask a.ai-ask__provider--copilot:hover { color: #0078d4; }
.section--ai-ask a.ai-ask__provider--perplexity:hover { color: #20808d; }

.ai-ask-toast {
  position: fixed;
  left: 50%;
  bottom: calc(1.25rem + var(--safe-bottom));
  z-index: 1200;
  max-width: min(22rem, calc(100vw - 2rem));
  margin: 0;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translate(-50%, 0.75rem);
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
}
.ai-ask-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.ai-ask-toast[hidden] {
  display: none;
}

/* ─── CTA final ─── */
.cta-final {
  text-align: center;
  padding: clamp(3.5rem, 6vw, 5rem) 0 calc(5rem + var(--safe-bottom));
  background: linear-gradient(135deg, #131314 0%, #202029 100%);
  color: var(--white);
}
.cta-final h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  margin: 0 0 0.65rem;
  color: var(--white);
  line-height: 1.15;
  max-width: none;
  margin-inline: auto;
}
.cta-final p {
  color: rgba(255, 255, 255, 0.72);
  max-width: min(46ch, 100%);
  margin: 2rem auto 0.25rem;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  line-height: 1.55;
  padding-inline: 0.25rem;
}

/* ─── Footer ─── */
.footer {
  padding: 1.75rem 0 calc(2rem + var(--safe-bottom));
  background: linear-gradient(135deg, #161619 0%, #202029 100%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.footer__in {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem 1.5rem;
}
.footer__brand {
  font-size: 16px;
}
.footer__brand p { margin: 0; font-size: 16px; }
.footer__credit {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.38);
}
.footer__credit strong {
  color: rgb(180 90 157);
  font-weight: 600;
}
.footer__links,
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 15px;
}
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.35rem;
  line-height: 1;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.footer__social a:hover {
  color: var(--white);
  background: transparent;
  transform: translateY(-1px);
}
.footer__social i {
  display: block;
  line-height: 1;
}
.footer__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.footer__links a,
.footer__legal a {
  display: inline-block;
  padding: 0.4rem 0.15rem;
  min-height: 44px;
  line-height: 1.4;
}
.footer a { color: var(--blue); }
.footer a:hover { color: var(--white); }
.footer__social a {
  color: rgba(255, 255, 255, 0.72);
}
.footer__social a:hover {
  color: var(--white);
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.on {
  opacity: 1;
  transform: none;
}




/* ─── Partes para cargar antigua web ─── */

.bh-ov {
    background: rgb(0 0 0 / 83%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.bh-btn--danger {
    border-color: white !important;
    color: white !important;
    background: transparent !important;
}

#optionsMenu.active {
    background: rgb(0 0 0 / 83%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

.vidrio-valoracion {
    background: rgb(0 0 0 / 83%) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}



/* Menú hamburguesa: oculto por defecto (solo móvil/tablet ≤1100px y abierto/cerrando) */
.nav-drawer {
  display: none;
}

/* ─── Responsive ─── */

/* Móvil estrecho: matriz y tipografía compacta */
@media (max-width: 580px) {
  .matrix thead th,
  .matrix--head-clone thead th {
    font-size: 0.7rem;
    font-weight: 800;
  }

  .matrix tbody th[scope="row"] {
    font-size: 0.82rem;
    padding-left: 0.75rem;
  }

  .matrix th,
  .matrix td {
    padding: 0.65rem 0.5rem;
  }

  .nav-drawer__panel {
    width: 80vw;
    max-width: 80vw;
  }
}

/* Tablet ancho / portátil pequeño: menú lateral */
@media (max-width: 1100px) {
  .nav-drawer {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 198;
    pointer-events: none;
  }

  .nav-drawer.is-open,
  .nav-drawer.is-closing {
    display: block;
    pointer-events: auto;
  }

  .nav-drawer__backdrop {
    position: fixed;
    inset: 0;
    z-index: 1;
    background: rgb(0 0 0 / 9%);
    backdrop-filter: blur(18px) saturate(120%);
    -webkit-backdrop-filter: blur(18px) saturate(120%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-drawer.is-open .nav-drawer__backdrop {
    opacity: 1;
  }

  .nav-drawer.is-closing .nav-drawer__backdrop {
    opacity: 0;
  }

  .nav-drawer__panel {
    position: fixed;
    top: var(--header-total-h);
    left: 0;
    z-index: 2;
    width: 60vw;
    max-width: 60vw;
    height: calc(100dvh - var(--header-total-h));
    min-height: 0;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 12px 0 48px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding:
      1rem
      max(1.35rem, var(--safe-right))
      calc(1.25rem + var(--safe-bottom))
      max(1.35rem, var(--safe-left));
  }

  .nav-drawer__panel::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  .nav-drawer.is-open .nav-drawer__panel {
    transform: translateX(0);
  }

  .nav-drawer.is-closing .nav-drawer__panel {
    transform: translateX(-100%);
  }

  .nav-drawer__auth {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    flex-shrink: 0;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .nav-drawer__auth-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.65rem;
    padding: 0.25rem 0.5rem;
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: center;
    cursor: pointer;
    background: transparent;
    border: none;
    transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  }

  .nav-drawer__auth-btn .material-symbols-outlined {
    font-size: 1.75rem;
    line-height: 1;
    color: var(--navy);
    font-variation-settings: 'wght' 300;
  }

  .nav-drawer__auth-btn:hover,
  .nav-drawer__auth-btn:focus-visible {
    color: var(--pink);
  }

  .nav-drawer__auth-btn:hover .material-symbols-outlined,
  .nav-drawer__auth-btn:focus-visible .material-symbols-outlined {
    color: var(--pink);
  }

  .nav-drawer__auth-btn:active {
    transform: scale(0.97);
  }

  .nav-drawer__auth-btn--cta {
    color: var(--pink-dark);
  }

  .nav-drawer__auth-btn--cta .material-symbols-outlined {
    color: var(--pink);
  }

  .nav-drawer__list {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin: 0;
    padding: 0;
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-drawer__list::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
  }

  button.nav-drawer__link {
    font: inherit;
    text-align: left;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
  }

  .nav-drawer__link {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    min-height: 3.1rem;
    padding: 0.55rem 0.35rem;
    margin-inline: -0.35rem;
    border-radius: 0.5rem;
    color: var(--navy);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s var(--ease), color 0.2s var(--ease);
  }

  .nav-drawer__link:hover,
  .nav-drawer__link:focus-visible {
    color: var(--navy);
    background: rgba(29, 29, 58, 0.05);
  }

  .nav-drawer__link:active {
    background: rgba(29, 29, 58, 0.08);
  }

  .nav-drawer__link:focus-visible {
    outline: 2px solid rgba(180, 90, 157, 0.45);
    outline-offset: 1px;
  }

  .nav-drawer__link-icon {
    flex-shrink: 0;
    width: 1.65rem;
    font-size: 1.45rem;
    color: var(--muted);
    text-align: center;
    font-variation-settings: 'wght' 300;
  }

  .nav-drawer__link-label {
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 0.01em;
  }

  .nav-drawer__footer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.35rem;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
  }

  button.nav-drawer__footer-btn,
  a.nav-drawer__footer-btn {
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    cursor: pointer;
    text-decoration: none;
  }

  .nav-drawer__footer-btn {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    min-height: 2.75rem;
    padding: 0.45rem 0.25rem;
    color: var(--navy);
    text-align: left;
    transition: color 0.2s var(--ease), background 0.2s var(--ease);
    border-radius: 0.45rem;
  }

  .nav-drawer__footer-btn:hover,
  .nav-drawer__footer-btn:focus-visible {
    color: var(--pink);
    background: rgba(29, 29, 58, 0.04);
  }

  .nav-drawer__footer-btn:active {
    background: rgba(29, 29, 58, 0.07);
  }

  .nav-drawer__footer-btn:focus-visible {
    outline: 2px solid rgba(180, 90, 157, 0.45);
    outline-offset: 1px;
  }

  .nav-drawer__footer-icon {
    flex-shrink: 0;
    font-size: 1.25rem;
    line-height: 1;
    color: var(--muted);
    font-variation-settings: 'wght' 300;
  }

  .nav-drawer__footer-btn:hover .nav-drawer__footer-icon,
  .nav-drawer__footer-btn:focus-visible .nav-drawer__footer-icon {
    color: var(--pink);
  }

  .nav-drawer__footer-label {
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: 0.01em;
  }

  @media (prefers-reduced-motion: reduce) {
    .nav-drawer__backdrop,
    .nav-drawer__panel {
      transition: none !important;
    }
  }

  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase__block { grid-template-columns: 1fr; }
  .showcase__block .showcase__content { order: 1; }
  .showcase__block .showcase__media { order: 2; }
  .showcase__block:nth-child(even) .showcase__media,
  .showcase__block:nth-child(even) .showcase__content { order: unset; }
  .showcase__block:nth-child(even) .showcase__content { order: 1; }
  .showcase__block:nth-child(even) .showcase__media { order: 2; }
}

/* Tablet portrait / móvil grande: hero en una columna */
@media (max-width: 880px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 4vw, 2rem);
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 6.5vw, 2.65rem);
  }

  .hero__lede {
    max-width: none;
  }

  .hero__aside {
    max-width: 40rem;
  }
}

@media (max-width: 960px) {
  .reviews-layout,
  .pricing,
  .madre-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ai-ask__grid {
    grid-template-columns: 1fr 1fr;
  }

  .versus__row {
    grid-template-columns: 1fr;
    background: #fefefe;
    border: none;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: none;
  }
  .versus__arrow {
    padding: 0.4rem;
    border-inline: none;
    transform: rotate(90deg);
  }
  .versus__us { border-left: none; border-top: 3px solid var(--green); }

  .matrix-wrap::after { display: block; }
  .matrix tbody th[scope="row"] {
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    z-index: 1;
    box-shadow: 4px 0 8px rgba(0, 0, 0, 0.04);
  }
}

@media (max-width: 768px) {
  :root { --header-h: 62px; }

  .hero {
    padding-top: calc(var(--header-total-h) + 3.25rem);
    padding-bottom: calc(3rem + var(--safe-bottom));
  }
  .hero__grid { gap: 3.5rem; }
  .hero__lede { font-size: clamp(0.95rem, 2.8vw, 1.05rem); }
  .hero__aside { padding: 1.25rem; }
  .hero__steps li { font-size: 0.92rem; }

  .section { padding: clamp(3.25rem, 8vw, 5.75rem) 0; }
  .strip { padding: 1.75rem 0; }
  .strip__grid { grid-template-columns: 1fr 1fr; gap: 1rem; }

  .flagship-carousel__nav-btn {
    top: 10%;
  }

  .wrap {
    padding-inline: max(3rem, env(safe-area-inset-left, 0px)) max(3rem, env(safe-area-inset-right, 0px));
  }

  .versus__them,
  .versus__us { padding: 1rem; }

  .reviews-layout,
  .pricing,
  .madre-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing__compare h3 {
    font-size: 1.5rem;
    color: #9a4a86;
    text-align: center;
    text-transform: uppercase;
  }

  .showcase__block { padding: 1rem; }
  .showcase { gap: 2rem; }

  .benefit-grid { grid-template-columns: 1fr; }
  .reviews-panel { padding: 1.1rem 1.15rem; }

  .review-flow {
    padding: 1.35rem 1rem;
    margin-top: 1.5rem;
  }
  .review-flow__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
  }
  .review-flow__steps li {
    justify-content: flex-start;
    font-size: 0.85rem;
  }
  .review-flow__roles { grid-template-columns: 1fr; max-width: none; }
  .review-compose-text { max-width: none; }

  .pricing {
    padding: 1.25rem;
    gap: 3.5rem;
    align-items: center;
  }
  .pricing__compare li {
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
  }
  .pricing__trial {
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  }

  .ai-ask__card { padding: 1.15rem; }
  .ai-ask__provider {
    flex: 1 1 calc(25% - 0.45rem);
    min-width: 4.25rem;
  }

  .footer__links a, .footer__legal a {
    min-height: 0;
  }

  .footer__in {
    flex-direction: column;
    align-items: center;
  }

  .footer__meta {
    flex-direction: column;
    align-items: center;
  }

  .footer {
    text-align: center;
  }

  .cta-final {
    padding: clamp(2.75rem, 7vw, 4rem) 0;
  }

  .cta-final h2 {
    max-width: none;
    font-size: clamp(1.55rem, 5.5vw, 2rem);
  }
}

@media (max-width: 600px) {
  .wrap {
    padding-inline: max(3rem, env(safe-area-inset-left)) max(3rem, env(safe-area-inset-right));
  }

  .pricing__compare h3 {
    margin: 0 0 0.75rem;
    font-size: 1.5rem;
    color: #9a4a86;
    text-align: center;
    text-transform: uppercase;
  }

  .actions {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    gap: 0.75rem;
    justify-content: center;
  }

  .actions--center {
    flex-direction: column;
    align-items: center;
  }

  .actions .btn,
  .actions--center .btn {
    width: min(100%, 11rem);
    min-height: 48px;
    max-height: none;
    border-radius: 999px;
  }

  .hero .actions {
    justify-content: center;
  }

  .hero .actions .btn,
  .hero .actions .link-pill {
    width: fit-content;
    justify-content: center;
  }

  .hero__price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    max-width: none;
    padding: 0.85rem 1rem;
  }

  .eyebrow {
    letter-spacing: 0.12em;
    font-size: clamp(1rem, 3.2vw, 1.2rem);
  }

  .section h2 {
    font-size: clamp(1.45rem, 5.8vw, 1.85rem);
  }

  .section__deck {
    font-size: clamp(0.92rem, 3.4vw, 1rem);
  }

  .g-review__head { align-items: flex-start; }
  .g-review__top { flex-direction: column; align-items: flex-start; }

  .cta-final .actions .btn {
    max-width: min(100%, 12rem);
    width: 100%;
  }

  .footer__links, .footer__legal {
    gap: 0 0.85rem;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .topbar__brand {
    font-size: 0.98rem;
    gap: 0.45rem;
  }

  .topbar__brand img {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-top: calc(var(--header-total-h) + 2.5rem);
    padding-bottom: calc(2.5rem + var(--safe-bottom));
  }

  .hero__aside {
    padding: 1.1rem 1.15rem;
    border-width: 4px;
  }

  .versus__label {
    font-size: 0.88rem;
  }

  .versus__them p,
  .versus__us p {
    font-size: 0.88rem;
  }

  .matrix {
    min-width: 560px;
    font-size: 0.82rem;
  }

  .pricing__amount {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
  }

  .ai-ask__provider {
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
  }

  .madre-card {
    padding: 1.15rem 1.2rem;
  }

  .float-contact .material-symbols-outlined {
    font-size: 3.2rem;
  }
}

@media (max-width: 360px) {
  .wrap {
    padding-inline: max(0.75rem, env(safe-area-inset-left)) max(0.75rem, env(safe-area-inset-right));
  }

  .btn {
    padding-inline: 1.1rem;
    font-size: 0.92rem;
  }

  .hero h1 {
    font-size: clamp(1.65rem, 8.5vw, 1.9rem);
  }
}

/* Escritorio amplio */
@media (min-width: 1400px) {
  .wrap {
    padding-inline: max(1rem, env(safe-area-inset-left, 0px)) max(1rem, env(safe-area-inset-right, 0px));
  }

  .hero__grid {
    gap: clamp(2.5rem, 4vw, 4.5rem);
  }

  .section__deck {
    max-width: 72ch;
  }

  .section__head--center .section__deck {
    max-width: 68ch;
  }
}

@media (min-width: 1800px) {
  .hero h1 {
    font-size: clamp(3rem, 2.8vw, 3.5rem);
  }

  .section h2 {
    font-size: clamp(2rem, 2.2vw, 2.55rem);
  }
}

@media (max-width: 1200px) {
  .wrap {
    padding-inline: max(3rem, env(safe-area-inset-left, 0px)) max(3rem, env(safe-area-inset-right, 0px));
  }

  .hero {
    padding: calc(var(--header-total-h) + 2.5rem) 0 calc(6.5rem + var(--safe-bottom));
  }

  .nav-drawer__panel {
    width: 45vw;
    max-width: 45vw;
  }
}


@media (min-width: 481px) and (max-width: 600px) {
  .nav-drawer__panel {
    width: 55vw;
    max-width: 55vw;
  }
}

@media (max-width: 480px) {
  .nav-drawer__panel {
    width: 85vw;
    max-width: 85vw;
  }

  .wrap {
    padding-inline: max(2rem, env(safe-area-inset-left, 0px)) max(2rem, env(safe-area-inset-right, 0px));
  }

  .strip__grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .reviews-layout, .pricing, .madre-grid {
    grid-template-columns: 1fr;
  }

  .ai-ask__grid {
    grid-template-columns: 1fr;
  }
}


@media (min-width: 1101px) {
  .nav-drawer {
    display: none !important;
  }

  .topbar__toggle { display: none; }
  .topbar__nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: transparent;
    padding: 0;
    gap: 0.1rem;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    max-height: none;
    overflow: visible;
    border: none;
    z-index: auto;
  }
  .topbar__nav a {
    padding: 0.4rem 0.6rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }
  .topbar__cta { margin-left: 0.25rem; }
}

  /* ─── Volver arriba + contacto flotante (>600px) ─── */
.float-actions {
  display: none;
  position: fixed;
  right: max(1.25rem, env(safe-area-inset-right));
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 120;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  pointer-events: none;
  transition:
    opacity 0.32s var(--ease),
    visibility 0.32s var(--ease),
    transform 0.32s var(--ease);
}

.float-actions.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.float-contact,
.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  transition:
    transform 0.24s var(--ease),
    color 0.2s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.24s var(--ease);
}

.float-contact {
  border: transparent;
  background: transparent;
  color: #fff;
  box-shadow: none;
  opacity: 0;
  transform: translateY(10px) scale(0.9);
}

.float-contact.is-on-light {
  color: var(--navy-deep);
}

.float-actions.is-visible .float-contact {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.36s var(--ease) 0.05s,
    transform 0.42s cubic-bezier(0.22, 1.12, 0.36, 1) 0.05s,
    color 0.2s var(--ease),
    background 0.22s var(--ease),
    border-color 0.22s var(--ease),
    box-shadow 0.24s var(--ease);
}

.float-contact .material-symbols-outlined {
  font-size: 3.7rem;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}

.float-contact:hover {
    transform: translateY(-3px) scale(1.3) !important;
}

.float-contact:active {
  transform: translateY(0) scale(0.96);
}

.back-to-top {
  position: static;
  right: auto;
  bottom: auto;
  border: 4px solid rgba(255, 255, 255, 0.22);
  background: var(--navy-deep);
  color: #fff;
  box-shadow: 0 10px 28px rgba(18, 18, 40, 0.28);
  opacity: 1;
  visibility: visible;
  transform: none;
}

.back-to-top .material-symbols-outlined {
  font-size: 1.45rem;
  line-height: 1;
}

.back-to-top:hover {
  background: var(--pink);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 14px 34px rgba(180, 90, 157, 0.38);
  transform: translateY(-2px) scale(1.04);
}

.back-to-top:active {
  transform: translateY(0) scale(0.97);
}

@media (min-width: 601px) {
  .float-actions {
    display: flex;
  }
}

@media (max-width: 600px) {
  .float-actions {
    display: none !important;
  }
}

/* ─── iOS / Safari / PWA / iPad ─── */
@supports (-webkit-touch-callout: none) {
  .topbar {
    transform: translateZ(0);
  }

  .matrix-wrap {
    transform: translateZ(0);
  }

  .reviews-panel__list,
  .gestor-carousel__viewport,
  .ecosistema__viewport {
    -webkit-overflow-scrolling: touch;
  }
}

@media (hover: none) and (pointer: coarse) {
  .strip__item:hover,
  .strip__item:hover .strip__icon,
  .strip__item:hover p {
    transform: none;
    background: transparent;
    box-shadow: none;
    color: inherit;
  }

  .strip__item:hover .strip__icon {
    background: rgba(180, 90, 157, 0.12);
    color: var(--pink);
  }

  .strip__item:hover p {
    color: gray;
  }

  .link-pill:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:active { transform: none; }
  .float-actions { transition: none; }
  .float-actions.is-visible { transform: none; }
  .float-contact,
  .float-contact:hover,
  .float-contact.is-on-light,
  .back-to-top:hover { transform: none; transition: none; }
}

/* ─── Sin scroll horizontal (Safari / iOS / cookie banner) ─── */
main,
.topbar,
.footer,
.hero,
.section,
.strip,
.cta-final {
  max-width: 100%;
}

.gestor-carousel,
.ecosistema,
.matrix-wrap,
.flagship-carousel,
.flagship-carousel__viewport {
  max-width: 100%;
}

.bh-banner {
  padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right)) !important;
  max-width: 100%;
  box-sizing: border-box;
}

.bh-banner__card {
  width: 100% !important;
  max-width: min(980px, 100%) !important;
  box-sizing: border-box;
}

.bh-ov {
  max-width: 100vw;
  box-sizing: border-box;
}

.bh-modal {
  max-width: calc(100vw - 32px - env(safe-area-inset-left) - env(safe-area-inset-right)) !important;
  box-sizing: border-box;
}
