/* DK-Track design system - light theme, brand greens */
:root {
  --background: #FAFAF7;
  --foreground: #0A0A0A;
  --surface: #E9ECE6;
  --card: #FFFFFF;
  --primary: #4FB233;
  --primary-foreground: #FFFFFF;
  --accent: #7ED957;
  --muted: #EEF0EC;
  --muted-foreground: #595959;
  --track-agro:#72c151;
  --track-logistica:#1280cf;
  --track-urbano:#8c52ff;
  --track-privado:#0097b2;
  --border: #DCDFD8;
  --radius: 0.875rem;
  --gradient-brand: linear-gradient(135deg, #4FB233 0%, #7ED957 100%);
  --gradient-soft: linear-gradient(180deg, #FAFAF7 0%, #EEF0EC 100%);
  --shadow-elegant: 0 20px 60px -20px rgba(79,178,51,0.25);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px -8px rgba(0,0,0,0.08);
  --shadow-glow: 0 0 80px rgba(126,217,87,0.35);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  /*font-family: 'Inter', system-ui, -apple-system, sans-serif;*/
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }


.img-fondo { background: url("../images/bk-camion.jpg"); background-repeat: no-repeat; background-size: cover; background-position: top left}
 }
@media (min-width: 1024px) { .img-fondo { background-position: top right}
 }

.img-fondo-2 { background: url("../images/bk-analytics.jpg"); background-repeat: no-repeat; background-size:contain; background-position: top right}
.fondo-degrade { background: linear-gradient(180deg, #f6f6f6 0%, #f6f6f6 45%, #e9e9eb 100%);}


/* Layout */
.container-x { max-width: 80rem; margin: 0 auto; padding: 0 1.25rem; width: 100%; }
@media (min-width: 640px) { .container-x { padding: 0 2rem; } }
@media (min-width: 1024px) { .container-x { padding: 0 3rem; } }

.text-center { text-align: center}
.text-muted { color: var(--muted-foreground); }
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-gradient-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.eyebrow { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em; color: var(--primary); }

.grid-pattern {
  background-image:
    linear-gradient(rgba(220,223,216,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(220,223,216,0.6) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.375rem;
  padding: 0.625rem 1.125rem; border-radius: 0.625rem;
  font-size: 0.875rem; font-weight: 500; transition: all 0.2s ease;
  border: 1px solid transparent; white-space: nowrap;
}
.btn-lg { padding: 0.75rem 1.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 0.875rem; font-size: 0.8125rem; }
.btn-primary { background: var(--foreground); color: var(--background); }
.btn-primary:hover { background: rgba(10,10,10,0.9); }
.btn-outline { border-color: var(--border); background: transparent; color: var(--foreground); }
.btn-outline:hover { background: var(--muted); }
.btn-light { background: var(--background); color: var(--foreground); }
.btn-light:hover { background: rgba(255,255,255,0.9); }
.btn-ghost { background: transparent; }
.btn-ghost:hover { background: var(--muted); }
.btn .arrow { transition: transform 0.2s ease; }
.btn:hover .arrow { transform: translateX(3px); }

/* Header */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: all 0.3s ease;
}
.header.scrolled {
  background: rgba(250,250,247,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220,223,216,0.6);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .header-inner { height: 5rem; } }
.logo { display: inline-flex; align-items: center; gap: 0.5rem; font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.125rem; }
.logo-mark {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  background: var(--gradient-brand);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700;
}
.nav { display: none; align-items: center; gap: 0.25rem; }
.nav a {
  padding: 0.5rem 0.875rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 500; color: var(--muted-foreground);
  transition: color 0.2s;
}
.nav a:hover { color: var(--primary);  }
.nav a.active {color: #000 }
.header-actions { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 768px) {
  .nav, .header-actions { display: flex; }
}
.menu-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  border: 1px solid var(--border); background: var(--card);
}
@media (min-width: 768px) { .menu-btn { display: none; } }
.mobile-menu {
  display: none; border-top: 1px solid rgba(220,223,216,0.6); background: var(--background);
}
.mobile-menu.open { display: block; }
.mobile-menu-inner { display: flex; flex-direction: column; gap: 0.25rem; padding: 1rem 0; }
.mobile-menu a { padding: 0.625rem 0.75rem; border-radius: 0.5rem; color: var(--muted-foreground); font-weight: 500; }
.mobile-menu a:hover { background: var(--muted); color: var(--foreground); }
.mobile-actions { display: flex; flex-direction: column; gap: 0.5rem; padding: 1rem; margin-top: 0.5rem; border-top: 1px solid rgba(220,223,216,0.6); }

/* Hero */
.hero { position: relative; overflow: hidden; padding-top: 7rem; }
@media (min-width: 768px) { .hero { padding-top: 9rem; } }
.hero-bg-grid { position: absolute; inset: 0; z-index: -1; opacity: 0.6; }
.hero-glow {
  position: absolute; top: -10rem; right: -10%; z-index: -1;
  width: 520px; height: 520px; border-radius: 50%;
  background: rgba(126,217,87,0.2); filter: blur(60px); pointer-events: none;
}
.hero-grid {
  display: grid; gap: 3rem; padding-bottom: 5rem; align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 7fr 5fr; gap: 2rem; padding-bottom: 7rem; }
}
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 0.875rem; border-radius: 9999px;
  border: 1px solid var(--border); background: rgba(255,255,255,0.7);
  font-size: 0.75rem; font-weight: 500; color: var(--muted-foreground);
  backdrop-filter: blur(8px);
}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 { margin-top: 1.5rem; font-size: 2.25rem; font-weight: 700; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero-lead { margin-top: 1.5rem; max-width: 42rem; color: var(--muted-foreground); font-size: 1rem; }
@media (min-width: 640px) { .hero-lead { font-size: 1.125rem; } }
.hero-lead strong { color: var(--foreground); font-weight: 600; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero-stats {
  margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(220,223,216,0.6); max-width: 36rem;
}
.hero-stats dt { font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700; }
@media (min-width: 640px) { .hero-stats dt { font-size: 1.875rem; } }
.hero-stats dd { margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .hero-stats dd { font-size: 0.875rem; } }

/* Hero satellite visual */
.hero-visual { position: relative; max-width: 28rem; margin: 0 auto; aspect-ratio: 1; }
.hero-visual .glow-bg { position: absolute; inset: 0; border-radius: 50%; background: var(--gradient-brand); opacity: 0.1; filter: blur(40px); }
.hero-visual .ring { position: absolute; border: 1px solid var(--border); border-radius: 50%; }
.hero-visual .ring-1 { inset: 1.5rem; }
.hero-visual .ring-2 { inset: 3.5rem; }
.hero-visual .ring-3 { inset: 6rem; border-color: rgba(79,178,51,0.4); }
.hero-visual .orbit { position: absolute; inset: 1.5rem; animation: spin 22s linear infinite; }
.hero-visual .orbit-2 { inset: 3.5rem; animation: spin 18s linear infinite reverse; }
.hero-visual .orbit .dot { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 12px; height: 12px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 20px rgba(126,217,87,0.7); }
.hero-visual .orbit-2 .dot { width: 8px; height: 8px; background: var(--accent); box-shadow: none; }
@keyframes spin { to { transform: rotate(360deg); } }
.hero-visual .center {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
}
.hero-visual .center-card {
  width: 8rem; height: 8rem; border-radius: 4rem;
  border: 1px solid var(--border); background: var(--card);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero-visual .center-card svg { color: var(--primary); }
.hero-visual .center-card .label { margin-top: 0.5rem; font-family: 'Space Grotesk', sans-serif; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.hero-visual .center-card .sub { font-size: 0.625rem; color: var(--muted-foreground); }

/* Sections */
.section .funcionalidades {padding:0 0 2em 0; border-bottom: 1px solid #ccc}
.section { padding: 6rem 0; }
@media (min-width: 768px) { .section { padding: 8rem 0; } }
.section-head { max-width: 42rem; }
.section-head h2 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 700; }
@media (min-width: 640px) { .section-head h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-head h2 { font-size: 3rem; } }
.section-head p { margin-top: 1.25rem; color: var(--muted-foreground); font-size: 1rem; }
@media (min-width: 640px) { .section-head p { font-size: 1.125rem; } }

/* About */
.about-grid { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { 
	.about-grid { grid-template-columns: 1fr 1fr; } 
}
.about-card {
  position: relative; overflow: hidden; padding: 2rem; border-radius: 1rem;
  border: 1px solid var(--border); background: var(--card);
  box-shadow: var(--shadow-card); transition: all 0.5s ease;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.about-card.dark { background: var(--foreground); color: var(--background); }
.about-card.dark .blob { position: absolute; top: -4rem; right: -4rem; width: 14rem; height: 14rem; border-radius: 50%; background: rgba(126,217,87,0.3); filter: blur(60px); pointer-events: none; }
.icon-tile {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(79,178,51,0.1); color: var(--primary); margin-bottom: 1.5rem;
}
.icon-tile.accent { background: rgba(126,217,87,0.2); color: var(--accent); }
.about-card h3 { font-size: 1.25rem; font-weight: 700; }
.about-card p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.about-card.dark p { color: rgba(250,250,247,0.7); }
.feat-list { margin-top: 1.5rem; display: grid; gap: 0.75rem; font-size: 0.875rem; }
.feat-list li { display: flex; align-items: center; gap: 0.625rem; }
.feat-list svg { color: var(--primary); flex-shrink: 0; }
.about-card.dark .feat-list svg { color: var(--accent); }
.about-card.dark .feat-list li { color: rgba(250,250,247,0.85); }

/* 6 columnas */
.grid-6colum { margin-top: 1.5rem; display: grid; grid-auto-flow: row; gap: 0.5rem; }
@media (min-width: 1024px) { .grid-6colum { grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr; } }
.funcion-card {
  position: relative; overflow: hidden; padding: 0.8rem; border-radius: 1rem;
  border: 1px solid var(--border); background: var(--card);
  box-shadow: var(--shadow-card); transition: all 0.5s ease;
}
.funcion-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.icon-funcion-card {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(79,178,51,0.1); color: var(--primary); margin-bottom: 1.5rem;
}
.funcion-card h3 { font-size: 1rem; font-weight: 700; }

.ul-chico { font-size: 0.75em; padding-top: 10px  }
.ul-chico li { padding-top: 5px; display: flex;   align-items: flex-start; gap: 0.4rem;  }
.ul-chico .check-agro {
  flex-shrink: 0; margin-top: 6px; width: 6px; height: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--primary);}

/* 4 columnas */
.grid-4colum { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .grid-4colum { grid-template-columns: 1fr 1fr 1fr 1fr; } }

/*3 columnas que logramos */
.grid-3colum { margin-top: 3.5rem; display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .grid-3colum { grid-template-columns: 1fr 1fr 1fr; } }
/*.about-card {
  position: relative; overflow: hidden; padding: 2rem; border-radius: 1rem;
  border: 1px solid var(--border); background: var(--card);
  box-shadow: var(--shadow-card); transition: all 0.5s ease;
}
.about-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.about-card.dark { background: var(--foreground); color: var(--background); }*/

.about-card.logro .blob { position: absolute; top: -4rem; right: -4rem; width: 14rem; height: 14rem; border-radius: 50%; background: rgba(111,110,110,0.10); filter: blur(60px); pointer-events: none; }

.icon-tile-center {
  width: 80px; height: 80px; border-radius: 0.75rem;
  display: inline-flex; align-items: center; justify-content: center;
  /*background: rgba(79,178,51,0.1); color: var(--primary);*/ margin-bottom: 1.5rem;
}
/*.icon-tile.accent { background:rgba(126,217,87,0.2); color: var(--accent); }*/
.about-card h3 { font-size: 1.25rem; font-weight: 700; }
.about-card p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
/*.about-card.dark p { color: rgba(250,250,247,0.7); }*/

/*lista*/
.lista-ia { margin-top: 1.5rem; display: grid; gap: 1.3rem; font-size: 0.875rem; }
.lista-ia li { display: flex; align-items: center; gap: 0.625rem;  }
.lista-ia h2 { color: var(--primary)}
.lista-ia img { width: 65px; border: 1px solid var(--primary); border-radius:60px; box-shadow: var( --shadow-card) }


/* Video */
.video-wrap { max-width: 64rem; margin: 3rem auto 0; }
.video-frame {
  position: relative; overflow: hidden; border-radius: 1rem;
  border: 1px solid var(--border); background: var(--foreground);
  box-shadow: var(--shadow-card);
}
.video-frame .ratio { position: relative; aspect-ratio: 16 / 9; }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.section.center { text-align: center; }
.section.center .section-head { margin: 0 auto; }

/* Services */
.services { background: rgba(233,236,230,0.5); }
.services-head {
  display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; justify-content: space-between;
}
@media (min-width: 768px) { .services-head { flex-direction: row; align-items: flex-end; } }
.services-grid {
  margin-top: 3rem; display: grid; gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative; display: flex; flex-direction: column;
  padding: 1.75rem; border-radius: 1rem; border: 1px solid var(--border);
  background: var(--card); transition: all 0.5s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(0,0,0,0.3); }
.service-card.featured { border: 0; background: var(--foreground); overflow: hidden;
    color: var(--background); /*background: var(--gradient-brand); color: var(--primary-foreground);*/
}
.service-card .blob-track { position: absolute; top: -4rem; right: -4rem; width: 14rem; height: 14rem; border-radius: 50%; background: rgba(126, 217, 87, 0.24); filter: blur(60px); }
.service-card .blob-2 { position: absolute; bottom: -6rem; left: -2.5rem; width: 16rem; height: 16rem; border-radius: 50%; background: rgba(79,178,51,0.3); filter: blur(60px); }
@media (min-width: 640px) { .service-card.featured { grid-column: span 2; } }
@media (min-width: 1024px) { .service-card.featured { grid-column: span 1; grid-row: span 2; } }
.service-card.featured .icon-tile { background: rgba(255,255,255,0.2); color: #fff; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; }
.service-card .tagline { margin-top: 0.25rem; font-size: 0.875rem; font-weight: 500; color: var(--primary); }
.service-card.featured .tagline { color: rgba(255,255,255,0.85); }
.service-card .short { margin-top: 1rem; font-size: 0.875rem; color: var(--muted-foreground); flex: 1; }
.service-card .short1 { margin-top: 1rem; font-size: 1rem;   }
.service-card.featured .short { color: rgba(255,255,255,0.9); }
.service-card .more { margin-top: 1.5rem; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 500; }


.bk-none {background:none;}
.banner-small { background: var(--foreground); border-radius: var(--radius); padding: 1em; margin: 0.3em 0; color:#fff; display: flex;
    width: 100%;   justify-content: space-evenly;}
@media (max-width: 600px) {
	.banner-small { flex-direction: column;}
}
/* CTA */
.cta-card {
  position: relative; overflow: hidden; border-radius: 1.5rem;
  background: var(--foreground); color: var(--background);
  padding: 2.5rem; box-shadow: var(--shadow-elegant);
}
@media (min-width: 768px) { .cta-card { padding: 4rem; } }
.cta-card .blob-1 { position: absolute; top: -5rem; right: -5rem; width: 18rem; height: 18rem; border-radius: 50%; background: rgba(126,217,87,0.3); filter: blur(60px); }
.cta-card .blob-2 { position: absolute; bottom: -6rem; left: -2.5rem; width: 16rem; height: 16rem; border-radius: 50%; background: rgba(79,178,51,0.3); filter: blur(60px); }
.cta-grid { position: relative; display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .cta-grid { grid-template-columns: 2fr 1fr; } }
.cta-card .eyebrow { color: var(--accent); }
.cta-card h2 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 700; }
@media (min-width: 640px) { .cta-card h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .cta-card h2 { font-size: 2.75rem; } }
.cta-card p { margin-top: 1rem; max-width: 36rem; color: rgba(250,250,247,0.75); font-size: 1rem; }
@media (min-width: 640px) { .cta-card p { font-size: 1.125rem; } }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }
@media (min-width: 1024px) { .cta-actions { justify-content: flex-end; } }

/* Footer */
.footer { border-top: 1px solid rgba(220,223,216,0.6); background: rgba(233,236,230,0.5); }
.footer-inner { padding: 3.5rem 0; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 5fr 3fr 4fr; } }
.footer p, .footer li, .footer a { color: var(--muted-foreground); font-size: 0.875rem; }
.footer h4 { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.footer ul { margin-top: 1rem; display: grid; gap: 0.5rem; }
.footer ul.contact { gap: 0.75rem; }
.footer ul.contact li { display: flex; align-items: flex-start; gap: 0.625rem; }
.footer ul.contact svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer a:hover { color: var(--foreground); }
.footer-bottom { margin-top: 3rem; padding: 1.5rem 1em; border-top: 1px solid rgba(220,223,216,0.6); display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; } }
.footer .brand-desc { margin-top: 1rem; max-width: 22rem; }
.footer .credit { margin-top: 1rem; font-size: 0.75rem; }
.footer .credit a { color: var(--foreground); font-weight: 500; }
.footer .credit a:hover { color: var(--primary); }

/* Page header (Servicios / Contacto) */
.page-hero { position: relative; padding-top: 8rem; padding-bottom: 3rem; }
@media (min-width: 768px) { .page-hero { padding-top: 9rem; } }
.page-hero .grid-pattern { position: absolute; inset: 0; z-index: -1; opacity: 0.5; }
.page-hero h1 { margin-top: 0.75rem; max-width: 48rem; font-size: 2.25rem; font-weight: 700; }
@media (min-width: 640px) { .page-hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .page-hero h1 { font-size: 3.75rem; } }
.page-hero p { margin-top: 1.25rem; max-width: 40rem; color: var(--muted-foreground); font-size: 1rem; }
@media (min-width: 640px) { .page-hero p { font-size: 1.125rem; } }

/* Servicios detail */
.svc-list { display: grid; gap: 5rem; }
@media (min-width: 768px) { .svc-list { /*gap: 6rem;*/ } }
.svc-item { display: grid; gap: 2.5rem; align-items: center; scroll-margin-top: 6rem; }
@media (min-width: 1024px) {
  .svc-item { grid-template-columns: 7fr 3fr; gap: 4rem; }
  .svc-item.reverse .svc-text { order: 2; }
  .svc-item.reverse .svc-visual { order: 1; }
}
.svc-text h2 { margin-top: 0.75rem; font-size: 1.875rem; font-weight: 700; }
@media (min-width: 640px) { .svc-text h2 { font-size: 2.25rem; } }
.svc-text p { margin-top: 1rem; color: var(--muted-foreground); font-size: 1rem; }
@media (min-width: 640px) { .svc-text p { font-size: 1.125rem; } }
.bullets { margin-top: 1.5rem; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .bullets { grid-template-columns: 1fr 1fr; } }
.bullets li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; }
.bullets .check {
  flex-shrink: 0; margin-top: 2px; width: 20px; height: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(79,178,51,0.1); color: var(--primary);
}
/*lista checks*/
.check-list { margin-top: 1.5rem; display: grid; gap: 1rem; font-size: 0.875rem; }
.check-list li { display: flex; align-items: center; gap: 0.625rem; /*color: rgba(250,250,247,0.85);*/ }
.check-list svg { color:  var(--accent); flex-shrink: 0; }
/*.check-list svg { color: var(--accent); }*/

.icon-check {flex-shrink: 0;
    margin-top: 2px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgb(64 242 13 / 32%);
    color: var(--primary);}
.svc-visual {
  position: relative; aspect-ratio: 1; width: 100%;
  border-radius: 1.5rem; border: 1px solid var(--border);
  background: var(--gradient-soft); box-shadow: var(--shadow-card);
  padding: 2.5rem; overflow: hidden;
}
@media (max-width: 1024px) { .svc-visual { aspect-ratio: 0; padding: 1rem;}
 }
.svc-visual .blob { position: absolute; top: -4rem; right: -4rem; width: 14rem; height: 14rem; border-radius: 50%; background: rgba(180,180,180,0.2); filter: blur(60px); }
.svc-visual .inner {
  position: relative; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
}
.svc-visual .icon-big {
  width: 5rem; height: 5rem; border-radius: 1rem;
  /*background: var(--gradient-brand);*/ color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  /*box-shadow: var(--shadow-elegant);*/
}
.svc-visual .name { margin-top: 1.5rem; font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; font-weight: 700; }
.svc-visual .tag { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* Contacto */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 7fr 5fr; } }
.contact-card {
  border-radius: 1rem; border: 1px solid var(--border);
  background: var(--card); padding: 1.75rem; box-shadow: var(--shadow-card);
}
.contact-card h2 { font-size: 1.25rem; font-weight: 700; }
.contact-card .desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.contact-info { margin-top: 1.5rem; display: grid; gap: 1.25rem; font-size: 0.875rem; }
.contact-info li { display: flex; align-items: flex-start; gap: 0.75rem; }
.contact-info .ic {
  flex-shrink: 0; width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  background: rgba(79,178,51,0.1); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info p.lbl { font-weight: 500; color: var(--foreground); }
.contact-info span, .contact-info a { color: var(--muted-foreground); }
.contact-info a:hover { color: var(--primary); }

.form-section h2 { font-size: 1.25rem; font-weight: 700; }
.form-section .desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.25rem; }
.form-card {
  border-radius: 1rem; border: 1px solid var(--border);
  background: var(--card); padding: 1.5rem;
}
@media (min-width: 640px) { .form-card { padding: 2rem; } }
.form-fallback {
  border: 1px dashed var(--border); border-radius: 1rem;
  background: rgba(238,240,236,0.4); padding: 2rem; font-size: 0.875rem;
  color: var(--muted-foreground);
}
.form-fallback strong { color: var(--foreground); display: block; margin-bottom: 0.5rem; }
.form-fallback code { background: var(--card); padding: 1px 6px; border-radius: 4px; font-size: 0.8125rem; }

/*color y fondos*/
.txt-track-agro { color: var(--primary) !important}
.txt-track-logistica { color: var(--track-logistica) !important}
.txt-track-urbano { color: var(--track-urbano) !important}
.txt-track-privado { color: var(--track-privado) !important}

.bk-track-agro { background: var(--track-agro) !important}
.bk-track-logistica { background: var(--track-logistica)!important}
.bk-track-urbano { background: var(--track-urbano)!important}
.bk-track-privado { background: var(--track-privado)!important} 

.check-logistica { background: rgba(18, 128, 207, 0.1) !important; }
.check-urbano { background: rgba(140, 82, 255, 0.1) !important; }
.check-privado { background: rgba(0, 151, 178, 0.1) !important; }





