/* ══════════════════════════════════════════════
   PACIFIC OFF ROAD GARAGE — styles.css
   Paleta: Negro + Naranja Neón
   ══════════════════════════════════════════════ */

:root {
  --orange: #FF6B00;
  --orange-glow: rgba(255, 107, 0, 0.35);
  --orange-dim: #cc5500;
  --black: #080808;
  --dark: #0f0f0f;
  --dark2: #161616;
  --card: #1a1a1a;
  --card2: #222222;
  --white: #ffffff;
  --gray: #aaaaaa;
  --gray2: #666666;
  --border: #2a2a2a;
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ─── SELECTION ─── */
::selection { background: var(--orange); color: var(--black); }

/* ─── CONTAINER ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  border: 2px solid var(--orange);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: 0.3s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { box-shadow: 0 0 30px var(--orange-glow), 0 8px 20px rgba(0,0,0,0.4); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid var(--white);
  transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

.highlight { color: var(--orange); }

/* ─── SECTION SHARED ─── */
.section-dark { background: var(--dark); padding: 100px 0; }
.section-darker { background: var(--dark2); padding: 100px 0; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  background: rgba(255,107,0,0.12);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}
.title-line {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 0 auto;
  border-radius: 2px;
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed { opacity: 1 !important; transform: translate(0) !important; }

/* ══════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  font-size: 1.8rem;
  color: var(--orange);
  animation: spin-slow 8s linear infinite;
  display: inline-block;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  color: var(--white);
}
.logo-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 12px;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 12px; right: 12px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }
.btn-nav-wa {
  display: flex !important;
  align-items: center;
  gap: 6px;
  background: var(--orange) !important;
  color: var(--black) !important;
  padding: 9px 18px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  transition: box-shadow var(--transition), transform var(--transition) !important;
}
.btn-nav-wa svg { width: 16px; height: 16px; fill: var(--black); }
.btn-nav-wa::after { display: none !important; }
.btn-nav-wa:hover { box-shadow: 0 0 20px var(--orange-glow) !important; transform: translateY(-1px) !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a00 50%, #0a0a0a 100%);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.45) saturate(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.1) 40%,
    rgba(8,8,8,0.6) 80%,
    rgba(8,8,8,1) 100%
  );
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--orange);
  border-radius: 50%;
  animation: float-particle linear infinite;
  opacity: 0;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { opacity: 0; transform: translateY(-600px) scale(1.5); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  border-radius: 0;
}
.hero-title {
  font-family: var(--font-head);
  line-height: 0.9;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero-title .line1 {
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--white);
  letter-spacing: 0.05em;
  text-shadow: 0 0 60px rgba(255,107,0,0.3);
}
.hero-title .line2 {
  font-size: clamp(4rem, 12vw, 9rem);
  color: var(--orange);
  letter-spacing: 0.05em;
  text-shadow: 0 0 60px var(--orange-glow), 0 0 120px rgba(255,107,0,0.2);
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-title .line3 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  color: var(--white);
  letter-spacing: 0.25em;
  border-top: 2px solid var(--orange);
  padding-top: 8px;
  margin-top: 8px;
}
@keyframes pulse-glow {
  0%, 100% { text-shadow: 0 0 60px var(--orange-glow), 0 0 120px rgba(255,107,0,0.2); }
  50% { text-shadow: 0 0 80px rgba(255,107,0,0.7), 0 0 160px rgba(255,107,0,0.35); }
}
.hero-desc {
  color: var(--gray);
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}
.hero-scroll-indicator span {
  display: block;
  width: 2px;
  height: 8px;
  background: var(--orange);
  border-radius: 1px;
  animation: bounce-dots 1.4s ease-in-out infinite;
}
.hero-scroll-indicator span:nth-child(2) { animation-delay: 0.2s; opacity: 0.7; }
.hero-scroll-indicator span:nth-child(3) { animation-delay: 0.4s; opacity: 0.4; }
@keyframes bounce-dots {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(2); }
}

/* ── HERO reveal delays ── */
.hero-badge.reveal-up { transition-delay: 0.1s; }
.hero-title.reveal-up { transition-delay: 0.25s; }
.hero-desc.reveal-up { transition-delay: 0.4s; }
.hero-ctas.reveal-up { transition-delay: 0.55s; }

/* ══════════════════════════════════════════════
   STATS BAR
   ══════════════════════════════════════════════ */
.stats-bar {
  background: var(--orange);
  padding: 32px 0;
  position: relative;
  overflow: hidden;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.06) 20px,
    rgba(0,0,0,0.06) 40px
  );
}
.stats-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  position: relative;
}
.stat-item { text-align: center; color: var(--black); }
.stat-num {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 1;
  display: inline;
}
.stat-plus {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--black);
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.8;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 28px;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--orange); box-shadow: 0 12px 40px rgba(255,107,0,0.15); }
.service-card:hover::before { transform: scaleX(1); }
.service-card.card-highlight { border-color: var(--orange); box-shadow: 0 0 30px rgba(255,107,0,0.1); }
.service-card.card-highlight::before { transform: scaleX(1); }
.service-icon-wrap {
  width: 56px;
  height: 56px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon-wrap svg { width: 28px; height: 28px; stroke: var(--orange); }
.service-card h3 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 12px;
}
.service-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.service-cta {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card:hover .service-cta { gap: 12px; }

/* ── stagger delays ── */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.07s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.14s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.21s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.28s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.35s; }

