
/* ======= SECCIÓN BANNER ======= */
.banner-solucion {
  text-align: center;
  background: #f4f6f9;
  padding: 60px 20px 40px;
  margin-top: 0;
}

.banner-solucion h1 {
  color: #0d3a8c;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.banner-solucion .divider {
  width: 60px;
  height: 3px;
  background: #1456c0;
  margin: 15px auto;
  border-radius: 5px;
}

.banner-solucion .arrow-down {
  display: block;
  font-size: 1.2rem;
  color: #1456c0;
  margin-top: 10px;
}

/* ============================================================
   CONTENIDO PRINCIPAL
   ============================================================ */
.contenido-solucion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 50px 10%;
  background: #fff;
}

.contenido-solucion .texto {
  flex: 1 1 400px;
  text-align: justify;
  color: #333;
  line-height: 1.7;
  font-size: 1rem;
}

.contenido-solucion .texto ul {
  margin-top: 20px;
  padding-left: 20px;
  list-style-type: none;
}

.contenido-solucion .texto li {
  margin: 8px 0;
  font-weight: 600;
  color: #0d3a8c;
}

.contenido-solucion .imagen {
  flex: 1 1 350px;
  text-align: center;
}

.contenido-solucion .imagen img {
  width: 100%;
  max-width: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.contenido-solucion .imagen img:hover {
  transform: scale(1.03);
}

/* ============================================================
   SECCIONES ESPECIALES
   ============================================================ */

/* CAPACITACIÓN */
.contenedor-capacitacion {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contenedor-capacitacion .texto {
  flex: 1 1 50%;
  text-align: justify;
  line-height: 1.8;
}

.contenedor-capacitacion .citas {
  flex: 1 1 40%;
  text-align: left;
}

/* Citas */
.contenedor-capacitacion blockquote {
  font-style: italic;
  color: #333;
  font-size: 0.95rem;
  border-left: 3px solid #1456c0;
  padding-left: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Firmas y fotos */
.img-quote {
  width: 150px;
  display: block;
  margin: 30px auto 10px;
  opacity: 0.95;
}

.firma {
  text-align: center;
  font-weight: bold;
  color: #1456c0;
}

.firma span {
  font-weight: 400;
  color: #555;
  font-size: 0.9rem;
}

/* ============================================================
   PSICOMETRÍA
   ============================================================ */
.psicometria-section {
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  padding: 60px 90px;
}

.psico-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.psico-info {
  flex: 1 1 60%;
}

.psico-info h2 {
  color: #1456c0;
  margin-bottom: 15px;
  font-size: 1.6rem;
}

.psico-info p {
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
  text-align: justify;
}

/* Cards */
.psico-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.psico-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.psico-card:hover {
  transform: translateY(-5px);
}

.psico-card i {
  font-size: 28px;
  color: #1456c0;
  margin-bottom: 10px;
}

.psico-card h4 {
  color: #0d3a8c;
  margin-bottom: 10px;
}

.psico-card p {
  font-size: 0.9rem;
  color: #444;
}

/* Beneficios */
.psico-beneficios {
  flex: 1 1 35%;
  background: #f4f6f9;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.psico-beneficios h3 {
  color: #1456c0;
  margin-bottom: 15px;
}

.psico-beneficios ul {
  list-style: none;
  padding: 0;
}

.psico-beneficios li {
  color: #333;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.psico-beneficios li i {
  color: #1456c0;
}

.img-psico {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}