/* ============================================================
   WOLFTECH MX — styles.css
   ============================================================ */

/* ── RESET & TOKENS ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:        #08090d;
  --ink-2:      #0e1018;
  --ink-3:      #141821;
  --surface:    #191e2a;
  --surface-2:  #1f2534;
  --border:     rgba(255,255,255,.06);
  --border-2:   rgba(255,255,255,.11);
  --text:       #eef0f7;
  --text-2:     #7e8aa6;
  --text-3:     #3d4560;
  --gold:       #c9a84c;
  --gold-2:     #e8c96a;
  --gold-glow:  rgba(201,168,76,.25);
  --display:    'Bebas Neue', sans-serif;
  --body:       'Outfit', sans-serif;
  --ease:       cubic-bezier(.16,1,.3,1);
  --ease-out:   cubic-bezier(.25,.46,.45,.94);
  --r:          10px;
  --r-lg:       18px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
img  { display: block; max-width: 100%; }
summary { list-style: none; }
summary::-webkit-details-marker { display: none; }

/* ── CURSOR ── */
.cursor {
  position: fixed;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s var(--ease), height .2s var(--ease), background .2s;
  mix-blend-mode: difference;
}
.cursor.big { width: 44px; height: 44px; background: white; }
@media (pointer:coarse) { .cursor { display: none; } body { cursor: auto; } }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section   { padding: 7rem 0; }

/* ── SECTION LABELS & TITLES ── */
.section-label {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  color: var(--text);
  letter-spacing: .03em;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: normal; color: var(--gold); }
.section-sub {
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 3rem;
}

