/* =============================================
   CONSTRUCTORA LA RUTA S.A. – laruta.css
   TEMA CLARO: Fondo blanco/gris claro
   Paleta: Rojo #c0392b · Amarillo #e8a020 · Azul Navy #1a3a6b
   ============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --lr-rojo:        #c0392b;
  --lr-rojo-dark:   #a93226;
  --lr-rojo-light:  #fde8e6;
  --lr-rojo-mid:    rgba(192,57,43,0.1);
  --lr-amarillo:    #e8a020;
  --lr-amarillo-dk: #c98a18;
  --lr-amarillo-lt: #fef6e4;
  --lr-azul:        #1a3a6b;
  --lr-azul-mid:    #2a5298;
  --lr-azul-light:  #e8eef8;

  /* Light UI */
  --lr-bg:          #ffffff;
  --lr-bg-2:        #f7f8fa;
  --lr-bg-3:        #f0f2f5;
  --lr-bg-4:        #e8eaed;
  --lr-border:      #e2e5ea;
  --lr-border-2:    #c8cdd6;

  /* Text */
  --lr-text:        #1a1f2e;
  --lr-text-2:      #4a5568;
  --lr-text-3:      #718096;
  --lr-white:       #ffffff;

  /* Gradients */
  --lr-grad:        linear-gradient(135deg, var(--lr-rojo) 0%, var(--lr-amarillo) 50%, var(--lr-azul) 100%);
  --lr-grad-rojo:   linear-gradient(135deg, var(--lr-rojo), var(--lr-rojo-dark));
  --lr-grad-azul:   linear-gradient(135deg, var(--lr-azul), var(--lr-azul-mid));
  --lr-grad-hero:   linear-gradient(135deg, var(--lr-azul) 0%, #0d2347 100%);

  /* Spacing */
  --sp-xs:  0.25rem;  --sp-sm:  0.5rem;   --sp-md:  1rem;
  --sp-lg:  1.5rem;   --sp-xl:  2rem;     --sp-2xl: 3rem;
  --sp-3xl: 4rem;     --sp-4xl: 6rem;

  /* Typography */
  --ff-head: 'Outfit', 'Inter', system-ui, sans-serif;
  --ff-body: 'Inter', system-ui, sans-serif;

  /* Radius */
  --r-sm: 6px;  --r-md: 12px;  --r-lg: 20px;  --r-xl: 28px;

  /* Shadows */
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07), 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg:   0 8px 32px rgba(0,0,0,0.1),  0 4px 12px rgba(0,0,0,0.06);
  --shadow-rojo: 0 6px 24px rgba(192,57,43,0.3);
  --shadow-azul: 0 6px 24px rgba(26,58,107,0.25);

  /* Transitions */
  --tr:      0.25s ease;
  --tr-fast: 0.15s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--lr-bg);
  color: var(--lr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

:focus-visible {
  outline: 2px solid var(--lr-rojo);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-xl);
}

/* ===== BUTTONS ===== */
.lr-btn {
  display: inline-flex; align-items: center; gap: var(--sp-sm);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--ff-head);
  font-size: 0.95rem; font-weight: 700;
  text-decoration: none; cursor: pointer; border: none;
  transition: all var(--tr); letter-spacing: 0.01em;
  white-space: nowrap;
}
.lr-btn--primary {
  background: var(--lr-rojo);
  color: var(--lr-white);
  box-shadow: var(--shadow-rojo);
}
.lr-btn--primary:hover {
  background: var(--lr-rojo-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(192,57,43,0.4);
}
.lr-btn--secondary {
  background: var(--lr-white);
  color: var(--lr-azul);
  border: 2px solid var(--lr-azul);
}
.lr-btn--secondary:hover {
  background: var(--lr-azul);
  color: var(--lr-white);
  transform: translateY(-2px);
}
.lr-btn--ghost {
  background: rgba(255,255,255,0.15);
  color: var(--lr-white);
  border: 2px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(10px);
}
.lr-btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}
.lr-btn--full { width: 100%; justify-content: center; border-radius: var(--r-md); }
.lr-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* ===== SECTION HEADERS ===== */
.lr-section { padding: var(--sp-4xl) 0; }
.lr-section-head { text-align: center; margin-bottom: var(--sp-3xl); }

