/* =====================================================================
   PC Soluciones — Belgrano, CABA
   Sistema visual. Paleta turquesa (del logo) + acento turquesa.
   Para cambiar el color de acento de TODO el sitio, editá --accent.
   ===================================================================== */
:root {
  /* Acento turquesa (color principal de marca) */
  --accent: #0EA5A4;
  --accent-soft: color-mix(in oklab, var(--accent) 14%, white);
  --accent-ink: color-mix(in oklab, var(--accent) 62%, #06251f);

  /* Turquesas profundos (fondos oscuros: hero, footer, tarjeta destacada) */
  --navy-900: #013E4D;
  --navy-800: #014E5F;
  --navy-700: #006C82;
  --navy-600: #00829E;

  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --slate-50:  #F4F8F9;

  --ink: #0F172A;
  --paper: #FFFFFF;

  --maxw: 1200px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 1px 3px rgba(15,23,42,.10);
  --shadow-md: 0 8px 24px -8px rgba(15,23,42,.18), 0 2px 6px rgba(15,23,42,.06);
  --shadow-lg: 0 30px 60px -20px rgba(1,62,77,.35), 0 12px 24px -12px rgba(1,62,77,.22);

  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,h2,h3,h4 { font-family: var(--font-display); margin: 0; letter-spacing: -.02em; line-height: 1.05; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
::selection { background: var(--accent); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- shared bits ---- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 12.5px;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--slate-500);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }
.eyebrow.on-dark { color: var(--slate-300); }

.btn {
  --bg: var(--accent);
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; letter-spacing: -.01em;
  padding: 13px 22px; border-radius: 11px; border: 0;
  background: var(--bg); color: #fff;
  box-shadow: 0 8px 18px -8px color-mix(in oklab, var(--accent) 70%, transparent);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 26px -10px color-mix(in oklab, var(--accent) 75%, transparent); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--slate-200); box-shadow: none; }
.btn--ghost:hover { border-color: var(--slate-300); background: var(--slate-50); box-shadow: none; }
.btn--ghost.on-dark { color: #fff; border-color: rgba(255,255,255,.22); }
.btn--ghost.on-dark:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.4); }
.btn--lg { padding: 16px 28px; font-size: 16px; }
.btn--wa { --bg: #1FA855; box-shadow: 0 8px 18px -8px rgba(31,168,85,.7); }
.btn--wa:hover { box-shadow: 0 14px 26px -10px rgba(31,168,85,.8); }

.section { padding: 96px 0; position: relative; }
.section__head { max-width: 640px; }
.section__title { font-size: clamp(30px, 4vw, 46px); font-weight: 600; margin-top: 16px; color: var(--slate-900); }
.section__title em { font-style: normal; color: var(--accent); }
.section__sub { margin-top: 16px; font-size: 17px; line-height: 1.6; color: var(--slate-600); }

/* reveal on scroll — transform only; el contenido siempre es visible */
.reveal.in { animation: revealUp .6s var(--ease); }
@keyframes revealUp { from { transform: translateY(20px); } to { transform: none; } }
@media (prefers-reduced-motion: reduce) { .reveal.in { animation: none; } html { scroll-behavior: auto; } }

.grid-tex {
  background-image:
    linear-gradient(to right, rgba(148,163,184,.10) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148,163,184,.10) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* ===================== Header ===================== */
.hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  background: linear-gradient(180deg, rgba(1,38,48,.42), rgba(1,38,48,0));
  backdrop-filter: blur(10px) saturate(1.4);
  border-bottom: 1px solid transparent;
}
.hdr--scrolled { background: color-mix(in oklab, white 90%, transparent); box-shadow: var(--shadow-sm); border-bottom-color: var(--slate-200); }
.hdr__inner { display: flex; align-items: center; gap: 24px; height: 72px; }

.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark {
  width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex: none;
  display: grid; place-items: center;
  box-shadow: 0 4px 10px -4px rgba(1,62,77,.5);
}
.logo__mark img { width: 100%; height: 100%; object-fit: cover; }

/* Íconos de marca (Instagram / WhatsApp) como imagen */
.iico { display: inline-block; vertical-align: -4px; object-fit: contain; }
.contact__ico--img { background: #fff; }
.contact__ico--img img { display: block; }
.ftr__soc--img { background: rgba(255,255,255,.10); }
.ftr__soc--img:hover { background: rgba(255,255,255,.18); }
.logo__txt { font-family: var(--font-display); font-weight: 700; font-size: 17px; line-height: 1; letter-spacing: -.02em; display: flex; flex-direction: column; gap: 3px; max-width: 220px; color: var(--navy-900); }
.logo__sub { display: block; align-self: stretch; text-align: justify; text-align-last: justify; font-size: 10px; letter-spacing: .12em; color: var(--accent); font-weight: 700; }

.hdr__nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.hdr__link { position: relative; font-weight: 600; font-size: 15px; color: var(--slate-600); padding: 9px 14px; border-radius: 9px; transition: color .2s var(--ease), background .2s var(--ease); }
.hdr__link:hover { color: var(--slate-900); background: var(--slate-100); }
.hdr__link.is-active { color: var(--navy-900); }
.hdr__link.is-active::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 3px; height: 2px; background: var(--accent); border-radius: 2px; }
.hdr__cta { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.hdr__phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14.5px; color: var(--navy-800); }
.hdr__phone:hover { color: var(--accent); }

.hdr__burger { display: none; margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--slate-200); border-radius: 10px; background: #fff; flex-direction: column; gap: 4px; align-items: center; justify-content: center; }
.hdr__burger span { width: 18px; height: 2px; background: var(--navy-800); border-radius: 2px; transition: .2s; }
.hdr__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hdr__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hdr__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hdr__mobile { display: none; flex-direction: column; gap: 4px; padding: 0 28px; max-height: 0; overflow: hidden; background: #fff; border-bottom: 1px solid var(--slate-200); transition: max-height .35s var(--ease), padding .35s var(--ease); }
.hdr__mobile.is-open { max-height: 380px; padding: 12px 28px 22px; }
.hdr__mlink { font-weight: 600; font-size: 16px; color: var(--slate-700); padding: 13px 6px; border-bottom: 1px solid var(--slate-100); }
.hdr__mlink.is-active { color: var(--accent); }
.hdr__mobile .btn { margin-top: 14px; }

/* ===================== Hero base ===================== */
.hero { position: relative; padding-top: 128px; padding-bottom: 88px; overflow: hidden; }
.hero__title { font-size: clamp(38px, 6vw, 68px); font-weight: 600; color: var(--navy-900); }
.hero__title em { font-style: normal; color: var(--accent); }
.hero__sub { margin-top: 22px; font-size: clamp(16px, 1.4vw, 19px); line-height: 1.6; color: var(--slate-600); max-width: 30em; }
.hero__sub.on-dark { color: var(--slate-300); }
.hero__actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__actions--center { justify-content: center; }
.hero__loc { display: block; margin-top: 6px; font-family: var(--font-body); font-weight: 700; font-size: clamp(15px, 1.5vw, 19px); letter-spacing: .01em; color: var(--slate-500); }
.hero__loc.on-dark { color: var(--slate-400); }
.hero__title--big .hero__loc, .hero__title--light .hero__loc { color: var(--slate-400); }

/* split */
.hero--split .hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero__trust { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; background: #fff; border: 1px solid var(--slate-200); border-radius: 12px; box-shadow: var(--shadow-sm); white-space: nowrap; }
.chip__ico { color: var(--accent); display: grid; place-items: center; }
.chip__val { font-family: var(--font-display); font-weight: 700; color: var(--navy-900); font-size: 15px; }
.chip__lab { font-size: 13px; color: var(--slate-500); }
.hero__media { position: relative; }
.ph { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; background: linear-gradient(150deg, var(--slate-100), var(--slate-200)); border: 1px solid var(--slate-200); box-shadow: var(--shadow-lg); display: grid; place-items: center; }
.ph--dark { background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); border-color: rgba(255,255,255,.08); }
.ph__tex { position: absolute; inset: 0; opacity: .6; }
.ph--dark .ph__tex { opacity: .25; }
.ph__sheen { position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%); mix-blend-mode: soft-light; }
.ph__center { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; color: var(--slate-400); }
.ph--dark .ph__center { color: var(--slate-300); }
.ph__label { font-size: 13px; font-weight: 600; letter-spacing: .02em; }
.float-card { position: absolute; display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; padding: 12px 15px; box-shadow: var(--shadow-md); animation: floaty 5s ease-in-out infinite; }
.float-card__ico { width: 36px; height: 36px; border-radius: 9px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); }
.float-card b { display: block; font-family: var(--font-display); font-size: 14px; color: var(--navy-900); }
.float-card span { font-size: 12.5px; color: var(--slate-500); }
.float-card--tl { top: 22px; left: -26px; }
.float-card--br { bottom: 26px; right: -22px; animation-delay: -2.5s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@media (prefers-reduced-motion: reduce) { .float-card { animation: none; } }

/* centro */
.hero--centro {
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: 130px; padding-bottom: 96px;
  background:
    radial-gradient(ellipse 92% 78% at 50% 42%, rgba(1,38,48,.74), rgba(1,38,48,.52) 58%, rgba(1,38,48,.40) 100%),
    linear-gradient(180deg, rgba(1,38,48,.55) 0%, rgba(1,38,48,.30) 40%, rgba(1,38,48,.70) 100%),
    url("assets/hero.webp") center center / cover no-repeat,
    var(--navy-900);
}
.hero--centro .hero__bg { display: none; }
.hero__glow { position: absolute; top: -10%; left: 50%; transform: translateX(-50%); width: 720px; height: 520px; background: radial-gradient(circle, color-mix(in oklab, var(--accent) 42%, transparent), transparent 65%); opacity: .55; filter: blur(20px); }
.hero__center { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.hero__title--big { color: #fff; margin-top: 18px; }
.hero__band { margin-top: 56px; display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.hero__bandItem { padding: 16px 26px; border-radius: 14px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); min-width: 150px; }
.hero__bandItem b { display: block; font-family: var(--font-display); font-size: 26px; color: #fff; }
.hero__bandItem span { font-size: 13.5px; color: var(--slate-400); }

/* diagonal */
.hero--diag { background: var(--navy-900); padding-top: 140px; padding-bottom: 0; }
.hero--diag .hero__bg { position: absolute; inset: 0; opacity: .22; }
.hero__diagShape { position: absolute; top: 0; right: 0; width: 56%; height: 100%; background: linear-gradient(140deg, var(--navy-700), var(--navy-800)); clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%); opacity: .85; }
.hero__diagGrid { position: relative; display: grid; grid-template-columns: 1fr .85fr; gap: 48px; align-items: center; padding-bottom: 70px; }
.hero__title--light { color: #fff; }
.hero__diagMedia .ph { aspect-ratio: 5 / 4; }
.hero__quickWrap { position: relative; transform: translateY(50%); z-index: 2; }
.hero__quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.quick-card { display: flex; align-items: center; gap: 14px; padding: 20px 22px; background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; box-shadow: var(--shadow-lg); font-family: var(--font-display); font-weight: 600; color: var(--navy-900); transition: transform .2s var(--ease); }
.quick-card:hover { transform: translateY(-4px); }
.quick-card__ico { width: 44px; height: 44px; border-radius: 11px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); flex: none; }
.quick-card__lab { flex: 1; font-size: 15.5px; }
.quick-card > svg:last-child { color: var(--slate-400); }
.hero--diag + .section { padding-top: 150px; }

/* ===================== Services ===================== */
.section--services { background: var(--slate-50); }
.svc-grid { margin-top: 52px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc { position: relative; }
.svc__inner { height: 100%; }
.svc__face {
  position: relative; height: 100%; overflow: hidden;
  background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg);
  padding: 30px 28px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.svc__front::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); z-index: 2; }
.svc:hover .svc__front { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--accent) 30%, var(--slate-200)); }
.svc:hover .svc__front::before { transform: scaleX(1); }
.svc__bg { position: absolute; right: -6%; bottom: -5%; width: 66%; height: auto; opacity: .7; pointer-events: none; z-index: 0; }
.svc__num { display: none; }
.svc__ico { display: none; }
.svc__title { position: relative; z-index: 1; font-size: 22px; font-weight: 600; color: var(--navy-900); }
.svc__sub { display: block; font-family: var(--font-body); font-weight: 600; font-size: 14px; letter-spacing: 0; color: var(--slate-500); margin-top: 3px; }
.svc__desc { position: relative; z-index: 1; margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--slate-600); }
.svc__actions { position: relative; z-index: 1; display: flex; align-items: center; gap: 16px; margin-top: auto; padding-top: 22px; }
.svc__link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14.5px; color: var(--navy-800); padding: 9px 8px; margin: -9px -8px; border-radius: 9px; }
.svc__link svg { transition: transform .2s var(--ease); }
.svc__link:hover { color: var(--accent); }
.svc__link:hover svg { transform: translateX(4px); }
.svc__more { display: none; align-items: center; gap: 6px; font-family: var(--font-body); font-weight: 600; font-size: 13.5px; color: var(--slate-600); background: transparent; border: 1.5px solid var(--slate-300); border-radius: 999px; padding: 7px 14px; cursor: pointer; transition: border-color .2s, color .2s; }
.svc__more:hover { border-color: var(--accent); color: var(--accent); }
.svc__back { display: none; }

