/* ==========================================================================
   GPS FOX PERÚ — Design System
   Rastreo GPS satelital · Trujillo y todo el Perú
   Paleta: Azul corporativo profesional + acento FOX
   ========================================================================== */

:root {
  /* Brand */
  --navy:        #0A2540;
  --navy-2:      #0E3A66;
  --blue:        #1763E6;
  --blue-600:    #1457c8;
  --blue-light:  #3B82F6;
  --sky:         #E8F1FE;
  --fox:         #F26A1B;   /* acento de marca FOX */
  --fox-dark:    #d2570f;

  /* Neutral */
  --ink:         #0B1726;
  --body:        #2A3A4D;
  --muted:       #5B6B7F;
  --line:        #E2E8F0;
  --bg:          #FFFFFF;
  --bg-soft:     #F5F8FC;
  --bg-navy:     #08203a;

  /* Utility */
  --whatsapp:    #25D366;
  --success:     #16A34A;
  --warning:     #F59E0B;

  /* Typography */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1180px;
  --radius:    14px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(10,37,64,.06), 0 1px 3px rgba(10,37,64,.08);
  --shadow:    0 8px 24px rgba(10,37,64,.10);
  --shadow-lg: 0 24px 60px rgba(10,37,64,.16);
  --ease:      cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--blue-600); }
