/* =========================================================
   PBTECH — HOME HERO
   Fondo premium + layout base
   Versión 2.3 — poster visible hasta completar la carga del 3D
   ========================================================= */

:root {
  --pb-hero-bg: #02050b;
  --pb-hero-text: #ffffff;
  --pb-hero-text-soft: rgba(255, 255, 255, 0.72);

  --pb-hero-blue: #168bff;
  --pb-hero-cyan: #38cfff;
  --pb-hero-purple: #7357ff;

  --pb-hero-border: rgba(255, 255, 255, 0.12);
}


/* =========================================================
   HERO GENERAL
   ========================================================= */

#pb-home-hero {
  position: relative;

  width: 100% !important;
  max-width: 100% !important;
  min-height: calc(100vh - 66px);

  margin: 0 !important;
  padding: 0 !important;

  color: var(--pb-hero-text);
  background: var(--pb-hero-bg);

  overflow: hidden;
  isolation: isolate;
}


/* =========================================================
   FONDO DINÁMICO
   ========================================================= */

.pb-hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;

  pointer-events: none;

  background:
    radial-gradient(
      circle at 78% 34%,
      rgba(22, 139, 255, 0.26) 0%,
      rgba(22, 139, 255, 0.10) 22%,
      transparent 48%
    ),
    radial-gradient(
      circle at 65% 74%,
      rgba(115, 87, 255, 0.18) 0%,
      transparent 44%
    ),
    radial-gradient(
      circle at 20% 18%,
      rgba(56, 207, 255, 0.08) 0%,
      transparent 36%
    ),
    linear-gradient(
      135deg,
      #02050b 0%,
      #050b16 52%,
      #02050b 100%
    );
}


/* Halo central del dispositivo */
.pb-hero-background::before {
  content: "";

  position: absolute;
  top: 18%;
  right: 8%;

  width: min(44vw, 640px);
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(37, 151, 255, 0.25) 0%,
      rgba(37, 151, 255, 0.10) 35%,
      transparent 70%
    );

  filter: blur(26px);
}


/* Textura y cuadrícula sutil */
.pb-hero-background::after {
  content: "";

  position: absolute;
  inset: 0;

  opacity: 0.18;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      transparent 82%
    );

  -webkit-mask-image:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.5),
      transparent 82%
    );
}


/* =========================================================
   CONTENEDOR PRINCIPAL
   ========================================================= */

.pb-hero-container {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 48px), 1400px);
  min-height: calc(100vh - 160px);

  margin: 0 auto;
  padding: 72px 0 56px;

  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 72px;
}


/* =========================================================
   CONTENIDO
   ========================================================= */

.pb-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  max-width: 650px;
}


/* Eyebrow */
.pb-eyebrow {
  display: inline-flex;
  align-items: center;

  min-height: 32px;

  padding: 7px 12px;

  color: #9ed7ff;

  border: 1px solid rgba(80, 180, 255, 0.24);
  border-radius: 999px;

  background:
    linear-gradient(
      145deg,
      rgba(22, 139, 255, 0.12),
      rgba(115, 87, 255, 0.08)
    );

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 24px rgba(22, 139, 255, 0.08);

  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.14em;
}


/* Título */
.pb-hero-content h1 {
  max-width: 720px;

  margin: 24px 0 20px;

  color: #ffffff;

  font-size: clamp(50px, 5.2vw, 82px);
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}


/* Palabra destacada */
.pb-hero-content h1 strong {
  color: transparent;

  background:
    linear-gradient(
      90deg,
      #ffffff 0%,
      #7fd4ff 48%,
      #8b7dff 100%
    );

  background-clip: text;
  -webkit-background-clip: text;
}


/* Descripción */
.pb-hero-content p {
  max-width: 610px;

  margin: 0 0 34px;

  color: var(--pb-hero-text-soft);

  font-size: 18px;
  line-height: 1.65;
}


/* =========================================================
   BOTONES
   ========================================================= */

.pb-buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 14px;
}


.pb-buttons a {
  min-height: 50px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 24px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 700;
  text-decoration: none;

  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}


