/* ==================== SECCIÓN ENCABEZADO  SUPERIOR==================== */

.top-bar {
  background-color: var(--color-principal);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.top-bar .contact-item {
  margin-left: 20px;
}

.barra-superior {
  background-color: #f5f5f5;
  padding: 8px 0;
  font-size: 14px;
  color: #666;
}

.container-barra {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.container-barra span {
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.container-barra i {
  color: #666;
}

.redes-sociales a {
  margin-left: 12px;
  color: #888;        /* color gris por defecto */
  font-size: 16px;
  transition: color 0.3s ease;
}

.redes-sociales a:hover {
  color: #e4002b !important;     /* rojo en hover */
}

.redes-sociales a i {
  color: #888;
  font-size: 16px;
  transition: color 0.3s ease;
}

.redes-sociales a:hover i {
  color: #e4002b;
}
