/* =====================================================
   PAGES.CSS — Estilos adicionales para páginas internas
   Española de Robots · espanoladerobots.es
   ===================================================== */

/* ---- BREADCRUMB ---- */
.breadcrumb-wrap {
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
  padding: 10px 0;
}
.breadcrumb-wrap .breadcrumb {
  margin: 0;
  font-size: 12px;
  font-family: "Inter", sans-serif;
}
.breadcrumb-item a {
  color: var(--color-muted);
  text-decoration: none;
}
.breadcrumb-item.active { color: var(--color-primary-dark); font-weight: 600; }
.breadcrumb-item + .breadcrumb-item::before { color: #bbb; }

/* ---- PAGE HERO (Inner Pages) ---- */
.page-hero {
  padding: 72px 0 80px;
  background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 60%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(241,191,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241,191,0,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.page-hero .page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
  margin-bottom: 0;
}
.page-hero .eyebrow {
  color: var(--color-primary);
  margin-bottom: 14px;
}

/* ---- PAGE HERO LIGHT VARIANT ---- */
.page-hero-light {
  padding: 72px 0 80px;
  background: linear-gradient(135deg, #ffffff 0%, #fff9c4 60%, #fff2a8 100%);
  position: relative;
  overflow: hidden;
}
.page-hero-light::before {
  content: "";
  position: absolute;
  top: -10%;
  right: -5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(241,191,0,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-light h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.page-hero-light .page-hero-sub {
  font-size: 18px;
  color: #444;
  font-weight: 300;
  max-width: 600px;
  line-height: 1.6;
  border-left: 4px solid var(--color-primary);
  padding-left: 20px;
}

.page-hero-title-dark {
  color: #111 !important;
}

.logistics-hero-text {
  max-width: 680px;
  font-size: 18px;
  color: #444;
  line-height: 1.7;
}

.logistics-hero-title {
  font-size: clamp(2.4rem, 5vw, 4.6rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.05em !important;
}

.logistics-hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.logistics-hero-media img {
  max-width: 520px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.08));
}

.logistics-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.logistics-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
}

.logistics-stat-card span {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}

.logistics-method-section {
  background: #1b1b1b;
}

.logistics-method-section .section-kicker {
  color: var(--color-primary);
}

.logistics-method-section .paso-metodico-card {
  background: #2a2a2a;
  border-color: rgba(255, 255, 255, 0.06);
}

.logistics-method-section .paso-metodico-card h3,
.logistics-method-section .paso-numero-grande {
  color: #fff;
}

.logistics-method-section .paso-metodico-card p {
  color: rgba(255, 255, 255, 0.78);
}

.logistics-method-section .paso-metodico-card:hover h3,
.logistics-method-section .paso-metodico-card:hover .paso-numero-grande,
.logistics-method-section .paso-metodico-card:hover p {
  color: #111;
}

.industry-hero {
  padding: 74px 0 86px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf5 100%);
}

.industry-hero-shell {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.industry-hero-intro,
.industry-highlight-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
}

.industry-hero-intro {
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.industry-hero-intro h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.05em;
  color: #111;
  margin-bottom: 22px;
}

.industry-hero-intro p {
  font-size: 18px;
  line-height: 1.75;
  color: #4a4a4a;
  max-width: 680px;
  margin: 0;
}

.industry-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.industry-highlight-card {
  padding: 28px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.industry-highlight-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  display: block;
}

.industry-highlight-icon-card {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.industry-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
}

.industry-icon-wrap .bi {
  font-size: 84px;
  line-height: 1;
  color: #111;
  transition: color 0.35s ease, transform 0.35s ease;
}

.industry-highlight-icon-card strong {
  margin: 0;
}

.industry-highlight-card p {
  margin: 0;
  color: #5a5a5a;
  font-size: 14px;
  line-height: 1.7;
}

.industry-highlight-card-dark {
  background: linear-gradient(135deg, #1b1b1b 0%, #272727 100%);
  border-color: rgba(255, 255, 255, 0.05);
  grid-row: span 2;
}

.industry-highlight-card-dark strong,
.industry-highlight-card-dark .bi {
  color: #fff;
}

.industry-highlight-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.industry-highlight-image-card {
  background: #fff6cc;
  padding: 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.industry-highlight-image-card img {
  width: 50%;
  height: 50%;
  min-height: 394px;
  object-fit: contain;
  object-position: center center;
}

.industry-highlight-performance-card {
  background: #fff6cc;
  border-color: rgba(222, 182, 38, 0.18);
}

.industry-highlight-business-card {
  background: linear-gradient(135deg, #1b1b1b 0%, #272727 100%);
  border-color: rgba(255, 255, 255, 0.05);
}

.industry-highlight-business-card strong,
.industry-highlight-business-card .bi {
  color: #fff;
}

.industry-highlight-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
}

.industry-highlight-value {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.3rem, 6vw, 5rem);
  line-height: 1;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 18px;
}

.industry-hero-grid:hover .industry-highlight-icon-card {
  transform: translateY(-4px);
}

.industry-hero-grid:hover .industry-highlight-performance-card {
  background: linear-gradient(135deg, #1b1b1b 0%, #272727 100%);
  border-color: rgba(255, 255, 255, 0.05);
}

.industry-hero-grid:hover .industry-highlight-performance-card strong,
.industry-hero-grid:hover .industry-highlight-performance-card .bi {
  color: #fff;
}

.industry-hero-grid:hover .industry-highlight-business-card {
  background: #fff6cc;
  border-color: rgba(222, 182, 38, 0.18);
}

.industry-hero-grid:hover .industry-highlight-business-card strong,
.industry-hero-grid:hover .industry-highlight-business-card .bi {
  color: #111;
}

.industry-sector-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-sector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.08);
}

.industry-sector-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.industry-sector-body {
  padding: 28px 26px 30px;
}

.industry-sector-body h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 12px;
}

.industry-sector-body p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: #5e5e5e;
}

