/* ── Experience consent ──────────────────────────────────── */
.exp-overlay {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 10000;
  pointer-events: none;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.34,1.36,.64,1);
}
.exp-overlay.visible { opacity: 1; transform: none; pointer-events: all; }
.exp-overlay.hidden { display: none; }
.exp-popup {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  max-width: 300px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  position: relative;
  overflow: hidden;
}
.exp-popup::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(255,107,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.exp-icon { font-size: 28px; margin-bottom: 10px; display: inline-block; }
.exp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: .04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 8px;
}
.exp-title span { color: var(--accent); }
.exp-sub { font-size: 12px; color: var(--muted); line-height: 1.6; margin-bottom: 20px; }
.exp-btns { display: flex; gap: 8px; }
.exp-btns .btn { padding: 10px 18px; font-size: 13px; }

/* ── Reset & base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--bg2);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 99px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .04;
  filter: url(#grain-filter);
  background: transparent;
  width: 100%;
  height: 100%;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Custom properties ──────────────────────────────────── */
:root {
  --accent:      #FF6B00;
  --accent-dark: #cc5500;
  --bg:          #0d0d0d;
  --bg2:         #141414;
  --bg3:         #1a1a1a;
  --border:      #2a2a2a;
  --text:        #f0f0f0;
  --muted:       #888;
  --radius:      10px;
}

/* ── Utility ────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Reveal on scroll ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Botones ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  border: none;
  white-space: nowrap;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,107,0,.3);
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 6px 28px rgba(255,107,0,.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,.25);
}
.btn-wa:hover { background: #1ebe5d; }

/* ── Section labels ─────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: .03em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}
.section-divider {
  height: 1px;
  background: var(--border);
  margin: 0;
}

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,.92);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon { flex-shrink: 0; display: flex; }
.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-wordmark strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--text);
}
.logo-wordmark span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--muted);
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.nav-cta { color: #fff; }
.nav-cta { margin-left: 8px; }

@media (max-width: 900px) { .nav-links { display: none; } }

/* ── Side nav mobile ────────────────────────────────────── */
#side-nav-root { display: none; }

