/* =========================================================
   TECMOVILES JC
   STYLES.CSS — VERSIÓN LIMPIA
========================================================= */

:root {
  --brand: #4aa3a9;
  --brand-hover: #3d9298;

  --black: #1d1d1f;
  --black-soft: #424245;

  --gray: #6e6e73;
  --gray-2: #86868b;

  --line: #d2d2d7;
  --line-soft: #e5e5e7;

  --soft: #f5f5f7;
  --white: #ffffff;

  --radius: 26px;
}


/* =========================================================
   RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "SF Pro Display",
    "Segoe UI",
    Arial,
    sans-serif;

  color: var(--black);
  background: var(--white);

  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hidden {
  display: none !important;
}


/* =========================================================
   GENERALES
========================================================= */

.section {
  padding: 110px 0;
}

.soft {
  background: var(--soft);
}

.black {
  background: #000;
  color: #fff;
}

.eyebrow {
  display: inline-block;

  color: var(--gray);

  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.eyebrow.light {
  color: #a1a1a6;
}

.text-link {
  color: var(--brand);
  font-weight: 600;
}

.text-link:hover {
  color: var(--brand-hover);
}


/* =========================================================
   BOTONES
========================================================= */

.btn-primary,
.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;

  padding: 11px 20px;

  border: 1px solid var(--brand);
  border-radius: 999px;

  background: var(--brand);

  color: #fff !important;
  -webkit-text-fill-color: #fff;

  font-size: 14px;
  font-weight: 650;

  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn-primary:link,
.btn-primary:visited,
.btn-primary:hover,
.btn-primary:active,
.header-cta:link,
.header-cta:visited,
.header-cta:hover,
.header-cta:active {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.btn-primary:hover,
.header-cta:hover {
  background: var(--brand-hover);
  border-color: var(--brand-hover);
  transform: translateY(-1px);
}

.whitebtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;
  padding: 11px 21px;

  border-radius: 999px;

  background: #fff;
  color: #111 !important;

  font-size: 14px;
  font-weight: 650;
}

.whitebtn:hover {
  background: #f5f5f7;
}


/* =========================================================
   TOP BAR
========================================================= */

.topbar {
  min-height: 34px;

  display: grid;
  place-items: center;

  padding: 7px 20px;

  background: #111;
  color: #fff;

  text-align: center;

  font-size: 12px;
  letter-spacing: 0.02em;
}


/* =========================================================
   HEADER DESKTOP
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 72px;

  background: rgba(255, 255, 255, 0.9);

  border-bottom: 1px solid rgba(0, 0, 0, 0.07);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav {
  height: 100%;

  display: flex;
  align-items: center;

  gap: 30px;
}

.brand {
  flex: 0 0 auto;
}

.logo {
  display: block;

  width: 132px;
  height: 52px;

  object-fit: contain;
}

.desktop-nav {
  margin: auto;

  display: flex;
  align-items: center;

  gap: 27px;
}

.desktop-nav a {
  padding: 8px 0;

  background: transparent !important;

  color: #444 !important;

  font-size: 13px;
  font-weight: 500;

  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: #000 !important;
}

.header-cta {
  flex: 0 0 auto;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.mobile-menu-button {
  display: none;

  width: 44px;
  height: 44px;

  padding: 0;

  border: 0;

  background: transparent;

  align-items: center;
  justify-content: center;
  flex-direction: column;

  gap: 5px;

  cursor: pointer;
}

.mobile-menu-button span {
  display: block;

  width: 21px;
  height: 2px;

  border-radius: 10px;

  background: var(--black);

  transition:
    transform 0.25s ease,
    opacity 0.2s ease;
}

.mobile-menu-button.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-button.open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-button.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   MOBILE MENU
========================================================= */

.mobile-menu {
  pointer-events: none;

  position: fixed;
  inset: 0;

  z-index: 2000;

  visibility: hidden;
}

.mobile-menu.open {
  pointer-events: auto;
  visibility: visible;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.32);

  opacity: 0;

  transition: opacity 0.25s ease;
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;

  width: min(88vw, 390px);
  height: 100dvh;

  display: flex;
  flex-direction: column;

  padding: 24px 22px 28px;

  background: #fafafc;

  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.14);

  overflow-y: auto;

  transform: translateX(105%);

  transition: transform 0.3s ease;
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding-bottom: 18px;
}

.mobile-menu-head strong {
  font-size: 14px;
  letter-spacing: 0.08em;
}

.mobile-menu-close {
  width: 42px;
  height: 42px;

  border: 0;
  border-radius: 50%;

  background: #e9e9ed;

  font-size: 25px;

  cursor: pointer;
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
}

.mobile-menu-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 2px;

  border-bottom: 1px solid var(--line-soft);

  background: transparent !important;

  color: var(--black) !important;

  font-size: 17px;
  font-weight: 600;
}