/* Botón principal */
.pb-btn-primary {
  color: #ffffff;

  border: 1px solid rgba(112, 196, 255, 0.34);

  background:
    linear-gradient(
      135deg,
      #177eea,
      #5149e8
    );

  box-shadow:
    0 14px 34px rgba(20, 107, 234, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.20);
}


.pb-btn-primary:hover,
.pb-btn-primary:focus-visible {
  transform: translateY(-2px);

  box-shadow:
    0 18px 40px rgba(20, 107, 234, 0.34),
    0 0 24px rgba(56, 207, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
}


/* Botón secundario */
.pb-btn-secondary {
  color: #ffffff;

  border: 1px solid var(--pb-hero-border);

  background: rgba(255, 255, 255, 0.045);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}


.pb-btn-secondary:hover,
.pb-btn-secondary:focus-visible {
  transform: translateY(-2px);

  border-color: rgba(80, 180, 255, 0.30);

  background: rgba(255, 255, 255, 0.075);

  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.22),
    0 0 20px rgba(22, 139, 255, 0.10);
}


/* =========================================================
   DISPOSITIVO / MODELO
   ========================================================= */

.pb-hero-device {
  position: relative;

  min-height: 560px;

  display: flex;
  align-items: center;
  justify-content: center;

  isolation: isolate;
}


/* El fondo oscuro evita cualquier destello blanco durante el render. */
html,
body {
  background-color: var(--pb-hero-bg) !important;
}


#pb-home-hero,
#pb-home-hero *,
#pb-home-hero *::before,
#pb-home-hero *::after {
  box-sizing: border-box;
}


/* El widget HTML ocupa exactamente el contenedor padre de Elementor. */
.elementor-widget-html:has(#pb-home-hero),
.elementor-widget-html:has(#pb-home-hero) > .elementor-widget-container {
  width: 100% !important;
  max-width: 100% !important;
  height: 100% !important;

  margin: 0 !important;
  padding: 0 !important;
}


/*
 * Elimina el espacio de todos los envoltorios que contienen este hero.
 * No usa 100vw: el bloque conserva el ancho real de su contenedor padre.
 */
:where(
  .wp-site-blocks,
  main,
  .site-main,
  .entry-content,
  .wp-block-post-content,
  .elementor,
  .elementor-section-wrap,
  .elementor-section,
  .elementor-container,
  .elementor-column,
  .elementor-widget-wrap,
  .e-con,
  .elementor-widget-html,
  .elementor-widget-container
):has(#pb-home-hero) {
  margin: 0 !important;
  padding: 0 !important;
  gap: 0 !important;

  border: 0 !important;
  outline: 0 !important;

  background-color: var(--pb-hero-bg) !important;
}


/* Base luminosa provisional */
.pb-hero-device::before {
  content: "";

  position: absolute;
  left: 50%;
  bottom: 12%;

  width: min(84%, 520px);
  height: 80px;

  transform: translateX(-50%);

  border-radius: 50%;

  background:
    radial-gradient(
      ellipse,
      rgba(42, 142, 255, 0.34) 0%,
      rgba(42, 142, 255, 0.12) 42%,
      transparent 72%
    );

  filter: blur(12px);
}


/* El marcador temporal se desactiva al añadir model-viewer */
.pb-hero-device::after {
  content: none;
  display: none;
}


/* Contenedor real del modelo 3D */
.pb-model-shell {
  position: relative;
  z-index: 2;

  width: min(78%, 470px);
  height: 590px;

  display: grid;
  place-items: center;

  overflow: hidden;

  isolation: isolate;

  border: 1px solid rgba(164, 216, 255, 0.28);
  border-radius: 40px;

  background:
    radial-gradient(
      circle at 20% 12%,
      rgba(128, 205, 255, 0.15) 0%,
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(31, 59, 101, 0.62) 0%,
      rgba(16, 34, 63, 0.52) 52%,
      rgba(7, 16, 31, 0.60) 100%
    );

  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.42),
    0 0 52px rgba(22, 139, 255, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(82, 151, 255, 0.08),
    inset 0 0 46px rgba(36, 116, 255, 0.055);

  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}


/* Reflejo difuso dentro del vidrio, sin líneas visibles */
.pb-model-shell::before {
  content: "";

  position: absolute;
  top: -18%;
  left: -24%;
  z-index: 0;

  width: 76%;
  aspect-ratio: 1;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(120, 205, 255, 0.13) 0%,
      rgba(72, 142, 255, 0.055) 40%,
      transparent 72%
    );

  filter: blur(22px);
  pointer-events: none;
}