/* featured */
.feat {
  position: relative; margin-top: 44px;
  background:
    linear-gradient(90deg, rgba(1,56,69,.94) 0%, rgba(1,56,69,.70) 34%, rgba(1,56,69,.20) 60%, rgba(1,56,69,0) 100%),
    url("assets/feat-bg.webp") center / cover no-repeat,
    linear-gradient(135deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(255,255,255,.08); border-radius: var(--radius-lg);
  padding: 30px 32px; box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.feat::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; background: radial-gradient(circle, color-mix(in oklab, var(--accent) 40%, transparent), transparent 70%); opacity: .35; pointer-events: none; }
.feat__badge { position: absolute; top: 20px; right: 24px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-body); font-weight: 800; font-size: 12px; letter-spacing: .06em; text-transform: uppercase; color: #0F172A; background: #FACC15; padding: 7px 13px; border-radius: 999px; box-shadow: 0 6px 16px -6px rgba(250,204,21,.55); }
.feat__badge svg { color: #0F172A; }
.feat__body { position: relative; display: flex; gap: 20px; align-items: flex-start; flex: 1; min-width: 280px; }
.feat__ico { flex: none; width: 60px; height: 60px; border-radius: 15px; display: grid; place-items: center; background: color-mix(in oklab, var(--accent) 24%, transparent); color: #fff; }
.feat__title { font-size: 25px; font-weight: 600; color: #fff; padding-right: 120px; }
.feat__desc { margin-top: 10px; font-size: 15.5px; line-height: 1.6; color: var(--slate-300); max-width: 52ch; }
.feat__list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.feat__list li { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #fff; }
.feat__list svg { color: var(--accent); flex: none; }
.feat__cta { position: relative; flex: none; }

/* ===================== Why us ===================== */
.section--why { background: var(--paper); }
.why__head { max-width: 720px; }
.why-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why { padding: 28px 24px; background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius-lg); transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.why:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--accent) 28%, var(--slate-200)); }
.why__ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); margin-bottom: 18px; }
.why__title { font-size: 18px; font-weight: 600; color: var(--navy-900); }
.why__desc { margin-top: 10px; font-size: 14px; line-height: 1.55; color: var(--slate-600); }

