.containerFooter {
  width: 100%;
  padding: 20px 10px;
  text-align: center;
  box-sizing: border-box;
}

/* 🔹 FLEXBOX LOGOS */
.footer-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 15px;
}

.logo-item {
  flex: 1 1 160px; /* ajustado para 5 logos */
  max-width: 180px;
}

.logo-item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* 🔹 TEXTO */
.footer-info {
  max-width: 800px;
  margin: 0 auto;
  color: black;
  font-size: 14px;
  line-height: 1.5;
}

.footer-info p {
  margin: 6px 0;
}

/* 🔹 RESPONSIVE */
@media (max-width: 768px) {
  .logo-item {
    flex: 1 1 45%; /* 2 por fila */
  }
}

@media (max-width: 480px) {
  .logo-item {
    flex: 1 1 100%; /* 1 por fila */
  }
}

.idx-wrapper {
  max-width: 900px;
  margin: auto;
  font-family: Arial, sans-serif;
}

.idx-title {
  text-align: center;
  margin: 30px 0 15px;
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.idx-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.idx-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px;
  border-radius: 10px;
  background: #f9f9f9;
  transition: all 0.2s ease;
  border: 1px solid #eee;
}

.idx-card:hover {
  background: #f1f5f9;
  transform: translateY(-3px);
}

.idx-card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.idx-card a {
  text-decoration: none;
  color: #1a73e8;
  font-weight: 500;
}

.idx-card small {
  display: block;
  color: #666;
  font-size: 13px;
}


/* COMITE EDITORIAL */
.editorial-section {
  max-width: 1100px;
  margin: 0 auto;
  font-family: "Georgia", "Times New Roman", serif;
  color: #1a1a1a;
}

/* TITULOS */
.editorial-section h4 {
  font-size: 2rem;
  font-weight: 700;
  margin: 50px 0 25px;
  padding-left: 15px;
  border-left: 5px solid #000;
}

/* BLOQUE PRINCIPAL */
.editor-block {
  display: flex;
  gap: 30px;
  margin-bottom: 45px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.editor-photo img {
  width: 150px;
  height: 180px;
  object-fit: cover;
}

/* INFO */
.editor-info {
  flex: 1;
}

.editor-name {
  font-size: 1.4rem;
  font-weight: 700;
}

.editor-affiliation {
  font-size: 1.1rem;
  margin: 6px 0 12px;
  color: #444;
}

/* ICONOS */
.editor-icons img,
.committee img {
  width: 22px;
  margin-left: 8px;
  vertical-align: middle;
  opacity: 0.8;
  transition: 0.2s;
}

.editor-icons img:hover,
.committee img:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* TEXTO */
.editor-description {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

/* COORDINADOR */
.single-line {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* COMITÉ */
.committee {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 40px;
}

.committee p {
  font-size: 1.08rem;
  margin: 0;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .editor-block {
    flex-direction: column;
  }

  .committee {
    grid-template-columns: 1fr;
  }
}