.lr-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lr-rojo);
  background: var(--lr-rojo-light);
  border: 1px solid rgba(192,57,43,0.2);
  padding: 0.35rem 1rem; border-radius: 100px;
  margin-bottom: var(--sp-md);
}

.lr-section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.15;
  color: var(--lr-azul);
  margin-bottom: var(--sp-md);
}
.lr-section-title--left { text-align: left; }

.lr-section-desc {
  font-size: 1.05rem; color: var(--lr-text-2);
  max-width: 580px; margin: 0 auto; line-height: 1.7;
}
.lr-section-desc--left { margin: 0 0 var(--sp-xl); text-align: left; }

/* Accent text */
.lr-accent-text {
  background: var(--lr-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   HEADER – Blanco con borde inferior
   =================================== */
.lr-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.lr-header.scrolled {
  border-color: var(--lr-border);
  box-shadow: var(--shadow-sm);
}

.lr-nav {
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--sp-xl);
  padding: 0.85rem 2rem;
}

.lr-logo { text-decoration: none; flex-shrink: 0; }
.lr-logo-img {
  height: 54px; width: auto;
  object-fit: contain;
  transition: transform var(--tr);
}
.lr-logo-img:hover { transform: scale(1.04); }

.lr-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1px solid var(--lr-border);
  border-radius: var(--r-sm); padding: 0.5rem; cursor: pointer; z-index: 1001;
}
.lr-hline {
  display: block; width: 22px; height: 2px;
  background: var(--lr-text); border-radius: 2px;
  transition: all var(--tr-fast);
}
.lr-toggle[aria-expanded="true"] .lr-hline:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lr-toggle[aria-expanded="true"] .lr-hline:nth-child(2) { opacity: 0; }
.lr-toggle[aria-expanded="true"] .lr-hline:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.lr-menu {
  display: flex; list-style: none;
  align-items: center; gap: 0.1rem;
}
.lr-link {
  padding: 0.45rem 0.85rem; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600;
  color: var(--lr-text-2); text-decoration: none;
  transition: color var(--tr-fast), background var(--tr-fast);
  white-space: nowrap;
}
.lr-link:hover, .lr-link.active {
  color: var(--lr-azul);
  background: var(--lr-azul-light);
}
.lr-link--cta {
  background: var(--lr-rojo) !important;
  color: var(--lr-white) !important;
  font-weight: 700; padding: 0.5rem 1.15rem;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(192,57,43,0.25);
}
.lr-link--cta:hover {
  background: var(--lr-rojo-dark) !important;
  transform: translateY(-1px);
  box-shadow: var(--shadow-rojo) !important;
}
.lr-link--back {
  color: var(--lr-text-3) !important;
  font-size: 0.8rem;
  border: 1px solid var(--lr-border);
  border-radius: var(--r-sm);
}
.lr-link--back:hover {
  color: var(--lr-text) !important;
  background: var(--lr-bg-2) !important;
}

/* ===================================
   HERO – Fondo azul navy con foto
   =================================== */
.lr-hero {
  position: relative;
  padding-top: 74px;
  background: var(--lr-bg-2);
}

.lr-hero-banner {
  width: 100%;
  height: 380px;
  overflow: hidden;
  position: relative;
}
.lr-hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Acento de colores del logo sobre el hero */
.lr-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--lr-grad);
  z-index: 3;
}

.lr-hero-content {
  position: relative; z-index: 2;
  padding: var(--sp-xl) var(--sp-xl) var(--sp-lg);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lr-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lr-azul);
  background: var(--lr-azul-light);
  border: 1px solid rgba(26,58,107,0.25);
  padding: 0.4rem 1rem; border-radius: 100px;
  margin-bottom: var(--sp-md);
}
.lr-badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--lr-azul);
  animation: lr-pulse 2s ease-in-out infinite;
}
@keyframes lr-pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.5; transform:scale(1.6); }
}

