/** Shopify CDN: Minification failed

Line 29:0 All "@import" rules must come first

**/
/* ============================================================
   SKYMOTION — prod-landing.css
   Archivo global de estilos para landing pages de productos
   Se carga UNA sola vez desde theme.liquid
   Versión: 1.0 | Skymotion.com.co
   ============================================================ */
 
/* ─── VARIABLES DE MARCA SKYMOTION ─── */
:root {
  --sky-dark:       #0A1628;   /* Azul oscuro principal */
  --sky-blue:       #0057E7;   /* Azul eléctrico acento */
  --sky-blue-light: #1A8AFF;   /* Azul claro hover */
  --sky-white:      #FFFFFF;
  --sky-gray-bg:    #F4F6FA;   /* Fondo sección alterna */
  --sky-gray-text:  #6B7A99;   /* Texto secundario */
  --sky-border:     #DDE3EF;
  --sky-text:       #111827;   /* Texto principal */
  --sky-radius:     12px;
  --sky-font-head:  'Barlow Condensed', sans-serif;
  --sky-font-body:  'DM Sans', sans-serif;
}
 
/* ─── FUENTES ─── */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=DM+Sans:wght@400;500;600&display=swap');
 
/* ─── RESET BASE ─── */
.prod-landing *,
.prod-landing *::before,
.prod-landing *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
 
.prod-landing {
  width: 100%;
  max-width: 100%;
  color: var(--sky-text);
  font-family: var(--sky-font-body);
  overflow-x: hidden;
}
 
/* ============================================================
   SECCIONES BASE
   ============================================================ */
.prod-section {
  padding: 64px 24px;
  width: 100%;
}
 
.prod-section--dark {
  background: var(--sky-dark);
  color: var(--sky-white);
}
 
.prod-section--gray {
  background: var(--sky-gray-bg);
}
 
.prod-section--white {
  background: var(--sky-white);
}
 
.prod-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
 
.prod-section-title {
  font-family: var(--sky-font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
}
 
.prod-section-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--sky-gray-text);
  margin-bottom: 40px;
  max-width: 600px;
}
 
.prod-section--dark .prod-section-subtitle {
  color: #8BA3CC;
}
 
.prod-section-header {
  text-align: center;
  margin-bottom: 48px;
}
 
.prod-accent {
  color: var(--sky-blue);
}
 
/* ============================================================
   HERO
   ============================================================ */
.prod-hero {
  position: relative;
  width: 100%;
  background: var(--sky-dark);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
}
 
.prod-hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
 
.prod-hero__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
 
.prod-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10, 22, 40, 0.92) 0%,
    rgba(10, 22, 40, 0.55) 60%,
    transparent 100%
  );
  z-index: 1;
}
 
