
/* REPUESTOSPESADOS.COM.CO - HEAVY DUTY INDUSTRIAL MASTER STYLESHEET */
:root {
  --bg-dark: #0A0F1D;
  --bg-card-dark: #121829;
  --primary-gold: #F59E0B;
  --primary-gold-hover: #D97706;
  --truck-yellow: #FBBF24;
  --accent-red: #DC2626;
  --whatsapp-green: #25D366;
  --surface-light: #F8FAFC;
  --border-dark: #1E293B;
  --border-light: #E2E8F0;
  --text-dark: #0F172A;
  --text-light: #F8FAFC;
  --text-muted: #94A3B8;
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Cabinet Grotesk', system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background-color: #070B14;
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* TOP SLOGAN & DISPATCH BANNER */
.top-slogan-bar {
  background: linear-gradient(90deg, #D97706, #F59E0B, #D97706);
  color: #000000;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 16px;
  text-align: center;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}
.top-slogan-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.slogan-highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #000000;
  color: #FBBF24;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 12px;
}

/* MAIN HEADER */
.site-header {
  background: #0B0F19;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--primary-gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--truck-yellow), var(--primary-gold));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
}
.brand-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #FFFFFF;
  line-height: 1.1;
}
.brand-title span {
  color: var(--primary-gold);
}
.brand-sub {
  font-size: 11px;
  color: var(--primary-gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.nav-menu a {
  color: #E2E8F0;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s;
}
.nav-menu a:hover {
  color: var(--primary-gold);
}
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-phone {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.2);
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-phone:hover {
  background: rgba(255,255,255,0.15);
  border-color: #FFFFFF;
}
.btn-cotizar-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  transition: all 0.2s;
}
.btn-cotizar-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* HERO SECTION */
.hero-section {
  background: radial-gradient(circle at top right, #1E293B 0%, #0B0F19 60%, #050811 100%);
  padding: 70px 20px 80px;
  position: relative;
  border-bottom: 1px solid var(--border-dark);
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: var(--primary-gold);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero-title span.gold {
  color: var(--truck-yellow);
  background: linear-gradient(135deg, #FDE047, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-slogan-box {
  background: rgba(245, 158, 11, 0.1);
  border-left: 4px solid var(--primary-gold);
  padding: 12px 18px;
  font-size: 16px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  border-radius: 0 8px 8px 0;
}
.hero-desc {
  font-size: 17px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 24px;
}
.hero-badges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-badge-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  border-radius: 12px;
  text-align: center;
}
.hero-badge-card strong {
  display: block;
  font-size: 18px;
  color: var(--primary-gold);
  font-weight: 900;
}
.hero-badge-card span {
  font-size: 12px;
  color: #94A3B8;
}

/* COTIZADOR RÁPIDO DE REPUESTOS */
.finder-card {
  background: #121829;
  border: 2px solid var(--primary-gold);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.finder-header {
  margin-bottom: 18px;
}
.finder-header h3 {
  font-size: 22px;
  font-weight: 900;
  color: #FFFFFF;
}
.finder-header p {
  font-size: 13px;
  color: var(--primary-gold);
  font-weight: 700;
}
.finder-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #E2E8F0;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  background: #0B0F19;
  border: 1.5px solid var(--border-dark);
  border-radius: 8px;
  color: #FFFFFF;
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-gold);
}
.btn-submit-finder {
  background: linear-gradient(135deg, var(--truck-yellow), var(--primary-gold));
  color: #000000;
  border: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  margin-top: 6px;
}
.btn-submit-finder:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.6);
}

/* MARCAS GRID SHOWCASE */
.section {
  padding: 70px 20px;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 40px;
}
.section-pill {
  display: inline-block;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-gold);
  padding: 5px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section-title {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.brand-card {
  background: #121829;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 24px;
  text-decoration: none;
  color: #FFFFFF;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.brand-card:hover {
  border-color: var(--primary-gold);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.2);
}
.brand-card h4 {
  font-size: 20px;
  font-weight: 900;
  color: var(--truck-yellow);
  margin-bottom: 8px;
}
.brand-card p {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 14px;
}
.brand-models-tag {
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  padding: 4px 8px;
  border-radius: 4px;
  color: #E2E8F0;
  font-weight: 600;
  margin-bottom: 12px;
}

/* SISTEMAS GRID */
.systems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.system-card {
  background: #121829;
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.2s;
}
.system-card:hover {
  border-color: var(--primary-gold);
}
.system-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.system-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.system-card p {
  font-size: 13px;
  color: #94A3B8;
  margin-bottom: 14px;
  line-height: 1.5;
}

/* CIUDADES GRID */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.city-link-card {
  background: #121829;
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: 12px 16px;
  text-decoration: none;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
}
.city-link-card:hover {
  border-color: var(--primary-gold);
  background: #1E293B;
  color: var(--primary-gold);
}
.city-link-card span {
  font-size: 11px;
  color: #94A3B8;
  font-weight: 500;
}

/* FAQ & SLOGAN BANNER */
.slogan-cta-banner {
  background: linear-gradient(135deg, #1E293B, #0F172A);
  border: 2px solid var(--primary-gold);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  margin: 40px auto 0;
  max-width: 1000px;
}
.slogan-cta-banner h3 {
  font-size: 28px;
  font-weight: 900;
  color: var(--truck-yellow);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.slogan-cta-banner p {
  font-size: 16px;
  color: #CBD5E1;
  max-width: 700px;
  margin: 0 auto 24px;
}

/* FOOTER */
.site-footer {
  background: #050811;
  color: #94A3B8;
  padding: 60px 20px 30px;
  border-top: 3px solid var(--primary-gold);
}
.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h5 {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: #94A3B8;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary-gold);
}
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  flex-wrap: wrap;
  gap: 12px;
}

/* MOBILE STICKY CTA BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0B0F19;
  padding: 10px 16px;
  z-index: 9999;
  border-top: 2px solid var(--primary-gold);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
  justify-content: space-between;
  gap: 10px;
}
.mobile-sticky-btn {
  flex: 1;
  padding: 12px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.mobile-sticky-call {
  background: #FFFFFF;
  color: #000000;
}
.mobile-sticky-wa {
  background: #25D366;
  color: #FFFFFF;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .systems-grid { grid-template-columns: repeat(2, 1fr); }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hero-title { font-size: 30px; }
  .hero-badges-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .systems-grid { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 70px; }
}
