/* =============================================
   CONEXAM V3 — CSS PREMIUM CORPORATIVO B2B
   Archetype: Corporate Light + Orange Accent
   Fuente: Montserrat
   Paleta: Blanco/Gris + Naranja #FF6B35
============================================= */

/* ─────────────── TOKENS ─────────────── */
:root {
  --bg:         #FFFFFF;
  --bg-2:       #F8F9FA;
  --bg-3:       #F0F2F5;
  --ink:        #1A1D23;
  --ink-soft:   #2C3E50;
  --ink-mute:   #6B7280;
  --accent:     #FF6B35;
  --accent-2:   #E55A24;
  --accent-light: rgba(255, 107, 53, 0.1);
  --accent-glow:  rgba(255, 107, 53, 0.25);
  --line:       rgba(26, 29, 35, 0.1);
  --line-soft:  rgba(26, 29, 35, 0.06);
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 24px 64px rgba(0,0,0,0.14);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --font:       'Montserrat', sans-serif;
  --trans:      0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --trans-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ─────────────── UTILIDADES ─────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.accent { color: var(--accent); }
.accent-text { color: var(--accent); }
.section { padding: 7rem 0; }

.section-kicker {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-mute);
  max-width: 560px;
  line-height: 1.7;
}
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-head .section-sub { margin: 0 auto; }

/* ─────────────── REVEAL ANIMATIONS ─────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────── BUTTONS ─────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-ghost {
  border: 2px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}
.btn-large { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─────────────── COOKIE BANNER ─────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 560px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  z-index: 9999;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s ease;
}
.cookie-banner.hidden { opacity: 0; pointer-events: none; transform: translateY(20px); }
.cookie-content { display: flex; align-items: flex-start; gap: 0.75rem; flex: 1; }
.cookie-content i { color: var(--accent); font-size: 1.2rem; margin-top: 0.1rem; flex-shrink: 0; }
.cookie-content p { font-size: 0.85rem; line-height: 1.5; color: rgba(255,255,255,0.85); }
.cookie-content a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.5rem; flex-shrink: 0; }
.cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--trans);
}
.cookie-accept { background: var(--accent); color: #fff; }
.cookie-accept:hover { background: var(--accent-2); }
.cookie-reject { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.cookie-reject:hover { background: rgba(255,255,255,0.1); }

/* ─────────────── HEADER ─────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--trans);
  padding: 1.25rem 0;
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 0.85rem 0;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo { display: flex; align-items: center; gap: 0.1rem; }
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.logo-dot {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.logo-footer .logo-text { color: #fff; }

.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 6px;
  transition: all var(--trans);
}
.nav-link:hover { color: var(--accent); background: var(--accent-light); }
.nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  margin-left: 0.5rem;
}
.nav-cta:hover { background: var(--accent-2); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: all var(--trans);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─────────────── HERO ─────────────── */
.hero {
  min-height: 100vh;
  background: var(--bg);
  padding: 8rem 2rem 5rem;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,107,53,0.07) 0%, transparent 70%);
  bottom: 0;
  left: 0;
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-light);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.75rem;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: badge-pulse 1.8s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}
.hero-line { display: block; }
.hero-accent { color: var(--accent); }
.hero-thin { font-weight: 400; font-size: 0.65em; color: var(--ink-mute); letter-spacing: -0.01em; margin-top: 0.3rem; }

.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-mute);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 0;
  padding: 1.5rem 2rem;
  background: var(--bg-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}
.stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-num::after { content: '+'; font-size: 1.4rem; }
.stat:last-child .stat-num::after { content: ''; }
.stat-label {
  font-size: 0.72rem;
  color: var(--ink-mute);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.stat-divider {
  width: 1px;
  background: var(--line);
  margin: 0.25rem 0;
  align-self: stretch;
}

/* Hero Visual Cards */
.hero-visual { position: relative; z-index: 1; }
.hero-card-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 2rem;
}
.hcard {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all var(--trans);
  box-shadow: var(--shadow-sm);
}
.hcard:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.hcard i {
  font-size: 1.5rem;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.hcard span {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.3;
  display: block;
}
.hcard-1 { grid-column: 1 / -1; }
.hcard-pulse {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 10px; height: 10px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
}

/* ─────────────── TICKER ─────────────── */
.ticker-wrap {
  background: var(--ink);
  padding: 0.9rem 0;
  overflow: hidden;
}
.ticker-track {
  display: inline-flex;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
}
.ticker-track span {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticker-dot { color: var(--accent) !important; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─────────────── EMPRESA ─────────────── */
.empresa-section { background: var(--bg); }
.empresa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.empresa-text {
  font-size: 1rem;
  color: var(--ink-mute);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.empresa-pillars { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2.5rem; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar i {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.95rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.pillar div { display: flex; flex-direction: column; gap: 0.25rem; }
.pillar strong { font-size: 0.95rem; color: var(--ink); font-weight: 700; }
.pillar span { font-size: 0.875rem; color: var(--ink-mute); line-height: 1.5; }

.cifras-card {
  background: var(--ink);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  position: sticky;
  top: 7rem;
}
.cifra { padding: 1.5rem 0; }
.cifra-num {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.cifra-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
  font-weight: 500;
}
.cifra-divider { height: 1px; background: rgba(255,255,255,0.1); }

/* ─────────────── SOLUCIONES ─────────────── */
.soluciones-section { background: var(--bg-2); }
.soluciones-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.sol-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans);
  position: relative;
}
.sol-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--accent);
}
.sol-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--trans);
}
.sol-card:hover .sol-icon { background: var(--accent); }
.sol-icon i { font-size: 1.3rem; color: var(--accent); transition: all var(--trans); }
.sol-card:hover .sol-icon i { color: #fff; }
.sol-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.sol-card p { font-size: 0.9rem; color: var(--ink-mute); line-height: 1.65; margin-bottom: 1.25rem; }
.sol-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* ─────────────── INFRAESTRUCTURA ─────────────── */
.infra-section { background: var(--bg); }
.infra-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.infra-text {
  font-size: 1rem;
  color: var(--ink-mute);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.infra-items { display: flex; flex-direction: column; gap: 1.75rem; }
.infra-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  transition: all var(--trans);
}
.infra-item:hover { border-color: var(--accent); }
.infra-icon {
  width: 48px; height: 48px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.infra-content h4 { font-size: 0.95rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; }
.infra-content p { font-size: 0.875rem; color: var(--ink-mute); line-height: 1.6; }

/* SLA Card */
.sla-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: sticky;
  top: 7rem;
}
.sla-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.sla-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.sla-bar-wrap { flex: 1; }
.sla-label { font-size: 0.82rem; color: var(--ink-mute); font-weight: 600; display: block; margin-bottom: 0.4rem; }
.sla-bar {
  height: 8px;
  background: var(--line);
  border-radius: 100px;
  overflow: hidden;
}
.sla-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  animation: sla-fill-anim 1.5s ease forwards;
  transform-origin: left;
}
@keyframes sla-fill-anim {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
.sla-time {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--accent);
  white-space: nowrap;
  min-width: 70px;
  text-align: right;
}
.sla-uptime {
  text-align: center;
  padding: 1.5rem;
  background: var(--ink);
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}
.sla-up-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.sla-up-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); font-weight: 600; }

/* ─────────────── MARCAS ─────────────── */
.marcas-section {
  background: var(--bg-2);
  padding: 5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marcas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.marca-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  transition: all var(--trans);
}
.marca-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.marca-card img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(40%);
  transition: filter var(--trans);
}
.marca-card:hover img { filter: grayscale(0%); }
.marca-card p { font-size: 0.85rem; color: var(--ink-mute); line-height: 1.65; }

