/* ===================== */
/* ACERCA DE JASIC - BASE */
/* ===================== */

.about-hero,
.about-section,
.about-cta {
  background-color: #000;
  color: #fff;
}

/* ===================== */
/* HERO */
/* ===================== */

.about-hero {
  padding: 90px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
}

/* ===================== */
/* SECCIONES GENERALES */
/* ===================== */

.about-section {
  padding: 80px 0;
}

.about-section.dark {
  background: #0b0b0b;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

.about-section p {
  max-width: 900px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}

/* ===================== */
/* GRID TEXTO + IMAGEN */
/* ===================== */

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  background: #111;
}

/* ===================== */
/* PRESENCIA GLOBAL */
/* ===================== */

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.stat {
  background: #111;
  border-radius: 18px;
  padding: 35px 20px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.12);
}

.stat strong {
  display: block;
  font-size: 2.4rem;
  color: #d40000;
  margin-bottom: 10px;
}

.stat span {
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ===================== */
/* VALORES */
/* ===================== */

.about-values {
  list-style: none;
  max-width: 600px;
  margin-top: 30px;
}

.about-values li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.85);
}

.about-values li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #d40000;
  font-weight: bold;
}

/* ===================== */
/* CTA */
/* ===================== */

.about-cta {
  padding: 90px 0;
  background: linear-gradient(
    135deg,
    #0b0b0b,
    #000
  );
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

/* usa el .btn-primary del css base */

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 900px) {

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image img {
    max-width: 420px;
    margin: 0 auto;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {

  .about-hero {
    padding: 70px 0;
  }

  .about-hero h1 {
    font-size: 2.1rem;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-section h2 {
    font-size: 1.6rem;
  }

  .about-cta h2 {
    font-size: 1.8rem;
  }

  .stat strong {
    font-size: 2rem;
  }
}