/* ── REVEAL ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}
[data-reveal].visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: 100px;
  transition: all .25s var(--ease-out);
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--gold); color: #08090d; }
.btn-primary:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: rgba(255,255,255,.07);
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,.12);
  font-family: var(--body);
  font-size: .95rem;
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: 100px;
  transition: all .25s var(--ease-out);
}
.btn-ghost-light:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }
.btn-xl { padding: 1.1rem 2.4rem; font-size: 1.05rem; }

/* ══════════════════════════════════════════════
   NAV
══════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.solid {
  background: rgba(8,9,13,.9);
  backdrop-filter: blur(18px) saturate(1.4);
  border-color: var(--border);
}
.nav-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  transition: transform .3s var(--ease), filter .3s;
}
.nav-logo:hover .logo-img {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 8px rgba(201,168,76,.5));
}
.logo-wordmark {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: .08em;
  line-height: 1;
}
.lw { color: #fff; }
.lt { color: var(--gold); }
.lm { color: var(--text-3); font-size: 1.1rem; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .88rem;
  font-weight: 400;
  color: var(--text-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }

.nav-wa {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--gold) !important;
  color: #08090d !important;
  font-weight: 600 !important;
  padding: .45rem 1.1rem;
  border-radius: 100px;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.nav-wa:hover {
  background: var(--gold-2) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 18px var(--gold-glow);
  color: #08090d !important;
}

/* Hamburger */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* Mobile drawer */
.nav-links.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(8,9,13,.97);
  padding: 2rem;
  gap: .5rem;
  overflow-y: auto;
}
.nav-links.open a { font-size: 1.3rem; padding: .5rem 0; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 100px 2rem 5rem;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(201,168,76,.07) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 85% 20%, rgba(201,168,76,.04) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 70%, var(--ink) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  height: 1px;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.hero-eyebrow::after { background: linear-gradient(to left, transparent, var(--gold)); }

.hero-title {
  font-family: var(--display);
  font-size: clamp(3.8rem, 9.5vw, 8rem);
  line-height: 1;
  letter-spacing: .03em;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-title .line       { display: block; }
.hero-title .accent-line { color: var(--gold); }

.hero-sub {
  color: var(--text-2);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  margin-bottom: 2.8rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 4rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat strong {
  font-family: var(--display);
  font-size: 2.8rem;
  color: var(--text);
  line-height: 1;
}
.stat span { font-family: var(--display); font-size: 1.8rem; color: var(--gold); }
.stat em {
  display: block;
  font-style: normal;
  font-size: .78rem;
  color: var(--text-3);
  letter-spacing: .06em;
  margin-top: .25rem;
  line-height: 1.4;
}
.stat-div { width: 1px; height: 48px; background: var(--border-2); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  animation: fadeUp 1s 2.5s both;
}
.scroll-bar {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ══════════════════════════════════════════════
   SERVICIOS
══════════════════════════════════════════════ */
#servicios { background: var(--ink-2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-card {
  background: var(--ink-3);
  padding: 2.5rem 2rem;
  position: relative;
  transition: background .25s;
  cursor: default;
}
.service-card:hover { background: var(--surface); }
.card-num {
  font-family: var(--display);
  font-size: 4rem;
  line-height: 1;
  color: var(--border-2);
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  transition: color .25s;
}
.service-card:hover .card-num { color: rgba(201,168,76,.12); }
.card-icon {
  color: var(--gold);
  margin-bottom: 1.5rem;
  transition: transform .3s var(--ease);
}
.service-card:hover .card-icon { transform: scale(1.08); }
.service-card h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .7rem; color: var(--text); }
.service-card p  { font-size: .92rem; color: var(--text-2); line-height: 1.65; }

/* ══════════════════════════════════════════════
   MARCAS
══════════════════════════════════════════════ */
.marcas-section { background: var(--ink); }

.marcas-tabs {
  display: flex;
  gap: .5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: var(--surface);
  border: 1.5px solid var(--border);
  color: var(--text-2);
  font-family: var(--body);
  font-size: .85rem;
  font-weight: 500;
  padding: .55rem 1.3rem;
  border-radius: 100px;
  cursor: pointer;
  transition: all .2s;
}
.tab-btn:hover  { color: var(--text); border-color: var(--border-2); }
.tab-btn.active { background: var(--gold); border-color: var(--gold); color: #08090d; font-weight: 700; }

.marcas-panel { display: none; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.marcas-panel.active { display: grid; }

.brand-card {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 1.2rem 1.5rem;
  transition: border-color .25s, transform .25s var(--ease), background .25s;
  cursor: default;
}
.brand-card:hover {
  border-color: rgba(201,168,76,.3);
  background: var(--surface-2);
  transform: translateY(-3px);
}
.brand-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.brand-logo svg { width: 100%; height: 100%; }
.html      { background: rgba(228,77,38,.12); }
.css       { background: rgba(38,77,228,.12); }
.js        { background: rgba(247,223,30,.12); }
.react     { background: rgba(97,218,251,.12); }
.node      { background: rgba(104,160,99,.12); }
.next      { background: rgba(255,255,255,.06); }
.wp        { background: rgba(33,117,155,.12); }
.shopify   { background: rgba(150,191,72,.12); }
.woo       { background: rgba(127,84,179,.12); }
.webflow   { background: rgba(67,83,255,.12); }
.cloudflare{ background: rgba(246,130,31,.12); }
.github    { background: rgba(255,255,255,.06); }
.ga        { background: rgba(249,171,0,.12); }
.gsc       { background: rgba(66,133,244,.12); }
.meta      { background: rgba(0,130,251,.12); }
.maps      { background: rgba(234,67,53,.12); }
.wa-b      { background: rgba(37,211,102,.12); }
.ssl       { background: rgba(52,168,83,.12); }

.brand-info strong { display: block; font-size: .95rem; font-weight: 600; color: var(--text); }
.brand-info span   { font-size: .8rem; color: var(--text-2); }
.brand-badge {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  padding: .2rem .6rem;
  border-radius: 100px;
  flex-shrink: 0;
  margin-left: auto;
}

/* ══════════════════════════════════════════════
   PROCESO
══════════════════════════════════════════════ */
.proceso-section { background: var(--ink-2); }

.proceso-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--border);
}
.proceso-item {
  background: var(--ink-3);
  padding: 2.5rem 2rem;
  transition: background .25s;
}
.proceso-item:hover { background: var(--surface); }
.proceso-num {
  font-family: var(--display);
  font-size: 3.5rem;
  color: rgba(201,168,76,.15);
  line-height: 1;
  margin-bottom: 1rem;
}
.proceso-line {
  width: 32px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.2rem;
  transition: width .3s var(--ease);
}
.proceso-item:hover .proceso-line { width: 56px; }
.proceso-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: .5rem; color: var(--text); }
.proceso-item p  { font-size: .88rem; color: var(--text-2); line-height: 1.6; }

/* ══════════════════════════════════════════════
   PAQUETES
══════════════════════════════════════════════ */
.paquetes-section { background: var(--ink); }

.paquetes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.paquete-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  transition: border-color .25s, transform .3s var(--ease);
}
.paquete-card:hover { border-color: var(--border-2); transform: translateY(-6px); }
.paquete-card.featured {
  border-color: var(--gold);
  background: var(--surface-2);
  box-shadow: 0 0 40px rgba(201,168,76,.08), 0 20px 60px rgba(0,0,0,.4);
}
.paquete-card.featured:hover { transform: translateY(-8px); }
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #08090d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1.1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.paquete-tag { font-size: .72rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); display: block; margin-bottom: .6rem; }
.paquete-top h3 { font-family: var(--display); font-size: 2rem; letter-spacing: .05em; color: var(--text); margin-bottom: 1.2rem; }
.paquete-price {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.8rem;
}
.paquete-price small    { font-size: .82rem; color: var(--text-3); }
.paquete-price strong   { font-family: var(--display); font-size: 2.6rem; color: var(--text); line-height: 1; }
.paquete-price span     { font-size: .85rem; color: var(--text-3); }
.paquete-list           { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
.paquete-list li        { font-size: .92rem; color: var(--text-2); display: flex; align-items: center; gap: .75rem; }
.paquete-list li::before { content: '→'; color: var(--gold); font-size: .85rem; flex-shrink: 0; }
.paquete-cta {
  display: block;
  text-align: center;
  background: var(--ink-3);
  border: 1.5px solid var(--border-2);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  padding: .85rem;
  border-radius: var(--r);
  transition: all .25s var(--ease-out);
}
.paquete-cta:hover,
.featured .paquete-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: #08090d;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

/* ══════════════════════════════════════════════
   MANTENIMIENTO
══════════════════════════════════════════════ */
.mant-section { background: var(--ink-2); }

.mant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.mant-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative;
  transition: border-color .25s, transform .3s var(--ease);
}
.mant-card:hover   { border-color: var(--border-2); transform: translateY(-4px); }
.mant-card.best    { border-color: var(--gold); background: var(--surface-2); }
.mant-badge {
  display: inline-block;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  color: var(--gold);
  font-size: .7rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .2rem .8rem; border-radius: 100px; margin-bottom: 1rem;
}
.mant-card h3     { font-family: var(--display); font-size: 1.8rem; letter-spacing: .04em; color: var(--text); margin-bottom: .5rem; }
.mant-price       { font-family: var(--display); font-size: 2.2rem; color: var(--text); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.mant-price em    { font-style: normal; font-size: .9rem; font-family: var(--body); color: var(--text-3); }
.mant-card ul     { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.8rem; }
.mant-card li     { font-size: .9rem; color: var(--text-2); padding-left: 1.2rem; position: relative; }
.mant-card li::before { content: '·'; position: absolute; left: 0; color: var(--gold); font-size: 1.2rem; line-height: 1.1; }
.mant-cta {
  display: block; text-align: center;
  background: transparent; border: 1.5px solid var(--border-2);
  color: var(--text); font-size: .88rem; font-weight: 600;
  padding: .75rem; border-radius: var(--r);
  transition: all .25s var(--ease-out);
}
.mant-cta:hover        { border-color: var(--gold); color: var(--gold); }
.mant-cta-best         { background: var(--gold); border-color: var(--gold); color: #08090d; }
.mant-cta-best:hover   { background: var(--gold-2); border-color: var(--gold-2); color: #08090d; box-shadow: 0 4px 20px var(--gold-glow); }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-section { background: var(--ink); }

.faq-container {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 6rem;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; }
.faq-left .section-title { margin-bottom: 1rem; }
.faq-left > p { color: var(--text-2); font-size: .95rem; }

.faq-right { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--surface);
  transition: border-color .2s;
}
.faq-item[open] { border-color: rgba(201,168,76,.3); }
.faq-item summary {
  padding: 1.3rem 1.5rem;
  font-size: .97rem; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; gap: 1rem; transition: color .2s;
}
.faq-item summary::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform .3s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--gold); }
.faq-item p {
  padding: 1rem 1.5rem 1.3rem;
  font-size: .92rem; color: var(--text-2); line-height: 1.7;
  border-top: 1px solid var(--border);
}