/* ─────────────── PROYECTOS ─────────────── */
.proyectos-section { background: var(--bg); }
.proyectos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.proy-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans);
}
.proy-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); }
.proy-featured {
  background: var(--ink);
  border-color: transparent;
}
.proy-featured h3, .proy-featured p { color: rgba(255,255,255,0.9); }
.proy-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}
.proy-active { background: rgba(34,197,94,0.12); color: #16a34a; }
.proy-featured .proy-active { background: rgba(34,197,94,0.2); color: #4ade80; }
.proy-recent { background: rgba(255,107,53,0.1); color: var(--accent); }
.proy-pulse {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  display: inline-block;
}
.proy-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--ink); margin-bottom: 0.6rem; }
.proy-card p { font-size: 0.875rem; color: var(--ink-mute); line-height: 1.65; margin-bottom: 1.25rem; }
.proy-featured p { color: rgba(255,255,255,0.7); }
.proy-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.proy-tags span {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--line);
  color: var(--ink-mute);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.proy-featured .proy-tags span { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.proyectos-cta { text-align: center; }
.proyectos-cta p { color: var(--ink-mute); margin-bottom: 1.25rem; }

/* ─────────────── CLIENTES ─────────────── */
.clientes-section { background: var(--bg-2); }
.clientes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.cliente-slot {
  background: var(--bg);
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  min-height: 100px;
}
.cliente-slot:hover { border-color: var(--accent); border-style: solid; }
.cliente-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.cliente-placeholder i { font-size: 1.5rem; color: var(--ink-mute); }
.cliente-placeholder span { font-size: 0.72rem; color: var(--ink-mute); font-weight: 600; text-align: center; }
.clientes-nota {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--accent-light);
  border: 1px solid rgba(255,107,53,0.2);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  margin-bottom: 3rem;
}
.clientes-nota i { color: var(--accent); margin-top: 0.15rem; flex-shrink: 0; }
.clientes-nota p { font-size: 0.875rem; color: var(--ink-soft); }

.testimonial-block {
  background: var(--bg);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 2.5rem;
}
.testimonial-block blockquote {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--bg-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mute);
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: var(--ink); font-weight: 700; }
.testimonial-author span { font-size: 0.82rem; color: var(--ink-mute); }

/* ─────────────── CTA BAND ─────────────── */
.cta-band {
  background: var(--ink);
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-orb {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,53,0.15) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}
.cta-inner p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ─────────────── CONTACTO ─────────────── */
.contacto-section { background: var(--bg); }
.contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contacto-sub {
  font-size: 1rem;
  color: var(--ink-mute);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}
.contacto-info { display: flex; flex-direction: column; gap: 1.25rem; }
.ci-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-item i {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.ci-item div { display: flex; flex-direction: column; gap: 0.2rem; }
.ci-item strong { font-size: 0.82rem; font-weight: 700; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.ci-item a, .ci-item span { font-size: 0.95rem; color: var(--ink); font-weight: 600; }
.ci-item a:hover { color: var(--accent); }

/* Form */
.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-disclaimer { font-size: 0.78rem; color: var(--ink-mute); text-align: center; }
.form-disclaimer a { color: var(--accent); text-decoration: underline; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 4rem 2rem;
  background: var(--bg-2);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
}
.form-success.visible { display: flex; }
.form-success i { font-size: 3rem; color: #22c55e; }
.form-success h3 { font-size: 1.4rem; font-weight: 800; color: var(--ink); }
.form-success p { color: var(--ink-mute); }

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--ink);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 1.25rem 0;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  transition: all var(--trans);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--trans);
  font-weight: 500;
}
.footer-nav a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.82rem; color: rgba(255,255,255,0.35); transition: color var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 7rem; }
  .hero-visual { display: none; }
  .empresa-grid, .infra-grid, .contacto-grid { grid-template-columns: 1fr; gap: 3rem; }
  .cifras-card, .sla-card { position: static; }
  .soluciones-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .clientes-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 4.5rem 0; }
  .nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--bg); flex-direction: column; justify-content: center; align-items: center; gap: 0.5rem; padding: 2rem; }
  .nav.open { display: flex; }
  .nav-link { font-size: 1.2rem; padding: 0.75rem 1.5rem; }
  .hamburger { display: flex; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 100%; height: 1px; }
  .hero-actions { flex-direction: column; }
  .soluciones-grid, .proyectos-grid { grid-template-columns: 1fr; }
  .marcas-grid { grid-template-columns: 1fr; }
  .clientes-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: flex-end; }
  .hero-card-stack { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: 2.2rem; }
  .clientes-grid { grid-template-columns: 1fr 1fr; }
  .contacto-form { padding: 1.5rem; }
}