@media (max-width: 900px) {
  #side-nav-root { display: block; }

  .side-nav-wrap {
    position: fixed;
    right: 0;
    bottom: calc(env(safe-area-inset-bottom) + 28px);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 68px;
    background: rgba(20,20,20,.96);
    border-radius: 14px 0 0 14px;
    border: 1px solid var(--border);
    border-right: none;
    padding: 12px 8px;
    box-shadow: -4px 0 24px rgba(0,0,0,.6);
    transition: transform .3s ease, opacity .3s ease;
  }
  .side-nav-wrap.hidden {
    transform: translateX(calc(100% + 2px));
    opacity: 0;
    pointer-events: none;
  }
  .side-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .bnav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: var(--muted);
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color .15s, transform .15s;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    text-align: center;
  }
  .bnav-item:active { transform: scale(.88); }
  .bnav-icon-wrap {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--bg3);
    border: 1px solid var(--border);
    transition: background .15s, border-color .15s;
  }
  .bnav-item:hover .bnav-icon-wrap,
  .bnav-item:active .bnav-icon-wrap {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  .bnav-item:hover { color: var(--text); }
  .bnav-icon-wrap svg { width: 18px; height: 18px; fill: currentColor; }
  .bnav-wa .bnav-icon-wrap { background: #25d366; border-color: #25d366; color: #fff; }
  .bnav-wa { color: #25d366; }

  .side-nav-toggle {
    position: fixed;
    right: 0;
    bottom: env(safe-area-inset-bottom);
    z-index: 202;
    width: 68px;
    background: var(--accent);
    border: none;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    padding: 8px 0;
    display: flex;
    justify-content: center;
    box-shadow: -2px 0 10px rgba(0,0,0,.4);
  }
  .side-nav-toggle svg { width: 18px; height: 18px; fill: #fff; display: block; transition: transform .3s; }
  .side-nav-toggle.rotated svg { transform: rotate(180deg); }
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 90svh;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 40px;
  padding: 60px 0;
  overflow: hidden;
}
.hero-content {
  padding-left: max(28px, calc((100vw - 1120px)/2 + 28px));
  padding-right: 40px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 84px);
  letter-spacing: .03em;
  line-height: 1.0;
  color: var(--text);
  margin-bottom: 20px;
}
.hero-title .accent-word { color: var(--accent); }
.hero-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 460px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero visual */
.hero-visual {
  position: relative;
  padding: 40px max(28px, calc((100vw - 1120px)/2 + 28px)) 40px 0;
}
.hero-mockup {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px var(--border);
  aspect-ratio: 16/10;
  position: relative;
}
.hero-mockup-screen {
  width: 100%; height: 100%;
  background: #000;
}
.hero-mockup-screen video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 20px;
}
.hero-stats > div {
  flex: 1;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}
.hero-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: .02em;
  color: var(--text);
  line-height: 1;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label { font-size: 11px; color: var(--muted); margin-top: 3px; }
.hero-badge {
  position: absolute;
  top: 60px;
  left: -20px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
  max-width: 210px;
}
.hero-badge-icon { font-size: 22px; }
.hero-badge-text { display: flex; flex-direction: column; }
.hero-badge-text strong { font-size: 13px; font-weight: 700; color: var(--text); }
.hero-badge-text span { font-size: 11px; color: var(--muted); }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 32px 0 40px;
    gap: 24px;
    min-height: auto;
  }
  .hero-content { padding: 0 24px; order: 2; }
  .hero-visual { padding: 0 24px; order: 1; }
  .hero-badge { display: none; }
  .servicios-video-badge { display: none; }
  .hero-stats { gap: 12px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* ── SERVICIOS ──────────────────────────────────────────── */
.servicios { padding: 80px 0; }
.servicios-header { text-align: center; margin-bottom: 56px; }
.servicios-header .section-label { justify-content: center; }
.servicios-header .section-sub { margin: 0 auto; }

.servicios-two-col {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 40px;
  align-items: start;
}
.servicios-video-wrap {
  position: sticky;
  top: 90px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
}
.servicios-video { width: 100%; aspect-ratio: 9/14; object-fit: cover; display: block; }

.servicios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.servicio-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.servicio-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.servicio-icon {
  width: 40px; height: 40px;
  background: rgba(255,107,0,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--accent);
}
.servicio-icon svg { width: 20px; height: 20px; fill: currentColor; }
.servicio-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.servicio-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

@media (max-width: 900px) {
  .servicios-two-col { grid-template-columns: 1fr; }
  .servicios-video-wrap { position: static; }
  .servicios-video { aspect-ratio: 16/9; }
  .servicios-grid { grid-template-columns: 1fr; }
}

/* ── MAQUINARIA ─────────────────────────────────────────── */
.maquinaria { padding: 80px 0; }
.maquinaria-header { margin-bottom: 48px; }
.maquinaria-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.maquina-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .2s, transform .2s;
}
.maquina-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.maquina-video-wrap {
  aspect-ratio: 9/12;
  overflow: hidden;
  background: #000;
}
.maquina-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.maquina-info { padding: 16px; }
.maquina-name { font-size: 14px; font-weight: 700; color: var(--text); }
.maquina-model { font-size: 12px; color: var(--muted); margin-top: 2px; }

@media (max-width: 900px) {
  .maquinaria-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .maquinaria-grid { grid-template-columns: 1fr; gap: 12px; }
  .maquina-video-wrap { aspect-ratio: 3/4; }
}

/* ── PROCESO ────────────────────────────────────────────── */
.proceso { padding: 80px 0; }
.proceso-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.proceso-steps { margin-top: 40px; display: flex; flex-direction: column; gap: 28px; }
.proceso-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.proceso-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: .04em;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 44px;
}
.proceso-step-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.proceso-step-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.proceso-video-col { position: relative; }
.proceso-video-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
  aspect-ratio: 4/5;
  position: relative;
}
.proceso-video-wrap video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.proceso-video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.8));
  padding: 24px 16px 16px;
}
.proceso-video-label { font-size: 12px; color: var(--muted); font-weight: 600; letter-spacing: .04em; }

@media (max-width: 900px) {
  .proceso-inner { grid-template-columns: 1fr; gap: 40px; }
  .proceso-video-wrap { aspect-ratio: 16/9; }
}

