/* ============================================
   MOREL CONSTRUCCIONES — Nosotros
   ============================================ */

.about {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}

/* Visual */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--color-surface);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Placeholder cuando no hay imagen */
.about-img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-surface);
  border: 1px dashed var(--color-border);
}

.about-img-wrap.no-img::after {
  content: '📷 Reemplazá con tu foto';
  color: var(--color-text-dim);
  font-size: var(--text-sm);
}

.about-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(196, 160, 80, 0.08) 100%);
  pointer-events: none;
}

/* Badge */
.about-badge {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  background: var(--color-gold);
  color: var(--color-black);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.badge-num {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  line-height: 1;
}

.badge-text {
  font-size: var(--text-xs);
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Content */
.about-content .section-title {
  text-align: left;
}

.about-content .section-tag {
  display: block;
  margin-bottom: var(--space-3);
}

.about-content p {
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.about-list {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text);
}

.about-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--color-gold);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }

  .about-img-wrap {
    /* aspect-ratio: 16/9; */
    max-height: none;
  }

  .about-content .section-title {
    font-size: var(--text-3xl);
  }
}