/* ===================== Testimonials ===================== */
.section--testi { background: var(--slate-50); }
.testi-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 28px 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 16px; }
.testi__stars { display: flex; gap: 3px; color: #FBBF24; }
.testi__quote { font-size: 16px; line-height: 1.6; color: var(--slate-700); flex: 1; }
.testi__ph { color: var(--slate-400); font-style: italic; }
.testi__author { display: flex; align-items: center; gap: 12px; padding-top: 4px; border-top: 1px solid var(--slate-100); margin-top: 4px; }
.testi__avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--slate-100); color: var(--slate-400); flex: none; }
.testi__name { display: block; font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--navy-900); }
.testi__meta { display: block; font-size: 13px; color: var(--slate-500); }

/* ===================== FAQ ===================== */
.section--faq { background: var(--paper); }
.faq-list { margin-top: 44px; display: flex; flex-direction: column; gap: 14px; max-width: 840px; }
.faq { background: var(--slate-50); border: 1px solid var(--slate-200); border-radius: var(--radius); overflow: hidden; transition: border-color .2s var(--ease); }
.faq[open] { border-color: color-mix(in oklab, var(--accent) 30%, var(--slate-200)); }
.faq > summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--navy-900); transition: background .2s var(--ease); }
.faq > summary::-webkit-details-marker { display: none; }
.faq > summary::marker { content: ""; }
.faq > summary:hover { background: var(--slate-100); }
.faq__chev { color: var(--accent); flex: none; transition: transform .25s var(--ease); }
.faq[open] .faq__chev { transform: rotate(180deg); }
.faq__a { padding: 0 22px 20px; font-size: 15px; line-height: 1.65; color: var(--slate-600); max-width: 70ch; }