.industry-contact-band {
  background: url("../assets/exoesqueletos-para-industria.jpg") center center / cover no-repeat;
  padding-top: 232px;
  padding-bottom: 232px;
  position: relative;
  overflow: hidden;
}

.industry-contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.42);
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.cta-banner-industria {
  background: transparent;
  border-radius: 0;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  box-shadow: none;
  overflow: visible;
}

.cta-banner-industria::before {
  display: none;
}

.cta-banner-industria .row {
  z-index: 1;
}

.industry-contact-band .container,
.industry-contact-band .row,
.industry-contact-band .col-lg-4 {
  position: relative;
  z-index: 1;
}

.industry-contact-band:has(.btn-demo:hover)::before {
  opacity: 0;
}

.industry-contact-band .btn-demo {
  background: transparent !important;
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
}

.industry-contact-band .btn-demo:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: #111 !important;
}

@media (max-width: 767.98px) {
  .industry-contact-band {
    padding-top: 196px;
    padding-bottom: 196px;
    background-position: 58% center;
  }
}

.industry-faq-section {
  background: #fff6cc;
}

.industry-faq-section h2 {
  color: #111;
}

.industry-faq-kicker {
  color: rgba(17, 17, 17, 0.72);
}

.industry-faq-section .custom-accordion .accordion-button {
  border-color: rgba(0, 0, 0, 0.08);
}

.industry-faq-section .custom-accordion .accordion-button:not(.collapsed) {
  color: #111;
  border-color: rgba(0, 0, 0, 0.12);
}

.industry-faq-section .custom-accordion .accordion-body {
  border-color: rgba(0, 0, 0, 0.08);
}

.construction-hero {
  padding: 72px 0 84px;
  background: linear-gradient(180deg, #ffffff 0%, #fffdf6 100%);
}

.construction-hero-box {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: stretch;
}

.construction-hero-copy {
  background: linear-gradient(135deg, #1b1b1b 0%, #262626 100%);
  border-radius: 30px;
  padding: 52px;
  color: #fff;
}

.construction-hero-copy .section-kicker {
  color: var(--color-primary);
}

.construction-hero-copy h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
}

.construction-hero-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin: 0;
}

.construction-hero-media {
  border-radius: 30px;
  overflow: hidden;
  min-height: 100%;
}

.construction-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.construction-faq-section {
  background: #fff8db;
}

.agri-hero {
  padding: 76px 0 88px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbf4 100%);
}

.agri-hero-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #111;
  margin-bottom: 18px;
}

.agri-hero-text {
  font-size: 17px;
  line-height: 1.75;
  color: #4f4f4f;
  max-width: 640px;
}

.agri-hero-visual {
  background: linear-gradient(135deg, #f3f7ee 0%, #ffffff 100%);
  border: 1px solid rgba(0,0,0,.05);
  border-radius: 32px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0,0,0,.05);
}

.agri-hero-visual img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.agri-faq-section {
  background: #f6fbef;
}