.lr-hero-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--lr-azul);
  margin-bottom: var(--sp-md);
}

.lr-hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--lr-text-2);
  line-height: 1.6; max-width: 100%;
  margin-bottom: var(--sp-lg);
}

.lr-hero-btns {
  display: flex; gap: var(--sp-md); flex-wrap: wrap;
  align-items: center; justify-content: center;
}

/* Stats bar – blanco sobre navy */
.lr-stats-bar {
  position: relative; z-index: 2;
  background: var(--lr-white);
  border-top: 4px solid var(--lr-amarillo);
}
.lr-stats-inner {
  display: flex; align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.lr-stat {
  text-align: center;
  padding: var(--sp-xl) var(--sp-3xl);
  flex: 1; min-width: 160px;
}
.lr-stat:not(:last-child) { border-right: 1px solid var(--lr-border); }
.lr-stat-num {
  font-family: var(--ff-head);
  font-size: 2.8rem; font-weight: 900;
  color: var(--lr-rojo); line-height: 1;
}
.lr-stat-plus {
  font-size: 1.8rem; font-weight: 900;
  color: var(--lr-rojo);
}
.lr-stat-label {
  display: block; font-size: 0.78rem;
  color: var(--lr-text-2); text-transform: uppercase;
  letter-spacing: 0.1em; margin-top: 0.35rem;
  font-weight: 600;
}
.lr-stat-sep { display: none; }

/* ===================================
   QUIÉNES SOMOS – Fondo blanco
   =================================== */
.lr-nosotros { background: var(--lr-bg); }

/* Stripe decorativa de colores del logo */
.lr-nosotros .container { position: relative; }

.lr-mvv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-xl);
  margin-bottom: var(--sp-3xl);
}

.lr-mvv-card {
  background: var(--lr-bg);
  border: 1px solid var(--lr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  transition: transform var(--tr), box-shadow var(--tr);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.lr-mvv-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.lr-mvv-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
}
.lr-mvv-card--mision::after  { background: var(--lr-rojo); }
.lr-mvv-card--vision::after  { background: var(--lr-amarillo); }
.lr-mvv-card--valores::after { background: var(--lr-azul); }

.lr-mvv-icon {
  width: 54px; height: 54px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-lg);
}
.lr-mvv-card--mision .lr-mvv-icon  { background: var(--lr-rojo-light); }
.lr-mvv-card--mision .lr-mvv-icon svg  { stroke: var(--lr-rojo); width: 26px; height: 26px; }
.lr-mvv-card--vision .lr-mvv-icon  { background: var(--lr-amarillo-lt); }
.lr-mvv-card--vision .lr-mvv-icon svg  { stroke: var(--lr-amarillo-dk); width: 26px; height: 26px; }
.lr-mvv-card--valores .lr-mvv-icon { background: var(--lr-azul-light); }
.lr-mvv-card--valores .lr-mvv-icon svg { stroke: var(--lr-azul); width: 26px; height: 26px; }

.lr-mvv-title {
  font-family: var(--ff-head); font-size: 1.3rem; font-weight: 800;
  color: var(--lr-azul); margin-bottom: var(--sp-md);
}
.lr-mvv-text { font-size: 0.95rem; color: var(--lr-text-2); line-height: 1.75; }

/* Valores list */
.lr-valores-list { list-style: none; display: flex; flex-direction: column; gap: var(--sp-md); }
.lr-valor-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.lr-valor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lr-azul); flex-shrink: 0; margin-top: 5px;
}
.lr-valor-item strong { display: block; color: var(--lr-azul); font-size: 0.9rem; margin-bottom: 2px; }
.lr-valor-item span  { font-size: 0.85rem; color: var(--lr-text-2); line-height: 1.5; }

/* Objetivos */
.lr-objetivos {
  background: var(--lr-azul);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-azul);
}
.lr-objetivos::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--lr-grad);
}
.lr-obj-title {
  font-family: var(--ff-head); font-size: 1.2rem; font-weight: 800;
  color: var(--lr-white); margin-bottom: var(--sp-sm);
}
.lr-obj-intro { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: var(--sp-xl); }

