/* Le Energy - NUCLEO comun a las 24 paginas del diseno aprobado.
   Se encola SIEMPRE. El CSS especifico de cada pagina se encola DESPUES
   (sus overrides deben ganar la cascada). Generado desde docs/diseno-final/. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  /* ── Paleta corporativa oficial Le Energy (validada con cliente 2026-06-08) ── */
  --green:       #1BA45F;   /* verde corporativo oficial */
  --green-dark:  #147A47;
  --green-soft:  #E8F6EF;
  --green-glow:  rgba(27,164,95,.35);

  /* Gris corporativo oficial + neutros industriales */
  --ink:        #2A2A2B;    /* base oscura derivada del gris corporativo #4A494A */
  --ink-2:      #3A393A;
  --ink-soft:   #4A494A;    /* gris corporativo oficial */
  --muted:      #7A7A7C;
  --line:       #E4E4E7;
  --line-soft:  #F2F2F4;
  --bg:         #FAFAFB;
  --white:      #FFFFFF;

  /* Acentos */
  --amber:      #E0A106;
  --warn:       #DC2626;

  --ff-head: 'Space Grotesk', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;
  --ff-mono: 'JetBrains Mono', monospace;

  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-pill: 999px;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--green);
}
.eyebrow.light { color: rgba(255,255,255,.7); }
.eyebrow.light::before { background: var(--green); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-pill);
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  transition: transform .15s, box-shadow .15s, background .15s;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: #169152; transform: translateY(-1px); box-shadow: 0 8px 20px var(--green-glow); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,.25); }
.btn-outline:hover { border-color: var(--green); color: var(--green); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: var(--ink-2); transform: translateY(-1px); }
/* ── LOGO real LE ENERGY (PNG transparente: sirve sobre claro y gris) ── */
.brand-le .brand-logo {
  height: 46px; width: auto; display: block;
}
/* Footer: el logo es oscuro y desaparecía sobre el fondo --ink.
   Lo pasamos a blanco monocromo (legible) con un leve glow verde para conservar identidad. */
