/* ============================================================
   TECNOCEL — tecnocelchile.cl · v2 TEMA CLARO (estilo boutique)
   Blanco / negro / cian TECNOCEL · naranjo #EB6923 solo Fénix
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-soft: #f6f8f8;
  --ink: #16191a;
  --ink-dim: #647070;
  --line: #e9eeee;
  --cyan: #15e0d8;
  --cyan-deep: #089d96;
  --cyan-soft: #d9f9f7;
  --star: #f0a30a;
  --fenix: #eb6923;
  --fenix-soft: #ff8a4d;
  --fenix-bg: #fdf1ea;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(20, 25, 26, .07);
  --font-head: "Space Grotesk", sans-serif;
  --font-body: "Archivo", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-head); line-height: 1.12; }

h2 {
  font-size: clamp(1.6rem, 4.5vw, 2.4rem);
  text-align: center;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.accent { color: var(--cyan-deep); }
.fenix-word { color: var(--fenix); }

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4.5rem 1.25rem;
}

section { position: relative; }

.section-sub {
  text-align: center;
  color: var(--ink-dim);
  margin-bottom: 2.2rem;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.8rem;
  border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform;
}
.btn:active { transform: scale(.97); }

.btn-fenix {
  background: linear-gradient(135deg, var(--fenix), #d4551a);
  color: #fff;
  box-shadow: 0 8px 24px rgba(235, 105, 35, .3);
}
.btn-fenix:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(235, 105, 35, .42); }

.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: #fff; }

.btn-accent {
  background: var(--ink);
  color: #fff;
  font-size: .88rem;
}
.btn-accent:hover { transform: translateY(-2px); background: #000; box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }

.btn-insta {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  font-size: 1.1rem;
  padding: 1.05rem 2.2rem;
}
.btn-insta:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 32px rgba(220, 39, 67, .35); }

/* ============ BARRA DE ANUNCIO + NAV ============ */
.topbar {
  background: var(--ink);
  text-align: center;
  padding: .55rem 1rem;
}
.topbar a {
  color: #fff;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.topbar a strong { color: var(--cyan); }
.topbar a:hover { opacity: .85; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(20, 25, 26, .08); }
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .9rem 1.25rem .7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .14em;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.logo-icon { display: block; }
.logo-accent { color: var(--cyan-deep); }

.menu { display: flex; gap: 1.9rem; flex-wrap: wrap; justify-content: center; }
.menu a {
  color: var(--ink);
  text-decoration: none;
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  transition: color .2s ease;
  position: relative;
  padding-bottom: 2px;
}
.menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width .25s ease;
}
.menu a:hover { color: var(--cyan-deep); }
.menu a:hover::after { width: 100%; }
.menu-fenix { color: var(--fenix) !important; font-weight: 700; }
.menu-fenix::after { background: var(--fenix) !important; }
.menu-cupon { color: var(--cyan-deep) !important; font-weight: 700; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  position: absolute;
  left: 1rem;
  top: 1.15rem;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.25rem 3rem;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(235, 105, 35, .07) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(21, 224, 216, .08) 0%, transparent 60%),
    var(--bg);
}
.hero-glow { display: none; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
.fenix-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--fenix);
  border: 1.5px solid rgba(235, 105, 35, .45);
  background: var(--fenix-bg);
  padding: .45rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: -.02em;
}
.hero h1 em {
  font-style: normal;
  color: var(--fenix);
}
.hero-sub {
  color: var(--ink-dim);
  font-size: 1.05rem;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}
.hero-sub s { opacity: .75; }
.hero-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.price-big {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.2rem, 6vw, 3.1rem);
  color: var(--ink);
}
.price-tag {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  color: #fff;
  background: var(--ink);
  padding: .5rem 1rem;
  border-radius: 6px;
}
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; margin-bottom: 1.1rem; }
.hero-mini { color: var(--ink-dim); font-size: .9rem; }
.hero-coupon { margin-top: .5rem; font-size: .92rem; }
.hero-coupon a { color: var(--fenix); text-decoration: none; font-weight: 600; }
.hero-coupon a:hover { text-decoration: underline; }

