:root {
  -dark-bg: #0f1f16;
  -white: #ffffff;
}

/* ANCLA PARA EL MENÚ */

.sobre-ancla {
  height: 80px;
  margin-top: -80px;
  background: transparent;
  pointer-events: none;
}

/* SECCIÓN */

.sobre-section {
  background: var(--dark-bg);
  padding: 72px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.sobre-section,
.sobre-section * {
  box-sizing: border-box;
}

/* CONTENEDOR ORIGINAL */

.sobre-section .container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRILLA */

.sobre-grid {
  display: grid;
  grid-template-columns: 100%;
  gap: 40px;
  align-items: center;
}

/* TEXTOS */

.sobre-eyebrow {
  margin: 0 0 12px;
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.sobre-title {
  margin: 0 0 20px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.2;
}

.sobre-text {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* IMAGEN */

.sobre-img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ESCRITORIO */

@media (min-width: 768px) {
  .sobre-grid {
    grid-template-columns: calc(50% - 20px) calc(50% - 20px);
  }
}