/* ══════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════ */
.cta-final {
  position: relative;
  background: var(--ink-3);
  padding: 9rem 2rem;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--display);
  font-size: clamp(8rem, 22vw, 20rem);
  letter-spacing: .05em;
  color: rgba(201,168,76,.03);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.cta-inner    { position: relative; z-index: 1; }
.cta-eyebrow  { font-size: .78rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; }
.cta-title    { font-family: var(--display); font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1.05; letter-spacing: .03em; margin-bottom: 2.5rem; color: var(--text); }
.cta-title em { font-style: normal; color: var(--gold); }
.cta-actions  { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--ink);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding-bottom: 3rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-logo-link {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .8rem;
}
.footer-logo-img {
  width: 36px; height: 36px;
  object-fit: contain;
  border-radius: 5px;
}
.footer-wordmark { font-family: var(--display); font-size: 1.3rem; letter-spacing: .08em; }
.footer-brand p { font-size: .88rem; color: var(--text-3); line-height: 1.6; }
.footer-links   { display: flex; gap: 4rem; flex-wrap: wrap; }
.footer-links div { display: flex; flex-direction: column; gap: .6rem; }
.footer-links strong { font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--text-3); margin-bottom: .25rem; }
.footer-links a { font-size: .9rem; color: var(--text-2); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; font-size: .82rem; color: var(--text-3); }