.hero-scroll {
  position: absolute;
  bottom: 1.2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(20, 25, 26, .3);
  font-size: .8rem;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ---------- Teléfono + animación curado UV ---------- */
.hero-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  perspective: 800px;
}
.phone {
  width: min(268px, 64vw);
  aspect-ratio: 210 / 430;
  border-radius: 54px;
  position: relative;
  background: linear-gradient(145deg, #eceef0 0%, #b9bdc4 18%, #7c8087 48%, #b3b7be 78%, #e4e6e9 100%);
  box-shadow:
    inset 0 0 2px rgba(255, 255, 255, .95),
    inset 0 0 7px rgba(0, 0, 0, .4),
    0 42px 80px -22px rgba(20, 25, 26, .5),
    0 18px 34px -14px rgba(20, 25, 26, .35);
  transform: rotateY(-10deg) rotateX(3deg);
  transition: transform .45s ease;
}
.phone::before {
  content: "";
  position: absolute;
  inset: 3.5px;
  border-radius: 50px;
  background: #060607;
}
.phone:hover { transform: rotateY(0deg) rotateX(0deg); }
.phone-btn {
  position: absolute;
  background: linear-gradient(90deg, #a3a7ae, #6d7076, #9ba0a7);
  border-radius: 3px;
  box-shadow: 0 0 2px rgba(0, 0, 0, .5);
}
.phone-btn-action  { left: -2.5px; top: 17%; width: 3.5px; height: 4.5%; }
.phone-btn-volup   { left: -2.5px; top: 25%; width: 3.5px; height: 7.5%; }
.phone-btn-voldown { left: -2.5px; top: 34.5%; width: 3.5px; height: 7.5%; }
.phone-btn-power   { right: -2.5px; top: 27%; width: 3.5px; height: 12%; }
.phone-screen {
  position: absolute;
  inset: 9px;
  border-radius: 45px;
  background: #000;
  overflow: hidden;
}
.screen-wallpaper {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(95% 65% at 82% 0%, #14406b 0%, transparent 62%),
    radial-gradient(85% 60% at 12% 32%, rgba(10, 163, 157, .4) 0%, transparent 58%),
    radial-gradient(110% 85% at 60% 105%, rgba(235, 105, 35, .3) 0%, transparent 62%),
    linear-gradient(200deg, #0d1424 0%, #05070d 100%);
}
.phone-island {
  position: absolute;
  top: 13px; left: 50%;
  transform: translateX(-50%);
  width: 33%; height: 21px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
  box-shadow: inset 0 0 3px rgba(255, 255, 255, .12), 0 0 4px rgba(0, 0, 0, .8);
}
.phone-island::after {
  content: "";
  position: absolute;
  right: 7px; top: 50%;
  transform: translateY(-50%);
  width: 11px; height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 32%, #2a4a70 0%, #0b1626 55%, #000 100%);
  box-shadow: inset 0 0 2px rgba(0, 0, 0, .9);
}
.screen-glare {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, .16) 0%, rgba(255, 255, 255, .05) 20%, transparent 34%);
}
/* Ciclo 6s: la lámina se aplica, la luz UV recorre, sello final */
.film {
  position: absolute;
  inset: 8px;
  border-radius: 39px;
  border: 1.5px solid rgba(245, 241, 232, .14);
  background: linear-gradient(160deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 55%);
  opacity: 0;
  animation: filmApply 6s ease-in-out infinite;
}
@keyframes filmApply {
  0%   { opacity: 0; transform: translateY(-16px); }
  16%  { opacity: 1; transform: translateY(0); border-color: rgba(245, 241, 232, .14); }
  76%  { border-color: rgba(245, 241, 232, .14); }
  86%  { border-color: rgba(21, 224, 216, .75); }
  100% { opacity: 1; transform: translateY(0); border-color: rgba(21, 224, 216, .4); }
}
.uv-bar {
  position: absolute;
  left: 5%; right: 5%;
  height: 16px;
  top: -12%;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(155, 100, 255, .95) 0%, rgba(155, 100, 255, 0) 70%);
  filter: blur(2px);
  box-shadow: 0 0 26px 10px rgba(155, 100, 255, .45);
  opacity: 0;
  animation: uvSweep 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes uvSweep {
  0%, 28% { top: -12%; opacity: 0; }
  36%     { opacity: 1; }
  68%     { top: 104%; opacity: 1; }
  74%, 100% { top: 104%; opacity: 0; }
}
.seal-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(21, 224, 216, .25) 48%, rgba(216, 255, 253, .4) 50%, rgba(21, 224, 216, .25) 52%, transparent 70%);
  transform: translateX(-120%);
  animation: sealShine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sealShine {
  0%, 78%  { transform: translateX(-120%); }
  92%      { transform: translateX(120%); }
  100%     { transform: translateX(120%); }
}
.phone-label {
  position: absolute;
  bottom: 24px; left: 0; right: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-label-top {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .2em;
  font-size: .8rem;
  color: var(--fenix-soft);
}
.phone-label-bottom {
  font-size: .7rem;
  color: rgba(245, 241, 232, .7);
  letter-spacing: .05em;
  min-height: 1em;
}
.phone-shadow {
  width: 72%;
  height: 26px;
  margin-top: 26px;
  background: radial-gradient(ellipse, rgba(20, 25, 26, .35) 0%, transparent 68%);
  border-radius: 50%;
  filter: blur(2px);
}

/* ============ BENEFICIOS ============ */
.fenix-benefits { background: var(--bg-soft); }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.benefit {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(20, 25, 26, .12); }
.benefit-icon { font-size: 1.8rem; margin-bottom: .7rem; }
.benefit h3 { font-size: 1.05rem; margin-bottom: .5rem; }
.benefit p { color: var(--ink-dim); font-size: .92rem; }

/* ============ PRECIOS ============ */
.price-table {
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--bg);
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--bg-soft); }
.price-name { display: flex; flex-direction: column; }
.price-name strong { font-family: var(--font-head); font-size: 1.05rem; }
.price-name small { color: var(--ink-dim); font-size: .82rem; }
.price-value {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--ink);
  white-space: nowrap;
}
.price-row-fenix {
  background: var(--fenix-bg);
  border: 1.5px solid rgba(235, 105, 35, .45);
  border-radius: 12px;
  margin: .5rem;
}
.price-row-fenix:hover { background: #fce7db; }
.fenix-chip {
  font-family: var(--font-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--fenix);
  margin-bottom: .2rem;
}
.fenix-price { color: var(--fenix); font-size: 1.45rem; }

/* ============ CUPÓN WEB ============ */
.coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  flex-wrap: wrap;
  max-width: 640px;
  margin: 1.8rem auto 0;
  padding: 1.6rem 1.8rem;
  border: 2px dashed var(--fenix);
  border-radius: var(--radius);
  background: var(--fenix-bg);
}
.coupon-left { flex: 1 1 320px; }
.coupon-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--fenix);
  margin-bottom: .5rem;
}
.coupon h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.coupon h3 em { font-style: normal; color: var(--fenix); }
.coupon p { color: var(--ink-dim); font-size: .95rem; margin-bottom: .6rem; }
.coupon small { color: var(--ink-dim); font-size: .78rem; }
.coupon-right { text-align: center; flex: 0 0 auto; margin: 0 auto; }
.coupon-code {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: .12em;
  color: #fff;
  background: var(--ink);
  border-radius: 10px;
  padding: .7rem 1.2rem;
}
.coupon-save {
  display: block;
  margin-top: .5rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  color: var(--fenix);
}
.btn-share {
  display: block;
  width: 100%;
  margin-top: .8rem;
  padding: .55rem 1rem;
  border-radius: 999px;
  border: 1.5px solid var(--fenix);
  background: none;
  color: var(--ink);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  cursor: pointer;
  transition: background .25s ease, transform .2s ease;
}
.btn-share:hover { background: rgba(235, 105, 35, .12); transform: translateY(-1px); }