.mobile-menu-links a span {
  color: var(--gray-2);
  font-size: 23px;
}

.mobile-whatsapp {
  margin-top: 24px;

  padding: 14px;

  border-radius: 999px;

  background: var(--brand);

  color: #fff !important;

  text-align: center;
  font-weight: 700;
}

.mobile-menu-panel > small {
  margin-top: 13px;

  color: var(--gray-2);

  text-align: center;
}


/* =========================================================
   HERO
========================================================= */

.hero {
  overflow: hidden;

  background: var(--soft);
}

.heroGrid {
  min-height: 650px;

  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  align-items: center;
}

.heroCopy {
  position: relative;
  z-index: 2;

  padding: 70px 0;
}

.hero h1,
.section h2,
.closing h2 {
  margin: 18px 0 22px;

  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero p,
.intro p {
  max-width: 580px;

  color: var(--gray);

  font-size: 20px;
  line-height: 1.45;
}

.actions {
  display: flex;
  align-items: center;

  gap: 24px;

  margin-top: 32px;
}

.heroVisual {
  height: 650px;

  overflow: hidden;
}

.heroVisual img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* =========================================================
   FEATURE BAND
========================================================= */

.featureband {
  background: #fff;

  border-bottom: 1px solid var(--line-soft);
}

.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  padding: 22px 0;
}

.three > div {
  padding: 0 28px;

  border-right: 1px solid #ddd;
}

.three > div:last-child {
  border-right: 0;
}

.three b,
.three span {
  display: block;
}

.three span {
  margin-top: 4px;

  color: #777;

  font-size: 13px;
}


/* =========================================================
   TIENDA + TIKTOK
========================================================= */

.store-live-band {
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      rgba(12, 7, 5, 0.93),
      rgba(28, 16, 11, 0.91)
    ),
    repeating-linear-gradient(
      90deg,
      #2a1710 0,
      #2a1710 8px,
      #1d100c 8px,
      #1d100c 12px,
      #382016 12px,
      #382016 20px
    );

  color: #fff;
}

.store-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.store-live-item {
  min-width: 0;
  min-height: 180px;

  padding: 34px 38px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;

  align-items: center;

  gap: 30px;
}

