/* ============================================================
   ABOUT SECTION
   ============================================================ */

.about-gr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* ── Image column ── */
.about-img {
  position: relative;
  border-radius: var(--rx);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating badge over image */
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  border-radius: var(--rr);
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-badge .bi {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.about-badge strong {
  display: block;
  font-family: var(--fd);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--td);
}

.about-badge span {
  font-size: 0.82rem;
  color: var(--tmu);
}

/* ── Text column ── */
.about-txt {
  font-size: 1.05rem;
  color: var(--tm);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.about-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--td);
}

.about-feat .ck {
  width: 24px;
  height: 24px;
  background: var(--green-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-400);
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ── Valor box (dark card with values list) ── */
.valor-box {
  background: var(--td);
  border-radius: var(--rl);
  padding: 1.75rem 2rem;
  margin-bottom: 2rem;
}

.valor-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.valor-list li {
  font-size: .95rem;
  color: rgba(255, 255, 255, .82);
  line-height: 1.5;
  padding-left: 1.1rem;
  position: relative;
}

.valor-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange-l);
  font-size: 1rem;
  line-height: 1.5;
}

.valor-list strong {
  color: #fff;
  font-weight: 700;
}