/* ============ GARANTÍA ============ */
.warranty { background: var(--bg-soft); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.4rem;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(20, 25, 26, .12); }
.step-num {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cyan);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .9rem;
}
.step h3 { font-size: 1.02rem; margin-bottom: .45rem; }
.step p { color: var(--ink-dim); font-size: .9rem; }
.warranty-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--ink);
  background: var(--cyan-soft);
  border: 1px solid rgba(8, 157, 150, .25);
  border-radius: 12px;
  padding: .9rem 1.2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============ PRODUCTOS ============ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 40px rgba(20, 25, 26, .14);
}
.card-img {
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.4rem;
  overflow: hidden;
  transition: transform .4s ease;
}
.card-img-1, .card-img-2 { background: var(--bg-soft); }
.card-img-3 { background: linear-gradient(140deg, #eef7f7, #dff3f2); }
.card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.card:hover .card-img { transform: scale(1.05); }
.card-body { padding: 1.4rem; }
.card-body h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.card-body p { color: var(--ink-dim); font-size: .93rem; }
.card-note { display: block; margin-top: .7rem; color: var(--cyan-deep); font-size: .82rem; font-weight: 600; }

/* ============ SUCURSALES ============ */
.stores { background: var(--bg-soft); }
.store-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 1.6rem;
}
.store-banner img,
.store-banner video {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  display: block;
}
.video-banner { margin-top: 2.4rem; margin-bottom: 0; }
.store-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.4rem;
  margin-bottom: 1.6rem;
}
.store-ig { color: var(--cyan-deep); text-decoration: none; font-weight: 600; }
.store-ig:hover { text-decoration: underline; }
.store-new {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .68rem;
  letter-spacing: .12em;
  color: #fff;
  background: var(--ink);
  padding: .3rem .8rem;
  border-radius: 999px;
  margin-bottom: .6rem;
}
.store {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.store:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(20, 25, 26, .12); }
.store h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.store-addr { font-weight: 600; margin-bottom: .4rem; font-size: .95rem; }
.store-hours { color: var(--ink-dim); font-size: .9rem; margin-bottom: 1.1rem; }
.map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.map iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ============ POR QUÉ ============ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.why-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  transition: background .3s ease;
}
.why-item:hover { background: var(--bg-soft); }
.why-icon { font-size: 1.9rem; display: block; margin-bottom: .7rem; }
.why-item h3 { font-size: 1.02rem; margin-bottom: .45rem; }
.why-item p { color: var(--ink-dim); font-size: .9rem; }