.agri-contact-band {
  background-image: url("../assets/exoesqueleto-agropecuario.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.health-hero {
  padding: 74px 0 86px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.health-hero-box {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}

.health-hero-side {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 30px;
  box-shadow: 0 12px 32px rgba(0,0,0,.04);
  padding: 48px;
}

.health-hero-side h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 4.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: #111;
  margin-bottom: 18px;
}

.health-hero-side p {
  font-size: 17px;
  line-height: 1.75;
  color: #4f4f4f;
  margin: 0;
}

.health-hero-side-dark {
  background:
    linear-gradient(rgba(17, 17, 17, 0.44), rgba(17, 17, 17, 0.44)),
    url("../assets/exoesqueletos-para-celadores-cuidadores.jpg") center center / cover no-repeat;
  border-color: rgba(255,255,255,.05);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
}

.health-hero-side-dark p {
  color: rgba(255,255,255,.76);
}

.health-contact-band {
  background: #1b1b1b;
}

.health-faq-section {
  background: #f6f6f6;
}

/* ═══════════════════════════════════════════════════════════════════════
   COMMON UTILITIES (shared across all inner pages)
   ═══════════════════════════════════════════════════════════════════════ */

/* Section padding */
.section-pad { padding: 80px 0; }

/* Section kicker: already defined in style.css — only extend here */
.section-kicker { display: inline-block; margin-bottom: .5rem; }

/* Section title */
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -.03em;
  line-height: 1.15;
  margin: 0 0 1rem;
}

/* Section body text */
.section-text {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Page hero sub-classes (used alongside .page-hero) ── */
.page-hero-inner { position: relative; z-index: 1; }

.page-hero-kicker {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary, #f1bf00);
  margin-bottom: .75rem;
}

.page-hero-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 1.1rem;
  letter-spacing: -.03em;
}

.page-hero-text {
  font-size: 1.05rem;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 0 2rem;
}

.page-hero-ctas {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ── Primary CTA button (dark background) ── */
.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  background: var(--color-primary, #f1bf00);
  color: #111 !important;
  border: none;
  border-radius: 8px;
  padding: .7rem 1.5rem;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none !important;
  cursor: pointer;
  transition: background .2s, transform .15s;
  letter-spacing: .01em;
}
.btn-primary-hero:hover {
  background: #d4a800;
  transform: translateY(-1px);
}

/* ---- STAT BOXES ---- */
.stat-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.stat-number {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-label {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--color-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.stat-box-dark {
  background: #1b1b1b;
  border-color: rgba(255,255,255,0.05);
}
.stat-box-dark .stat-number { color: var(--color-primary); }
.stat-box-dark .stat-label { color: rgba(255,255,255,0.55); }

/* --- ESTILOS SECCIÓN TRAYECTORIA --- */

.section-muted-history {
  padding: 120px 0; /* Aumentamos el margen superior significativamente */
  background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
  position: relative;
}

.timeline-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

/* La línea vertical metálica */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent 0%, #e0e0e0 15%, #f1bf00 50%, #e0e0e0 85%, transparent 100%);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 100%;
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end; /* Por defecto a la derecha */
  padding-left: 50%; /* Ocupa la mitad derecha */
}

/* Alternar lados en PC */
.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-left: 0;
  padding-right: 50%;
}

/* El punto de unión (como una articulación robótica) */
.timeline-dot {
  position: absolute;
  left: 50%;
  top: 40px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 10px rgba(241, 191, 0, 0.4);
}

/* La tarjeta del evento */
.timeline-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  margin: 0 40px;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}

