/**
 * ============================================================================
 * GORILLA NUTRITION SINALOA - About CSS
 * ============================================================================
 *
 * Sección "Más que Suplementos" con imagen de fondo, overlay,
 * texto descriptivo y estadísticas (100% Originales, 5+ Años, 500+ Atletas).
 *
 * @package Gorilla_Nutrition
 * @since   1.0.0
 */

.about {
  padding: 120px 0;
  background: var(--color-bg-primary);
  overflow: hidden;
  position: relative;
}

.about__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: var(--z-bg);
  pointer-events: none;
}

.about__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(7, 7, 7, 0.97) 0%,
    rgba(7, 7, 7, 0.90) 40%,
    rgba(7, 7, 7, 0.60) 70%,
    rgba(7, 7, 7, 0.30) 100%
  );
  z-index: var(--z-overlay);
  pointer-events: none;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 90px;
  position: relative;
  z-index: var(--z-particles);
}

/* ─── Columna de Texto ────────────────────────────────────────────────── */

.about__text {
  flex: 1;
  max-width: 560px;
}

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 70px);
  letter-spacing: 3px;
  color: var(--color-text-primary);
  line-height: 0.93;
  margin-bottom: 26px;
}

.about__heading-accent {
  color: var(--color-gold);
}

.about__paragraph {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about__paragraph:last-of-type {
  margin-bottom: 42px;
}

/* ─── Estadísticas ────────────────────────────────────────────────────── */

.about__stats {
  display: flex;
  gap: 50px;
}

.about__stat-divider {
  width: 1px;
  background: rgba(201, 169, 79, 0.15);
}

.about__stat-value {
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 2px;
  line-height: 1;
}

.about__stat-value--gold { color: var(--color-gold); }
.about__stat-value--red  { color: var(--color-red); }
.about__stat-value--blue { color: var(--color-blue); }

.about__stat-label {
  font-size: 10px;
  color: #444;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── Columna de Imagen ───────────────────────────────────────────────── */

.about__image-col {
  flex: 1;
  position: relative;
  height: 520px;
}

.about__image-frame {
  position: absolute;
  top: -18px;
  right: -18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(201, 169, 79, 0.18);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 0;
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.about__image-placeholder-text {
  font-size: 14px;
  color: var(--color-text-footer);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/** Cuadrado rojo decorativo */
.about__image-square {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 76px;
  height: 76px;
  background: var(--color-red);
  z-index: 2;
  border-radius: var(--radius-sm);
}

/** Línea dorada decorativa */
.about__image-line {
  position: absolute;
  top: 24px;
  left: -10px;
  width: 3px;
  height: 80px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  z-index: 2;
}

/* ─── Slider del equipo ───────────────────────────────────────────────── */

.about__slider {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.about-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.about-slide--active {
  opacity: 1;
}

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

/* Cuando hay slider, el placeholder se posiciona igual que la imagen */
.about__image-placeholder .about__image-placeholder-hint {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 8px;
  letter-spacing: 1px;
}