.prod-hero__content {
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
 
.prod-hero__tag {
  display: inline-block;
  background: var(--sky-blue);
  color: #fff;
  font-family: var(--sky-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
 
.prod-hero__title {
  font-family: var(--sky-font-head);
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 800;
  color: var(--sky-white);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
 
.prod-hero__subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: #A8BDD8;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.5;
}
 
.prod-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-blue);
  color: #fff;
  font-family: var(--sky-font-head);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: var(--sky-radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
 
.prod-hero__cta:hover {
  background: var(--sky-blue-light);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
 
.prod-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
 
.prod-hero__stat {
  display: flex;
  flex-direction: column;
}
 
.prod-hero__stat-value {
  font-family: var(--sky-font-head);
  font-size: 32px;
  font-weight: 800;
  color: var(--sky-white);
  line-height: 1;
}
 
.prod-hero__stat-label {
  font-size: 12px;
  color: #8BA3CC;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
 
/* ============================================================
   STATS / NÚMEROS GRANDES
   ============================================================ */
.prod-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2px;
  background: var(--sky-border);
  border-radius: var(--sky-radius);
  overflow: hidden;
}
 
.prod-stat-item {
  background: var(--sky-white);
  padding: 36px 24px;
  text-align: center;
}
 
.prod-section--dark .prod-stat-item {
  background: rgba(255,255,255,0.04);
}
 
.prod-stat-item__value {
  font-family: var(--sky-font-head);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  color: var(--sky-blue);
  line-height: 1;
  display: block;
}
 
.prod-stat-item__label {
  font-size: 13px;
  color: var(--sky-gray-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 8px;
  display: block;
}
 
.prod-section--dark .prod-stat-item__label {
  color: #8BA3CC;
}
 
/* ============================================================
   GRID DE CARACTERÍSTICAS
   ============================================================ */
.prod-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
 
.prod-feature-card {
  background: var(--sky-white);
  border: 1px solid var(--sky-border);
  border-radius: var(--sky-radius);
  padding: 32px 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}
 
.prod-feature-card:hover {
  box-shadow: 0 8px 32px rgba(0, 87, 231, 0.10);
  transform: translateY(-3px);
}
 
.prod-section--dark .prod-feature-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
 
.prod-feature-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 87, 231, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
 
.prod-feature-card__title {
  font-family: var(--sky-font-head);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--sky-text);
}
 
.prod-section--dark .prod-feature-card__title {
  color: var(--sky-white);
}
 
.prod-feature-card__text {
  font-size: 14px;
  color: var(--sky-gray-text);
  line-height: 1.6;
}
 
.prod-section--dark .prod-feature-card__text {
  color: #8BA3CC;
}
 
/* ============================================================
   MEDIA — imagen + texto lado a lado
   ============================================================ */
.prod-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
 
.prod-media--reverse {
  direction: rtl;
}
 
.prod-media--reverse > * {
  direction: ltr;
}
 
.prod-media__img {
  width: 100%;
  border-radius: var(--sky-radius);
  display: block;
  object-fit: cover;
}
 
.prod-media__video {
  width: 100%;
  border-radius: var(--sky-radius);
  display: block;
}
 
.prod-media__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
 
.prod-media__tag {
  display: inline-block;
  font-family: var(--sky-font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sky-blue);
  border: 1.5px solid var(--sky-blue);
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
}
 
.prod-media__title {
  font-family: var(--sky-font-head);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--sky-text);
}
 
.prod-section--dark .prod-media__title {
  color: var(--sky-white);
}
 
.prod-media__text {
  font-size: 15px;
  color: var(--sky-gray-text);
  line-height: 1.7;
}
 
.prod-section--dark .prod-media__text {
  color: #8BA3CC;
}
 
.prod-media__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.prod-media__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--sky-gray-text);
}
 
.prod-section--dark .prod-media__list li {
  color: #8BA3CC;
}
 
.prod-media__list li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: var(--sky-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M3 8l4 4 6-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
}
 
/* ============================================================
   ACORDEÓN DE ESPECIFICACIONES
   ============================================================ */
.prod-sticky-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sky-dark);
  border-bottom: 2px solid var(--sky-blue);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
 
.prod-sticky-nav::-webkit-scrollbar { display: none; }
 