.brand-le .brand-logo.footer {
  height: 60px;
  filter: brightness(0) invert(1) drop-shadow(0 0 0.5px rgba(27,164,95,.0));
  opacity: .95;
}
@media (max-width: 560px) { .brand-le .brand-logo { height: 38px; } }
.line-card-body .line-note { display: inline-block; margin-top: 8px; color: var(--muted); font-size: 14px; }
.eco-band::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(100deg, rgba(20,25,26,.88) 0%, rgba(20,25,26,.72) 45%, rgba(20,122,71,.6) 100%),
    radial-gradient(circle at 85% 50%, rgba(27,164,95,.32) 0%, transparent 55%);
}
.eco-band .container {
  display: flex; align-items: center; gap: 44px;
  padding-top: 32px; padding-bottom: 32px; position: relative; z-index: 1;
}
.eco-seal-box {
  flex-shrink: 0; width: 230px; height: auto;
  background: #fff; padding: 22px 26px; border-radius: var(--r-md);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.eco-seal-box img { width: 100%; height: auto; display: block; }
.eco-band-text { flex: 1; }
.eco-band-text .eyebrow.light { color: rgba(255,255,255,.9); margin-bottom: 10px; }
.eco-band-text h3 {
  font-family: var(--ff-head); font-size: 25px; font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 10px; color: #fff;
}
.eco-band-text h3 .hl { color: #7FE3AE; }
.eco-band-text p { font-size: 15px; color: rgba(255,255,255,.85); max-width: 600px; }
.eco-band-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.eco-band-chips .chip {
  font-family: var(--ff-mono); font-size: 12px; letter-spacing: .03em;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
  color: #fff; padding: 6px 13px; border-radius: var(--r-pill);
}
@media (max-width: 768px) {
  .eco-band .container { flex-direction: column; text-align: center; gap: 24px; padding-top: 32px; padding-bottom: 32px; }
  .eco-seal-box { width: 180px; }
  .eco-band-text h3 { font-size: 21px; }
  .eco-band-chips { justify-content: center; }
}
/* ═══════════════ TOP UTILITY BAR ═══════════════ */
.utility-bar {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 10px 0;
  font-size: 12.5px;
  font-family: var(--ff-head);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.utility-bar .left { display: flex; gap: 24px; flex-wrap: wrap; }
.utility-bar .item { display: inline-flex; align-items: center; gap: 6px; }
.utility-bar .item svg { stroke: var(--green); width: 14px; height: 14px; }
.utility-bar .item strong { color: var(--white); font-weight: 600; }
/* ═══════════════ HEADER ═══════════════ */
.site-header {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(255,255,255,.96);
}
.header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.brand-le {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-le .mark {
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.brand-le .sub {
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-top: -2px;
}
.main-nav { display: flex; gap: 28px; list-style: none; align-items: center; }
.main-nav a {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .15s;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--ink); }
.main-nav a.active { color: var(--ink); font-weight: 600; }
.main-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--green);
}
.header-cta { display: flex; gap: 10px; align-items: center; }
/* ── Dropdown "Productos y Servicios" ── */
.main-nav .has-dropdown { position: relative; }
.nav-parent {
  font-family: var(--ff-head);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  background: transparent;
  border: 0;
  padding: 6px 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color .15s;
}
.nav-parent:hover, .has-dropdown:hover .nav-parent,
.nav-parent[aria-expanded="true"] { color: var(--ink); }
.caret {
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform .2s;
}
.has-dropdown:hover .caret,
.nav-parent[aria-expanded="true"] .caret { transform: rotate(180deg); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -14px;
  min-width: 230px;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
  z-index: 60;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown,
.dropdown.open {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px; left: 28px;
  width: 100%; height: 12px;
  background: transparent;
}
.dropdown li { width: 100%; }
.dropdown a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  border-radius: var(--r-sm);
  color: var(--ink-soft);
}
.dropdown a:hover { background: var(--bg-soft, #f4f6f5); color: var(--green-dark); }
/* Botón hamburguesa (oculto en desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px; width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* ═══════════════ HERO ═══════════════ */
.hero {
  background: var(--ink);
  color: var(--white);
  padding: 110px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Overlay legible: oscuro a la izquierda (donde va el texto) → verde a la derecha */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(26,26,27,.94) 0%, rgba(26,26,27,.86) 42%, rgba(26,26,27,.5) 70%, rgba(20,122,71,.55) 100%),
    radial-gradient(circle at 88% 18%, rgba(27,164,95,.4), transparent 55%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(27,164,95,.12);
  border: 1px solid rgba(27,164,95,.3);
  color: var(--green);
  border-radius: var(--r-pill);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero h1 {
  font-family: var(--ff-head);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
  margin-bottom: 22px;
  color: #fff;            /* slogan en un solo color (blanco) — pedido cliente */
}
.hero h1 .accent { color: var(--green); }
.hero-lead {
  font-size: 18px;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.hero-slogan {
  font-family: var(--ff-head);
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 12px; margin-bottom: 48px; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 20px;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  flex-wrap: wrap;
}
.hero-trust-label {
  font-family: var(--ff-head);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero-trust-items { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-items span {
  font-family: var(--ff-mono);
  font-size: 13px;
  color: rgba(255,255,255,.6);
  font-weight: 500;
}
.hero-photo-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.hero-photo-stat {
  background: rgba(42,42,43,.55); -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-md); padding: 14px 16px;
}
.hero-photo-stat.accent { background: rgba(27,164,95,.85); border-color: transparent; }
.hero-photo-stat .l { font-family: var(--ff-head); font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 5px; }
.hero-photo-stat.accent .l { color: rgba(255,255,255,.85); }
.hero-photo-stat .v { font-family: var(--ff-head); font-size: 22px; font-weight: 700; color: var(--white); line-height: 1; letter-spacing: -0.02em; }
.hero-photo-stat .u { font-family: var(--ff-mono); font-size: 10px; color: rgba(255,255,255,.6); margin-top: 3px; }
.hero-photo-stat.accent .u { color: rgba(255,255,255,.85); }
/* (legacy data cards — ya no se usan en hero, conservadas por si acaso) */
.dataset-card {
  position: absolute;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 24px;
  backdrop-filter: blur(20px);
}
.dataset-card .label {
  font-family: var(--ff-head);
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dataset-card .value {
  font-family: var(--ff-head);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.dataset-card .unit { font-family: var(--ff-mono); font-size: 12px; color: rgba(255,255,255,.6); }
.card-1 { top: 0; left: 0; width: 220px; }
.card-2 { top: 80px; right: 0; width: 240px; }
.card-3 { bottom: 100px; left: 60px; width: 200px; }
.card-4 { bottom: 0; right: 40px; width: 280px; background: var(--green); color: var(--white); border: none; }
.card-4 .label { color: var(--white); opacity: .75; }
.card-4 .value { color: var(--white); }
.card-4 .unit { color: var(--white); opacity: .8; }
.card-4 .status {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600; margin-top: 12px; color: var(--white);
}
.card-4 .status::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--white); animation: pulse 1.5s infinite;
}
/* ═══════════════ STATS BAR ═══════════════ */
.stats-bar {
  background: var(--ink);
  color: var(--white);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,.05);
}
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.stat-item { padding: 0 32px; border-right: 1px solid rgba(255,255,255,.08); }
.stat-item:last-child { border-right: none; }
.stat-item:first-child { padding-left: 0; }
.stat-value {
  font-family: var(--ff-head);
  font-size: 60px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 12px;
}
.stat-value .plus { color: var(--green); font-weight: 700; }
.stat-label {
  font-family: var(--ff-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
/* ═══════════════ SECCIONES ═══════════════ */
section { padding: 100px 0; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 {
  font-family: var(--ff-head);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-top: 12px;
  margin-bottom: 16px;
  color: var(--ink);
}
.section-head p { font-size: 17px; color: var(--ink-soft); max-width: 600px; }
/* Overlay verde corporativo para conservar identidad y legibilidad sobre la foto */
.lines-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,255,255,.1), transparent 42%),
    linear-gradient(160deg, rgba(27,164,95,.78) 0%, rgba(20,122,71,.82) 100%);
}
.lines-section .container { position: relative; z-index: 1; }
.lines-section .section-head .eyebrow::before { background: var(--white); }
.lines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.line-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border .2s;
}
.line-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(42,42,43,.1); border-color: var(--green); }
.line-card-img { aspect-ratio: 4/3; background: var(--ink); position: relative; overflow: hidden; }
.line-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(42,42,43,.7) 100%);
}
.line-card-img .number {
  position: absolute; bottom: 16px; left: 16px; z-index: 1;
  font-family: var(--ff-mono); font-size: 12px; font-weight: 600;
  color: var(--green); letter-spacing: 0.14em;
}
.line-card-img.ventas {
  background: radial-gradient(circle at 80% 30%, rgba(27,164,95,.3), transparent 50%), linear-gradient(135deg, #3A393A 0%, #2A2A2B 100%);
}
.line-card-img.rental {
  background: radial-gradient(circle at 20% 70%, rgba(27,164,95,.25), transparent 50%), linear-gradient(135deg, #45444 0%, #3A393A 100%);
}
.line-card-img.servicio {
  background: radial-gradient(circle at 50% 50%, rgba(27,164,95,.28), transparent 50%), linear-gradient(135deg, #3A393A 0%, #2A2A2B 100%);
}
.line-card-img .icon-bg {
  position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.15);
}
.line-card-img .icon-bg svg { width: 96px; height: 96px; stroke-width: 1.2; }
.line-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.line-card-body h3 {
  font-family: var(--ff-head); font-size: 23px; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 12px; color: var(--ink);
}
.line-card-body p { font-size: 15px; color: var(--ink-soft); margin-bottom: 24px; flex: 1; }
.line-card-body .meta { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 24px; }
.line-card-body .meta-item {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500;
  padding: 4px 10px; background: var(--line-soft); color: var(--ink-soft); border-radius: var(--r-sm);
}
.line-card-body .link {
  font-family: var(--ff-head); font-weight: 600; font-size: 14px; color: var(--ink);
  display: inline-flex; align-items: center; gap: 6px;
  border-top: 1px solid var(--line); padding-top: 18px; transition: gap .15s, color .15s;
}
.line-card-body .link:hover { color: var(--green-dark); gap: 12px; }
/* ═══════════════ SOLUCIONES ═══════════════ */
.solutions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.solution {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--white); transition: border .2s, box-shadow .2s, transform .2s;
  position: relative; overflow: hidden; display: flex; flex-direction: column;
}
.solution:hover { border-color: var(--green); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(42,42,43,.1); }
/* Cabecera con foto */
.solution-media {
  position: relative; aspect-ratio: 16/11; background: var(--ink); overflow: hidden;
}
.solution-media .cover-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.solution:hover .solution-media .cover-photo { transform: scale(1.05); }
.solution-media::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,122,71,.15) 0%, rgba(42,42,43,.55) 100%);
}
.solution-icon {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  width: 42px; height: 42px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.92); color: var(--green-dark);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.solution:hover .solution-icon { background: var(--green); color: var(--white); }
.solution-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.solution-body { padding: 22px 24px 26px; flex: 1; }
.solution h4 {
  font-family: var(--ff-head); font-size: 18px; font-weight: 700;
  letter-spacing: -0.01em; margin-bottom: 10px; color: var(--ink);
}
.solution p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
/* badge "imagen referencial" para fotos provisionales */
.solution-media .img-prov {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--ff-mono); font-size: 9px; letter-spacing: .04em;
  background: rgba(42,42,43,.7); color: rgba(255,255,255,.9);
  padding: 3px 7px; border-radius: 4px; text-transform: uppercase;
}
/* ═══════════════ CATÁLOGO ═══════════════ */
.catalogo-section { background: var(--bg); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.catalogo-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 24px; flex-wrap: wrap; gap: 20px;
}
.catalogo-head .head-text { max-width: 600px; }
.catalogo-head h2 {
  font-family: var(--ff-head); font-size: 42px; font-weight: 700;
  letter-spacing: -0.025em; line-height: 1.1; margin-top: 12px;
}
.catalogo-note {
  font-family: var(--ff-mono); font-size: 12px; color: var(--muted);
  background: var(--white); border: 1px dashed var(--line); border-radius: var(--r-sm);
  padding: 8px 14px; margin-bottom: 40px; display: inline-block;
}
.catalogo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; transition: border .2s, box-shadow .2s; display: flex; flex-direction: column;
}
.product:hover { border-color: var(--green); box-shadow: 0 10px 28px rgba(42,42,43,.07); }
.product-img {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #F2F2F4 0%, #E4E4E7 100%);
  position: relative; overflow: hidden;
}
.product-img::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(42,42,43,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42,42,43,.04) 1px, transparent 1px);
  background-size: 24px 24px;
}
.product-img .icon-product {
  position: absolute; inset: 0; display: grid; place-items: center;
  color: var(--ink); opacity: 0.5; z-index: 1;
}
.product-img .icon-product svg { width: 80px; height: 80px; stroke-width: 1.2; }
.product-img .badge-kva {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--ink); color: var(--green);
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600;
  padding: 5px 10px; border-radius: var(--r-sm); letter-spacing: 0.04em;
}
.product-img .badge-stock {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  background: rgba(27,164,95,.95); color: var(--white);
  font-family: var(--ff-mono); font-size: 10px; font-weight: 600;
  padding: 5px 10px; border-radius: var(--r-sm); letter-spacing: 0.06em; text-transform: uppercase;
}
.product-body { padding: 22px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-body .marca {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
}
.product-body h4 {
  font-family: var(--ff-head); font-size: 17px; font-weight: 600;
  letter-spacing: -0.01em; margin-bottom: 14px; color: var(--ink); line-height: 1.25;
}
.product-specs {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; margin-bottom: 18px;
  font-family: var(--ff-mono); font-size: 12px; color: var(--ink-soft);
  border-top: 1px solid var(--line); padding-top: 14px;
}
.product-specs span:nth-child(odd) { color: var(--muted); }
.product-specs span:nth-child(even) { color: var(--ink); font-weight: 600; text-align: right; }
.product-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.product-footer .cot {
  font-family: var(--ff-head); font-weight: 600; font-size: 13px; color: var(--green-dark);
  padding: 8px 14px; background: var(--green-soft); border-radius: var(--r-pill);
}
/* ═══════════════ CASOS ═══════════════ */
.cases-section .section-head { margin-bottom: 56px; }
.cases-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; display: flex; flex-direction: column;
}
.case-cover {
  aspect-ratio: 16/9; position: relative;
  background: radial-gradient(circle at 70% 30%, rgba(27,164,95,.2), transparent 50%), linear-gradient(135deg, #3A393A 0%, #2A2A2B 100%);
}
.case-cover::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 32px 32px;
}
.case-cover .case-label { position: absolute; bottom: 24px; left: 24px; z-index: 1; color: var(--white); }
.case-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.case-body p { font-size: 15px; color: var(--ink-soft); margin-bottom: 20px; flex: 1; }
.case-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 20px; border-top: 1px solid var(--line); }
.case-meta-item .lbl {
  font-family: var(--ff-mono); font-size: 10px; color: var(--muted);
  letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 4px;
}
.case-meta-item .val { font-family: var(--ff-head); font-weight: 600; font-size: 14px; color: var(--ink); }
/* ── Filtros de casos de éxito ── */
.cases-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 40px; }
.case-filter {
  font-family: var(--ff-head); font-size: 13px; font-weight: 600; letter-spacing: 0.01em;
  color: var(--ink-soft); background: var(--white); border: 1px solid var(--line);
  padding: 9px 20px; border-radius: var(--r-pill); cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.case-filter:hover { border-color: var(--green); color: var(--green); }
.case-filter.active { background: var(--green); border-color: var(--green); color: var(--white); }
.case.is-hidden { display: none; }
/* Potencia instalada destacada en la portada de cada caso */
.case-cover .case-power {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  display: flex; flex-direction: column; line-height: 1;
}
.case-cover .case-power .kva {
  font-family: var(--ff-head); font-weight: 800; font-size: 26px; color: var(--white);
  letter-spacing: -0.02em; text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
/* Card placeholder honesta (caso por publicar) */
.case.is-placeholder { border-style: dashed; opacity: .85; }
.case.is-placeholder .case-cover {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #3A393A 0%, #2A2A2B 100%);
}
.case.is-placeholder .ph-mark {
  position: relative; z-index: 2; text-align: center; color: rgba(255,255,255,.55);
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
}
.case.is-placeholder .ph-mark svg { width: 32px; height: 32px; margin: 0 auto 10px; display: block; stroke: var(--green); }
.case.is-placeholder .case-body p { color: var(--muted); font-style: italic; }
/* ── Testimonios ── */
.testimonials-section { padding: 96px 0; background: var(--bg-soft, #F6F7F6); }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.testimonial {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 36px; display: flex; flex-direction: column;
}
.testimonial .quote-mark {
  font-family: var(--ff-head); font-size: 56px; line-height: .6; color: var(--green);
  opacity: .25; margin-bottom: 8px;
}
.testimonial blockquote {
  font-size: 16px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 24px; flex: 1;
}
.testimonial .t-author { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial .t-avatar {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
  background: var(--green); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-weight: 700; font-size: 16px;
}
.testimonial .t-meta strong { display: block; font-family: var(--ff-head); font-size: 15px; color: var(--ink); }
.testimonial .t-meta span { font-size: 13px; color: var(--muted); }
.testimonial.is-placeholder { border-style: dashed; }
.testimonial.is-placeholder blockquote { color: var(--muted); font-style: italic; }
/* ═══════════════ MERCADO PÚBLICO ═══════════════ */
.publico-section {
  position: relative;
  background:
    linear-gradient(100deg, rgba(42,42,43,.97) 0%, rgba(42,42,43,.9) 45%, rgba(20,122,71,.78) 100%),
    url('/wp-content/uploads/leenergy/img/despacho-grua.jpg') center/cover no-repeat,
    var(--ink);
  color: var(--white);
}
.publico-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center; }
.publico-text h2 {
  font-family: var(--ff-head); font-size: 44px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.05; margin-top: 16px; margin-bottom: 24px;
}
.publico-text h2 .accent { color: var(--green); }
.publico-text p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; }
.publico-download {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  padding: 16px 20px; border-radius: var(--r-md); transition: border .15s, background .15s;
}
.publico-download:hover { border-color: var(--green); background: rgba(27,164,95,.08); }
.publico-download .icon {
  width: 44px; height: 44px; background: var(--green); border-radius: var(--r-sm);
  display: grid; place-items: center; color: var(--white);
}
.publico-download .icon svg { width: 20px; height: 20px; }
.publico-download .meta-text { display: flex; flex-direction: column; }
.publico-download .meta-text strong { font-family: var(--ff-head); font-weight: 600; font-size: 15px; color: var(--white); }
.publico-download .meta-text span { font-family: var(--ff-mono); font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }
.sectores-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sector {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-md); padding: 24px; transition: border .15s, transform .2s;
}
.sector:hover { border-color: var(--green); transform: translateY(-2px); }
.sector .num { font-family: var(--ff-mono); font-size: 11px; font-weight: 600; color: var(--green); letter-spacing: 0.14em; margin-bottom: 12px; }
.sector h5 { font-family: var(--ff-head); font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.sector p { font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.5; }
/* ═══════════════ CEO ═══════════════ */
.ceo-section { padding: 100px 0; background: var(--bg); border-top: 1px solid var(--line); }
.ceo-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 64px; display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px;
  align-items: center; box-shadow: 0 8px 32px rgba(42,42,43,.04);
}
.ceo-text .label {
  font-family: var(--ff-mono); font-size: 12px; color: var(--green-dark);
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 16px;
}
.ceo-quote {
  font-family: var(--ff-head); font-size: 24px; font-weight: 500;
  letter-spacing: -0.015em; line-height: 1.42; color: var(--ink); margin-bottom: 28px;
}
.ceo-quote::before {
  content: '"'; font-size: 64px; color: var(--green); line-height: 0;
  position: relative; top: 18px; margin-right: 4px;
}
.ceo-signature .info strong { font-family: var(--ff-head); font-size: 16px; font-weight: 700; color: var(--ink); display: block; }
.ceo-signature .info span { font-family: var(--ff-mono); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; }
/* ═══════════════ CLIENTES ═══════════════ */
.clients-section { padding: 80px 0; background: var(--white); border-top: 1px solid var(--line); }
.clients-head { text-align: center; margin-bottom: 40px; }
.clients-head .eyebrow { justify-content: center; }
.clients-head h2 { font-family: var(--ff-head); font-size: 30px; font-weight: 700; letter-spacing: -0.025em; margin-top: 12px; color: var(--ink); }
.clients-note {
  text-align: center; margin-top: 26px;
  font-family: var(--ff-mono); font-size: 11px; letter-spacing: .06em;
  color: var(--muted); text-transform: uppercase;
}
/* ═══════════════ CTA FINAL ═══════════════ */
.cta-final {
  background: url('/wp-content/uploads/leenergy/img/flota-despacho.jpg') center / cover no-repeat;
  color: var(--white); padding: 100px 0; position: relative; overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(120deg, rgba(20,122,71,.82) 0%, rgba(27,164,95,.72) 50%, rgba(20,122,71,.66) 100%),
    radial-gradient(circle at 85% 110%, rgba(127,227,174,.22), transparent 50%);
}
.cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.cta-final .eyebrow::before { background: var(--white); }
.contact-card { background: var(--ink); color: var(--white); padding: 36px; border-radius: var(--r-lg); }
.contact-card .label {
  font-family: var(--ff-mono); font-size: 11px; font-weight: 600; color: var(--green);
  letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 24px;
}
.contact-card .channel {
  display: flex; align-items: center; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-card .channel:last-child { border-bottom: none; }
.contact-card .channel-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: rgba(27,164,95,.15); color: var(--green); display: grid; place-items: center;
}
.contact-card .channel-icon svg { width: 18px; height: 18px; }
.contact-card .channel-text strong { font-family: var(--ff-head); font-weight: 600; font-size: 15px; display: block; }
.contact-card .channel-text span { font-family: var(--ff-mono); font-size: 12px; color: rgba(255,255,255,.55); }
/* ═══════════════ WHATSAPP FLOAT ═══════════════ */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px;
  border-radius: 50%; background: #25D366; color: var(--white);
  display: grid; place-items: center; box-shadow: 0 6px 24px rgba(37,211,102,.5);
  z-index: 100; transition: transform .2s;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
/* ═══════════════ FOOTER ═══════════════ */
footer.site-footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 72px 0 32px; border-top: 1px solid rgba(255,255,255,.05);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 64px; margin-bottom: 56px; }
.footer-brand .brand-le { color: var(--white); }
.footer-brand .brand-le .mark { background: var(--green); color: var(--white); }
.footer-brand p { font-size: 14px; margin-top: 20px; max-width: 280px; line-height: 1.65; }
.footer-sec { margin-top: 24px; }
.footer-sec img {
  height: 30px; width: auto; display: block;
  opacity: .85; margin-bottom: 8px;
}
.footer-sec span {
  font-family: var(--ff-mono); font-size: 9.5px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
}
.footer-col h6 {
  font-family: var(--ff-head); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.75); transition: color .15s; }