/* ══════════════════════════════════════════════
   INVENTARIO
   ══════════════════════════════════════════════ */
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--gray);
  transition: var(--transition);
  background: transparent;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: var(--black); }

.inventory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.vehicle-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.vehicle-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.4); }
.vehicle-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a, #222);
  overflow: hidden;
}
.vehicle-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vehicle-card:hover .vehicle-img-wrap img { transform: scale(1.05); }
.vehicle-img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vehicle-img-wrap.no-img::after {
  content: '🏍️';
  font-size: 4rem;
  opacity: 0.3;
}
.vehicle-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--orange);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}
.vehicle-badge.sold { background: var(--gray2); color: var(--white); }
.vehicle-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.vehicle-overlay.sold-overlay { background: rgba(0,0,0,0.6); opacity: 1; }
.vehicle-overlay.sold-overlay span {
  font-family: var(--font-head);
  font-size: 2rem;
  letter-spacing: 0.2em;
  color: var(--white);
  opacity: 0.6;
}
.vehicle-card:hover .vehicle-overlay:not(.sold-overlay) { opacity: 1; }
.vehicle-overlay button {
  background: var(--orange);
  color: var(--black);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 6px;
  transition: var(--transition);
}
.vehicle-overlay button:hover { background: var(--white); }
.vehicle-info { padding: 20px; }
.vehicle-brand {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.vehicle-name {
  font-family: var(--font-head);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 10px;
}
.vehicle-specs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.vehicle-specs span {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--dark2);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid var(--border);
}
.vehicle-footer { display: flex; align-items: center; justify-content: space-between; }
.vehicle-price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--orange);
  letter-spacing: 0.04em;
}
.vehicle-price.sold-txt { color: var(--gray2); }
.btn-wa-small {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,107,0,0.12);
  border: 1px solid var(--orange);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.btn-wa-small svg { fill: var(--orange); }
.btn-wa-small:hover { background: var(--orange); color: var(--black); }
.btn-wa-small:hover svg { fill: var(--black); }
.inventory-cta { text-align: center; }
.inventory-cta p { color: var(--gray); margin-bottom: 20px; font-size: 1rem; }

/* ══════════════════════════════════════════════
   ACCESORIOS SECTION
   ══════════════════════════════════════════════ */
.accesorios-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.accesorios-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0800, #0a0a0a);
}
.accesorios-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.9);
}
.accesorios-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,0.85) 100%);
}
.accesorios-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.accesorios-content h2 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin: 16px 0 20px;
}
.accesorios-content p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; }
.accesorios-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}
.acc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.08);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  transition: var(--transition);
}
.acc-item:hover { background: rgba(255,107,0,0.2); border-color: var(--orange); }

/* ══════════════════════════════════════════════
   NOSOTROS
   ══════════════════════════════════════════════ */