.prod-sticky-nav__inner {
  display: flex;
  gap: 0;
  min-width: max-content;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
 
.prod-sticky-nav__btn {
  font-family: var(--sky-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #8BA3CC;
  padding: 16px 20px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
 
.prod-sticky-nav__btn:hover,
.prod-sticky-nav__btn.active {
  color: var(--sky-white);
  border-bottom-color: var(--sky-blue);
}
 
/* Tabs del acordeón */
.prod-accordion {
  width: 100%;
}
 
.prod-tab-panels {
  display: none;
}
 
.prod-tab-panel {
  display: none;
}
 
.prod-tab-panel.active {
  display: block;
}
 
/* Tabla de specs */
.prod-specs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
 
.prod-specs-table tr {
  border-bottom: 1px solid var(--sky-border);
}
 
.prod-section--dark .prod-specs-table tr {
  border-bottom-color: rgba(255,255,255,0.08);
}
 
.prod-specs-table td {
  padding: 14px 8px;
  vertical-align: top;
}
 
.prod-specs-table td:first-child {
  color: var(--sky-gray-text);
  width: 40%;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
 
.prod-section--dark .prod-specs-table td:first-child {
  color: #8BA3CC;
}
 
.prod-specs-table td:last-child {
  color: var(--sky-text);
  font-weight: 500;
}
 
.prod-section--dark .prod-specs-table td:last-child {
  color: var(--sky-white);
}
 
/* ============================================================
   COMPARATIVA
   ============================================================ */
.prod-compare {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
 
.prod-compare-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 14px;
}
 
.prod-compare-table th {
  background: var(--sky-dark);
  color: var(--sky-white);
  font-family: var(--sky-font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: center;
  letter-spacing: 1px;
}
 
.prod-compare-table th:first-child {
  text-align: left;
}
 
.prod-compare-table th.highlight {
  background: var(--sky-blue);
}
 
.prod-compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--sky-border);
  text-align: center;
  color: var(--sky-gray-text);
}
 
.prod-compare-table td:first-child {
  text-align: left;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--sky-text);
}
 
.prod-compare-table td.highlight {
  background: rgba(0, 87, 231, 0.06);
  font-weight: 600;
  color: var(--sky-blue);
}
 
.prod-compare-table tr:hover td {
  background: var(--sky-gray-bg);
}
 
.prod-compare-table tr:hover td.highlight {
  background: rgba(0, 87, 231, 0.10);
}
 
.prod-check {
  color: var(--sky-blue);
  font-size: 18px;
  font-weight: 700;
}
 
.prod-cross {
  color: #CBD5E0;
  font-size: 18px;
}
 
/* ============================================================
   COMBOS / BUNDLE
   ============================================================ */
.prod-bundle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
 
.prod-bundle-item {
  background: var(--sky-white);
  border: 1px solid var(--sky-border);
  border-radius: var(--sky-radius);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow 0.2s;
}
 
.prod-bundle-item:hover {
  box-shadow: 0 6px 24px rgba(0,87,231,0.10);
}
 
.prod-section--dark .prod-bundle-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
 
.prod-bundle-item__img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}
 
.prod-bundle-item__name {
  font-family: var(--sky-font-head);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sky-text);
  margin-bottom: 6px;
}
 
.prod-section--dark .prod-bundle-item__name {
  color: var(--sky-white);
}
 
.prod-bundle-item__price {
  font-size: 13px;
  color: var(--sky-gray-text);
}
 
.prod-bundle-item__price s {
  color: #CBD5E0;
}
 
/* Caja de ahorro */
.prod-savings {
  background: linear-gradient(135deg, var(--sky-dark) 0%, #0D2251 100%);
  border: 2px solid var(--sky-blue);
  border-radius: var(--sky-radius);
  padding: 40px 32px;
  text-align: center;
  margin-top: 40px;
}
 
.prod-savings__title {
  font-family: var(--sky-font-head);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 16px;
}
 
.prod-savings__amount {
  font-family: var(--sky-font-head);
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 800;
  color: var(--sky-white);
  line-height: 1;
  margin-bottom: 8px;
}
 
.prod-savings__sub {
  font-size: 14px;
  color: #8BA3CC;
}
 
/* ============================================================
   FAQ
   ============================================================ */
.prod-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
 
.prod-faq-item {
  border: 1px solid var(--sky-border);
  border-radius: var(--sky-radius);
  overflow: hidden;
  background: var(--sky-white);
}
 
.prod-section--dark .prod-faq-item {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
 
.prod-faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  font-family: var(--sky-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--sky-text);
  transition: color 0.2s;
}
 
.prod-section--dark .prod-faq-item__q {
  color: var(--sky-white);
}
 
.prod-faq-item__q:hover {
  color: var(--sky-blue);
}
 
.prod-faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--sky-gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--sky-blue);
  transition: transform 0.3s, background 0.2s;
  font-style: normal;
}
 