/* Cristal frontal: esta capa queda visualmente delante del teléfono. */
.pb-model-shell::after {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 3;

  border-radius: inherit;

  background:
    radial-gradient(
      circle at 78% 14%,
      rgba(174, 224, 255, 0.095) 0%,
      transparent 30%
    ),
    linear-gradient(
      118deg,
      rgba(255, 255, 255, 0.13) 0%,
      rgba(188, 226, 255, 0.055) 18%,
      transparent 37%,
      rgba(67, 142, 255, 0.025) 100%
    ),
    rgba(106, 170, 255, 0.018);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.10),
    inset 1px 0 0 rgba(190, 225, 255, 0.045),
    inset 0 0 34px rgba(83, 156, 255, 0.035);

  backdrop-filter: blur(0.45px) saturate(115%) contrast(1.025);
  -webkit-backdrop-filter: blur(0.45px) saturate(115%) contrast(1.025);

  pointer-events: none;
}


/* Texto de lanzamiento dentro de la vitrina. */
.pb-model-label {
  position: absolute;
  top: 24px;
  left: 26px;
  z-index: 5;

  margin: 0;
  padding: 9px 13px;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(164, 216, 255, 0.18);
  border-radius: 999px;
  background: rgba(5, 13, 27, 0.42);

  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.055em;
  text-transform: uppercase;

  pointer-events: none;
}


.pb-model-label::before {
  content: "";

  width: 7px;
  height: 7px;

  flex: 0 0 7px;

  border-radius: 50%;

  background: var(--pb-hero-cyan);

  box-shadow:
    0 0 0 4px rgba(56, 207, 255, 0.10),
    0 0 14px rgba(56, 207, 255, 0.72);
}


/* =========================================================
   BENEFICIOS LATERALES — ESCRITORIO
   ========================================================= */

.pb-benefits-desktop {
  position: absolute;
  top: 50%;
  right: -100px;
  z-index: 6;

  width: 228px;

  display: grid;
  gap: 12px;

  transform: translateY(-50%);
}


.pb-benefit-card {
  position: relative;

  min-height: 74px;
  padding: 12px 14px;

  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;

  color: #ffffff;
  border: 1px solid rgba(156, 205, 255, 0.17);
  border-radius: 16px;
  background:
    linear-gradient(
      145deg,
      rgba(23, 42, 72, 0.78),
      rgba(7, 15, 29, 0.76)
    );

  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);

  backdrop-filter: blur(16px) saturate(145%);
  -webkit-backdrop-filter: blur(16px) saturate(145%);
}


.pb-benefit-card::before {
  content: "";

  position: absolute;
  top: 50%;
  left: -7px;

  width: 7px;
  height: 7px;

  transform: translateY(-50%);

  border-radius: 50%;
  background: var(--pb-hero-cyan);

  box-shadow:
    0 0 0 4px rgba(56, 207, 255, 0.08),
    0 0 16px rgba(56, 207, 255, 0.72);
}


.pb-benefit-card::after {
  content: "";

  position: absolute;
  top: 50%;
  left: -24px;

  width: 18px;
  height: 1px;

  background:
    linear-gradient(
      to right,
      transparent,
      rgba(56, 207, 255, 0.70)
    );
}


.pb-benefit-icon {
  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #a9c8ff;
  border: 1px solid rgba(151, 194, 255, 0.13);
  border-radius: 11px;
  background: rgba(91, 119, 255, 0.08);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}