.lr-obj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--sp-lg);
}
.lr-obj-item {
  display: flex; gap: var(--sp-md); align-items: flex-start;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: var(--sp-lg);
  transition: background var(--tr), transform var(--tr);
}
.lr-obj-item:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
.lr-obj-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(232,160,32,0.2);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.lr-obj-icon svg { width: 18px; height: 18px; stroke: var(--lr-amarillo); }
.lr-obj-item p { font-size: 0.9rem; color: rgba(255,255,255,0.85); line-height: 1.55; }

/* ===================================
   SERVICIOS – Fondo gris muy claro
   =================================== */
.lr-servicios { background: var(--lr-bg-2); }

.lr-servicios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--sp-xl);
  margin-bottom: var(--sp-2xl);
}

.lr-serv-card {
  background: var(--lr-bg);
  border: 1px solid var(--lr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}
.lr-serv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.lr-serv-accent {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.lr-serv-accent--rojo    { background: var(--lr-rojo); }
.lr-serv-accent--amarillo { background: var(--lr-amarillo); }
.lr-serv-accent--azul    { background: var(--lr-azul); }

.lr-serv-header { display: flex; align-items: center; gap: var(--sp-md); margin-bottom: var(--sp-xl); }

.lr-serv-icon {
  width: 50px; height: 50px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lr-serv-icon svg { width: 24px; height: 24px; }
.lr-serv-icon--rojo     { background: var(--lr-rojo-light); }
.lr-serv-icon--rojo svg { stroke: var(--lr-rojo); }
.lr-serv-icon--amarillo     { background: var(--lr-amarillo-lt); }
.lr-serv-icon--amarillo svg { stroke: var(--lr-amarillo-dk); }
.lr-serv-icon--azul     { background: var(--lr-azul-light); }
.lr-serv-icon--azul svg { stroke: var(--lr-azul); }

.lr-serv-title {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 800;
  color: var(--lr-azul);
}

.lr-serv-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.7rem;
}
.lr-serv-list li {
  font-size: 0.9rem; color: var(--lr-text-2);
  padding-left: 1.2rem; position: relative; line-height: 1.5;
}
.lr-serv-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.5rem;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--lr-rojo);
}

/* Renta Banner */
.lr-renta-banner {
  background: var(--lr-azul);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  display: flex; align-items: center; gap: var(--sp-xl);
  flex-wrap: wrap;
  box-shadow: var(--shadow-azul);
  position: relative; overflow: hidden;
}
.lr-renta-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--lr-grad);
}
.lr-renta-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: rgba(232,160,32,0.2);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.lr-renta-icon svg { width: 26px; height: 26px; stroke: var(--lr-amarillo); }
.lr-renta-text { flex: 1; min-width: 200px; }
.lr-renta-title {
  font-family: var(--ff-head); font-size: 1.1rem; font-weight: 800;
  color: var(--lr-white); margin-bottom: var(--sp-xs);
}
.lr-renta-text p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ===================================
   PROYECTOS – Fondo blanco
   =================================== */
.lr-proyectos { background: var(--lr-bg); }

.lr-proyectos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-xl);
  margin-bottom: var(--sp-lg);
}

.lr-proyecto-card {
  background: var(--lr-bg);
  border: 1px solid var(--lr-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--tr), box-shadow var(--tr);
}
.lr-proyecto-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.lr-proy-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 4/3;
}
.lr-proy-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.lr-proyecto-card:hover .lr-proy-img { transform: scale(1.06); }

.lr-proy-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,58,107,0.7) 0%, transparent 50%);
  display: flex; align-items: flex-end; padding: var(--sp-md);
  opacity: 0; transition: opacity var(--tr);
}
.lr-proyecto-card:hover .lr-proy-overlay { opacity: 1; }

.lr-proy-tag {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lr-amarillo);
  background: rgba(26,58,107,0.85);
  padding: 0.3rem 0.75rem; border-radius: 100px;
}