.footer-col a:hover { color: var(--green); }
.footer-contact { display: flex; flex-direction: column; gap: 16px; font-size: 13px; }
.footer-contact .row { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .row svg { flex-shrink: 0; width: 16px; height: 16px; stroke: var(--green); margin-top: 2px; }
.footer-contact .row strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 2px; font-family: var(--ff-head); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px; font-family: var(--ff-mono); color: rgba(255,255,255,.45);
}
.footer-social { display: flex; gap: 14px; }
.footer-social a { color: rgba(255,255,255,.55); transition: color .15s; }
.footer-social a:hover { color: var(--green); }
.footer-social svg { width: 18px; height: 18px; }
/* ═══════════════ FOTOS REALES (casos + catálogo) ═══════════════ */
.case-cover.has-photo, .product-img.has-photo, .line-card-img.has-photo { background: var(--ink); }
.case-cover .cover-photo, .product-img .cover-photo, .line-card-img .cover-photo {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.case-cover.has-photo::after { z-index: 1; }
.product-img.has-photo .badge-kva, .product-img.has-photo .badge-stock { z-index: 2; }
.line-card-img.has-photo::after { z-index: 1; }
.line-card-img.has-photo .number { z-index: 2; }
/* ═══════════════ MICROINTERACCIONES ═══════════════ */
/* Zoom sutil de fotos al hover (productos, casos, líneas de negocio) */
.product-img .cover-photo,
.case-cover .cover-photo,
.line-card-img .cover-photo { transition: transform .45s ease; }
.product:hover .cover-photo,
.case:hover .cover-photo,
.line-card:hover .cover-photo { transform: scale(1.06); }
/* Elevación coherente al hover */
.product { transition: border .2s, box-shadow .2s, transform .2s; }
.product:hover { transform: translateY(-4px); }
.case { transition: border .2s, box-shadow .2s, transform .2s; }
.case:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(42,42,43,.1); border-color: var(--green); }
/* Botones: micro-empuje del ícono al hover */
.btn svg { transition: transform .2s ease; }
.btn:hover svg { transform: translateX(3px); }
/* Links con flecha: desplazamiento suave */
.link svg { transition: transform .2s ease; }
@media (prefers-reduced-motion: reduce) {
  .product-img .cover-photo, .case-cover .cover-photo, .line-card-img .cover-photo,
  .solution .cover-photo { transition: none; }
  .product:hover .cover-photo, .case:hover .cover-photo,
  .line-card:hover .cover-photo, .solution:hover .cover-photo { transform: none; }
}
/* Reset del layout de bloques de WordPress */
.entry-content > *,
.entry-content > * + * {
  margin-block-start: 0;
  margin-block-end: 0;
}
.entry-content {
  display: block;
  max-width: none;
  padding: 0;
}
