.about-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 120, 35, .18), transparent 30%),
    linear-gradient(135deg, #fff 0%, #fff7f1 100%);
}

.about-hero-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.about-eyebrow {
  margin: 0 0 12px;
  color: #ef5a16;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.about-hero h1,
.about-section h2,
.about-final h2 {
  margin: 0;
  color: #242424;
  line-height: 1.05;
}

.about-hero h1 {
  max-width: 760px;
  font-size: clamp(2.4rem, 9vw, 4.7rem);
  letter-spacing: -.045em;
}

.about-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: #555;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.about-link {
  color: #d8490c;
  font-weight: 800;
  text-decoration: none;
}

.about-hero-card {
  padding: 28px;
  border: 1px solid rgba(239, 90, 22, .16);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 22px 60px rgba(73, 39, 20, .10);
}

.about-card-label {
  display: block;
  margin-bottom: 12px;
  color: #ef5a16;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.about-hero-card strong {
  display: block;
  color: #252525;
  font-size: 1.55rem;
  line-height: 1.25;
}

.about-hero-card p {
  margin: 14px 0 0;
  color: #666;
  line-height: 1.7;
}

.about-section {
  padding: 68px 0;
}

.about-soft {
  background: #faf8f6;
}

.about-intro {
  display: grid;
  gap: 28px;
}

.about-section h2 {
  max-width: 700px;
  font-size: clamp(2rem, 6vw, 3.25rem);
  letter-spacing: -.035em;
}

.about-copy {
  color: #5f5f5f;
  font-size: 1rem;
  line-height: 1.8;
}

.about-copy p {
  margin: 0 0 16px;
}

.about-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.about-heading > p:last-child {
  color: #666;
  line-height: 1.7;
}

.about-values {
  display: grid;
  gap: 16px;
}

.about-value {
  padding: 24px;
  border: 1px solid #ece7e3;
  border-radius: 20px;
  background: #fff;
}

.about-value > span {
  color: #ef5a16;
  font-size: .8rem;
  font-weight: 900;
}

.about-value h3 {
  margin: 12px 0 8px;
  color: #262626;
  font-size: 1.22rem;
}

.about-value p {
  margin: 0;
  color: #666;
  line-height: 1.65;
}

.about-commitment {
  display: grid;
  gap: 32px;
  align-items: start;
}

.about-commitment-copy > p:last-child {
  max-width: 700px;
  color: #626262;
  line-height: 1.75;
}

.about-commitment-list {
  display: grid;
  gap: 12px;
}

.about-commitment-list > div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-left: 4px solid #ef5a16;
  border-radius: 0 16px 16px 0;
  background: #faf8f6;
}

.about-commitment-list strong {
  color: #252525;
}

.about-commitment-list span {
  color: #686868;
  line-height: 1.55;
}

.about-final {
  padding: 62px 0;
  background: #242424;
}

.about-final-inner {
  display: grid;
  gap: 24px;
  align-items: center;
}

.about-final h2 {
  color: #fff;
  font-size: clamp(1.9rem, 6vw, 3rem);
}

.about-final p:not(.about-eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
}

@media (min-width: 720px) {
  .about-hero {
    padding: 92px 0 82px;
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 1.55fr) minmax(280px, .75fr);
    gap: 48px;
  }

  .about-intro {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
    gap: 56px;
  }

  .about-values {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-commitment {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
    gap: 56px;
  }

  .about-final-inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 86px 0;
  }

  .about-values {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
/* NOSOTROS-V1-A3-R6 · MOBILE MENU ICON */
.about-menu-bars {
  width: 24px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-menu-bars > span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 3px;
  background: currentColor;
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease;
}

.menu-toggle[aria-expanded="true"] .about-menu-bars > span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .about-menu-bars > span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .about-menu-bars > span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}