.lr-proy-body { padding: var(--sp-lg) var(--sp-xl); }
.lr-proy-title {
  font-family: var(--ff-head); font-size: 1.05rem; font-weight: 700;
  color: var(--lr-azul); margin-bottom: var(--sp-sm);
}
.lr-proy-desc { font-size: 0.875rem; color: var(--lr-text-2); line-height: 1.6; }

.lr-proyectos-note {
  text-align: center; font-size: 0.8rem;
  color: var(--lr-text-3); font-style: italic;
}

/* ===================================
   CLIENTES – Fondo gris muy claro
   =================================== */
.lr-clientes { background: var(--lr-bg-2); }

.lr-clientes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: var(--sp-md);
}

.lr-cliente-item {
  background: var(--lr-bg);
  border: 1px solid var(--lr-border);
  border-radius: var(--r-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: border-color var(--tr), transform var(--tr), box-shadow var(--tr);
  cursor: default;
}
.lr-cliente-item:hover {
  border-color: var(--lr-rojo);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.lr-cliente-item span {
  font-size: 0.9rem; font-weight: 600;
  color: var(--lr-text-2); transition: color var(--tr);
}
.lr-cliente-item:hover span { color: var(--lr-rojo); }

/* ===================================
   CONTACTO – Fondo blanco
   =================================== */
.lr-contacto { background: var(--lr-bg); }

.lr-contacto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4xl);
  align-items: start;
}

.lr-contact-items {
  display: flex; flex-direction: column; gap: var(--sp-lg);
  margin-top: var(--sp-xl);
}

.lr-citem {
  display: flex; gap: var(--sp-md); align-items: flex-start;
  padding: var(--sp-md);
  background: var(--lr-bg-2);
  border: 1px solid var(--lr-border);
  border-radius: var(--r-lg);
  transition: border-color var(--tr), box-shadow var(--tr);
}
.lr-citem:hover { border-color: var(--lr-rojo); box-shadow: var(--shadow-sm); }

.lr-citem-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--lr-rojo-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}
.lr-citem-icon svg { width: 20px; height: 20px; stroke: var(--lr-rojo); }

.lr-citem-label {
  display: block; font-size: 0.72rem;
  color: var(--lr-text-3); text-transform: uppercase;
  letter-spacing: 0.08em; margin-bottom: 3px; font-weight: 600;
}
.lr-citem-value {
  font-size: 0.95rem; font-weight: 600; color: var(--lr-text);
  text-decoration: none; display: block;
  transition: color var(--tr-fast);
}
a.lr-citem-value:hover { color: var(--lr-rojo); }
.lr-citem-tels { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Form */
.lr-contacto-form-wrap {
  background: var(--lr-bg-2);
  border: 1px solid var(--lr-border);
  border-radius: var(--r-xl);
  padding: var(--sp-2xl);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lr-contacto-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--lr-grad);
}

.lr-form { display: flex; flex-direction: column; gap: var(--sp-lg); }
.lr-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-md); }
.lr-form-group { display: flex; flex-direction: column; gap: var(--sp-xs); }

.lr-form-label {
  font-size: 0.82rem; font-weight: 700;
  color: var(--lr-text-2); letter-spacing: 0.02em;
}

.lr-form-input, .lr-form-select, .lr-form-textarea {
  background: var(--lr-bg);
  border: 1.5px solid var(--lr-border);
  border-radius: var(--r-md);
  padding: 0.75rem 1rem;
  color: var(--lr-text); font-family: var(--ff-body); font-size: 0.9rem;
  transition: border-color var(--tr), box-shadow var(--tr);
  width: 100%;
}
.lr-form-input::placeholder, .lr-form-textarea::placeholder { color: var(--lr-text-3); }
.lr-form-input:focus, .lr-form-select:focus, .lr-form-textarea:focus {
  outline: none;
  border-color: var(--lr-azul);
  box-shadow: 0 0 0 3px var(--lr-azul-light);
}
.lr-form-input.invalid, .lr-form-textarea.invalid {
  border-color: var(--lr-rojo);
  box-shadow: 0 0 0 3px var(--lr-rojo-light);
}
.lr-form-select { cursor: pointer; background: var(--lr-bg); }
.lr-form-textarea { resize: vertical; min-height: 120px; }

