
/* ===== INNER PAGES ===== */
.page-hero {
  position: relative;
  height: 380px;
  background: var(--black);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,8,0.82) 0%, rgba(10,10,8,0.3) 70%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px 52px;
  width: 100%;
}
.page-hero-content .sec-tag { color: var(--gold); }
.page-hero-content h1 { color: var(--white); margin-top: 8px; }

.breadcrumb {
  font-size: 12px;
  color: rgba(247,246,243,0.4);
  margin-bottom: 10px;
  font-family: var(--sans);
}
.breadcrumb a { color: rgba(247,246,243,0.4); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(247,246,243,0.25); margin: 0 6px; }

/* Page content layout */
.page-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.page-layout.reverse { direction: rtl; }
.page-layout.reverse > * { direction: ltr; }

.page-body h2 { margin-bottom: 16px; }
.page-body p {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.page-body ul {
  margin: 16px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.page-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #4B4A46;
  line-height: 1.5;
}
.page-body ul li::before {
  content: '';
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}
.page-body .ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }

.page-aside-img {
  position: sticky;
  top: 80px;
}
.page-aside-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.page-aside-img .aside-caption {
  background: var(--black);
  padding: 20px 24px;
}
.page-aside-img .aside-caption p {
  font-size: 13px;
  color: rgba(247,246,243,0.5);
  line-height: 1.7;
  margin: 0;
}

/* Equipamiento / features grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 28px 0;
}
.feature-item {
  background: #F7F6F3;
  border: 0.5px solid var(--gray-border);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--black);
  font-family: var(--sans);
}
.feature-icon {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Logos de clientes */
.clients-section {
  background: #F7F6F3;
  border-top: 1px solid var(--gray-border);
  padding: 56px 36px;
}
.clients-inner { max-width: 1200px; margin: 0 auto; }
.clients-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 28px;
  filter: grayscale(100%);
  opacity: 0.5;
}
.clients-grid img { height: 32px; width: auto; object-fit: contain; }

/* Contacto */
.contact-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact-info .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.info-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.info-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
  font-family: var(--sans);
}
.info-value {
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
}
.info-value a { color: var(--black); }
.info-value a:hover { color: var(--gold); }

.contact-form-wrap { }
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap .form-lead {
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 28px;
  line-height: 1.7;
}
.cf-field { margin-bottom: 16px; }
.cf-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 6px;
  font-family: var(--sans);
}
.cf-field input,
.cf-field select,
.cf-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid var(--gray-border);
  background: #fff;
  font-size: 14px;
  color: var(--black);
  font-family: var(--sans);
  outline: none;
  transition: border-color 0.2s;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus { border-color: var(--gold); }
.cf-field textarea { resize: vertical; min-height: 120px; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

@media (max-width: 900px) {
  .page-layout { grid-template-columns: 1fr; }
  .page-aside-img { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .page-layout.reverse { direction: ltr; }
}
@media (max-width: 640px) {
  .page-hero-content { padding: 0 24px 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
}