.pb-benefit-icon svg,
.pb-watermark-item svg {
  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


.pb-benefit-icon svg {
  width: 22px;
  height: 22px;

  filter: drop-shadow(0 0 7px rgba(92, 137, 255, 0.42));
}


.pb-benefit-copy strong,
.pb-benefit-copy span {
  display: block;
}


.pb-benefit-copy strong {
  margin-bottom: 4px;

  font-size: 13px;
  font-weight: 750;
  line-height: 1.2;
}


.pb-benefit-copy span {
  color: rgba(255, 255, 255, 0.62);

  font-size: 11px;
  line-height: 1.3;
}


/* Marcas de agua móviles: dentro de la vitrina y detrás del modelo. */
.pb-benefits-watermark {
  display: none;
}


.pb-watermark-item {
  position: absolute;

  max-width: 82px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;

  color: #a8d7ff;

  font-size: 9px;
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: 0.065em;
  text-align: center;
  text-transform: uppercase;

  opacity: 0.22;
}


.pb-watermark-item svg {
  width: 25px;
  height: 25px;

  stroke-width: 1.6;

  filter: drop-shadow(0 0 8px rgba(75, 159, 255, 0.45));
}


.pb-watermark-originals {
  top: 25%;
  left: 13px;
}


.pb-watermark-shipping {
  top: 27%;
  right: 13px;
}


.pb-watermark-support {
  bottom: 24%;
  left: 13px;
}


.pb-watermark-payments {
  right: 13px;
  bottom: 22%;
}


.pb-hero-model {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 100%;

  display: block;

  background: transparent;
  outline: none;

  opacity: 1;
  transform: translateY(18px) scale(0.97);
  filter: drop-shadow(0 34px 32px rgba(0, 0, 0, 0.48));

  transition:
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);

  touch-action: pan-y;
  --poster-color: transparent;
  --progress-bar-height: 0px;
}


/* Elimina la línea de progreso nativa de model-viewer */
.pb-hero-model::part(default-progress-bar),
.pb-hero-model::part(default-progress-mask) {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  opacity: 0 !important;
}


.pb-model-shell.is-loaded .pb-hero-model {
  opacity: 1;
  transform: translateY(0) scale(1);
}


.pb-model-error {
  position: absolute;
  z-index: 5;

  max-width: 300px;
  margin: 0;
  padding: 14px 18px;

  display: none;

  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(8, 12, 22, 0.82);

  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}


.pb-model-shell.has-error .pb-model-error {
  display: block;
}


.pb-model-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 5;

  margin: 0;
  padding: 8px 13px;

  color: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 999px;
  background: rgba(5, 10, 19, 0.56);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.04em;
  white-space: nowrap;

  opacity: 0;
  transform: translate(-50%, 8px);
  pointer-events: none;

  transition: opacity 0.4s ease 0.7s, transform 0.4s ease 0.7s;
}


.pb-model-shell.is-loaded .pb-model-hint {
  opacity: 1;
  transform: translate(-50%, 0);
}


/* =========================================================
   BARRA INFERIOR
   ========================================================= */

.pb-hero-bottom {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 48px), 1400px);

  margin: 0 auto 28px;
  padding: 0 18px;

  display: block;

  color: rgba(255, 255, 255, 0.76);

  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;

  background: rgba(255, 255, 255, 0.035);

  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}


.pb-hero-ticker {
  width: 100%;

  overflow: hidden;
}


.pb-ticker-track {
  width: 100%;

  display: block;
}


.pb-ticker-set {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}


.pb-ticker-copy {
  display: none;
}


.pb-ticker-item {
  position: relative;

  min-width: 0;
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  padding: 0 14px;

  color: rgba(255, 255, 255, 0.82);

  font-size: 12px;
  font-weight: 650;
  text-align: center;
  white-space: nowrap;
}


.pb-ticker-item:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 16px;
  right: 0;

  width: 1px;
  height: 26px;

  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(255, 255, 255, 0.14),
      transparent
    );
}


.pb-ticker-icon {
  min-width: 19px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  line-height: 1;

  filter: drop-shadow(0 0 8px rgba(74, 152, 255, 0.18));
}


.pb-ticker-text {
  overflow: hidden;
  text-overflow: ellipsis;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1024px) {

  .pb-hero-container {
    width: min(calc(100% - 32px), 100%);
    gap: 38px;
  }

  .pb-hero-content h1 {
    font-size: clamp(46px, 6vw, 66px);
  }

  .pb-hero-device {
    min-height: 500px;
  }

  .pb-model-shell {
    width: min(86%, 450px);
    height: 540px;
  }
}


