/* ============================================
   Etiqueta Rosa — Página Conócenos
   ============================================ */

/* Historia */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story__text p {
  color: var(--color-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story__badge {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}

.about-story__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story__img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
}

/* Estadísticas */
.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.about-stat {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
}

.about-stat__number {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat__label {
  color: var(--color-muted);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Por qué elegirnos */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.why-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
}

.why-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--color-black);
}

.why-card__text {
  color: var(--color-muted);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* Procedimientos populares */
.procedures-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.procedure-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.procedure-item:hover {
  transform: translateX(4px);
  border-color: var(--color-primary-light);
  box-shadow: var(--shadow-md);
}

.procedure-item__number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: var(--text-sm);
}

.procedure-item__name {
  font-weight: 500;
  color: var(--color-black);
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story__img img {
    height: 300px;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .procedures-list {
    grid-template-columns: 1fr;
  }
}
