

/* ========================
   SECCIÓN: Banner principal
======================== */
.banner-sobre-nosotros {
  background: url('../imagenes/uncielorojo.jpg') center center/cover no-repeat;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-sobre-nosotros h1 {
  color: white;
  font-size: 28px;
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* ========================
   CLASE COMÚN PARA TEXTOS
======================== */
.texto-descriptivo {
  font-size: 16px;        /* Tamaño unificado */
  line-height: 1.6;       /* Altura de línea uniforme */
  color: #333;            /* Color gris oscuro */
  max-width: 400px;       /* Ancho máximo */
  margin: 0 auto;         /* Centrado horizontal */
}

/* ========================
   SECCIÓN: Misión
======================== */
.mision {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  background-color: #f9f6f4;
}

.mision-texto {
  flex: 1;
  text-align: center;
}

.mision-texto h2 {
  font-size: 28px;
  font-weight: bold;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.mision-texto p {
  /* Ahora usa la clase común */
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 400px;
  margin: 0 auto;
}

.mision-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
}

.mision-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .mision {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================
   SECCIÓN: Visión
======================== */
.vision {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 40px;
  background-color: #f9f6f4;
}

.vision-imagen {
  flex: 1;
  display: flex;
  justify-content: center;
}

.vision-imagen img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.vision-texto {
  flex: 1;
  text-align: center;
}

.vision-texto h2 {
  font-size: 28px;
  font-weight: bold;
  color: #4a4a4a;
  margin-bottom: 15px;
}

.vision-texto p {
  /* Igual que misión */
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 400px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .vision {
    flex-direction: column;
    text-align: center;
  }
}

/* ========================
   SECCIÓN: Valores
======================== */
/* ========================
   SECCIÓN: Valores
======================== */
.section-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 10px 40px;
  margin-bottom: 50px; /* Espacio extra hacia el footer */
}

.section-text {
  flex: 1;
}

.section-text h2 {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 8px;
}

.section-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.section-text ul li {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 6px;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.section-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 📱 Responsive para móviles */
@media (max-width: 768px) {
  .section-info {
    flex-direction: column; /* apila texto e imagen */
    text-align: center;     /* centra el texto */
    padding: 20px;          /* reduce márgenes laterales */
  }

  .section-image {
    margin-top: 20px; /* espacio entre texto e imagen */
  }
}
