/* =========================================================
   Sobre / Quiénes somos — look & feel alineado con módulos
   ========================================================= */

.about { padding: 24px 0; }

/* ------------------------------ HERO ------------------------------------ */
.about-hero {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(180deg, #fdfdfd, #f9fbff);
  border: 1px solid #e6ecf3;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(46,74,117,.05);
}
.section-title,
.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #2a3448;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
}
.section-title::after,
.about-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #2563eb, #00c6ff);
  border-radius: 2px;
}
.about-hero .prose p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #46566f;
}

/* ------------------------------ SECCIONES ------------------------------- */
.about-section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #fdfdfd, #f9fbff);
  border: 1px solid #e6ecf3;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(46,74,117,.05);
  margin-bottom: 28px;
}
.about-section p,
.about-section li {
  color: #46566f;
  line-height: 1.6;
}
.about-section .text-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ------------------------------ LISTAS ---------------------------------- */
.about-list { margin: 20px auto 0; padding-left: 18px; max-width: 800px; }
.about-list li { margin: 8px 0; font-size: 1rem; }

/* ------------------------------ GRID ------------------------------------ */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
@media (max-width: 768px) { .grid-2 { grid-template-columns:1fr; } }

/* -------------------------- TARJETAS UNIFICADAS ------------------------- */
.card,
.about-step,
.about-mods .card,
.about-list--cards .card,
#resultados .card {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
  border: 1px solid #dde3f0;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(46, 74, 117, 0.08);
  color: #2a3448;
  transition: all 0.3s ease;
}
.card:hover,
.about-step:hover,
.about-mods .card:hover,
.about-list--cards .card:hover,
#resultados .card:hover {
  border-color: #c9d6ea;
  box-shadow: 0 12px 32px rgba(46, 74, 117, 0.12);
  transform: translateY(-4px);
}

/* -------------------------- CÓMO TRABAJAMOS ----------------------------- */
.about-steps { margin:12px 0 0; padding:0; list-style:none; }
.about-step { position:relative; padding:14px 16px 14px 46px; }
.step-badge {
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  width:24px; height:24px; border-radius:50%;
  background:var(--primary, #2563eb); color:#fff;
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:.9rem; line-height:1;
  box-shadow:0 2px 6px rgba(37,99,235,.25);
}
.step-body h3{ margin:0 0 4px 0; font-weight:700; font-size:1.02rem; color:#23324a; }
.step-body p{ margin:0; color:#46566f; }

/* -------------------------- LOGOS (scroll manual) ----------------------- */
.logo-carousel {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 10px;
}
.logo-track {
  display: flex;
  gap: 60px;
  justify-content: center;
}
.logo-track a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-track img {
  max-height: 120px; /* más grandes */
  object-fit: contain;
  opacity: 1;
  transition: transform .3s ease;
}
.logo-track img:hover {
  transform: scale(1.08);
}

/* ------------------------------ CTA ------------------------------------- */
.about-cta {
  background: linear-gradient(180deg, #fff, #f6f9ff);
  border: 1px solid #e6ecf3;
  border-radius: 16px;
  padding: 18px 16px;
  box-shadow: 0 10px 26px rgba(46,74,117,.06);
  text-align: center;
  margin-top: 28px;
}
.about-cta h2 { color:#23324a; }
.about-cta .actions { justify-content:center; gap:10px; }
