/* ============================================================
   InnovaTap Solutions - Estilos
   Paleta: índigo #34378F + cian #15B6C7
   ============================================================ */

:root {
  --indigo: #34378F;
  --indigo-dark: #282a6e;
  --indigo-light: #4b4fb8;
  --cyan: #15B6C7;
  --cyan-dark: #0e95a3;
  --cyan-light: #d4f3f6;
  --ink: #1b1d3a;
  --gray: #5b5f76;
  --gray-light: #8a8fa6;
  --line: #e6e8f0;
  --bg: #ffffff;
  --bg-soft: #f5f7fb;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(52, 55, 143, .08);
  --shadow-lg: 0 20px 50px rgba(52, 55, 143, .15);
  --maxw: 1180px;
  --grad: linear-gradient(120deg, var(--indigo) 0%, var(--cyan) 100%);
  --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: var(--indigo); text-decoration: none; }

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

h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); letter-spacing: -.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); letter-spacing: -.01em; }
h3 { font-size: 1.25rem; }
p { color: var(--gray); }

.text-cyan { color: var(--cyan); }
.text-indigo { color: var(--indigo); }
.muted { color: var(--gray-light); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem; border-radius: 50px; font-weight: 600; font-size: .98rem;
  cursor: pointer; border: 2px solid transparent; transition: all .2s ease;
  font-family: var(--font); line-height: 1; white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 8px 20px rgba(21,182,199,.25); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(21,182,199,.4); }
.btn-cyan { background: var(--cyan); color: #fff; }
.btn-cyan:hover { background: var(--cyan-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--indigo); color: var(--indigo); }
.btn-outline:hover { background: var(--indigo); color: #fff; }
.btn-light { background: #fff; color: var(--indigo); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost-light { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.22); }
.btn-block { width: 100%; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn-sm { padding: .55rem 1rem; font-size: .85rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px); border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.nav__logo img { height: 40px; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; list-style: none; }
.nav__links a { color: var(--ink); font-weight: 500; font-size: .96rem; position: relative; }
.nav__links a:hover { color: var(--cyan); }
.nav__links a.active { color: var(--indigo); }
.nav__actions { display: flex; align-items: center; gap: .8rem; }
.cart-link {
  position: relative; display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--indigo); padding: .5rem .6rem;
}
.cart-badge {
  background: var(--cyan); color: #fff; border-radius: 50px; font-size: .72rem;
  font-weight: 700; min-width: 20px; height: 20px; display: inline-flex;
  align-items: center; justify-content: center; padding: 0 6px;
}
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--indigo); border-radius: 2px; transition: .2s; }

/* ---------- Hero ---------- */
.hero {
  background: var(--grad); color: #fff; position: relative; overflow: hidden;
  padding: clamp(3rem, 8vw, 6rem) 0;
}
.hero::after {
  content: ''; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); border-radius: 50%;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; position: relative; z-index: 2; }