/* Tablet: tarjetas completas debajo de la vitrina. */
@media (min-width: 768px) and (max-width: 1180px) {

  .pb-hero-device {
    flex-direction: column;
    gap: 14px;
  }

  .pb-benefits-desktop {
    position: relative;
    top: auto;
    right: auto;

    width: min(100%, 450px);

    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;

    transform: none;
  }

  .pb-benefit-card {
    min-height: 68px;
  }

  .pb-benefit-card::before,
  .pb-benefit-card::after {
    content: none;
    display: none;
  }
}


/* Escritorios medianos: espacio para las tarjetas sin cubrir el teléfono. */
@media (min-width: 1181px) and (max-width: 1500px) {

  .pb-model-shell {
    transform: translateX(-68px);
  }

  .pb-benefits-desktop {
    right: -6px;
    width: 210px;
  }
}


/* =========================================================
   MÓVIL
   ========================================================= */

@media (max-width: 767px) {

  #pb-home-hero {
    min-height: auto;
  }

  .pb-hero-background::before {
    top: 42%;
    right: -30%;

    width: 520px;
  }

  .pb-hero-container {
    width: calc(100% - 24px);
    min-height: auto;

    padding: 58px 0 32px;

    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pb-hero-content {
    align-items: center;

    max-width: none;

    text-align: center;
  }

  .pb-eyebrow {
    font-size: 11px;
  }

  .pb-hero-content h1 {
    margin: 20px 0 18px;

    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.01;
  }

  .pb-hero-content p {
    margin-bottom: 28px;

    font-size: 16px;
    line-height: 1.55;
  }

  .pb-buttons {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .pb-buttons a {
    width: 100%;
    min-width: 0;

    padding: 0 12px;
  }

  .pb-hero-device {
    min-height: 430px;
  }

  .pb-model-shell {
    width: min(100%, 390px);
    height: 460px;

    border-radius: 32px;
  }

  .pb-model-hint {
    bottom: 12px;
  }

  .pb-model-label {
    top: 18px;
    left: 18px;

    padding: 8px 11px;

    font-size: 10px;
  }

  .pb-benefits-desktop {
    display: none;
  }

  .pb-benefits-watermark {
    position: absolute;
    inset: 0;
    z-index: 1;

    display: block;

    pointer-events: none;
  }

  .pb-hero-bottom {
    width: calc(100% - 24px);

    margin-bottom: 18px;
    padding: 0;

    overflow: hidden;
  }

  .pb-hero-ticker {
    overflow: hidden;
  }

  .pb-ticker-track {
    width: max-content;

    display: flex;

    will-change: transform;

    animation: pb-ticker-mobile 25s linear infinite;
  }

  .pb-ticker-set,
  .pb-ticker-copy {
    width: max-content;

    display: flex;
    flex: 0 0 auto;
  }

  .pb-ticker-item {
    min-height: 54px;

    flex: 0 0 auto;

    padding: 0 22px;

    font-size: 12px;
  }

  .pb-ticker-text {
    overflow: visible;
    text-overflow: clip;
  }
}


@keyframes pb-ticker-mobile {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}


/* =========================================================
   MÓVILES PEQUEÑOS
   ========================================================= */

@media (max-width: 390px) {

  .pb-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pb-buttons a {
    width: 100%;

    padding: 0 9px;

    font-size: 14px;
  }

  .pb-hero-device {
    min-height: 390px;
  }

  .pb-model-shell {
    width: 100%;
    height: 410px;

    border-radius: 28px;
  }

  .pb-watermark-item {
    max-width: 72px;

    font-size: 8px;

    opacity: 0.19;
  }

  .pb-watermark-item svg {
    width: 22px;
    height: 22px;
  }
}


/* Respeta la preferencia del usuario de reducir movimiento */
@media (prefers-reduced-motion: reduce) {
  .pb-hero-model,
  .pb-model-hint,
  .pb-ticker-track {
    animation: none !important;
    transition: none !important;
  }

  .pb-ticker-copy {
    display: none !important;
  }

  .pb-hero-ticker {
    overflow-x: auto;
  }
}







#pb-xiaomi-17t-model::part(default-poster) {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}