.lr-form-error {
  font-size: 0.78rem; color: var(--lr-rojo); min-height: 1rem;
}

.lr-form-notice {
  text-align: center; font-size: 0.9rem;
  min-height: 1.5rem; font-weight: 500;
}
.lr-form-notice.success { color: #16a34a; }
.lr-form-notice.error   { color: var(--lr-rojo); }

/* ===================================
   FOOTER – Azul navy
   =================================== */
.lr-footer {
  background: var(--lr-azul);
  color: rgba(255,255,255,0.8);
  padding: var(--sp-3xl) 0 var(--sp-xl);
  position: relative;
}
.lr-footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--lr-grad);
}

.lr-footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-2xl);
  margin-bottom: var(--sp-2xl);
}

.lr-footer-logo {
  height: 60px; width: auto;
  object-fit: contain; background: var(--lr-white);
  border-radius: var(--r-md); padding: 6px 10px;
  margin-bottom: var(--sp-lg); display: block;
}
.lr-footer-desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  line-height: 1.7; max-width: 280px;
}

.lr-footer-nav-title {
  font-family: var(--ff-head); font-size: 0.75rem;
  font-weight: 700; color: var(--lr-amarillo);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: var(--sp-lg);
}
.lr-footer-nav ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.lr-footer-nav a, .lr-footer-contact a {
  font-size: 0.875rem; color: rgba(255,255,255,0.65);
  text-decoration: none; transition: color var(--tr-fast);
}
.lr-footer-nav a:hover, .lr-footer-contact a:hover { color: var(--lr-white); }

.lr-footer-contact { display: flex; flex-direction: column; gap: 0.65rem; }
.lr-footer-contact p { font-size: 0.875rem; color: rgba(255,255,255,0.65); }

.lr-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--sp-lg); text-align: center;
}
.lr-footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.lr-footer-bottom a { color: var(--lr-amarillo); text-decoration: none; }
.lr-footer-bottom a:hover { color: var(--lr-white); }
.lr-footer-sep { margin: 0 0.5rem; }

/* ===================================
   SCROLL REVEAL
   =================================== */
.lr-reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.lr-reveal.lr-visible { opacity: 1; transform: translateY(0); }

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
  .lr-contacto-grid { grid-template-columns: 1fr; gap: var(--sp-2xl); }
  .lr-footer-inner  { grid-template-columns: 1fr 1fr; }
  .lr-footer-brand  { grid-column: 1 / -1; }
  .lr-stat { padding: var(--sp-lg) var(--sp-xl); }
}

@media (max-width: 768px) {
  .lr-toggle { display: flex; }

  .lr-menu {
    display: none; flex-direction: column;
    position: fixed; inset: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    padding: 5rem var(--sp-xl) var(--sp-xl);
    gap: var(--sp-sm); z-index: 1000;
    align-items: center; justify-content: center;
  }
  .lr-menu.open { display: flex; }
  .lr-link {
    font-size: 1.25rem; padding: var(--sp-md) var(--sp-xl);
    width: 100%; text-align: center; color: var(--lr-azul) !important;
  }
  .lr-link--cta { border-radius: var(--r-lg) !important; }

  .lr-hero-btns  { flex-direction: column; align-items: flex-start; }
  .lr-stat       { border-right: none; border-bottom: 1px solid var(--lr-border); }
  .lr-stat:last-child { border-bottom: none; }
  .lr-form-row   { grid-template-columns: 1fr; }
  .lr-renta-banner { flex-direction: column; text-align: center; }
  .lr-footer-inner  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 var(--sp-md); }
  .lr-nav    { padding: 0.8rem var(--sp-md); }
  .lr-hero-content { padding: 7rem var(--sp-md) 3rem; }
  .lr-stats-inner  { flex-direction: column; }
  .lr-proyectos-grid { grid-template-columns: 1fr; }
  .lr-clientes-grid  { grid-template-columns: repeat(2, 1fr); }
  .lr-section { padding: var(--sp-3xl) 0; }
}