/* ── CLIENTES ───────────────────────────────────────────── */
.clientes { padding: 80px 0; }
.clientes-header { margin-bottom: 48px; }
.clientes-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}
.cliente-logo {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
  color: var(--muted);
  transition: color .2s, border-color .2s;
  flex: 1 1 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: center;
  white-space: nowrap;
}
.cliente-logo:hover { color: var(--text); border-color: var(--accent); }

.clientes-testimonios {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}
.testi-stars { color: var(--accent); font-size: 14px; margin-bottom: 12px; letter-spacing: .1em; }
.testi-quote { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.testi-name { font-size: 14px; font-weight: 700; color: var(--text); }
.testi-meta { font-size: 12px; color: var(--muted); }

@media (max-width: 900px) {
  .clientes-testimonios { grid-template-columns: 1fr; }
}

/* ── DETONADOR ──────────────────────────────────────────── */
.detonador-section { padding: 80px 0; text-align: center; }
.detonador-section .section-label { margin: 0 auto 16px; }

.detonador-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: center;
  margin-top: 0;
}

/* Plunger */
.detonador-plunger-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.detonador-label-top {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: .14em;
  color: var(--muted);
}
.detonador-box {
  background: var(--bg2);
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 20px 28px 24px;
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  user-select: none;
  position: relative;
}
.detonador-box.armed { border-color: var(--accent); box-shadow: 0 0 20px rgba(255,107,0,.2); }
.detonador-box.fired { border-color: #ff2200; box-shadow: 0 0 30px rgba(255,34,0,.4); }

.detonador-handle-track {
  width: 40px;
  height: 100px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4px;
  position: relative;
}
.detonador-handle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e00;
  border: 2px solid #900;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1), background .2s;
  position: relative;
  color: #fff;
  box-shadow: 0 2px 8px rgba(200,0,0,.5);
}
.detonador-handle:hover { transform: scale(1.05); }
.detonador-handle.pressing { transform: translateY(50px) !important; background: #ff2200; box-shadow: 0 0 16px rgba(255,34,0,.6); }
.detonador-handle-inner svg { width: 16px; height: 16px; fill: currentColor; }

.detonador-base {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  width: 100%;
}
.detonador-cables {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-bottom: 6px;
}
.cable {
  width: 3px;
  height: 20px;
  border-radius: 2px;
  display: block;
}
.cable-red { background: #ff3300; }
.cable-black { background: #444; }
.cable-yellow { background: #FFD600; }
.detonador-label-base {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #ff3300;
}
.detonador-instruccion {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}


/* Video area */
.detonador-video-area { text-align: left; }
.detonador-video-frame {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
  aspect-ratio: 16/9;
  position: relative;
}
#demolicion-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity .4s;
}
.detonador-countdown {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px;
  color: rgba(255,107,0,.9);
  letter-spacing: .04em;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  text-shadow: 0 0 40px rgba(255,107,0,.5);
}
.detonador-countdown.show { opacity: 1; }

@media (max-width: 900px) {
  .detonador-wrap { grid-template-columns: 1fr; }
  .detonador-plunger-area { order: 2; }
  .detonador-video-area { order: 1; }
}

/* ── CONTACTO ───────────────────────────────────────────── */
.contacto { padding: 80px 0; }
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contacto-datos { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.contacto-dato {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}
.contacto-dato svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; }

/* Form */
.contacto-form-wrap {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.form-full { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 12px; font-weight: 700; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  font-family: inherit;
  outline: none;
  transition: border-color .15s;
  width: 100%;
}
.form-field textarea { height: 90px; resize: vertical; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--accent); }
.form-field select option { background: var(--bg3); }
.form-submit { width: 100%; justify-content: center; }
.spin { animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 900px) {
  .contacto-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ─────────────────────────────────────────────── */
footer { padding: 60px 0 0; border-top: 1px solid var(--border); }
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: .04em;
  color: var(--text);
}
.footer-brand-name span { color: var(--accent); }
.footer-tagline { font-size: 13px; color: var(--muted); }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.footer-col a { font-size: 13px; color: var(--muted); transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: var(--accent); }

@media (max-width: 600px) {
  .footer-top { flex-direction: column; }
  .footer-links { gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