/* ============ SOBRE NOSOTROS ============ */
.about { background: var(--bg-soft); }
.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.4rem;
}
.about-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.9rem 1.6rem;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
}
.about-item:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(20, 25, 26, .12); }
.about-icon { font-size: 2rem; display: block; margin-bottom: .8rem; }
.about-item h3 { font-size: 1.1rem; margin-bottom: .55rem; }
.about-item p { color: var(--ink-dim); font-size: .93rem; }

/* ============ RESEÑAS GOOGLE ============ */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin: 1rem 0 2.2rem;
}
.reviews-score {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--ink);
}
.reviews-stars { color: var(--star); font-size: 1.5rem; letter-spacing: .15em; }
.reviews-count { color: var(--ink-dim); font-size: .95rem; }
.reviews-count strong { color: var(--ink); }

.carousel {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.car-viewport { overflow: hidden; flex: 1; border-radius: var(--radius); }
.car-track {
  display: flex;
  transition: transform .45s cubic-bezier(.25, .8, .3, 1);
  will-change: transform;
}
.review-card {
  flex: 0 0 100%;
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.8rem;
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.review-stars { color: var(--star); font-size: 1.15rem; letter-spacing: .18em; margin-bottom: .9rem; }
.review-card blockquote {
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.3rem;
}
.review-card figcaption {
  display: flex;
  align-items: center;
  gap: .8rem;
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.review-card figcaption strong { display: block; font-size: .98rem; }
.review-card figcaption small { color: var(--ink-dim); font-size: .8rem; }
.review-card-cta { align-items: center; text-align: center; justify-content: center; gap: .6rem; }
.review-card-cta blockquote { margin-bottom: .6rem; color: var(--ink-dim); }
.btn-review { font-size: .95rem; }

.car-arrow {
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: border-color .25s ease, color .25s ease, transform .2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 4px;
}
.car-arrow:hover { border-color: var(--cyan-deep); color: var(--cyan-deep); }
.car-arrow:active { transform: scale(.92); }

.car-dots {
  position: absolute;
  bottom: -1.9rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .55rem;
}
.car-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 25, 26, .18);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, transform .25s ease;
}
.car-dot.active { background: var(--cyan-deep); transform: scale(1.25); }

.reviews-link { text-align: center; margin-top: 3.2rem; }
.reviews-link a { color: var(--cyan-deep); text-decoration: none; font-size: .95rem; font-weight: 600; }
.reviews-link a:hover { text-decoration: underline; }

@media (max-width: 840px) {
  .car-arrow { display: none; }
  .carousel { gap: 0; }
}

/* ============ FAQ ============ */
.faq-list {
  max-width: 720px;
  margin: 2rem auto 0;
}
.faq-list details {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: .7rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  position: relative;
  transition: color .2s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--cyan-deep);
  transition: transform .25s ease;
}
.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-list details[open] summary { color: var(--cyan-deep); }
.faq-list details p {
  padding: 0 1.3rem 1.2rem;
  color: var(--ink-dim);
  font-size: .94rem;
}