/* ===================== Contact ===================== */
.section--contact { background: var(--slate-50); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact__wa { margin-top: 28px; align-self: flex-start; }
.contact__list { list-style: none; margin: 30px 0 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 12px; }
.contact__item { display: flex; gap: 13px; }
.contact__link { display: flex; gap: 13px; border-radius: 12px; transition: transform .18s var(--ease); }
.contact__link:hover { transform: translateX(3px); }
.contact__link:hover .contact__ico { border-color: color-mix(in oklab, var(--accent) 40%, var(--slate-200)); }
.contact__ico { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; background: #fff; border: 1px solid var(--slate-200); color: var(--accent); flex: none; }
.contact__lab { display: block; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--slate-400); }
.contact__val { display: block; font-weight: 600; color: var(--navy-900); font-size: 14.5px; margin-top: 3px; word-break: break-word; }
.contact__sub { display: block; font-size: 12.5px; color: var(--slate-500); margin-top: 2px; }
.contact__hours { margin-top: 30px; display: flex; align-items: center; gap: 13px; padding: 16px 20px; background: #fff; border: 1px solid var(--slate-200); border-radius: 14px; }
.contact__hours svg { color: var(--accent); flex: none; }
.contact__hours b { display: block; font-family: var(--font-display); font-size: 14.5px; color: var(--navy-900); }
.contact__hours span { font-size: 13.5px; color: var(--slate-600); }

.contact__formCard { background: #fff; border: 1px solid var(--slate-200); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field__label { font-size: 13.5px; font-weight: 600; color: var(--navy-800); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 15px; color: var(--ink); padding: 12px 14px; border: 1.5px solid var(--slate-200); border-radius: 11px; background: var(--slate-50); transition: border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease); width: 100%; }
.field textarea { resize: vertical; min-height: 96px; }
.field select.is-empty { color: var(--slate-400); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: #fff; box-shadow: 0 0 0 4px color-mix(in oklab, var(--accent) 14%, transparent); }
.field--error input, .field--error select, .field--error textarea { border-color: #E11D48; background: color-mix(in oklab, #E11D48 5%, white); }
.field__msg { font-size: 12.5px; color: #E11D48; min-height: 14px; }
.field__msg:empty { min-height: 0; }
.form__submit { margin-top: 4px; align-self: flex-start; }
.form__note { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--slate-500); }
.form__note svg { color: var(--accent); }
.form-done { text-align: center; padding: 30px 10px; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.form-done__ico { width: 64px; height: 64px; border-radius: 50%; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent-ink); margin-bottom: 8px; }
.form-done h3 { font-size: 24px; color: var(--navy-900); }
.form-done p { font-size: 15px; line-height: 1.6; color: var(--slate-600); max-width: 36ch; }
.form-done .btn { margin-top: 14px; }

/* ===================== Footer ===================== */
.ftr { position: relative; background: var(--navy-900); color: var(--slate-300); padding: 70px 0 30px; overflow: hidden; }
.ftr__bg { position: absolute; inset: 0; opacity: .14; }
.ftr .wrap { position: relative; }
.ftr__top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 56px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ftr__pitch { margin-top: 18px; font-size: 14.5px; line-height: 1.65; color: var(--slate-400); max-width: 32ch; }
.ftr__social { margin-top: 22px; display: flex; gap: 10px; }
.ftr__soc { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--slate-300); transition: background .2s, color .2s, transform .2s; }
.ftr__soc:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.ftr__cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.ftr__colTitle { font-family: var(--font-display); font-size: 14px; color: #fff; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 16px; }
.ftr__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ftr__col a { font-size: 14px; color: var(--slate-400); transition: color .2s; }
.ftr__col a:hover { color: var(--accent); }
.ftr__contact li { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--slate-400); }
.ftr__contact svg { color: var(--accent); flex: none; }
.ftr__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; font-size: 13px; color: var(--slate-500); }
.ftr__legal { display: flex; gap: 20px; }
.ftr__legal a:hover { color: var(--accent); }

/* ===================== WhatsApp flotante ===================== */
.wa-fab { position: fixed; right: 34px; bottom: 32px; z-index: 60; width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; background: #25D366; color: #fff; box-shadow: 0 10px 24px -6px rgba(37,211,102,.55), 0 4px 10px rgba(15,23,42,.18); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.wa-fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 16px 30px -8px rgba(37,211,102,.65), 0 6px 14px rgba(15,23,42,.22); }
.wa-fab:active { transform: scale(.97); }
.wa-fab svg { position: relative; z-index: 1; }
.wa-fab__pulse { position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37,211,102,.5); animation: waPulse 2.4s var(--ease) infinite; }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,.5); } 70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); } 100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); } }
@media (prefers-reduced-motion: reduce) { .wa-fab__pulse { animation: none; } }