/* ══════════════════════════════════════════════
   COTIZACIÓN
══════════════════════════════════════════════ */
.cotizacion-section { background: var(--ink); }

.cotizacion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cotizacion-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .25s, transform .3s var(--ease), background .25s;
  cursor: default;
}
.cotizacion-card:hover {
  border-color: var(--border-2);
  transform: translateY(-6px);
  background: var(--surface-2);
}
.cotizacion-card.cotizacion-featured {
  border-color: var(--gold);
  background: var(--surface-2);
  box-shadow: 0 0 40px rgba(201,168,76,.07), 0 20px 60px rgba(0,0,0,.3);
}
.cotizacion-card.cotizacion-featured:hover { transform: translateY(-8px); }

.cotizacion-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background .25s;
}
.cotizacion-card:hover .cotizacion-icon { background: rgba(201,168,76,.16); }

.cotizacion-card h3 {
  font-family: var(--display);
  font-size: 1.6rem;
  letter-spacing: .04em;
  color: var(--text);
}
.cotizacion-card p {
  font-size: .93rem;
  color: var(--text-2);
  line-height: 1.7;
  flex: 1;
}
.cotizacion-btn {
  display: inline-block;
  margin-top: .5rem;
  background: transparent;
  border: 1.5px solid var(--border-2);
  color: var(--text);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.25rem;
  border-radius: var(--r);
  transition: all .25s var(--ease-out);
  text-align: center;
}
.cotizacion-btn:hover,
.cotizacion-featured .cotizacion-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: #08090d;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--gold-glow);
}