/* ─────────────── PROYECTOS EMBLEMÁTICOS ─────────────── */
.proy-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  background: var(--accent-light);
  border-radius: 100px;
}
.emblematicos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.emb-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--trans);
  position: relative;
}
.emb-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.emb-featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255,107,53,0.04) 0%, var(--bg) 100%);
}
.emb-icon {
  width: 40px; height: 40px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 0.85rem;
  transition: all var(--trans);
}
.emb-card:hover .emb-icon { background: var(--accent); color: #fff; }
.emb-card h3 { font-size: 0.9rem; font-weight: 800; color: var(--ink); margin-bottom: 0.4rem; line-height: 1.3; }
.emb-city { font-size: 0.75rem; color: var(--ink-mute); font-weight: 600; display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.75rem; }
.emb-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; }
.etag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.etag-parking { background: rgba(255,107,53,0.12); color: var(--accent); }
.etag-guiado  { background: rgba(59,130,246,0.12); color: #2563eb; }
.etag-lpr     { background: rgba(139,92,246,0.12); color: #7c3aed; }
.etag-cajero  { background: rgba(16,185,129,0.12); color: #059669; }
.etag-civil   { background: rgba(245,158,11,0.12); color: #d97706; }

/* Otros proyectos */
.otros-section { margin-top: 1rem; }
.otros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}
.otro-tag {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
  transition: all var(--trans);
}
.otro-tag i { color: var(--accent); font-size: 1rem; margin-bottom: 0.25rem; }
.otro-tag span { font-size: 0.72rem; font-weight: 600; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 0.06em; }
.otro-tag:hover { border-color: var(--accent); background: var(--bg); }

/* ─────────────── RESULTADOS ─────────────── */
.resultados-section { background: var(--bg-2); }
.resultados-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.res-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--trans);
}
.res-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.res-green { border-color: rgba(34,197,94,0.3); background: rgba(34,197,94,0.03); }
.res-green:hover { border-color: #22c55e; }
.res-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: 1.25rem;
  transition: all var(--trans);
}
.res-icon-green { background: rgba(34,197,94,0.12); color: #16a34a; }
.res-card:hover .res-icon { background: var(--accent); color: #fff; }
.res-green:hover .res-icon { background: #22c55e; color: #fff; }
.res-card h3 { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 0.6rem; }
.res-card p { font-size: 0.875rem; color: var(--ink-mute); line-height: 1.65; }

/* ─────────────── SKIDATA BADGE ─────────────── */
.skidata-badge {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: var(--ink);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.skidata-badge img { height: 36px; object-fit: contain; filter: brightness(0) invert(1); flex-shrink: 0; }
.skidata-badge strong { display: block; color: #fff; font-size: 0.9rem; font-weight: 800; margin-bottom: 0.35rem; }
.skidata-badge span { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ─────────────── INFRA MARCAS ─────────────── */
.infra-marcas {
  margin-top: 1.5rem;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
}
.infra-marcas-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
  margin-bottom: 1rem;
}
.infra-marcas-logos {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.infra-marcas-logos img {
  height: 30px;
  object-fit: contain;
  filter: grayscale(60%);
  transition: filter var(--trans);
}
.infra-marcas-logos img:hover { filter: grayscale(0%); }

/* ─────────────── CLIENTES LOGOS ─────────────── */
.clientes-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.cl-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.75rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: all var(--trans);
}
.cl-item:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cl-item i { font-size: 1.75rem; color: var(--accent); }
.cl-item span { font-size: 0.85rem; font-weight: 700; color: var(--ink); }

/* ─────────────── HERO CARD ACTUALIZACIÓN ─────────────── */
.hcard-title { font-size: 0.85rem; font-weight: 800; color: var(--ink); display: block; margin-bottom: 0.2rem; }
.hcard-sub   { font-size: 0.75rem; color: var(--ink-mute); font-weight: 500; }
.hcard { display: flex; align-items: flex-start; gap: 0.75rem; }
.hcard i { flex-shrink: 0; margin-top: 0.1rem; }

/* ─────────────── RESPONSIVE NUEVAS SECCIONES ─────────────── */
@media (max-width: 1024px) {
  .emblematicos-grid { grid-template-columns: repeat(3, 1fr); }
  .otros-grid { grid-template-columns: repeat(2, 1fr); }
  .resultados-grid { grid-template-columns: repeat(2, 1fr); }
  .clientes-logos { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 768px) {
  .emblematicos-grid { grid-template-columns: repeat(2, 1fr); }
  .otros-grid { grid-template-columns: repeat(2, 1fr); }
  .resultados-grid { grid-template-columns: 1fr; }
  .clientes-logos { grid-template-columns: repeat(2, 1fr); }
  .skidata-badge { flex-direction: column; }
}
@media (max-width: 480px) {
  .emblematicos-grid { grid-template-columns: 1fr; }
  .otros-grid { grid-template-columns: 1fr; }
  .clientes-logos { grid-template-columns: repeat(2, 1fr); }
}