.cta-bar { display: none; }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hdr__nav, .hdr__cta { display: none; }
  .hdr__burger { display: flex; }
  .hdr__mobile { display: flex; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .feat { flex-direction: column; align-items: flex-start; }
  .feat__title { padding-right: 0; }
  .feat__cta { align-self: stretch; }
  .feat__cta.btn { width: 100%; }
  .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .ftr__top { grid-template-columns: 1fr; gap: 36px; }
  .ftr__cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .wrap { padding: 0 18px; }
  .section { padding: 52px 0; }
  .hero { padding-top: 104px; }
  .form__row, .contact__list { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .faq > summary { font-size: 16px; }
  .feat__badge { position: static; margin-bottom: 14px; }
  .feat__body { flex-direction: column; }
  .ftr__cols { grid-template-columns: 1fr; }
  .ftr__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .contact__formCard { padding: 24px; }
  .hero__bandItem { min-width: 130px; flex: 1; }
  .logo__txt { font-size: 16px; }
  /* Hero: ocultar chip ubicación */
  .hero__bandItem--loc { display: none; }
  /* Por qué elegirnos: compacto */
  .why { padding: 16px 12px; text-align: center; }
  .why__ico { margin: 0 auto 10px; width: 44px; height: 44px; }
  .why__desc { display: none; }
  .why__title { font-size: 15px; }
  /* Opiniones: slider horizontal */
  .testi-grid { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; margin: 40px -18px 0; padding: 4px 18px 14px; max-width: none; }
  .testi { scroll-snap-align: start; flex: 0 0 84%; min-width: 84%; }
  /* Servicios: flip */
  .svc { cursor: pointer; }
  .svc__inner { position: relative; min-height: 260px; }
  /* reveal por cross-fade (sin 3D: confiable en iOS) */
  .svc__face { position: absolute; inset: 0; opacity: 1; transition: opacity .3s var(--ease); cursor: pointer; }
  .svc:hover .svc__front { transform: none; box-shadow: var(--shadow-sm); border-color: var(--slate-200); }
  .svc__front { justify-content: flex-end; }
  .svc__front .svc__num, .svc__front .svc__ico, .svc__front .svc__desc { display: none; }
  .svc__front .svc__title { font-size: 22px; }
  .svc__front .svc__actions { margin-top: 14px; padding-top: 0; }
  .svc__front .svc__bg { right: -4%; bottom: -4%; width: 82%; opacity: .7; }
  .svc__back { display: flex; }
  .svc__front { pointer-events: auto; }
  .svc__back { pointer-events: none; opacity: 0; }
  .svc.is-flipped .svc__front { pointer-events: none; opacity: 0; }
  .svc.is-flipped .svc__back { pointer-events: auto; opacity: 1; }
  .svc__more { display: inline-flex; }
  /* WhatsApp flotante grande en mobile (sin barra) */
  .cta-bar { display: none; }
  .wa-fab { display: grid; width: 64px; height: 64px; right: 20px; bottom: 22px; }
  .wa-fab svg { width: 34px; height: 34px; }
  body { padding-bottom: 0; }
}

/* ===================== Cross-promo: caja vidriada → landing de posicionamiento ===================== */
.crosspromo { position: relative; overflow: hidden; padding: 64px 0 72px; background: radial-gradient(720px 360px at 50% 0%, color-mix(in oklab, var(--navy-700) 60%, var(--navy-900)), transparent 70%), var(--navy-900); }
.crosspromo__eyebrow { display: block; text-align: center; margin-bottom: 18px; font-family: var(--font-body); font-weight: 700; font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: #7fe6dd; }
.xbox { display: flex; align-items: center; gap: 18px; max-width: 780px; margin: 0 auto; text-decoration: none; border-radius: var(--radius-lg); padding: 18px 22px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); -webkit-backdrop-filter: blur(9px) saturate(1.2); backdrop-filter: blur(9px) saturate(1.2); transition: transform .22s var(--ease), background .22s var(--ease), border-color .22s var(--ease), box-shadow .22s var(--ease); }
.xbox:hover { transform: translateY(-3px); background: rgba(255,255,255,.14); border-color: rgba(34,211,197,.45); box-shadow: 0 16px 38px -16px rgba(34,211,197,.35); }
.xbox:active { transform: translateY(-1px) scale(.99); }
.xbox__ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: rgba(34,211,197,.16); color: #22D3C5; transition: transform .22s var(--ease); }
.xbox:hover .xbox__ico { transform: scale(1.06) rotate(-6deg); }
.xbox__txt { flex: 1 1 auto; color: #cfeeea; font-size: 14px; line-height: 1.4; }
.xbox__txt b { display: block; color: #fff; font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 3px; }
.xbox__cta { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 14.5px; color: #22D3C5; white-space: nowrap; }
.xbox__cta svg { transition: transform .22s var(--ease); }
.xbox:hover .xbox__cta svg { transform: translateX(4px); }
@media (max-width: 640px) { .xbox { flex-direction: column; align-items: flex-start; gap: 14px; padding: 18px; } .xbox__txt b { font-size: 15.5px; } }

/* ===== Botón "Llamar ahora" (secundario, junto al de WhatsApp en contacto) ===== */
.contact__call { margin-top: 12px; align-self: flex-start; }

/* ===== Header transparente sobre el hero → blanco translúcido al scrollear (como la landing) ===== */
.hdr .logo__txt { color: #fff; }
.hdr--scrolled .logo__txt { color: var(--navy-900); }
.hdr .logo__sub { color: #2ee0d0; }
.hdr--scrolled .logo__sub { color: var(--accent); }
.hdr .hdr__link { color: rgba(255,255,255,.86); }
.hdr .hdr__link:hover { color: #fff; background: rgba(255,255,255,.12); }
.hdr .hdr__link.is-active { color: #fff; }
.hdr--scrolled .hdr__link { color: var(--slate-600); }
.hdr--scrolled .hdr__link:hover { color: var(--slate-900); background: var(--slate-100); }
.hdr--scrolled .hdr__link.is-active { color: var(--navy-900); }
.hdr .hdr__phone { color: #fff; }
.hdr--scrolled .hdr__phone { color: var(--navy-800); }
.hdr .hdr__burger { background: transparent; border-color: rgba(255,255,255,.35); }
.hdr .hdr__burger span { background: #fff; }
.hdr--scrolled .hdr__burger { background: #fff; border-color: var(--slate-200); }
.hdr--scrolled .hdr__burger span { background: var(--navy-800); }