/* ============ BOTÓN FLOTANTE DM ============ */
.float-dm {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
  box-shadow: 0 8px 24px rgba(188, 24, 136, .4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.float-dm:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 12px 32px rgba(188, 24, 136, .55); }

/* ============ INSTAGRAM ============ */
.insta { background: var(--bg-soft); text-align: center; }
.insta p { color: var(--ink-dim); max-width: 34rem; margin: .8rem auto 1.8rem; }
.insta-photo {
  width: min(300px, 70%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: block;
  margin: 0 auto 1.6rem;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  text-align: center;
}
.footer .wrap { padding: 2.8rem 1.25rem; }
.footer-logo {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 1.2rem;
  margin-bottom: .4rem;
  color: #fff;
}
.footer-logo .logo-accent { color: var(--cyan); }
.footer p { color: rgba(255, 255, 255, .65); font-size: .88rem; }
.footer a { color: var(--cyan); text-decoration: none; }

/* ============ REVEAL ON SCROLL ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ MOBILE ============ */
@media (max-width: 840px) {
  .nav-inner { padding: .8rem 1.25rem .8rem; }
  .menu {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 30px rgba(20, 25, 26, .12);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .menu.open { max-height: 420px; }
  .menu a { padding: 1rem 1.5rem; border-bottom: 1px solid var(--line); width: 100%; text-align: center; }
  .menu a::after { display: none; }
  .burger { display: flex; }

  .hero { min-height: auto; padding-top: 3rem; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-cta { justify-content: center; }
  .hero-price { justify-content: center; }

  .benefit-grid, .steps, .why-grid { grid-template-columns: 1fr 1fr; }
  .product-grid, .store-grid, .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .benefit-grid, .steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .wrap { padding: 3.2rem 1.1rem; }
  .topbar a { font-size: .68rem; letter-spacing: .08em; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .film { opacity: 1; transform: none; border-color: rgba(21, 224, 216, .5); }
  .uv-bar, .seal-shine { display: none; }
}

/* ============================================================
   MEJORAS: video vertical, franja de stats, mapa interactivo
   ============================================================ */

/* --- Banner de video real (vertical, se ve premium centrado) --- */
.video-banner { background:#05070d; margin-top:2.4rem; margin-bottom:0; display:flex; justify-content:center; }
.video-banner video { width:100%; height:auto; max-height:72vh; object-fit:contain; }
@media (min-width:760px){
  .video-banner video { width:auto; max-width:100%; max-height:520px; margin:0 auto; }
}

/* --- Franja de números animados --- */
.stats { background:linear-gradient(200deg,#0d1424 0%,#05070d 100%); color:#fff; padding:3.4rem 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; text-align:center; }
.stat b { display:block; font-family:'Space Grotesk',sans-serif; font-size:clamp(2rem,6vw,3.2rem); font-weight:700; color:var(--cyan); line-height:1; }
.stat span { display:block; margin-top:.55rem; font-size:.8rem; letter-spacing:.05em; text-transform:uppercase; color:#9fb0b0; }
@media (max-width:560px){ .stats-grid{ grid-template-columns:repeat(2,1fr); gap:2rem 1rem; } }

/* --- Mapa interactivo de Chile --- */
.geo { display:grid; grid-template-columns:0.85fr 1.15fr; gap:2rem; align-items:center; margin-top:1.2rem; }
@media (max-width:820px){ .geo{ grid-template-columns:1fr; gap:1.4rem; } }
.geo-map { position:relative; background:radial-gradient(80% 60% at 50% 28%, #12212f 0%, #070b12 72%); border:1px solid var(--line); border-radius:var(--radius); padding:1rem .8rem .4rem; box-shadow:var(--shadow); }
.geo-map svg { width:100%; height:auto; display:block; max-height:500px; }
.chile-land { fill:url(#landGrad); stroke:var(--cyan); stroke-width:1.4; filter:drop-shadow(0 0 9px rgba(21,224,216,.28)); }
.andes { fill:none; stroke:rgba(21,224,216,.32); stroke-width:1; stroke-dasharray:2 5; }
.pin { cursor:pointer; }
.pin-dot { fill:var(--cyan); stroke:#fff; stroke-width:1.4; }
.pin-ring { fill:none; stroke:var(--cyan); stroke-width:1.4; opacity:.7; transform-box:fill-box; transform-origin:center; animation:pinpulse 2.4s ease-out infinite; }
@keyframes pinpulse { 0%{ transform:scale(.6); opacity:.75; } 100%{ transform:scale(3.4); opacity:0; } }
@media (prefers-reduced-motion:reduce){ .pin-ring{ animation:none; } }
.pin-lead { stroke:rgba(255,255,255,.32); stroke-width:1; }
.pin-label { fill:#eaf6f6; font-family:'Space Grotesk',sans-serif; font-size:12px; font-weight:500; pointer-events:none; }
.pin-sub { fill:#8fa3a3; font-size:8.5px; }
.pin:hover .pin-dot, .pin:focus .pin-dot { fill:#fff; }
.pin:hover .pin-label, .pin:focus .pin-label { fill:var(--cyan); }
.pin:focus { outline:none; }
.geo-hint { text-align:center; color:#8fa3a3; font-size:.78rem; margin:.5rem 0 .2rem; }
.store.flash { animation:storeflash 1.7s ease; }
@keyframes storeflash { 0%,100%{ box-shadow:var(--shadow); } 18%,58%{ box-shadow:0 0 0 3px var(--cyan); transform:translateY(-2px); } }

/* --- Galería / lookbook de carcasas (moda) --- */
.lookbook { background:var(--bg); }
.lookbook .lb-head { padding-bottom:1rem; }
.lb-scroller { overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; padding:.4rem 1.25rem; scrollbar-width:none; }
.lb-scroller::-webkit-scrollbar { display:none; }
.lb-track { display:flex; gap:1rem; width:max-content; margin:0 auto; padding:.6rem 0; }
.lb-item { flex:0 0 auto; width:min(76vw,300px); aspect-ratio:3/4; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow); scroll-snap-align:center; margin:0; }
.lb-item img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s ease; }
.lb-item:hover img { transform:scale(1.06); }
.lookbook .lb-cta { padding-top:1.4rem; text-align:center; }

/* --- Grilla estilo Instagram --- */
.ig-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:.5rem; max-width:640px; margin:1.6rem auto 1.6rem; }
.ig-tile { position:relative; aspect-ratio:1/1; overflow:hidden; border-radius:10px; display:block; }
.ig-tile img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .45s ease; }
.ig-tile::after { content:""; position:absolute; inset:0; background:linear-gradient(45deg, rgba(220,39,67,.5), rgba(188,24,136,.5)); opacity:0; transition:opacity .3s ease; }
.ig-tile:hover img { transform:scale(1.08); }
.ig-tile:hover::after { opacity:1; }
.insta-dm { margin-top:1rem; color:var(--ink-dim); font-size:.92rem; }

/* --- Widget Instagram en vivo (LightWidget) --- */
.ig-widget { max-width:680px; margin:1.4rem auto 1.2rem; min-height:120px; }

/* --- Tagline del hero (bajada bajo el nombre del producto) --- */
.hero-tagline { font-family:var(--font-head); font-weight:700; font-size:clamp(1.15rem,2.7vw,1.6rem); line-height:1.25; margin-bottom:1rem; color:var(--ink); }
.hero-tagline em { font-style:normal; color:var(--fenix); }

/* ═══════════ v7.1 · SERVICIO TÉCNICO EN PORTADA + WHATSAPP ═══════════ */
.topbar-wa { background: #0f2a17; }
.topbar-wa a { color: #d7f2de; }
.topbar-wa a strong { color: #7ee08c; }

.hero-tec {
  background:
    radial-gradient(60% 80% at 85% 10%, rgba(21, 224, 216, .10) 0%, transparent 60%),
    radial-gradient(50% 70% at 10% 90%, rgba(97, 199, 109, .09) 0%, transparent 60%),
    var(--bg);
}
.badge-tec { color: var(--cyan-deep); border-color: rgba(8, 157, 150, .45); background: var(--cyan-soft); }
.hero h1 em.tec { color: var(--cyan-deep); }
.price-tag-tec { background: var(--cyan-deep); }
.hero-tagline em { font-style: normal; color: var(--cyan-deep); }

/* botón WhatsApp (mismo verde apagado que nos gustó) */
.btn-wa {
  background: #61c76d; color: #06210c; display: inline-flex; align-items: center; gap: .55rem;
  box-shadow: 0 8px 26px rgba(97, 199, 109, .30);
}
.btn-wa:hover { background: #4fb85c; transform: translateY(-2px); }
.btn-wa svg { width: 19px; height: 19px; fill: currentColor; }
.btn-wa-big { font-size: 1.05rem; padding: .95rem 1.6rem; }

/* los 3 servicios */
.tec3 { padding: 2.4rem 1.25rem 3.4rem; background: var(--bg-soft); }
.tec3-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.tec3-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.4rem; text-decoration: none; color: inherit; display: block;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.tec3-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: rgba(21, 224, 216, .55); }
.tec3-ic { font-size: 1.7rem; display: block; margin-bottom: .55rem; }
.tec3-card h3 { font-family: var(--font-head); font-size: 1.12rem; margin-bottom: .25rem; }
.tec3-card p { color: var(--ink-dim); font-size: .93rem; margin-bottom: .7rem; }
.tec3-card b { font-family: var(--font-head); font-size: 1.35rem; color: var(--cyan-deep); }
@media (max-width: 820px) { .tec3-inner { grid-template-columns: 1fr; } }

/* franja verde de WhatsApp */
.wa-franja { background: linear-gradient(135deg, #0f2a17, #123a1e); padding: 2.6rem 1.25rem; }
.wa-franja-inner {
  max-width: 1100px; margin: 0 auto; display: flex; align-items: center;
  justify-content: space-between; gap: 1.6rem; flex-wrap: wrap;
}
.wa-franja h2 { font-family: var(--font-head); color: #fff; font-size: clamp(1.4rem, 3.4vw, 2rem); margin-bottom: .35rem; }
.wa-franja p { color: #b7cfbe; font-size: 1rem; }

/* Fénix ya no es la portada: se le baja el alto para que no compita */
.hero-fenix2 { min-height: auto; padding-top: 3.4rem; padding-bottom: 3.4rem; border-top: 1px solid var(--line); }

/* pantalla trizada que se repara sola */
.trizas {
  position: absolute; inset: 0; z-index: 6; pointer-events: none;
  background:
    radial-gradient(circle at 38% 42%, rgba(255,255,255,.55) 0 2px, transparent 3px),
    conic-gradient(from 0deg at 38% 42%,
      transparent 0 6deg, rgba(255,255,255,.34) 6deg 7deg, transparent 7deg 24deg,
      rgba(255,255,255,.28) 24deg 25deg, transparent 25deg 47deg,
      rgba(255,255,255,.32) 47deg 48deg, transparent 48deg 73deg,
      rgba(255,255,255,.26) 73deg 74deg, transparent 74deg 96deg,
      rgba(255,255,255,.30) 96deg 97deg, transparent 97deg 128deg,
      rgba(255,255,255,.24) 128deg 129deg, transparent 129deg 158deg,
      rgba(255,255,255,.30) 158deg 159deg, transparent 159deg 191deg,
      rgba(255,255,255,.26) 191deg 192deg, transparent 192deg 221deg,
      rgba(255,255,255,.32) 221deg 222deg, transparent 222deg 254deg,
      rgba(255,255,255,.24) 254deg 255deg, transparent 255deg 288deg,
      rgba(255,255,255,.30) 288deg 289deg, transparent 289deg 318deg,
      rgba(255,255,255,.26) 318deg 319deg, transparent 319deg 360deg);
  animation: sanar 6s ease-in-out infinite;
}
.barrido {
  position: absolute; left: 0; right: 0; height: 42%; z-index: 7; pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(21,224,216,.30) 45%, rgba(255,255,255,.55) 52%, rgba(21,224,216,.30) 60%, transparent);
  animation: barre 6s ease-in-out infinite;
}
@keyframes sanar { 0%,42% { opacity: 1 } 58%,92% { opacity: 0 } 100% { opacity: 1 } }
@keyframes barre { 0%,38% { top: -45%; opacity: 0 } 44% { opacity: 1 } 56% { top: 100%; opacity: 1 } 60%,100% { top: 100%; opacity: 0 } }

/* botón flotante */
.wa-flota {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  width: 58px; height: 58px; border-radius: 999px; background: #61c76d;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(20,25,26,.28);
  transition: transform .2s, background .2s;
}
.wa-flota:hover { transform: scale(1.07); background: #4fb85c; }
.wa-flota svg { width: 31px; height: 31px; fill: #fff; }
.wa-flota::after {
  content: ""; position: absolute; inset: 0; border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(97,199,109,.55); animation: pulso-wa 2.6s ease-out infinite;
}
@keyframes pulso-wa {
  0% { box-shadow: 0 0 0 0 rgba(97,199,109,.5) }
  70% { box-shadow: 0 0 0 16px rgba(97,199,109,0) }
  100% { box-shadow: 0 0 0 0 rgba(97,199,109,0) }
}
@media (max-width: 520px) { .wa-flota { right: 14px; bottom: 14px; width: 54px; height: 54px } }
@media (prefers-reduced-motion: reduce) {
  .trizas, .barrido, .wa-flota::after { animation: none }
  .trizas { opacity: .55 }
}