.cotizacion-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  background: var(--surface);
  border: 1.5px solid rgba(201,168,76,.25);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  margin-top: 1rem;
}
.cotizacion-banner-text {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.cotizacion-banner-text strong {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}
.cotizacion-banner-text span {
  font-size: .9rem;
  color: var(--text-2);
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 980px) {
  .proceso-grid   { grid-template-columns: 1fr 1fr; }
  .faq-container  { grid-template-columns: 1fr; gap: 3rem; }
  .faq-left       { position: static; }
}

@media (max-width: 768px) {
  .nav-links       { display: none; }
  .burger          { display: flex; }
  .section         { padding: 5rem 0; }
  .hero            { padding: 90px 1.5rem 4rem; }
  .container       { padding: 0 1.5rem; }
  .services-grid   { grid-template-columns: 1fr; }
  .proceso-grid    { grid-template-columns: 1fr; }
  .paquetes-grid   { grid-template-columns: 1fr; }
  .mant-grid       { grid-template-columns: 1fr; }
  .cotizacion-grid { grid-template-columns: 1fr; }
  .cotizacion-banner { flex-direction: column; align-items: flex-start; }
  .hero-stats      { gap: 1.5rem; }
  .stat-div        { display: none; }
  .footer-links    { gap: 2rem; }
}

@media (max-width: 480px) {
  .section-title  { font-size: 2.3rem; }
  .hero-title     { font-size: 3.2rem; }
  .marcas-panel   { grid-template-columns: 1fr; }
  .cta-title      { font-size: 2.3rem; }
}

/* ══════════════════════════════════════════════
   BRIEFING RÁPIDO
══════════════════════════════════════════════ */
.briefing-section {
  background:
    radial-gradient(circle at top left, rgba(201,168,76,.07), transparent 30%),
    var(--ink-2);
}

.briefing-head {
  max-width: 760px;
  margin-bottom: 3rem;
}

.briefing-sub strong {
  color: var(--gold);
  font-weight: 600;
}

.briefing-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 1.5rem;
  align-items: start;
}

.briefing-info-card,
.briefing-form {
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
}

.briefing-info-card {
  padding: 1.8rem;
}

.briefing-info-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1rem;
}

.briefing-points {
  list-style: none;
  display: grid;
  gap: .85rem;
}

.briefing-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--text-2);
  font-size: .92rem;
  line-height: 1.6;
}

.briefing-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .62rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201,168,76,.4);
}

.briefing-form {
  padding: 2rem;
}

.briefing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 14px;
  padding: .95rem 1rem;
  font-family: var(--body);
  font-size: .95rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--text-3);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(201,168,76,.5);
  box-shadow: 0 0 0 4px rgba(201,168,76,.08);
}

.field-error {
  min-height: 18px;
  font-size: .78rem;
  color: #ff8f8f;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(255,110,110,.7);
  box-shadow: 0 0 0 4px rgba(255,110,110,.06);
}

.briefing-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.briefing-meta {
  font-size: .85rem;
  color: var(--text-2);
}

.briefing-meta strong {
  color: var(--gold);
}

.briefing-clarity-note {
  margin-top: 1rem;
  font-size: .88rem;
  line-height: 1.7;
  color: var(--text-2);
}

.briefing-form-message {
  margin-top: 1rem;
  padding: .95rem 1rem;
  border-radius: 12px;
  font-size: .9rem;
  display: none;
}

.briefing-form-message.is-success {
  display: block;
  background: rgba(60, 179, 113, .1);
  border: 1px solid rgba(60, 179, 113, .28);
  color: #baf0cf;
}

.briefing-form-message.is-error {
  display: block;
  background: rgba(255, 110, 110, .08);
  border: 1px solid rgba(255, 110, 110, .22);
  color: #ffc0c0;
}

@media (max-width: 980px) {
  .briefing-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .briefing-grid {
    grid-template-columns: 1fr;
  }

  .briefing-form {
    padding: 1.4rem;
  }
}
.faq-whatsapp-btn {
  margin-top: 2rem;
  display: inline-flex;
}