.nosotros-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.nosotros-img-wrap {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a, #222);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.nosotros-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nosotros-img-wrap.no-img-square {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nosotros-img-wrap.no-img-square::after {
  content: '⚙️';
  font-size: 6rem;
  opacity: 0.2;
}
.nosotros-img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--orange);
  color: var(--black);
  text-align: center;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.badge-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.5rem;
  line-height: 1;
}
.badge-txt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.3;
}
.nosotros-text .section-title { text-align: left; }
.nosotros-text .title-line { margin: 0 0 24px; }
.nosotros-text p { color: var(--gray); margin-bottom: 16px; line-height: 1.8; }
.nosotros-features { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.feature-row { display: flex; align-items: center; gap: 12px; }
.feature-check {
  width: 24px;
  height: 24px;
  background: var(--orange);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
}
.feature-row span { color: var(--white); font-size: 0.95rem; }

/* ══════════════════════════════════════════════
   CONTACTO
   ══════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--white);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group select { cursor: pointer; }

.contact-info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px;
}
.contact-info-card h3 {
  font-family: var(--font-head);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.contact-links { display: flex; flex-direction: column; gap: 16px; margin-bottom: 32px; }
.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color var(--transition), transform var(--transition);
}
.contact-link-item:hover { border-color: var(--orange); transform: translateX(4px); }
.contact-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-link-icon.wa { background: #25D366; }
.contact-link-icon.fb { background: #1877F2; }
.contact-link-icon.ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.contact-link-icon.tk { background: #010101; border: 1px solid #333; }
.contact-link-icon svg { width: 22px; height: 22px; fill: var(--white); }

/* ─── Social icons (navbar + footer) ─── */
.nav-socials { display: flex; gap: 8px; align-items: center; }
.nav-social-link {
  width: 30px; height: 30px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}
.nav-social-link:hover { transform: translateY(-2px); opacity: 0.85; }
.nav-social-link.fb { background: #1877F2; }
.nav-social-link.ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.nav-social-link.tk { background: #010101; border: 1px solid #444; }
.nav-social-link svg { width: 15px; height: 15px; fill: white; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social-link {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.footer-social-link:hover { transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.4); }
.footer-social-link.fb { background: #1877F2; }
.footer-social-link.ig { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.footer-social-link.tk { background: #010101; border: 1px solid #333; }
.footer-social-link svg { width: 20px; height: 20px; fill: white; }
.contact-link-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.contact-link-value { display: block; font-weight: 700; color: var(--white); }
.horario-box {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.horario-box h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
}
.horario-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--gray);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.horario-note {
  font-size: 0.78rem;
  color: var(--gray2);
  margin-top: 10px;
  font-style: italic;
}

/* ══════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════ */
.footer { background: var(--black); border-top: 1px solid var(--border); }
.footer-top { padding: 64px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.footer-brand p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer-logo { margin-bottom: 0; }
.footer-links h4, .footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--gray); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-wa-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 8px;
  transition: var(--transition);
}
.footer-wa-btn svg { fill: var(--white); }
.footer-wa-btn:hover { background: #20ba5a; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom span { color: var(--gray2); font-size: 0.8rem; }

/* ══════════════════════════════════════════════
   CHATBOT WIDGET
   ══════════════════════════════════════════════ */
.chatbot-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.chatbot-bubble {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 320px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  overflow: hidden;
  transform: scale(0.85) translateY(20px);
  opacity: 0;
  transform-origin: bottom right;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  pointer-events: none;
}
.chatbot-bubble.open {
  transform: scale(1) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.chatbot-header {
  background: #25D366;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chatbot-avatar svg { width: 20px; height: 20px; fill: var(--white); }
.chatbot-header-info { flex: 1; }
.chatbot-name { display: block; font-weight: 700; color: var(--white); font-size: 0.9rem; }
.chatbot-status { display: flex; align-items: center; gap: 5px; font-size: 0.75rem; color: rgba(255,255,255,0.85); }
.status-dot {
  width: 7px;
  height: 7px;
  background: var(--white);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.chatbot-close {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1;
  padding: 4px;
  transition: color var(--transition);
}
.chatbot-close:hover { color: var(--white); }
.chatbot-body { padding: 16px; }
.chat-msg { margin-bottom: 12px; }
.bot-msg p {
  background: var(--dark2);
  border-radius: 12px 12px 12px 4px;
  padding: 12px 14px;
  font-size: 0.88rem;
  color: var(--white);
  line-height: 1.5;
}
.chat-options { display: flex; flex-direction: column; gap: 8px; }
.chat-opt-btn {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.82rem;
  text-align: left;
  padding: 10px 14px;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.chat-opt-btn:hover { border-color: #25D366; background: rgba(37,211,102,0.06); }
.chatbot-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--gray2);
  text-align: center;
}
.chatbot-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  flex-shrink: 0;
}
.chatbot-toggle:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,0.5); }
.chatbot-notif {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px;
  height: 20px;
  background: var(--orange);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: notif-bounce 2s ease infinite;
}
@keyframes notif-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nosotros-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 4px; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98);
    align-items: center;
    justify-content: center;
    z-index: 999;
    font-size: 1.2rem;
  }
  .nav-links.open a { padding: 16px; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section-dark, .section-darker { padding: 72px 0; }

  .nosotros-grid { grid-template-columns: 1fr; }
  .nosotros-img-wrap { aspect-ratio: 16/10; max-width: 500px; }

  .contact-grid { grid-template-columns: 1fr; }

  .stats-container { gap: 16px; }
  .stat-divider { display: none; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .chatbot-bubble { width: 290px; }
  .chatbot-container { bottom: 16px; right: 16px; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .inventory-grid { grid-template-columns: 1fr; }
  .filter-tabs { gap: 6px; }
  .filter-btn { font-size: 0.75rem; padding: 7px 14px; }
}