.store-live-item + .store-live-item {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.store-live-kicker {
  display: block;

  margin-bottom: 9px;

  color: rgba(255, 255, 255, 0.7);

  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.store-live-item h2 {
  margin: 0 0 7px;

  color: #fff;

  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.store-live-item p {
  margin: 0;

  color: rgba(255, 255, 255, 0.62);

  font-size: 13px;
  line-height: 1.55;
}

.store-live-btn {
  min-width: 165px;
  min-height: 54px;

  padding: 0 21px;

  display: inline-flex;
  align-items: center;
  justify-content: space-between;

  gap: 22px;

  border-radius: 12px;

  font-size: 14px;
  font-weight: 750;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.store-live-btn:hover {
  transform: translateY(-2px);
}

.store-live-btn.light,
.store-live-btn.tiktok-white {
  background: #fff !important;

  color: var(--black) !important;
  -webkit-text-fill-color: var(--black);
}

.store-live-btn.light:hover,
.store-live-btn.tiktok-white:hover {
  background: #f2f2f2 !important;
}


/* =========================================================
   INTRO
========================================================= */

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;

  gap: 70px;

  align-items: center;
}

.intro h2 {
  margin: 15px 0 22px;

  font-size: 64px;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.intro-showcase {
  min-width: 0;
}

.intro-image-wrap {
  overflow: hidden;

  width: 100%;

  border-radius: var(--radius);

  background: var(--soft);
}

.intro-image-wrap img {
  display: block;

  width: 100%;
  height: auto;

  transition:
    opacity 0.28s ease,
    transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.intro-image-wrap.is-changing img {
  opacity: 0;

  transform: scale(0.985);
}

.appearance-switch {
  width: fit-content;

  margin: 22px auto 0;
  padding: 5px;

  display: flex;
  align-items: center;

  gap: 4px;

  border: 1px solid var(--line-soft);
  border-radius: 999px;

  background: var(--soft);
}

.appearance-option {
  border: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 10px 16px;

  border-radius: 999px;

  background: transparent;

  color: var(--gray);

  font-size: 13px;
  font-weight: 600;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.appearance-option.active {
  background: #fff;

  color: var(--black);

  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.04);
}

.appearance-dot {
  width: 10px;
  height: 10px;

  flex: 0 0 auto;

  border-radius: 50%;
}

.light-dot {
  background: #fff;

  border: 1px solid #aaa;
}

.dark-dot {
  background: var(--black);
}


/* =========================================================
   PROMO OSCURA
========================================================= */

.darkPromo {
  overflow: hidden;

  background: #000;

  color: #fff;
}

.promo {
  min-height: 620px;

  display: grid;
  grid-template-columns: 0.75fr 1.25fr;

  align-items: center;
}

.promo h2 {
  margin: 15px 0;

  font-size: 68px;
  letter-spacing: -0.05em;
}

.promo p {
  max-width: 440px;

  color: #aaa;

  font-size: 19px;
  line-height: 1.5;
}

.promo strong {
  display: block;

  margin: 25px 0;

  font-size: 22px;
}

.promo img {
  display: block;

  width: 100%;
  height: 620px;

  object-fit: cover;
}


/* =========================================================
   BENEFICIOS
========================================================= */

.benefits {
  margin-top: 55px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 1px;

  overflow: hidden;

  border: 1px solid #ddd;
  border-radius: 24px;

  background: #ddd;
}

.benefits article {
  min-height: 260px;

  padding: 38px;

  background: #fff;
}

.benefits i {
  color: var(--gray-2);

  font-style: normal;
}

.benefits h3 {
  margin-top: 55px;

  font-size: 22px;
}

.benefits p {
  color: var(--gray);

  line-height: 1.5;
}


/* =========================================================
   MARKETPLACES
========================================================= */

.marketplaces-section {
  padding: 100px 0;

  background: #fff;
}

.market-head {
  max-width: 760px;

  margin-bottom: 40px;
}

.market-head h2 {
  margin: 12px 0 18px;

  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.market-head p {
  color: var(--gray);

  font-size: 18px;
  line-height: 1.55;
}

.market-premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 18px;
}

.market-premium-card {
  min-height: 350px;

  padding: 34px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  border: 1px solid var(--line-soft);
  border-radius: 30px;

  background: var(--soft);
}

.market-brand {
  margin-bottom: 34px;

  display: flex;
  align-items: center;

  gap: 12px;
}

.market-brand strong {
  font-size: 27px;
  letter-spacing: -0.04em;
}

.market-icon {
  width: 50px;
  height: 50px;

  display: grid;
  place-items: center;

  border-radius: 50%;
}

.mercado-icon {
  background: #ffe600;

  color: #222;

  font-size: 18px;
  font-weight: 800;
}

.falabella-icon {
  background: #8cc63f;

  color: #fff;

  font: bold 37px Arial;
}

.market-badge {
  color: var(--gray-2);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.market-premium-card h3 {
  margin: 10px 0;

  font-size: 27px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.market-premium-card p {
  color: var(--gray);

  line-height: 1.55;
}

.market-link {
  margin-top: auto;

  color: var(--brand);

  font-weight: 700;
}

.market-link:hover {
  color: var(--brand-hover);
}

.market-legal {
  margin-top: 18px;

  color: var(--gray-2);

  font-size: 11px;
}


/* =========================================================
   GOOGLE REVIEWS
========================================================= */

.google-reviews {
  overflow: hidden;

  padding: 100px 0;

  background: var(--soft);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(310px, 0.65fr);

  align-items: end;

  gap: 42px;
}

.reviews-heading h2 {
  margin: 12px 0;

  font-size: clamp(42px, 5.5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.reviews-heading p {
  color: var(--gray);

  font-size: 18px;
}

.google-score {
  padding: 22px 24px;

  display: grid;
  grid-template-columns: 48px 1fr 24px;

  align-items: center;

  gap: 16px;

  border: 1px solid var(--line-soft);
  border-radius: 26px;

  background: #fff;

  color: var(--black);

  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.05);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.google-score:hover {
  transform: translateY(-2px);

  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.google-logo {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f5f7fa;

  color: #4285f4;

  font: bold 27px Arial;
}

.score-copy {
  display: grid;
  grid-template-columns: auto 1fr;

  align-items: center;

  column-gap: 10px;
}

.score-copy strong {
  font-size: 29px;
  line-height: 1;
}

.score-copy .review-stars {
  color: #fbbc04;

  font-size: 17px;
  letter-spacing: 1px;
}

.score-copy small {
  grid-column: 1 / -1;

  margin-top: 6px;

  color: #777;

  font-size: 13px;
}

.score-arrow {
  color: #555;

  font-size: 20px;
}

.reviews-window {
  overflow: hidden;

  margin-top: 44px;

  padding: 8px 0 25px;
}

.reviews-track {
  width: max-content;

  display: flex;

  gap: 18px;

  animation: reviews-marquee 30s linear infinite alternate;
}

.reviews-track:hover {
  animation-play-state: paused;
}

.review-card {
  width: 350px;
  min-height: 265px;

  padding: 25px;

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 28px;

  background: #fff;

  color: var(--black);

  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.045);
}

.review-top {
  display: grid;
  grid-template-columns: auto 1fr auto;

  align-items: center;

  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #eef1f5;

  font-size: 18px;
  font-weight: 800;
}

.review-top strong {
  display: block;

  font-size: 15px;
}

.review-top small {
  display: block;

  margin-top: 3px;

  color: var(--gray-2);

  font-size: 12px;
}

.review-google {
  color: #4285f4;

  font: bold 22px Arial;
}

.review-stars {
  margin: 17px 0 5px;

  color: #fbbc04;

  font-size: 18px;
  letter-spacing: 2px;
}

.review-card p {
  margin: 12px 0 22px;

  color: var(--black-soft);

  font-size: 17px;
  line-height: 1.55;
}

.review-source {
  margin-top: auto;

  color: var(--brand);

  font-size: 13px;
  font-weight: 700;
}

.review-actions {
  margin-top: 30px;

  display: flex;
}

.review-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 22px;

  border-radius: 999px;

  background: var(--black);

  color: #fff !important;

  font-size: 15px;
  font-weight: 700;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.review-main:hover {
  background: #000;

  transform: translateY(-2px);
}

@keyframes reviews-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-130px);
  }
}


/* =========================================================
   PRODUCTOS
========================================================= */

#productos {
  padding: 90px 0 105px;
}

.head,
.splitText {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  align-items: end;

  gap: 60px;
}

.head h2,
.splitText h2,
.faq h2 {
  margin: 15px 0;

  font-size: 60px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.head p,
.splitText p {
  color: var(--gray);

  line-height: 1.6;
}

.stock-update {
  margin: 18px 0 30px;

  color: var(--gray);

  font-size: 14px;
}

.stock-update b {
  color: var(--black);
}


/* =========================================================
   TABS NUEVO / SEMINUEVO
========================================================= */

.tabs {
  width: fit-content;

  margin: 0 0 28px;
  padding: 4px;

  display: flex;

  gap: 4px;

  border-radius: 999px;

  background: #e8e8ed;
}

.tabs button {
  padding: 10px 20px;

  border: 0;
  border-radius: 999px;

  background: transparent;

  color: #515154;

  font-size: 14px;
  font-weight: 650;

  cursor: pointer;

  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.tabs button.active {
  background: var(--brand);

  color: #fff;

  box-shadow: 0 4px 14px rgba(74, 163, 169, 0.2);
}


/* =========================================================
   CATÁLOGO
========================================================= */

.catalog {
  display: grid;

  gap: 12px;
}

.brand-block,
.model-card {
  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, 0.055);
  border-radius: 24px;

  background: #fff;
}

.brand-block > summary,
.model-card > summary {
  list-style: none;

  display: flex;
  align-items: center;

  padding: 24px 30px;

  cursor: pointer;
}

.brand-block > summary {
  min-height: 105px;
}

.brand-block > summary::-webkit-details-marker,
.model-card > summary::-webkit-details-marker {
  display: none;
}

.brand-block h3 {
  margin: 4px 0;

  font-size: 28px;
}

.brand-block p {
  margin: 0;

  color: var(--gray-2);
}

.brand-kicker,
.meta {
  color: var(--gray-2);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.chevron {
  margin-left: auto;

  font-size: 26px;
  font-weight: 300;

  transition: transform 0.25s ease;
}

details[open] > summary > .chevron {
  transform: rotate(45deg);
}

.model-list {
  padding: 0 14px 14px;
}

.model-card {
  margin-top: 10px;

  background: var(--soft);
}

.model-card > summary {
  padding: 18px;
}

.model-media {
  width: 86px;
  height: 86px;

  margin-right: 20px;

  display: grid;
  place-items: center;

  flex: 0 0 auto;

  border-radius: 16px;

  background: #fff;
}

.model-media img {
  max-width: 78%;
  max-height: 78%;

  object-fit: contain;
}

.model-copy {
  min-width: 0;
}

.model-copy h3 {
  margin: 5px 0;

  font-size: 21px;
}

.model-copy p {
  margin: 0;

  color: var(--gray);

  font-size: 14px;
}

.variants {
  padding: 0 18px 18px;
}

.variant {
  margin-top: 8px;
  padding: 18px;

  display: flex;
  align-items: center;

  gap: 20px;

  border-radius: 16px;

  background: #fff;
}

.variant-main {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  flex: 1;

  gap: 20px;
}

.variant-main span {
  display: block;

  margin-top: 5px;

  color: var(--gray-2);

  font-size: 13px;
}

.variant-price {
  flex: 0 0 auto;

  text-align: right;
}

.variant-price s {
  display: block;

  color: #999;

  font-size: 12px;
}

.variant-price strong {
  font-size: 19px;
}

.variant-price em {
  margin-left: 6px;

  color: #0a7d38;

  font-size: 11px;
  font-style: normal;
}

.variant-cta {
  flex: 0 0 auto;

  padding: 10px 15px;

  border-radius: 999px;

  background: var(--brand);

  color: #fff !important;

  font-size: 12px;
  font-weight: 650;

  white-space: nowrap;

  transition: background 0.2s ease;
}

.variant-cta:hover {
  background: var(--brand-hover);
}


/* =========================================================
   APPLE / IPHONE
========================================================= */

.apple-launches {
  background: #000;

  color: #fff;
}

.apple-launches h2 {
  margin: 12px 0;

  font-size: clamp(42px, 6vw, 72px);
  letter-spacing: -0.05em;
}

.apple-intro {
  max-width: 760px;

  color: #a1a1a6;

  font-size: 18px;
  line-height: 1.6;
}

.apple-grid {
  margin-top: 42px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 16px;
}

.apple-grid article {
  min-height: 270px;

  padding: 30px;

  display: flex;
  flex-direction: column;

  border: 1px solid #2d2d2f;
  border-radius: 28px;

  background: #111113;
}

.apple-grid small {
  color: var(--gray-2);

  font-weight: 800;
}

.apple-grid h3 {
  margin: 14px 0;

  font-size: 30px;
}

.apple-grid p,
.seo-copy p {
  color: #a1a1a6;

  line-height: 1.55;
}

.apple-grid a {
  margin-top: auto;

  color: #6bc4ca;

  font-weight: 650;
}

.seo-copy {
  max-width: 780px;

  margin-top: 55px;
  padding-top: 30px;

  border-top: 1px solid #2d2d2f;
}


/* =========================================================
   COMPARADOR
========================================================= */

#comparador {
  overflow: visible;

  background: #fff;
}

#comparador > .wrap > h2 {
  max-width: 900px;

  margin-bottom: 48px;
}

.compare {
  margin-top: 48px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);

  align-items: start;

  gap: 18px;
}

.comparePick {
  min-width: 0;

  display: flex;
  flex-direction: column;
}

.comparePick > .smart-picker {
  margin-bottom: 18px;
}

.vs {
  width: 44px;
  height: 44px;

  margin: 85px auto 0;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--black);

  color: #fff;

  font-size: 11px;
  font-weight: 800;
}


/* =========================================================
   SMART PICKER
========================================================= */

.smart-picker {
  position: relative;

  z-index: 4;

  width: 100%;
}

.smart-trigger {
  width: 100%;
  min-height: 72px;

  padding: 13px 18px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 1px solid var(--line);
  border-radius: 20px;

  background: #fff;

  color: var(--black);

  text-align: left;

  cursor: pointer;

  transition: border-color 0.2s ease;
}

.smart-trigger:hover {
  border-color: var(--gray-2);
}

.smart-trigger > span {
  min-width: 0;

  display: flex;
  flex-direction: column;

  gap: 4px;
}

.smart-trigger b {
  overflow: hidden;

  font-size: 18px;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-trigger small {
  overflow: hidden;

  color: var(--gray);

  font-size: 13px;

  text-overflow: ellipsis;
  white-space: nowrap;
}

.smart-trigger i {
  font-size: 22px;
  font-style: normal;
}

.smart-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  z-index: 80;

  width: min(520px, 92vw);
  max-height: 520px;

  padding: 16px;

  overflow: hidden;

  border: 1px solid #d8d8dc;
  border-radius: 22px;

  background: #fff;

  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.smart-panel-head {
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.smart-panel-head strong {
  font-size: 18px;
}

.smart-close {
  width: 34px;
  height: 34px;

  border: 0;
  border-radius: 50%;

  background: #f1f1f3;

  font-size: 22px;

  cursor: pointer;
}

.smart-search {
  width: 100%;
  height: 46px;

  padding: 0 14px;

  border: 1px solid #d8d8dc;
  border-radius: 13px;

  outline: 0;

  font-size: 15px;
}

.smart-search:focus {
  border-color: var(--brand);
}

.smart-brands {
  padding: 12px 0;

  display: flex;

  gap: 7px;

  overflow-x: auto;

  scrollbar-width: none;
}

.smart-brands::-webkit-scrollbar {
  display: none;
}

.smart-brands button {
  padding: 8px 12px;

  border: 1px solid #ddd;
  border-radius: 999px;

  background: #fff;

  white-space: nowrap;

  cursor: pointer;
}

.smart-brands button.active {
  border-color: var(--black);

  background: var(--black);

  color: #fff;
}

.smart-results {
  max-height: 340px;

  overflow-y: auto;
}

.smart-model {
  padding: 9px 0;

  border-top: 1px solid #eee;
}

.smart-model-name {
  padding: 4px 5px 8px;

  display: flex;
  justify-content: space-between;

  font-weight: 700;
}

.smart-model-name small {
  color: #888;

  font-weight: 500;
}

.smart-option {
  width: 100%;

  padding: 11px 10px;

  display: flex;
  justify-content: space-between;

  border: 0;
  border-radius: 11px;

  background: #fff;

  text-align: left;

  cursor: pointer;
}

.smart-option:hover {
  background: var(--soft);
}

.smart-option.selected {
  background: #eaf6f6;
}

.smart-option small {
  color: #777;
}

.smart-empty {
  padding: 25px 10px;

  color: #777;

  text-align: center;
}


/* =========================================================
   COMPARATOR CARDS
========================================================= */

.compareCard {
  min-height: 610px;

  padding: 32px 34px 34px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border-radius: 28px;

  background: var(--soft);
}

.compare-image {
  position: relative;

  height: 285px;

  margin-bottom: 28px;

  display: grid;
  place-items: center;

  overflow: hidden;

  border-radius: 22px;

  background: #fff;
}

.compare-image img {
  width: 100%;
  height: 100%;

  padding: 18px;

  object-fit: contain;
}

.compare-image-fallback {
  display: none;

  padding: 20px;

  color: var(--gray-2);

  text-align: center;
  font-weight: 650;
}

.compare-image.image-error .compare-image-fallback {
  display: block;
}

.compare-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  flex: 1;
}

.compare-condition {
  padding: 6px 10px;

  display: inline-flex;

  border: 1px solid #e2e2e5;
  border-radius: 999px;

  background: #fff;

  color: var(--gray);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.compareCard h3 {
  margin: 16px 0 10px;

  font-size: 30px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.compare-description {
  min-height: 42px;

  margin: 0 0 22px;

  color: var(--gray);

  font-size: 14px;
  line-height: 1.5;
}

.compare-spec {
  width: 100%;

  margin-top: auto;
  padding: 15px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 18px;

  border-top: 1px solid #dedee2;
}

.compare-spec span {
  color: var(--gray-2);

  font-size: 12px;
}

.compare-spec b {
  font-size: 14px;

  text-align: right;
}

.compare-cta {
  margin-top: 17px;
}


/* =========================================================
   NOSOTROS
========================================================= */

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;

  align-items: end;

  gap: 90px;
}

.about h2 {
  font-size: 60px;
}

.about p {
  max-width: 650px;

  color: #aaa;

  font-size: 18px;
  line-height: 1.6;
}

.address {
  padding-left: 45px;

  border-left: 1px solid #333;
}

.address > * {
  display: block;
}

.address strong {
  margin: 18px 0;

  font-size: 28px;
}

.address span {
  color: #aaa;
}


/* =========================================================
   FAQ
========================================================= */

.faq {
  max-width: 850px;
}

.faq details {
  padding: 24px 0;

  border-top: 1px solid #ccc;
}

.faq summary {
  font-size: 19px;

  cursor: pointer;
}

.faq p {
  color: var(--gray);

  line-height: 1.6;
}


/* =========================================================
   CLOSING
========================================================= */

.closing {
  padding: 120px 0;

  text-align: center;
}

.closing p {
  color: var(--gray-2);

  font-size: 24px;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 58px 0 20px;

  border-top: 1px solid #ddd;

  background: var(--soft);

  color: #515154;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);

  gap: 40px;
}

.footer-brand img {
  max-width: 150px;
  max-height: 45px;

  margin-bottom: 18px;

  object-fit: contain;
}

.footer-brand p {
  color: var(--gray);

  font-size: 13px;
  line-height: 1.6;
}

.footer-brand strong {
  color: var(--black);
}

.footer-column {
  border: 0;
}

.footer-column summary {
  list-style: none;

  margin: 0 0 15px;

  color: var(--black);

  font-size: 12px;
  font-weight: 700;

  cursor: default;
}

.footer-column summary::-webkit-details-marker {
  display: none;
}

.footer-column > div {
  display: block;
}

.footer-column a,
.footer-column span {
  display: block;

  margin-bottom: 10px;

  background: transparent !important;

  color: #515154 !important;

  font-size: 12px;
}

.footer-column a:hover {
  color: var(--black) !important;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 18px;

  display: flex;
  justify-content: space-between;

  gap: 20px;

  border-top: 1px solid var(--line);

  color: var(--gray);

  font-size: 12px;
}


/* =========================================================
   WHATSAPP FLOTANTE
========================================================= */

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;

  z-index: 900;

  padding: 13px 18px;

  border-radius: 999px;

  background: var(--black);

  color: #fff !important;

  font-size: 13px;
  font-weight: 650;

  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.whatsapp-float:hover {
  background: #000;

  transform: translateY(-2px);
}


/* =========================================================
   POLÍTICAS
========================================================= */

.policy-page {
  max-width: 900px;

  margin: auto;
  padding: 100px 24px 80px;
}

.policy-page h1 {
  font-size: clamp(38px, 6vw, 62px);
  letter-spacing: -0.045em;
}

.policy-page h2 {
  margin-top: 38px;

  font-size: 24px;
}

.policy-page p {
  color: #515154;

  line-height: 1.7;
}

.policy-note {
  margin-top: 30px;
  padding: 20px 24px;

  border-radius: 18px;

  background: var(--soft);
}

.policy-back {
  color: var(--brand);
}


/* =========================================================
   MOBILE / TABLET
========================================================= */

@media (max-width: 900px) {

  .wrap {
    width: min(100% - 28px, 1180px);
  }


  /* HEADER */

  .site-header {
    height: 78px;
  }

  .nav {
    position: relative;

    justify-content: center;
  }

  .brand {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);
  }

  .logo {
    width: 145px;
    height: 58px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-button {
    position: absolute;
    right: 0;

    display: flex;
  }


  /* HERO */

  .heroGrid {
    min-height: 0;

    grid-template-columns: 1fr;
  }

  .heroCopy {
    padding: 54px 0 30px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .heroVisual {
    width: 100%;
    height: auto;

    overflow: visible;
  }

  .heroVisual img {
    width: 100%;
    height: auto;

    object-fit: contain;
    object-position: center top;
  }


  /* FEATURE BAND */

  .three {
    grid-template-columns: 1fr;

    padding: 10px 0;
  }

  .three > div {
    padding: 14px;

    border-right: 0;
    border-bottom: 1px solid #eee;
  }

  .three > div:last-child {
    border-bottom: 0;
  }


  /* STORE BAND */

  .store-live-grid {
    grid-template-columns: 1fr;
  }

  .store-live-item + .store-live-item {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }


  /* GENERAL */

  .section {
    padding: 75px 0;
  }

  .split,
  .promo,
  .head,
  .splitText,
  .about {
    grid-template-columns: 1fr;
  }

  .split {
    gap: 40px;
  }

  .intro h2,
  .head h2,
  .splitText h2,
  .faq h2,
  .about h2 {
    font-size: 43px;
  }


  /* PROMO */

  .promo {
    padding-top: 70px;
  }

  .promo h2 {
    font-size: 50px;
  }

  .promo img {
    height: 360px;

    margin-top: 35px;
  }


  /* BENEFICIOS */

  .benefits {
    grid-template-columns: 1fr 1fr;
  }

  .benefits article {
    min-height: 220px;

    padding: 24px;
  }

  .benefits h3 {
    margin-top: 35px;
  }


  /* MARKETPLACE */

  .marketplaces-section {
    padding: 70px 0;
  }

  .market-premium-grid {
    grid-template-columns: 1fr;
  }

  .market-premium-card {
    min-height: 285px;

    padding: 26px;
  }


  /* REVIEWS */

  .google-reviews {
    padding: 70px 0;
  }

  .reviews-heading {
    grid-template-columns: 1fr;

    gap: 26px;
  }

  .google-score {
    max-width: 100%;
  }


  /* PRODUCTOS */

  #productos {
    padding: 64px 0 78px;
  }

  .head {
    gap: 5px;
  }

  .tabs {
    width: 100%;
  }

  .tabs button {
    flex: 1;
  }

  .brand-block > summary {
    min-height: 92px;

    padding: 20px;
  }


  /* COMPARADOR */

  #comparador {
    padding: 70px 0 76px;
  }

  .compare {
    margin-top: 32px;

    grid-template-columns: 1fr;

    gap: 16px;
  }

  .vs {
    margin: -2px auto;
  }

  .compareCard {
    min-height: 0;

    padding: 20px;

    border-radius: 22px;
  }

  .compare-image {
    height: 245px;

    margin-bottom: 20px;
  }

  .compareCard h3 {
    font-size: 26px;
  }

  .compare-description {
    min-height: 0;
  }


  /* NOSOTROS */

  .about {
    gap: 50px;
  }

  .address {
    padding: 35px 0 0;

    border-top: 1px solid #333;
    border-left: 0;
  }


  /* FOOTER */

  .footer-grid {
    display: block;
  }

  .footer-brand {
    margin-bottom: 24px;
  }

  .footer-column {
    border-top: 1px solid var(--line);
  }

  .footer-column summary {
    position: relative;

    margin: 0;
    padding: 15px 2px;

    cursor: pointer;
  }

  .footer-column summary::after {
    content: "+";

    position: absolute;
    right: 4px;

    font-size: 18px;
    font-weight: 400;

    transition: transform 0.2s ease;
  }

  .footer-column[open] summary::after {
    transform: rotate(45deg);
  }

  .footer-column > div {
    display: none;

    padding: 0 2px 12px;
  }

  .footer-column[open] > div {
    display: block;
  }

  .footer-column a,
  .footer-column span {
    padding: 6px 0;

    margin: 0;

    background: transparent !important;

    color: #515154 !important;
  }

  .footer-bottom {
    flex-direction: column;

    gap: 6px;
  }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 650px) {

  .topbar {
    min-height: 32px;

    padding: 6px 12px;

    font-size: 9px;
  }

  .site-header {
    height: 74px;
  }

  .logo {
    width: 150px;
    height: 58px;
  }

  .mobile-menu-button {
    right: 2px;
  }


  /* HERO */

  .heroCopy {
    padding: 42px 0 26px;
  }

  .hero h1 {
    margin-top: 14px;

    font-size: clamp(45px, 13vw, 56px);
  }

  .hero p {
    font-size: 18px;
  }

  .actions {
    margin-top: 26px;

    align-items: flex-start;
    flex-direction: column;

    gap: 15px;
  }

  .heroVisual {
    margin: 0;
  }


  /* STORE */

  .store-live-item {
    min-height: 0;

    padding: 27px 20px;

    grid-template-columns: 1fr;

    gap: 20px;
  }

  .store-live-item h2 {
    font-size: 23px;
  }

  .store-live-btn {
    width: 100%;
    min-height: 52px;
  }


  /* INTRO */

  .intro-image-wrap {
    margin-top: 5px;

    border-radius: 20px;
  }

  .appearance-switch {
    margin-top: 16px;
  }

  .appearance-option {
    padding: 9px 14px;

    font-size: 12px;
  }


  /* PROMO */

  .promo img {
    height: 300px;
  }


  /* BENEFICIOS */

  .benefits {
    grid-template-columns: 1fr;
  }


  /* REVIEWS */

  .reviews-window {
    margin-right: -14px;
    margin-left: -14px;

    padding-left: 14px;
  }

  .review-card {
    width: 82vw;
    max-width: 340px;
  }

  .reviews-track {
    animation-duration: 24s;
  }

  .review-main {
    width: 100%;
  }


  /* PRODUCTOS */

  .brand-block > summary {
    padding: 18px;
  }

  .model-card > summary {
    padding: 14px;
  }

  .model-media {
    width: 70px;
    height: 70px;

    margin-right: 14px;
  }

  .variant {
    display: block;
  }

  .variant-main {
    align-items: flex-end;
  }

  .variant-cta {
    display: block;

    margin-top: 16px;

    text-align: center;
  }


  /* SMART PICKER */

  .smart-panel {
    position: fixed;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;

    width: 100%;
    max-height: 78vh;

    padding: 18px;
    padding-bottom: max(18px, env(safe-area-inset-bottom));

    border-radius: 24px 24px 0 0;

    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.22);
  }

  .smart-results {
    max-height: calc(78vh - 160px);
  }

  body.picker-open {
    overflow: hidden;
  }

  body.picker-open::before {
    content: "";

    position: fixed;
    inset: 0;

    z-index: 70;

    background: rgba(0, 0, 0, 0.34);
  }

  .smart-picker {
    z-index: 75;
  }

  .smart-trigger {
    min-height: 66px;

    padding: 11px 14px;

    border-radius: 17px;
  }

  .smart-trigger b {
    font-size: 16px;
  }


  /* CLOSING */

  .closing {
    padding: 85px 0;
  }


  /* WHATSAPP */

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reviews-track {
    animation: none;
  }
}
/* =========================================================
   FIX MOBILE — TECMOVILES JC
   Evita overflow horizontal y layouts cortados
========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
video,
svg,
canvas {
  max-width: 100%;
  height: auto;
}

section,
header,
footer,
main,
nav {
  max-width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  /* Ningún contenedor debe superar el viewport */
  .container,
  .section-inner,
  .hero-inner,
  .intro-inner,
  .benefits-inner,
  .marketplaces-inner,
  .compare-inner,
  .apple-inner,
  .closing-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  /* Flex/Grid children */
  section *,
  main * {
    min-width: 0;
  }

  /* Nueva generación Apple */
  .apple-grid,
  .launch-grid,
  .future-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 16px !important;
  }

  .apple-card,
  .launch-card,
  .future-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  /* Comparador */
  .compare-grid,
  .comparator-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
  }

  /* Textos grandes */
  h1,
  h2,
  h3,
  p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}/* =========================================================
   APPLE GRID — FIX MOBILE DEFINITIVO
========================================================= */

@media (max-width: 768px) {

  .apple-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 16px !important;
    overflow: visible !important;
  }

  .apple-grid > article {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    margin: 0 !important;

    transform: none !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
  }

  .apple-grid > article h3,
  .apple-grid > article p,
  .apple-grid > article small {
    max-width: 100%;
  }

}