ul { list-style: none; }
h1,h2,h3,h4 { color: var(--ink); line-height: 1.18; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p  { color: var(--body); }
strong { color: var(--ink); font-weight: 700; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 22px; }
.section { padding: 84px 0; }
.section--soft { background: var(--bg-soft); }
.section--navy { background: var(--bg-navy); color: #cfe0f2; }
.section--navy h2, .section--navy h3 { color: #fff; }
.center { text-align: center; }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  background: var(--sky); padding: 6px 14px; border-radius: 999px; margin-bottom: 16px;
}
.section--navy .eyebrow { color: #9cc4ff; background: rgba(59,130,246,.14); }
.lead { font-size: 1.16rem; color: var(--muted); max-width: 680px; }
.center .lead { margin-left: auto; margin-right: auto; }
.section-head { max-width: 760px; margin: 0 auto 52px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 12px;
  border: 2px solid transparent; cursor: pointer; transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 8px 20px rgba(23,99,230,.28); }
.btn-primary:hover { background: var(--blue-600); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(23,99,230,.36); }
.btn-wa { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 20px rgba(37,211,102,.30); }
.btn-wa:hover { background: #1eb858; color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--sky); color: var(--navy); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 11px; font-weight: 800; color: var(--ink); font-size: 1.18rem; }
.brand img, .brand svg { height: 40px; width: auto; }
.brand b { color: var(--fox); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links > li > a {
  display: block; padding: 9px 14px; color: var(--ink); font-weight: 600; font-size: .97rem; border-radius: 8px;
}
.nav-links > li > a:hover { background: var(--bg-soft); color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-links > li > a.nav-phone,
.nav-links > li > a.nav-wa { display: inline-flex; align-items: center; gap: 7px; }
.nav-phone { font-weight: 800; color: var(--navy); white-space: nowrap; }
.nav-phone svg { width: 17px; height: 17px; color: var(--blue); flex: 0 0 auto; }
.nav-wa { font-weight: 700; color: var(--whatsapp) !important; }
.nav-wa svg { width: 17px; height: 17px; flex: 0 0 auto; }

/* Dropdown */
.has-drop { position: relative; }
.has-drop > a::after { content: "▾"; margin-left: 6px; font-size: .7em; opacity: .6; }
.drop {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 250px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .2s var(--ease);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--body); font-size: .94rem; font-weight: 500; }
.drop a:hover { background: var(--bg-soft); color: var(--blue); }

/* Mega-menú de Servicios */
.mega { min-width: 520px; padding: 0; overflow: hidden; }
.mega-head { background: var(--bg-navy); color: #fff; padding: 15px 20px; }
.mega-head strong { display: block; font-size: 1rem; }
.mega-head span { font-size: .8rem; color: #9fb6cf; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; padding: 10px; }
.mega-item { display: flex !important; gap: 12px; align-items: center; padding: 10px 12px !important; border-radius: 10px; }
.mega-item:hover { background: var(--bg-soft); }
.mega-ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: var(--sky); color: var(--blue); display: grid; place-items: center; transition: all .2s var(--ease); }
.mega-ico svg { width: 22px; height: 22px; }
.mega-item:hover .mega-ico { background: var(--blue); color: #fff; }
.mega-txt b { display: block; color: var(--ink); font-size: .92rem; font-weight: 700; line-height: 1.2; }
.mega-txt small { color: var(--muted); font-size: .78rem; }
.mega-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 20px; border-top: 1px solid var(--line); background: var(--bg-soft); }
.mega-foot > span { font-size: .85rem; color: var(--muted); }
.mega-foot a { font-weight: 700; font-size: .85rem; color: var(--success) !important; padding: 0 !important; }
.mega-foot a:hover { background: none !important; text-decoration: underline; }
@media (max-width: 820px) {
  .mega { min-width: 0; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-head, .mega-foot { display: none; }
}

/* Mobile nav */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .3s; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: linear-gradient(165deg, #ffffff 0%, var(--sky) 100%); }
.hero > .container { position: relative; z-index: 2; }
/* Malla de puntos que se desplaza lentamente */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .55;
  background-image: radial-gradient(rgba(23,99,230,.20) 1.5px, transparent 1.6px);
  background-size: 38px 38px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
          mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
  animation: heroDots 26s linear infinite;
}
@keyframes heroDots { from { background-position: 0 0; } to { background-position: 380px 190px; } }
/* Luces azules que flotan suavemente */
.hero::after {
  content: ""; position: absolute; inset: -10%; z-index: 0; pointer-events: none;
  background:
    radial-gradient(440px 440px at 80% 16%, rgba(23,99,230,.16), transparent 62%),
    radial-gradient(380px 380px at 10% 88%, rgba(59,130,246,.13), transparent 62%);
  animation: heroBlobs 17s ease-in-out infinite alternate;
}
@keyframes heroBlobs {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to   { transform: translate3d(-3%, 2.5%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after { animation: none; }
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; padding: 70px 0 80px; }

/* Slideshow de vehículos en el hero (transición fade) */
.hero-slideshow {
  position: relative; aspect-ratio: 600 / 545; background: transparent;
}
.hero-slideshow img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain;
  opacity: 0; transform: scale(1.04);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.hero-slideshow img.is-active { opacity: 1; transform: scale(1); }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero p.lead { margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust b { font-size: 1.5rem; color: var(--navy); }
.hero-trust span { font-size: .85rem; color: var(--muted); }

/* Hero visual / dashboard mock */
.hero-card {
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); padding: 18px;
  border: 1px solid var(--line); position: relative;
}
.hero-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.hero-card-top .dot { width: 11px; height: 11px; border-radius: 50%; }
.dots { display: flex; gap: 6px; }
.pill-live { display: inline-flex; align-items: center; gap: 6px; font-size: .76rem; font-weight: 700; color: var(--success); }
.pill-live::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: blink 1.4s infinite; }
@keyframes blink { 50% { opacity: .35; } }
/* ---------- Globo terráqueo giratorio (panel del hero) ---------- */
.map-mock {
  height: 240px; border-radius: 14px; position: relative; overflow: hidden;
  background:
    radial-gradient(1px 1px at 16% 22%, rgba(255,255,255,.9), transparent),
    radial-gradient(1px 1px at 74% 14%, rgba(255,255,255,.7), transparent),
    radial-gradient(1.4px 1.4px at 60% 72%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 30% 82%, rgba(255,255,255,.6), transparent),
    radial-gradient(1px 1px at 88% 58%, rgba(255,255,255,.7), transparent),
    radial-gradient(1px 1px at 46% 12%, rgba(255,255,255,.55), transparent),
    radial-gradient(150px 130px at 72% 22%, rgba(23,99,230,.20), transparent 60%),
    radial-gradient(circle at 50% 48%, #0c2238 0%, #07111f 68%, #03070e 100%);
}
.map-route { position: absolute; inset: 0; }
/* el planeta: textura real de la Tierra + punto celeste fijo sobre Perú.
   Ambas capas comparten el mismo tamaño de tile y se desplazan juntas,
   por eso el punto queda "pegado" a Perú y solo se ve cuando Perú gira al frente. */
.map-mock::before {
  content: ""; z-index: 1;
  --d: 200px;     /* diámetro del globo */
  --tile: 400px;  /* ancho de un mundo completo = 2 x diámetro */
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: var(--d); height: var(--d); border-radius: 50%;
  background-image:
    radial-gradient(circle 8px at 29.2% 55.6%, #d8f4ff 0 3px, #4ec3ff 3px 5px, rgba(78,195,255,.55) 6px, transparent 9px),
    url(../img/earth.jpg);
  background-size: var(--tile) 100%, var(--tile) 100%;
  background-repeat: repeat-x, repeat-x;
  background-position: 0 center, 0 center;
  box-shadow:
    inset -24px -22px 52px rgba(0,0,0,.78),
    inset 18px 16px 42px rgba(120,180,255,.20),
    0 0 44px rgba(40,120,230,.55);
  animation: globeSpin 26s linear infinite;
}
/* atmósfera + brillo especular */
.map-mock::after {
  content: ""; z-index: 2; pointer-events: none;
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 212px; height: 212px; border-radius: 50%;
  background: radial-gradient(circle at 33% 27%, rgba(255,255,255,.20), transparent 38%);
  box-shadow: 0 0 58px 6px rgba(30,110,210,.28);
}
@keyframes globeSpin {
  from { background-position: 0 center, 0 center; }
  to   { background-position: calc(-1 * var(--tile)) center, calc(-1 * var(--tile)) center; }
}
/* marcador naranja fijo desactivado: ahora el punto va sobre Perú en el globo */
.map-pin { display: none; }
@media (max-width: 520px) {
  .map-mock::before { --d: 170px; --tile: 340px; }
  .map-mock::after { width: 182px; height: 182px; }
}
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 14px; }
.hero-stat { background: var(--bg-soft); border-radius: 10px; padding: 12px; text-align: center; }
.hero-stat b { display: block; color: var(--navy); font-size: 1.1rem; }
.hero-stat span { font-size: .72rem; color: var(--muted); }

/* ---------- Trust logos ---------- */
.logos { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.logos p { text-align: center; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.logo-row span { font-weight: 800; color: #9aa9bb; font-size: 1.15rem; letter-spacing: .02em; }

/* Marquesina de logos (movimiento en bucle) */
.logo-marquee {
  overflow: hidden; position: relative; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 7%, #000 93%, transparent);
}
.logo-track {
  display: flex; align-items: center; gap: 30px; width: max-content;
  animation: logoMarquee 34s linear infinite;
}
.logo-marquee:hover .logo-track { animation-play-state: paused; }
.logo-track img {
  width: 150px; height: 56px; object-fit: contain; flex: 0 0 auto;
  opacity: .85; transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.logo-track img:hover { opacity: 1; transform: scale(1.06); }
@keyframes logoMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }
@media (max-width: 600px) { .logo-track { gap: 20px; } .logo-track img { width: 110px; height: 46px; } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe0f5; }
.card .ico {
  width: 54px; height: 54px; border-radius: 13px; display: grid; place-items: center;
  background: var(--sky); color: var(--blue); margin-bottom: 16px;
}
.card .ico svg { width: 28px; height: 28px; }
.card h3 { margin-bottom: 8px; }
.card p { font-size: .96rem; color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: .92rem; }
.card-link::after { content: "→"; transition: transform .2s var(--ease); }
.card:hover .card-link::after { transform: translateX(4px); }

/* Problem/solution check list */
.checklist { display: grid; gap: 16px; }
.checklist li { display: flex; gap: 14px; align-items: flex-start; }
.checklist .chk {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%; background: rgba(22,163,74,.12);
  color: var(--success); display: grid; place-items: center; font-weight: 800; margin-top: 2px;
}
.checklist b { display: block; color: var(--ink); margin-bottom: 2px; }
.checklist span { color: var(--muted); font-size: .95rem; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 8px; }
.step .num {
  width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.2rem; margin-bottom: 16px;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Features (navy) ---------- */
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature .ico {
  flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: rgba(59,130,246,.16);
  color: #8fc0ff; display: grid; place-items: center;
}
.feature .ico svg { width: 24px; height: 24px; }
.feature h3 { color: #fff; font-size: 1.12rem; margin-bottom: 4px; }
.feature p { color: #a9c1da; font-size: .95rem; }

/* ---------- Pricing band ---------- */
.price-band {
  background: linear-gradient(135deg, var(--navy), var(--blue-600));
  border-radius: 22px; padding: 48px; color: #fff; display: grid;
  grid-template-columns: 1.3fr .7fr; gap: 32px; align-items: center; box-shadow: var(--shadow-lg);
}
.price-band h2 { color: #fff; }
.price-band p { color: #cfe0f5; }
.price-tag { text-align: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); border-radius: 16px; padding: 26px; }
.price-tag span { font-size: .85rem; color: #bcd4ee; }
.price-tag b { display: block; font-size: 2.6rem; color: #fff; line-height: 1.1; }
.price-tag small { color: #bcd4ee; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; background: #fff; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 22px; font-size: 1.05rem; font-weight: 700; color: var(--ink);
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-q .sign { flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%; background: var(--sky); color: var(--blue); display: grid; place-items: center; font-size: 1.2rem; transition: transform .25s var(--ease); }
.faq-item.open .faq-q .sign { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a div { padding: 0 22px 22px; color: var(--muted); }
.faq-item.open .faq-a { max-height: 460px; }

/* ---------- CTA strip ---------- */
.cta-strip { background: linear-gradient(135deg, var(--blue), var(--navy)); color: #fff; text-align: center; }
.cta-strip h2 { color: #fff; margin-bottom: 14px; }
.cta-strip p { color: #d6e6fb; max-width: 600px; margin: 0 auto 26px; }
.cta-strip .hero-cta { justify-content: center; }

/* ---------- Region chips ---------- */
.region-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 14px; }
.region-card {
  display: flex; align-items: center; gap: 12px; padding: 16px 18px; background: #fff;
  border: 1px solid var(--line); border-radius: 12px; font-weight: 700; color: var(--ink);
  transition: all .2s var(--ease);
}
.region-card:hover { border-color: var(--blue); box-shadow: var(--shadow-sm); color: var(--blue); transform: translateY(-2px); }
.region-card svg { width: 22px; height: 22px; color: var(--blue); flex: 0 0 auto; }

/* Tarjetas de cobertura con imagen */
.geo-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.geo-card {
  position: relative; display: block; border-radius: 16px; overflow: hidden;
  aspect-ratio: 1 / 1; box-shadow: var(--shadow-sm); background: var(--navy);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.geo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.geo-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.geo-card:hover img { transform: scale(1.07); }
.geo-card .cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 30px 16px 14px; color: #fff; font-weight: 800; font-size: 1.05rem;
  background: linear-gradient(transparent, rgba(6,18,34,.86));
}
.geo-card .cap span { display: inline-flex; align-items: center; gap: 7px; }
.geo-card .cap svg { width: 18px; height: 18px; color: #7fc0ff; }
.geo-card .cap em { font-style: normal; font-size: 1.4rem; line-height: 1; opacity: .9; transition: transform .25s var(--ease); }
.geo-card:hover .cap em { transform: translateX(4px); }
@media (max-width: 900px) { .geo-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .geo-grid { grid-template-columns: 1fr; } }

/* ---------- Tienda ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.shop-card {
  display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden; transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.shop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shop-thumb { position: relative; display: block; aspect-ratio: 1 / 1; background: #f3f6fb; padding: 10px; }
.shop-thumb img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; transition: transform .4s var(--ease); }
.shop-card:hover .shop-thumb img { transform: scale(1.05); }
.shop-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--fox); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .04em; padding: 4px 10px; border-radius: 999px;
}
.shop-body { display: flex; flex-direction: column; flex: 1; padding: 16px 16px 18px; border-top: 1px solid var(--line); }
.shop-cat { font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--blue); margin-bottom: 6px; }
.shop-body h3 { font-size: .98rem; line-height: 1.35; margin-bottom: 12px; min-height: 2.6em; }
.shop-price { margin-top: auto; margin-bottom: 14px; display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.shop-price del { color: var(--muted); font-size: .9rem; }
.shop-price strong { color: var(--navy); font-size: 1.3rem; }
.shop-actions { display: flex; gap: 8px; }
.shop-actions .btn { flex: 1; padding: 11px 14px; font-size: .92rem; }
.shop-actions .shop-wa { flex: 0 0 auto; width: 46px; padding: 11px; }
.shop-actions .shop-wa svg { width: 20px; height: 20px; }
@media (max-width: 980px) { .shop-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } .shop-body h3 { min-height: 0; } }
@media (max-width: 420px) { .shop-grid { grid-template-columns: 1fr; } }

/* ---------- Blog ---------- */
.post-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all .22s var(--ease); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--navy), var(--blue)); position: relative; display: grid; place-items: center; }
.post-thumb span { color: rgba(255,255,255,.9); font-weight: 800; font-size: 1.05rem; padding: 18px; text-align: center; }
.post-body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-cat { font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; }
.post-body h3 { font-size: 1.15rem; margin-bottom: 8px; }
.post-body p { font-size: .94rem; color: var(--muted); flex: 1; }
.post-meta { font-size: .82rem; color: var(--muted); margin-top: 14px; }

/* ---------- Article ---------- */
.article { max-width: 760px; margin: 0 auto; }
.article h2 { margin: 38px 0 14px; }
.article h3 { margin: 28px 0 10px; }
.article p { margin-bottom: 18px; }
.article ul, .article ol { margin: 0 0 18px 22px; }
.article li { margin-bottom: 8px; list-style: disc; }
.article ol li { list-style: decimal; }
.article blockquote { border-left: 4px solid var(--blue); background: var(--bg-soft); padding: 16px 22px; border-radius: 8px; margin: 22px 0; color: var(--navy); font-style: italic; }
.article table { width: 100%; border-collapse: collapse; margin: 22px 0; font-size: .95rem; }
.article th, .article td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; }
.article th { background: var(--bg-soft); color: var(--ink); }
.breadcrumb { font-size: .88rem; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--blue); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-navy); color: #9fb6cf; padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.site-footer h4 { color: #fff; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 18px; }
.site-footer a { color: #9fb6cf; font-size: .95rem; }
.site-footer a:hover { color: #fff; }
.footer-links li { margin-bottom: 10px; }
.footer-brand .brand { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #8ba3bd; font-size: .94rem; margin-bottom: 16px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 12px; font-size: .94rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--blue-light); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .86rem; color: #7e96b1; }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  background: var(--whatsapp); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45); animation: floaty 2.6s ease-in-out infinite;
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { color: #fff; transform: scale(1.08); }
@keyframes floaty { 50% { transform: translateY(-6px); } }

/* ---------- Utilities ---------- */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.mt-24{margin-top:24px}.mb-32{margin-bottom:32px}
.hide-desktop{display:none}
.text-fox{color:var(--fox)}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .price-band { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 820px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 14px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open > li > a { padding: 13px 14px; }
  .has-drop .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 4px 14px; min-width: 0; }
  .has-drop:not(.open) .drop { display: none; }
  .section { padding: 60px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .price-band { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hide-desktop{display:block}
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .hero-trust { gap: 18px; }
  body { font-size: 16px; }
}