.prod-faq-item.open .prod-faq-item__icon {
  transform: rotate(45deg);
  background: var(--sky-blue);
  color: white;
}
 
.prod-faq-item__a {
  display: none;
  padding: 0 22px 18px;
  font-size: 14px;
  color: var(--sky-gray-text);
  line-height: 1.7;
}
 
.prod-section--dark .prod-faq-item__a {
  color: #8BA3CC;
}
 
.prod-faq-item.open .prod-faq-item__a {
  display: block;
}
 
/* ============================================================
   REVIEWS
   ============================================================ */
.prod-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
 
.prod-review-card {
  background: var(--sky-white);
  border: 1px solid var(--sky-border);
  border-radius: var(--sky-radius);
  padding: 28px 24px;
}
 
.prod-section--dark .prod-review-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}
 
.prod-review-card__stars {
  color: #F59E0B;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
 
.prod-review-card__text {
  font-size: 14px;
  color: var(--sky-gray-text);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
 
.prod-section--dark .prod-review-card__text {
  color: #8BA3CC;
}
 
.prod-review-card__author {
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
 
.prod-section--dark .prod-review-card__author {
  color: var(--sky-white);
}
 
.prod-review-card__role {
  font-size: 12px;
  color: var(--sky-gray-text);
  margin-top: 2px;
}
 
/* ============================================================
   CTA FINAL
   ============================================================ */
.prod-cta-section {
  background: linear-gradient(135deg, var(--sky-dark) 0%, #0D2251 100%);
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
 
.prod-cta-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0,87,231,0.18) 0%, transparent 70%);
  pointer-events: none;
}
 
.prod-cta-section__title {
  font-family: var(--sky-font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: var(--sky-white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
 
.prod-cta-section__sub {
  font-size: 16px;
  color: #8BA3CC;
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
 
.prod-cta-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sky-blue);
  color: #fff;
  font-family: var(--sky-font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 17px 40px;
  border-radius: var(--sky-radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  border: none;
  cursor: pointer;
}
 
.prod-cta-section__btn:hover {
  background: var(--sky-blue-light);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}
 
.prod-cta-section__badges {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
 
.prod-cta-section__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #8BA3CC;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--sky-font-head);
  font-weight: 600;
}
 
.prod-cta-section__badge span {
  font-size: 18px;
}
 
/* ============================================================
   VIDEO FULL WIDTH
   ============================================================ */
.prod-video-full {
  width: 100%;
  position: relative;
  background: #000;
}
 
.prod-video-full video,
.prod-video-full iframe {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
 
/* ============================================================
   LAZY VIDEO (performance)
   ============================================================ */
video[data-src] {
  background: var(--sky-dark);
}
 
/* ============================================================
   RESPONSIVE — MÓVIL
   ============================================================ */
@media (max-width: 900px) {
  .prod-section {
    padding: 48px 16px;
  }
 
  .prod-media {
    grid-template-columns: 1fr;
    gap: 32px;
  }
 
  .prod-media--reverse {
    direction: ltr;
  }
 
  .prod-hero__content {
    padding: 60px 16px;
  }
 
  .prod-hero__stats {
    gap: 20px;
  }
 
  .prod-sticky-nav {
    top: 60px; /* Ajuste para header Warehouse en móvil */
  }
 
  .prod-features {
    grid-template-columns: 1fr;
  }
 
  .prod-reviews {
    grid-template-columns: 1fr;
  }
 
  .prod-bundle {
    grid-template-columns: repeat(2, 1fr);
  }
}
 
@media (max-width: 480px) {
  .prod-stats {
    grid-template-columns: repeat(2, 1fr);
  }
 
  .prod-bundle {
    grid-template-columns: 1fr 1fr;
  }
 
  .prod-hero__cta {
    width: 100%;
    justify-content: center;
  }
}