.hero h1 { color: #fff; margin-bottom: 1.2rem; }
.hero p { color: rgba(255,255,255,.9); font-size: 1.15rem; margin-bottom: 1.8rem; max-width: 540px; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3); padding: .45rem 1rem; border-radius: 50px;
  font-size: .85rem; font-weight: 500; margin-bottom: 1.4rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__card {
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius); padding: 2rem; backdrop-filter: blur(6px);
}
.hero__phone {
  background: #fff; border-radius: 28px; padding: 1.5rem; box-shadow: var(--shadow-lg);
  color: var(--ink); text-align: center; max-width: 320px; margin: 0 auto;
}
.hero__phone .tap-icon { font-size: 3rem; }
.hero__phone .stars { color: #ffc107; font-size: 1.6rem; letter-spacing: 3px; }

/* ---------- Secciones ---------- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--soft { background: var(--bg-soft); }
.section--indigo { background: var(--indigo); color: #fff; }
.section--indigo h2, .section--indigo h3 { color: #fff; }
.section--indigo p { color: rgba(255,255,255,.85); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 3rem; }
.section__head p { font-size: 1.1rem; margin-top: .8rem; }
.eyebrow {
  display: inline-block; color: var(--cyan); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .6rem;
}
.section--indigo .eyebrow { color: var(--cyan-light); }

/* ---------- Grids de tarjetas ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.feature {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; transition: .25s; height: 100%;
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.feature__icon {
  width: 54px; height: 54px; border-radius: 14px; background: var(--cyan-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 1.1rem;
}
.feature h3 { margin-bottom: .5rem; }
.feature p { font-size: .96rem; }

/* ---------- Pasos ---------- */
.steps { counter-reset: step; display: grid; gap: 1.6rem; grid-template-columns: repeat(4, 1fr); }
.step { position: relative; padding: 2rem 1.4rem; background: #fff; border-radius: var(--radius); border: 1px solid var(--line); }
.step__num {
  counter-increment: step; width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); color: #fff; font-weight: 700; display: flex;
  align-items: center; justify-content: center; margin-bottom: 1rem; font-size: 1.1rem;
}
.step__num::before { content: counter(step); }

/* ---------- Tarjeta de producto ---------- */
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column; transition: .25s;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.product-card__img { aspect-ratio: 1/1; background: var(--bg-soft); overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.product-card:hover .product-card__img img { transform: scale(1.06); }
.product-card__body { padding: 1.2rem 1.3rem 1.4rem; display: flex; flex-direction: column; flex: 1; }
.product-card__cat { font-size: .74rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .08em; }
.product-card__title { font-size: 1.05rem; margin: .3rem 0 .4rem; }
.product-card__title a { color: var(--ink); }
.product-card__desc { font-size: .88rem; color: var(--gray); flex: 1; }
.product-card__foot { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; gap: .5rem; }
.price { font-size: 1.35rem; font-weight: 800; color: var(--indigo); }
.price small { font-size: .8rem; font-weight: 500; color: var(--gray-light); }

/* ---------- Reseñas / importancia Google ---------- */
.stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.6rem; margin-top: 2.5rem; }
.stat { text-align: center; padding: 1.5rem; }
.stat__num { font-size: clamp(2.2rem,5vw,3rem); font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.section--indigo .stat__num { background: none; -webkit-text-fill-color: #fff; color: #fff; }
.stat__label { color: var(--gray); font-weight: 500; }
.section--indigo .stat__label { color: rgba(255,255,255,.85); }

/* ---------- CTA banda ---------- */
.cta-band { background: var(--grad); color: #fff; border-radius: var(--radius); padding: clamp(2rem,5vw,3.5rem); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: .8rem; }
.cta-band p { color: rgba(255,255,255,.9); margin-bottom: 1.6rem; }

/* ---------- Ficha de producto ---------- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.gallery__main { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); background: var(--bg-soft); aspect-ratio: 1/1; }
.gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumbs { display: flex; gap: .7rem; margin-top: .8rem; }
.gallery__thumbs img { width: 76px; height: 76px; object-fit: cover; border-radius: 10px; border: 2px solid var(--line); cursor: pointer; }
.gallery__thumbs img.active { border-color: var(--cyan); }
.product-info .price { font-size: 2rem; }
.product-info ul { list-style: none; margin: 1.4rem 0; }
.product-info ul li { padding: .4rem 0 .4rem 1.8rem; position: relative; color: var(--gray); }
.product-info ul li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); border-radius: 50px; overflow: hidden; }
.qty button { width: 40px; height: 44px; border: 0; background: #fff; font-size: 1.2rem; cursor: pointer; color: var(--indigo); }
.qty input { width: 48px; height: 44px; border: 0; text-align: center; font-size: 1rem; font-family: var(--font); }

/* ---------- Carrito / tablas ---------- */
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: .9rem 1rem; text-align: left; border-bottom: 1px solid var(--line); font-size: .92rem; }
th { background: var(--bg-soft); font-weight: 600; color: var(--gray); font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
tbody tr:last-child td { border-bottom: 0; }
.cart-item-img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.cart-summary { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; }
.cart-summary .row { display: flex; justify-content: space-between; padding: .5rem 0; }
.cart-summary .total { font-size: 1.4rem; font-weight: 800; color: var(--indigo); border-top: 1px solid var(--line); margin-top: .6rem; padding-top: 1rem; }

/* ---------- Formularios ---------- */
.form-grid { display: grid; gap: 1.1rem; }
.form-grid.cols-2 { grid-template-columns: 1fr 1fr; }
.field label { display: block; font-weight: 600; font-size: .88rem; margin-bottom: .35rem; color: var(--ink); }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; background: #fff; transition: .15s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(21,182,199,.15); }
.field textarea { min-height: 130px; resize: vertical; }
.card-box { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem; }

/* ---------- Flash / alertas ---------- */
.flash { background: var(--cyan-light); border: 1px solid var(--cyan); color: var(--cyan-dark); padding: .9rem 1.2rem; border-radius: var(--radius-sm); margin-bottom: 1.4rem; font-weight: 500; }
.badge { display: inline-block; padding: .25rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 700; }
.badge--pendiente { background: #fff3cd; color: #946200; }
.badge--pagado { background: #d4f3f6; color: var(--cyan-dark); }
.badge--enviado { background: #e0e7ff; color: var(--indigo); }
.badge--cancelado { background: #fde2e2; color: #c0392b; }

/* ---------- Contacto info ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.contact-info-item .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--cyan-light); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--indigo-dark); color: rgba(255,255,255,.8); padding: 3.5rem 0 1.5rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer img.flogo { height: 42px; margin-bottom: 1rem; }
.footer h4 { color: #fff; font-size: .95rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: .05em; font-size: .82rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .55rem; }
.footer a { color: rgba(255,255,255,.75); font-size: .92rem; }
.footer a:hover { color: var(--cyan); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.5rem; text-align: center; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- Admin ---------- */
.admin-shell { display: flex; min-height: 100vh; background: var(--bg-soft); }
.admin-side { width: 240px; background: var(--indigo-dark); color: #fff; padding: 1.5rem 1rem; flex-shrink: 0; }
.admin-side img { height: 34px; margin: .4rem .6rem 1.8rem; }
.admin-side a { display: block; color: rgba(255,255,255,.8); padding: .7rem 1rem; border-radius: 10px; margin-bottom: .25rem; font-size: .94rem; font-weight: 500; }
.admin-side a:hover, .admin-side a.active { background: rgba(255,255,255,.12); color: #fff; }
.admin-main { flex: 1; padding: 2rem; min-width: 0; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.8rem; }
.admin-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.2rem; margin-bottom: 2rem; }
.admin-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.5rem; }
.admin-card .num { font-size: 2rem; font-weight: 800; color: var(--indigo); }
.admin-card .lbl { color: var(--gray); font-size: .85rem; font-weight: 500; }
.login-page { display: flex; align-items: center; justify-content: center; min-height: 100vh; background: var(--grad); padding: 1rem; }
.login-box { background: #fff; border-radius: var(--radius); padding: 2.5rem; width: 100%; max-width: 400px; box-shadow: var(--shadow-lg); }
.login-box img { height: 40px; margin: 0 auto 1.5rem; }

/* ---------- Lock detalle ---------- */
.lock-card { display:flex; gap:1.2rem; align-items:center; background:#fff; border:1px solid var(--line); border-left: 4px solid var(--cyan); border-radius: var(--radius); padding: 1.5rem; }
.lock-card .ic { font-size: 2rem; }

/* ---------- Utilidades ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.flex { display: flex; } .gap-1 { gap: .5rem; } .gap-2 { gap: 1rem; }
.items-center { align-items: center; } .justify-between { justify-content: space-between; } .flex-wrap { flex-wrap: wrap; }
.hide-mobile { display: initial; }

/* ============================================================
   Niveles 2 y 3: Software, Digitalización y escalera de valor
   ============================================================ */

/* ---------- Planes de software (Nivel 2) ---------- */
.plan-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; height: 100%;
  position: relative; transition: .25s;
}
.plan-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.plan-card__icon {
  width: 56px; height: 56px; border-radius: 14px; background: var(--cyan-light);
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem; margin-bottom: 1.1rem;
}
.plan-card h3 { font-size: 1.2rem; margin-bottom: .5rem; }
.plan-card__price { font-size: 2rem; font-weight: 800; color: var(--indigo); margin: .4rem 0 .2rem; }
.plan-card__price small { font-size: .9rem; font-weight: 500; color: var(--gray-light); }
.plan-card__desc { color: var(--gray); font-size: .95rem; flex: 1; margin-bottom: 1.2rem; }
.plan-card ul { list-style: none; margin: 0 0 1.4rem; }
.plan-card ul li { padding: .35rem 0 .35rem 1.7rem; position: relative; font-size: .92rem; color: var(--gray); }
.plan-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.plan-card--featured { border: 2px solid var(--cyan); box-shadow: var(--shadow); }
.plan-card__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; padding: .35rem 1rem; border-radius: 50px; white-space: nowrap;
}

/* ---------- Escalera de valor (Home) ---------- */
.ladder { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; position: relative; }
.ladder__step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem; position: relative; display: flex; flex-direction: column;
  transition: .25s;
}
.ladder__step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.ladder__level { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: .6rem; }
.ladder__icon { font-size: 2.2rem; margin-bottom: .8rem; }
.ladder__step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.ladder__step p { font-size: .94rem; flex: 1; margin-bottom: 1.2rem; }
.ladder__step .btn { align-self: flex-start; }
.ladder__step--2 { background: linear-gradient(160deg, #f5f7fb, #fff); }
.ladder__step--3 { background: var(--indigo); border-color: var(--indigo); }
.ladder__step--3 .ladder__level { color: var(--cyan-light); }
.ladder__step--3 h3 { color: #fff; }
.ladder__step--3 p { color: rgba(255,255,255,.85); }
/* Flechas de progresión entre pasos */
.ladder__step:not(:last-child)::after {
  content: '→'; position: absolute; right: -1.05rem; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; color: var(--cyan); font-weight: 700; z-index: 3;
}

/* ---------- Servicios premium (Nivel 3, fondo oscuro) ---------- */
.page-dark { background: var(--indigo-dark); color: rgba(255,255,255,.85); }
.hero--deep { background: linear-gradient(150deg, var(--indigo-dark) 0%, var(--indigo) 60%, var(--cyan-dark) 140%); }
.service-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius); padding: 2rem 1.8rem; height: 100%;
  display: flex; flex-direction: column; transition: .25s; backdrop-filter: blur(4px);
}
.service-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); border-color: var(--cyan); }
.service-card__icon {
  width: 58px; height: 58px; border-radius: 14px; margin-bottom: 1.1rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  background: rgba(21,182,199,.18); border: 1px solid rgba(21,182,199,.35);
}
.service-card h3 { color: #fff; font-size: 1.18rem; margin-bottom: .55rem; }
.service-card p { color: rgba(255,255,255,.78); font-size: .94rem; margin-bottom: 1.3rem; }
.service-card .btn { margin-top: auto; }   /* botón siempre anclado abajo */
.service-card ul { list-style: none; margin: 0 0 1.3rem; }
.service-card ul li { padding: .32rem 0 .32rem 1.6rem; position: relative; font-size: .9rem; color: rgba(255,255,255,.8); }
.service-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--cyan); font-weight: 700; }
.service-card--full { background: var(--grad); border: 0; }
.service-card--full p { color: rgba(255,255,255,.92); }
.service-card--full ul li { color: rgba(255,255,255,.92); }
.service-card--full ul li::before { color: #fff; }

/* ---------- Conecta tu negocio (ficha de producto) ---------- */
.biz-connect { background: var(--bg-soft); border: 1px solid var(--line, #e6e8f0); border-radius: var(--radius); padding: 1.1rem 1.2rem; margin-bottom: 1.2rem; }
.biz-connect__label { font-weight: 700; display: flex; align-items: center; gap: .4rem; margin-bottom: .25rem; color: var(--ink); }
.biz-connect__sub { color: var(--gray); font-size: .88rem; margin: 0 0 .7rem; }
.biz-connect input[type="text"] { width: 100%; padding: .75rem .9rem; border: 1px solid #d8dbe8; border-radius: 12px; font-size: .96rem; font-family: inherit; }
.biz-connect input[type="text"]:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(21,182,199,.18); }
.biz-connect__ok { display: none; align-items: center; gap: .4rem; margin-top: .7rem; color: #1a7f4b; font-size: .9rem; font-weight: 600; }
.biz-connect__hint { color: var(--gray-light); font-size: .8rem; margin: .5rem 0 0; }
/* El desplegable de Google Places por encima de todo */
.pac-container { z-index: 9999; border-radius: 12px; box-shadow: var(--shadow-lg); margin-top: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .admin-side { width: 200px; }
  .ladder { grid-template-columns: 1fr; gap: 2rem; }
  .ladder__step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -1.6rem; transform: translateX(50%); }
}
@media (max-width: 680px) {
  .nav__links {
    position: fixed; top: 74px; left: 0; right: 0; background: #fff; flex-direction: column;
    align-items: flex-start; padding: 1rem 20px; gap: .2rem; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow); transform: translateY(-150%); transition: .3s; height: auto;
  }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: .7rem 0; width: 100%; }
  .nav__toggle { display: flex; }
  .grid-4, .grid-3, .grid-2, .stat-row, .steps, .form-grid.cols-2, .admin-cards { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(3,1fr); gap: .5rem; }
  .admin-cards { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .admin-shell { flex-direction: column; }
  .admin-side { width: 100%; display: flex; flex-wrap: wrap; gap: .3rem; }
  .admin-side img { width: 100%; }
  .admin-side a { flex: 1; text-align: center; min-width: 120px; }
  .hide-mobile { display: none; }
}