/* Efecto Flash Metalizado en Hover */
.timeline-card::after {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.timeline-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.timeline-card:hover::after {
  left: 150%;
  transition: left 0.7s ease-in-out;
}

/* El año con efecto Acero Cepillado */
.timeline-year {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  background: linear-gradient(145deg, #111 0%, #666 45%, #333 55%, #000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.timeline-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}

.timeline-text {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 0;
}

/* Responsivo para Móviles */
@media (max-width: 767.98px) {
  .timeline-container {
    padding-top: 24px;
    padding-bottom: 0;
  }

  .timeline-line {
    left: 20px;
  }
  .timeline-dot {
    left: 20px;
    top: 28px;
    width: 10px;
    height: 10px;
    transform: translateX(-50%);
  }
  .timeline-item {
    padding-left: 54px;
    padding-right: 0 !important;
    justify-content: flex-start !important;
  }
  .timeline-card {
    margin: 0;
    padding: 25px;
  }
  .section-muted-history {
    padding: 0px 0;
  }
}
/* ---- CERTIFICATION BADGES ---- */
.cert-section {
  background: #f7f7f7;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
}
.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
}
.cert-badge:hover { transform: translateY(-6px); }
.cert-badge .cert-icon {
  font-size: 44px;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
}
.cert-badge h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.cert-badge p {
  font-size: 13px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.5;
}

/* ---- CONTACT FORM ---- */
.contact-section {
  background: linear-gradient(135deg, #1b1b1b 0%, #2a2a2a 100%);
  padding: 84px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(241,191,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.contact-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
@media (max-width: 767.98px) {
  .contact-form-card { padding: 28px 22px; }
}
.contact-form-card label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #444;
  margin-bottom: 6px;
}
.contact-form-card .form-control,
.contact-form-card .form-select {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(241,191,0,0.15);
  outline: none;
}
.contact-form-card textarea { resize: vertical; min-height: 120px; }
.contact-info-box {
  padding: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.contact-info-box h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}
.contact-info-item i {
  font-size: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-info-item a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.contact-info-item a:hover { color: var(--color-primary); }

/* ---- BLOG CARDS ---- */
.blog-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.blog-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  color: var(--color-primary);
}
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.blog-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--color-primary);
  color: #111;
  padding: 4px 10px;
  border-radius: 4px;
}
.blog-date {
  font-size: 12px;
  color: var(--color-muted);
}
.blog-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card-link {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}
.blog-card-link:hover { gap: 10px; color: #111; }
.blog-hero-featured {
  background: #1b1b1b;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
}
.blog-hero-featured-body {
  padding: 40px;
  position: relative;
  z-index: 1;
}
.blog-hero-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 40%, transparent 100%);
  z-index: 0;
}

/* --- GRID DE BENEFICIOS PREMIUM --- */

.benefit-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 24px;
  padding: 45px 35px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
}

.benefit-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
  text-align: center;
}

.benefit-header i {
  font-size: 58px;
  background: linear-gradient(145deg, #111 0%, #666 45%, #333 55%, #000 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  line-height: 1;
}

.benefit-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  opacity: 0.6;
}

.benefit-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  text-align: center;
}

.benefit-card p {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
  text-align: center;
}

/* Limpieza de la lista interna */
.benefit-bullet-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 20px;
}

.benefit-bullet-list li {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.benefit-bullet-list li::before {
  content: "";
  width: 6px;
  height: 6px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: inline-block;
}

/* EFECTO LUZ METAL (Hover) */
.benefit-card::after {
  content: "";
  position: absolute;
  top: 0; left: -150%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(241, 191, 0, 0.1);
}

.benefit-card:hover::after {
  left: 150%;
  transition: left 0.7s ease-in-out;
}

@media (max-width: 991.98px) {
  .benefit-card {
    padding: 38px 28px;
  }

  .benefit-header i {
    font-size: 52px;
  }
}

@media (max-width: 575.98px) {
  .benefit-card {
    padding: 32px 22px;
  }

  .benefit-header {
    gap: 10px;
    margin-bottom: 24px;
  }

  .benefit-header i {
    font-size: 46px;
  }

  .benefit-card h3 {
    font-size: 17px;
  }

  .benefit-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .benefit-bullet-list li {
    font-size: 11px;
  }
}
/* ---- SECTOR PAGE STYLES ---- */
.sector-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(241,191,0,0.15);
  border: 1px solid rgba(241,191,0,0.3);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.use-case-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease;
  height: 100%;
}
.use-case-card:hover { transform: translateY(-6px); }
.use-case-card .uc-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #fff9c4 0%, #fff2a8 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1b1b1b;
  margin-bottom: 16px;
}
.use-case-card h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.use-case-card p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}
.sector-quote {
  background: linear-gradient(135deg, #1b1b1b 0%, #252525 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.sector-quote::before {
  content: "\201C";
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 200px;
  font-family: Georgia, serif;
  color: rgba(241,191,0,0.08);
  line-height: 1;
  pointer-events: none;
}
.sector-quote p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}
.sector-quote cite {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  font-style: normal;
}

/* ---- RENTAL PAGE ---- */
.rental-hero-cta {
  background: linear-gradient(135deg, #fff9c4 0%, #fff2a8 60%, #ffe066 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.rental-hero-cta::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  background: rgba(241,191,0,0.2);
  border-radius: 50%;
  pointer-events: none;
}
.rental-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--color-border);
}
.rental-step:last-child { border-bottom: none; }
.rental-step-num {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  color: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.rental-step-content h4 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
}
.rental-step-content p {
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- FAQ EXTENDED ---- */
.faq-category-title {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(241,191,0,0.2);
}

/* ---- LEGAL / PRIVACY PAGES ---- */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-top: 40px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(241,191,0,0.25);
}
.legal-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-top: 24px;
  margin-bottom: 10px;
}
.legal-content p, .legal-content li {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}
.legal-content ul { padding-left: 24px; }
.legal-content ul li { margin-bottom: 6px; }
.legal-content a { color: var(--color-primary-dark); }
.legal-content a:hover { color: #111; }
.legal-intro-box {
  background: #f7f7f7;
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-bottom: 32px;
  font-size: 15px;
  color: #444;
  line-height: 1.7;
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 20px 0;
}
.cookie-table th {
  background: #1b1b1b;
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 12px 16px;
  text-align: left;
}
.cookie-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e8e8e8;
  color: #555;
  vertical-align: top;
}
.cookie-table tr:nth-child(even) td { background: #f9f9f9; }
.cookie-table tr:hover td { background: #fff9c4; }

/* ---- MODELS PAGE ---- */
.model-detail-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.model-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.model-detail-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.model-detail-body { padding: 32px; }
.model-detail-body h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}
.model-detail-body .model-category {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary-dark);
  margin-bottom: 14px;
  display: block;
}
.model-detail-body p {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.model-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}
.model-spec-item {
  background: #f7f7f7;
  border-radius: 8px;
  padding: 10px 14px;
}
.model-spec-label {
  font-family: "Montserrat", sans-serif;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #999;
  margin-bottom: 2px;
}
.model-spec-value {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #111;
}

/* ---- HIGHLIGHT BOX ---- */
.highlight-box {
  background: linear-gradient(135deg, #fff9c4 0%, #fff2a8 100%);
  border: 1px solid rgba(241,191,0,0.3);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.highlight-box-dark {
  background: #1b1b1b;
  border: 1px solid rgba(255,255,255,0.06);
  color: #fff;
}
.highlight-box-dark p { color: rgba(255,255,255,0.7); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, #1b1b1b 0%, #2c2c2c 100%);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(241,191,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
  max-width: 500px;
}
@media (max-width: 767.98px) {
  .cta-banner { padding: 40px 28px; text-align: center; }
  .cta-banner p { max-width: 100%; margin-bottom: 24px; }
}

/* ---- SECTION MUTED LIGHT ---- */
.section-muted-light { background: #fafafa; }

/* ---- ACTIVE MENU LINK ---- */
.desktop-menu a.active {
  color: var(--color-primary-dark);
  border-color: var(--color-primary);
}

/* ---- CHECK LIST METAL (from existing) ---- */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  font-size: 15px;
  color: #333;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i {
  font-size: 20px;
  color: var(--color-primary-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---- METRICS CARD PREMIUM (from existing) ---- */
.metrics-card-premium {
  background: linear-gradient(135deg, #1b1b1b 0%, #252525 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
}
.metrics-title {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.check-list-metal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list-metal li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}
.check-list-metal li:last-child { border-bottom: none; }
.check-list-metal li i {
  font-size: 20px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.metric-number {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
}

/* ---- STEP CARD (general, not just #funcionamiento) ---- */
.step-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  transition: all 0.4s ease;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
.step-number-xl {
  font-family: "Montserrat", sans-serif;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: #eee;
  display: block;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.step-card:hover .step-number-xl { color: var(--color-primary); }
.step-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ---- PRODUCT CARD (keeping consistency) ---- */
.product-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}
.product-image-wrapper {
  position: relative;
  overflow: hidden;
}
.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.product-card:hover .product-image { transform: scale(1.04); }
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #111;
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 4px;
}
.product-body { padding: 24px; }
.product-body h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.product-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.product-features li {
  font-size: 13px;
  color: #555;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-features li:last-child { border-bottom: none; }
.product-features li i { color: var(--color-primary-dark); }
.product-link {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-primary-dark);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.product-link:hover { gap: 10px; color: #111; }

/* ---- RESPONSIVE ADJUSTMENTS ---- */
@media (max-width: 767.98px) {
  .breadcrumb-wrap {
    background: #1f1f1f;
    border-bottom: 1px solid #1f1f1f;
    padding: 10px 0;
  }
  .page-hero, .page-hero-light { padding: 50px 0 56px; }
  .page-hero h1, .page-hero-light h1 { font-size: 2.0rem; }
  .page-hero .page-hero-sub, .page-hero-light .page-hero-sub { font-size: 16px; }
  .contact-form-card { padding: 28px 22px; }
  .cta-banner { padding: 36px 24px; }
  .cert-section { padding: 36px 24px; }
  .model-specs { grid-template-columns: 1fr; }
  .rental-hero-cta { padding: 32px 24px; }
  .sector-quote { padding: 36px 28px; }
  .logistics-hero-text {
    font-size: 16px;
  }
  .logistics-hero-title {
    font-size: 2.2rem !important;
  }
  .logistics-stat-grid {
    grid-template-columns: 1fr;
  }
  .industry-hero {
    padding: 54px 0 60px;
  }
  .construction-hero-box,
  .health-hero-box {
    grid-template-columns: 1fr;
  }
  .construction-hero-copy,
  .health-hero-side {
    padding: 34px 26px;
  }
  .construction-hero-media img {
    min-height: 300px;
  }
  .industry-hero-shell {
    grid-template-columns: 1fr;
  }
  .industry-hero-intro {
    padding: 34px 26px;
  }
  .industry-hero-intro p {
    font-size: 16px;
  }
  .industry-hero-grid {
    grid-template-columns: 1fr;
  }
  .industry-highlight-card,
  .industry-highlight-card-dark {
    min-height: auto;
    grid-row: auto;
  }
  .industry-highlight-image-card {
    display: none;
  }
  .industry-highlight-business-card {
    display: none;
  }
  .industry-icon-wrap .bi {
    font-size: 64px;
  }
  .agri-hero-visual {
    padding: 18px;
  }
}
#modalProximamente .modal-content {
    background: #ffffff;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

#modalProximamente .btn-secondary-custom {
    border-radius: 50px;
    padding: 12px;
}

/* Efecto de desenfoque al fondo cuando se abre el modal */
.modal-backdrop.show {
    opacity: 0.8;
    backdrop-filter: blur(4px);
}
/* --- RESET Y BLINDAJE DE CATÁLOGO --- */
.ficha-tecnica-modelo {
  background: #fff;
  border-radius: 30px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 15px 40px rgba(0,0,0,0.03);
  overflow: hidden;
}

.img-wrapper-premium {
  height: 400px;
  position: relative;
  background: #f4f4f4;
}

.img-modelo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.badge-modelo {
  position: absolute;
  top: 25px; left: 25px;
  background: #111;
  color: #f1bf00;
  padding: 8px 15px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 10px;
  border-radius: 5px;
  letter-spacing: 0.1em;
}

.badge-alt { background: #f1bf00; color: #111; }

.contenido-ficha-premium {
  padding: 50px;
}

.categoria-modelo {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.nombre-modelo {
  font-size: 36px;
  font-weight: 800;
  margin: 10px 0 20px;
  color: #111;
}

.descripcion-modelo {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
}

/* Grilla de Specs reparada */
.stats-grid-modelo {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 30px !important;
  margin: 30px 0 !important;
  padding: 25px 0 !important;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.stat-unit {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.stat-unit i {
  font-size: 24px !important;
  color: #f1bf00 !important;
}

.stat-unit span {
  display: block;
  font-size: 10px;
  color: #aaa;
  text-transform: uppercase;
  font-weight: 700;
}

.stat-unit strong {
  display: block;
  font-size: 15px;
  color: #111;
}

.acciones-modelo {
  display: flex;
  align-items: center;
  gap: 30px;
}

.link-ficha {
  font-weight: 700;
  color: #111;
  text-decoration: none;
  font-size: 13px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .contenido-ficha-premium { padding: 35px; }
  .nombre-modelo { font-size: 28px; }
  .img-wrapper-premium { height: 300px; }
}

@media (max-width: 575px) {
  .acciones-modelo { flex-direction: column; align-items: flex-start; gap: 15px; }
  .stats-grid-modelo { gap: 15px !important; }
}
/* ---- PASOS METÓDICOS PREMIUM ---- */
.paso-numero-grande {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 60px;
  line-height: 1;
  color: #111;
  display: block;
  margin-bottom: 25px;
  position: relative;
  /* El sutil detalle amarillo que lo une todo */
}

.paso-numero-grande::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 4px;
  background: var(--color-primary);
}

.paso-metodico-card {
  background: #fcfcfc;
  border: 1px solid rgba(0,0,0,0.04);
  padding: 50px 40px;
  border-radius: 24px;
  transition: all 0.4s ease;
}

.paso-metodico-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.paso-metodico-card:hover {
  background: #fff;
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.06);
  border-color: var(--color-primary);
}
/* --- COMING SOON ELEGANCE --- */

.page-hero-coming-soon {
  background: linear-gradient(135deg, #111 0%, #222 100%);
  padding: 120px 0 100px;
  color: white;
}

.text-gradient {
  background: linear-gradient(90deg, #f1bf00, #fff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead-premium {
  font-size: 1.2rem;
  color: #ccc;
  max-width: 800px;
  line-height: 1.8;
}

.eyebrow-tech {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 700;
}

/* Items de proceso */
.coming-soon-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.cs-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.cs-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  font-size: 20px;
}

/* Formulario Minimal */
.contact-card-minimal {
  background: #fdfdfd;
  padding: 40px;
  border-radius: 30px;
  border: 1px solid #eee;
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.form-control-custom, .form-select-custom {
  width: 100%;
  padding: 15px;
  background: #f4f4f4;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  transition: all 0.3s;
}

.form-control-custom:focus {
  background: #fff;
  border-color: var(--color-primary);
  outline: none;
}
/* --- FRECUENTES STYLES --- */

.frecuentes-hero-minimal {
  padding: 100px 0 60px;
  background: white;
}

.frecuentes-kicker {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 800;
  font-size: 11px;
  color: #111;
}

.frecuentes-lead {
  max-width: 600px;
  color: #666;
  font-size: 1.1rem;
}

/* Fondo Amarillo Clarito (del index) */
.frecuentes-bg-yellow {
  background-color: #fdf8e1 !important; /* El tono crema del index */
  border-top: 1px solid rgba(0,0,0,0.03);
}

/* Navegación Sticky Minimalista */
.frecuentes-sticky-nav {
  position: sticky;
  top: 70px; /* Ajustar según tu header */
  z-index: 100;
  background: white;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.frecuentes-sticky-nav a {
  text-decoration: none;
  color: #888;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.frecuentes-sticky-nav a:hover {
  color: var(--color-primary);
}

/* Títulos de Categoría con Número */
.frecuentes-cat-title {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.frecuentes-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--color-primary);
  opacity: 0.8;
}

.frecuentes-cat-title h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}

/* Ajuste del acordeón para que resalte en el fondo crema */
.frecuentes-bg-yellow .accordion-item {
  background: white;
  border: none;
  margin-bottom: 12px;
  border-radius: 12px !important;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

/* ═══════════════════════════════════════════════════════════════════════
   MODELOS DE EXOESQUELETOS
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.modelos-hero .page-hero-inner { max-width: 680px; }

/* ── Catalogue section ── */
.modelos-catalogo { background: #fff; }

/* ── Product card ── */
.modelo-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: center;
  padding: 3rem 0;
}
.modelo-card--reverse { direction: rtl; }
.modelo-card--reverse > * { direction: ltr; }

/* ── Media ── */
.modelo-media { position: relative; }

.modelo-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 2;
  display: inline-block;
  padding: .3em .8em;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge-primary { background: #111; color: #fff; }
.badge-secondary { background: #f5f5f5; color: #111; border: 1.5px solid #e0e0e0; }

.modelo-carousel,
.modelo-img {
  border-radius: 16px;
  overflow: hidden;
  background: #f5f5f5;
}
.modelo-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
.modelo-carousel .carousel-item { height: 340px; }
.modelo-carousel .carousel-item img {
  height: 340px;
  object-fit: cover;
  border-radius: 0;
}
.modelo-img-placeholder {
  width: 100%; height: 340px;
  border-radius: 16px;
  background: #f0f0f0;
  display: flex; align-items: center; justify-content: center;
  color: #ccc; font-size: 3rem;
}

/* Carousel controls */
.modelo-carousel .carousel-control-prev,
.modelo-carousel .carousel-control-next {
  width: 40px; height: 40px;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  color: #111;
}
.modelo-carousel .carousel-control-prev { left: 10px; }
.modelo-carousel .carousel-control-next { right: 10px; }
.modelo-carousel .carousel-control-prev-icon,
.modelo-carousel .carousel-control-next-icon { filter: invert(1); }
.modelo-carousel .carousel-indicators { bottom: 8px; }
.modelo-carousel .carousel-indicators button {
  width: 8px; height: 8px;
  border-radius: 50%; background: rgba(0,0,0,.3);
  border: none;
}
.modelo-carousel .carousel-indicators button.active { background: #111; }

/* Video */
.modelo-video-wrap { border-radius: 12px; overflow: hidden; background: #000; }
.modelo-video { display: block; max-height: 220px; border-radius: 0; }

/* ── Info ── */
.modelo-categoria {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: .5rem;
}
.modelo-nombre {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 1rem;
  letter-spacing: -.03em;
}
.modelo-descripcion {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Stats */
.modelo-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
.modelo-stat {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: #f7f7f7;
  border-radius: 10px;
  padding: .65rem .9rem;
  flex: 1;
  min-width: 100px;
}
.modelo-stat .bi {
  font-size: 1.4rem;
  color: #111;
  flex-shrink: 0;
}
.modelo-stat-data { display: flex; flex-direction: column; }
.modelo-stat-value { font-size: .95rem; font-weight: 800; color: #111; line-height: 1.1; }
.modelo-stat-label { font-size: .7rem; color: #888; text-transform: uppercase; letter-spacing: .05em; }

/* CTAs */
.modelo-ctas { display: flex; gap: .75rem; flex-wrap: wrap; }

.btn-outline-modelo {
  display: inline-flex; align-items: center;
  padding: .65rem 1.25rem;
  border: 2px solid #111;
  border-radius: 8px;
  color: #111;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  background: transparent;
}
.btn-outline-modelo:hover {
  background: #111;
  color: #fff;
}

/* Divider */
.modelo-divider {
  border: none;
  border-top: 1.5px solid #f0f0f0;
  margin: 0;
}

/* ── Proceso de selección ── */
.proceso-seleccion { background: #f7f7f7; }

.proceso-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.proceso-step {
  background: #fff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .2s;
}
.proceso-step:hover { transform: translateY(-4px); }

.proceso-icon {
  width: 56px; height: 56px;
  background: #111;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.proceso-icon .bi { font-size: 1.5rem; color: #fff; }

.proceso-step h3 {
  font-size: .95rem;
  font-weight: 800;
  color: #111;
  margin: 0 0 .5rem;
}
.proceso-step p {
  font-size: .85rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ── Bottom CTA ── */
.modelos-bottom-cta { background: #fff; border-top: 1.5px solid #f0f0f0; }

.bottom-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: #111;
  border-radius: 20px;
  padding: 2.5rem 3rem;
  flex-wrap: wrap;
}
.bottom-cta-text h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 .5rem;
}
.bottom-cta-text p {
  font-size: .95rem;
  color: rgba(255,255,255,.7);
  margin: 0;
}
.bottom-cta-actions {
  display: flex; gap: .75rem; flex-wrap: wrap; flex-shrink: 0;
}
.btn-outline-hero {
  display: inline-flex; align-items: center;
  padding: .65rem 1.5rem;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 8px;
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  background: transparent;
}
.btn-outline-hero:hover {
  border-color: #fff;
  background: rgba(255,255,255,.1);
  color: #fff;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .modelo-card,
  .modelo-card--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  .proceso-steps { grid-template-columns: 1fr 1fr; }
  .bottom-cta-box { flex-direction: column; padding: 2rem; text-align: center; }
  .bottom-cta-actions { justify-content: center; }
}
@media (max-width: 575px) {
  .modelo-nombre { font-size: 1.5rem; }
  .modelo-stats { gap: .5rem; }
  .modelo-stat { min-width: 80px; }
  .proceso-steps { grid-template-columns: 1fr; }
  .bottom-cta-box { padding: 1.5rem; }
}

@media (max-width: 767.98px) {
  .company-hero-mobile .col-lg-7 {
    text-align: center;
  }

  .company-hero-mobile .page-hero-subtitle {
    text-align: justify;
    text-align-last: center;
    margin-left: auto;
    margin-right: auto;
  }

  .company-hero-mobile .d-flex {
    justify-content: center;
  }

  #quienes-somos.section-block {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  #quienes-somos .section-heading {
    margin-bottom: 28px;
  }

  .company-stats-mobile.section-block {
    padding-top: 40px;
    padding-bottom: 48px;
  }

  .company-stats-mobile .stat-label {
    font-size: 12px;
    line-height: 1.25;
  }
}
@media (max-width: 767.98px) {
  .btn-catalogo-mobile-full {
    width: 100%;
    justify-content: center;
  }
}
.page-hero-title-modelos {
  font-size: clamp(2.1rem, 5vw, 3.7rem);
}

